#productSearch {
    padding: 10px;
    font-size: 16px;
}

#modalLoginLabel {
    font-size: 14pt;
}

#searchMobile {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #646464;
    border-color: transparent;
}

#searchMobile em {
    font-size: 12pt;
}

#searchBoxMobile:focus {
    padding-left: 1rem;
}

.menu-link.active {
    position: relative;
    color: var(--bs-primary);
    background: linear-gradient(to top, #303030, transparent);
}

.menu-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 90%;
    height: 4px;
    background-color: var(--bs-primary);
    transform: translateX(-50%);
}

.app-download-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    color: #fff;
}

.app-download-wrapper .app--inform {
    font-size: 12pt;
    line-height: normal;
}

.app-download-wrapper .btn--cross {
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.app-download-wrapper .btn--cross:hover {
    transform: scale(1.1) rotate(90deg);
}

.app-download-wrapper .btn--cross .ni {
    font-size: 16pt !important;
}

.app-download-wrapper .btn--app-download {
    background-color: var(--bs-primary);
}

.app-download-wrapper .btn--app-download span {
    color: var(--bs-light);
}

.app-download-wrapper .btn--app-download:hover {
    background-color: var(--bs-light);
}

.app-download-wrapper .btn--app-download:hover span,
.app-download-wrapper .btn--app-download:hover .ni {
    color: var(--bs-dark);
}

img.app-logo {
    width: 3rem;
    height: auto;
    border-radius: .5rem;
}

.footer-wrap {
    display: none;
    z-index: 6;
}

.search-wrapper {
    position: relative;
}

.search-wrapper em {
    position: absolute;
    left: 15px;
    top: 22%;
    color: #54585cff;
}

.form-control.form--search {
    padding-left: 2.3rem;
}

.header-main {
    background: #000 !important;
    /* position: relative; */
    /* position: fixed;
            top: 0; */
    border-bottom: 1px solid #1e1e1e;
    transition: all 0.3s ease;
}

.header-main.fixed {
    position: fixed;
    top: 0;
}

.tabs--product {
    background: transparent;
    padding: 10px 0;
    /* position: sticky;
            top: 60px;
            z-index: 4;
            padding: 10px 0;
            border-bottom: 1px solid #1e1e1e;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); */
}

.tabs--product[data-nvs-tabs--product="sticky-product"] {
    background: #000;
    position: sticky;
    top: 60px;
    z-index: 4;
    padding: 10px 0;
    border-bottom: 1px solid #1e1e1e;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.tabs--x-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tabs--x-scroll::-webkit-scrollbar {
    display: none;
}

.tabs--x-scroll>* {
    flex: 0 0 auto;
}

.separator--modal {
    display: flex;
    align-items: center;
    text-align: center;
    color: #ccc;
    font-weight: 500;
    font-size: 10pt;
    /* margin: 2rem 0; */
}

.separator--modal::before,
.separator--modal::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #555;
    margin: 0 1rem;
}

.brands--topup-product {
    max-width: 18%;
    border-radius: .4rem;
}

.title--product {
    font-size: 11pt;
    /* letter-spacing: 1.3px; */
}

.type--badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8pt;
    font-weight: 600;
    padding: 3px 5px 0 5px;
    border-radius: 5px;
}

.type--badge.badge-primary {
    color: #fff;
    background-color: var(--bs-primary);
}

.card-radio {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.card-radio:hover {
    border-color: #007bff33;
}

.card-radio.active {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.product {
    padding: .5rem;
    border: 2px solid #383838;
    border-radius: .8rem;
    margin-bottom: 0;
}

.product:hover {
    border-color: #FFFF00;
}

.product .brands--topup-subproduct {
    max-width: 1.5rem;
}

.product h3 {
    font-size: 11pt;
    margin-bottom: 0;
}

.product p {
    font-size: 10pt;
}

.product:hover img {
    opacity: 1;
}

.product:hover h3,
.product:hover p {
    color: #FFFF00;
}

.product:has(input[type="radio"]:checked) {
    border-color: #FFFF00;
}

ol.steps--order {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}

ol.steps--order>li {
    position: relative;
    padding-left: .5rem;
    margin-bottom: 3rem;
    /* z-index: 1; */
}

ol.steps--order>li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: -1.5rem;
    top: 0.1rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(121, 82, 179, .5);
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    transition: box-shadow 0.3s ease-in-out;
}

ol.steps--order>li:hover::before {
    animation: pulse-shadow 1s infinite;
}

ol.steps--order>li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -.8rem;
    top: 2rem;
    width: 2px;
    height: calc(100% + .7rem);
    background-color: #383838;
    z-index: 1;
}

ol.steps--order>li span {
    position: relative;
    z-index: 1;
}

ol.steps--order>li .steps--title {
    font-size: 16pt;
    color: #fff;
    margin-bottom: 1.5rem;
}

.flex-stack {
    justify-content: space-between;
}

.product--banner img {
    width: 100%;
    max-height: 12rem;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 3px rgba(121, 82, 179, 0.5);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(121, 82, 179, 0.3);
    }

    100% {
        box-shadow: 0 0 0 3px rgba(121, 82, 179, 0.5);
    }
}

@media (max-width: 450px) {
    .app-download-wrapper .btn--app-download {
        font-size: 12pt;
    }

    .app-download-wrapper .app--inform {
        font-size: 8pt;
    }

    .app-download-wrapper .app--inform .ni {
        font-size: 14pt;
        color: #d3d3d3;
    }

    .product h3 {
        font-size: 8pt !important;
    }
}

@media (max-width: 767px) {
    .product {
        justify-content: start;
    }
}

@media (max-width: 890px) {
    .footer-wrap {
        position: fixed;
        display: block;
        width: 100%;
        bottom: 0;
        background-color: #000;
    }

    .footer-wrap .menu-link {
        font-size: 8.3pt;
    }

    .footer-wrap .menu-link .ni {
        font-size: 14pt;
    }
}

@media (min-width: 1024px) {
    .footer-wrap {
        position: fixed;
        display: block;
        width: 92px;
        height: 100vh;
        left: 0;
        padding-top: 72px;
        border-right: 1px solid #1e1e1e;
        background-color: #000;
    }

    .footer-wrap .menu-list {
        flex-direction: column !important;
    }

    .footer-wrap .menu-list .menu-link {
        font-size: .875rem;
    }

    .footer-wrap .menu-list .menu-link em {
        font-size: 16pt;
    }

    .ps-lg-6 {
        padding-left: 5.5rem !important;
    }

    .ms-lg-6 {
        margin-left: 5.5rem !important;
    }
}