.col_tab_nav {
    flex-direction: column;
    gap: 16px;
    .nav-item {
        .nav-link {
            padding: 0;
            position: relative;
            padding-inline-start: 20px;
            &::after {
                position: absolute;
                content: "";
                width: 5px;
                height: 5px;
                background: $body-color;
                border-radius: 50%;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
            }
            &.active {
                color: $brand-14 !important;
                &::after {
                    background: $brand-14;
                }
            }
        }
    }
}

.price_14_item {
    transition: .5s;
    &:hover {
        .btn {
            background: $gd-14;
            color: $white !important;
        }
    }
}

// Home 16
.price_16_item  {
    transition: .5s;
    &:hover {
        background: $dark !important;
        p, h4 {
            color: $white !important;
        }
        .btn-dark {
            background: $primary-16 !important;
        }
        .bg-primary-16 {
            background: $dark !important;
            svg path {
                stroke: $white;
            }
        }
    }
}