.ms-wrap {
    width: min-content;
    position: relative;
}

    .ms-wrap.active .ms-values {
        border-radius: 6px 6px 0 0;
    }

        .ms-wrap.active .ms-values::after {
            content: "\f106";
        }

    .ms-wrap.active .ms-dropdown {
        top: 30px;
        visibility: visible;
        opacity: 1;
    }

    .ms-wrap .clr {
        position: absolute;
        top: 0;
        right: 10px;
        font-size: 10px;
        font-family: textsb;
        border: none;
        background-color: transparent;
        text-transform: uppercase;
        transform: translateY(-23px);
        background-color: #ffd9db;
        color: #ca0000;
        padding: 1px 5px;
        border-radius: 10px;
    }

        .ms-wrap .clr:disabled {
            display: none;
        }

.ms-values {
    border: 1px solid #e1e1e1;
    background-color: #fff;
    height: 38px;
    border-radius: 50px;
    padding: 0 30px 0 12px;
    font-size: 14px;
    font-family: text;
    display: block;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 36px;
    position: relative;
    transition: 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .ms-values::after {
        content: "\f107";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-family: "Font Awesome 5 Pro";
        font-weight: 200;
        font-size: 23px;
        padding-inline: 10px;
        background: #fff;
    }

.ms-dropdown {
    padding: 7px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-top: none;
    border-radius: 0 0 6px 6px;
    position: absolute;
    width: 100%;
    box-shadow: 0 2px 5px -3px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    top: 15px;
    transition: 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 110;
}

    .ms-dropdown > .ms-search {
        border: none;
        font-size: 13px;
        font-family: text;
        padding: 0 7px;
        border: 1px solid #dedede;
        height: 28px;
        border-radius: 5px;
        width: 100%;
    }

    .ms-dropdown .ms-scroll {
        max-height: 150px;
        overflow-y: auto;
    }

        .ms-dropdown .ms-scroll::-webkit-scrollbar {
            width: 8px;
            background-color: transparent;
            position: absolute;
        }

        .ms-dropdown .ms-scroll::-webkit-scrollbar-thumb {
            border-radius: 10px;
            background: #bd0009;
            border: 2px solid #fff;
        }

        .ms-dropdown .ms-scroll::-webkit-scrollbar-track {
            background-color: transparent;
        }

    .ms-dropdown .custom-checkbox label {
        font-size: 13px;
        text-transform: capitalize;
        user-select: none;
        margin: 0;
        font-family: text;
        padding-left: 23px;
        white-space: nowrap;
    }

        .ms-dropdown .custom-checkbox label::before {
            border-color: #c2c8d3;
            height: 17px;
            width: 17px;
            top: 2px;
        }

    .ms-dropdown .custom-radio.nulled {
        pointer-events: none;
    }

    .ms-dropdown .custom-radio label {
        font-size: 13px;
        text-transform: capitalize;
        user-select: none;
        margin: 0;
        font-family: text;
        padding-block: 0;
        padding-left: 23px;
        white-space: nowrap;
    }

        .ms-dropdown .custom-radio label::before {
            content: "";
            position: absolute;
            left: 0;
            top: 1px;
            height: 17px;
            width: 17px;
            border: 1px solid #c2c8d3;
            border-radius: 15px;
        }

    .ms-dropdown .custom-checkbox input[type=checkbox]:checked ~ label::before {
        border-color: #cd0009;
        background-color: #cd0009;
        background-size: 76%;
        background-position: 60% 50%;
    }

    .ms-dropdown .custom-radio input[type=radio]:checked ~ label::before {
        border-color: #cd0009;
        border-width: 5px;
        background-color: #fff;
    }

    .ms-dropdown .ms-controls {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 7px;
    }

        .ms-dropdown .ms-controls .btn {
            font-family: textsb;
            color: #fff;
            background-color: #bd0009;
            flex-grow: 1;
            padding: 3px 5px;
            border-radius: 20px;
            font-size: 11px;
            text-transform: uppercase;
        }

            .ms-dropdown .ms-controls .btn:disabled {
                pointer-events: none;
            }

            .ms-dropdown .ms-controls .btn:hover {
                background-color: #dd0009;
            }

            .ms-dropdown .ms-controls .btn + .btn {
                background-color: #f1f2f3;
                color: #323232;
            }

                .ms-dropdown .ms-controls .btn + .btn:hover {
                    background-color: #111;
                    color: #fff;
                }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1019607843);
}

    .notice ~ .notice {
        margin-top: 10px;
    }

    .notice h6 {
        font-family: "textbold";
        position: relative;
        top: 1px;
        margin: 0 0 3px;
    }

    .notice.info {
        background: #e4fff6;
        color: #006c69;
    }

        .notice.info strong,
        .notice.info a {
            color: inherit;
            text-shadow: 0 0.5px 0.5px #00636c;
        }

        .notice.info a {
            border-bottom: 1px solid #00636c;
        }

    .notice.danger {
        background: #ffebf2;
        color: #8c0034;
    }

        .notice.danger strong,
        .notice.danger a {
            color: inherit;
            text-shadow: 0 0.5px 0.5px #8c0034;
        }

        .notice.danger a {
            border-bottom: 1px solid #8c0034;
        }

    .notice.warning {
        background: #fff9db;
        color: #a1490b;
    }

        .notice.warning strong,
        .notice.warning a {
            color: inherit;
            text-shadow: 0 0.5px 0.5px #a1490b;
        }

        .notice.warning a {
            border-bottom: 1px solid #a1490b;
        }

    .notice.success {
        background: #eaffe5;
        color: #006a0d;
    }

        .notice.success strong,
        .notice.success a {
            color: inherit;
            text-shadow: 0 0.5px 0.5px #006a0d;
        }

        .notice.success a {
            border-bottom: 1px solid #006a0d;
        }

    .notice.default {
        background: #ecf0f3;
        color: #455764;
    }

        .notice.default strong,
        .notice.default a {
            color: inherit;
            text-shadow: 0 0.5px 0.5px #455764;
        }

        .notice.default a {
            border-bottom: 1px solid #455764;
        }

    .notice .icon {
        font-size: 18px;
        line-height: 1;
        position: relative;
        top: 1px;
    }

    .notice p {
        margin: 0;
        font-size: 13px;
        font-family: text;
        color: inherit;
    }

        .notice p strong {
            font-family: textbold;
        }

.wizard-bar {
    padding: 35px 0 50px;
}

@media (max-width: 767px) {
    .wizard-bar {
        padding: 25px 0 40px;
    }
}

.wizard-bar .checkout-steps {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: 300px;
    position: relative;
}

    .wizard-bar .checkout-steps::before {
        content: "";
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 80px);
        height: 1px;
        z-index: -2;
        border-bottom: 1.5px dashed #ccc;
    }

    .wizard-bar .checkout-steps::after {
        content: "";
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 1px;
        z-index: -1;
        border-bottom: 1.5px solid #fff;
    }

    .wizard-bar .checkout-steps .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        color: #6b6b6b;
        font-weight: 600;
        position: relative;
        z-index: 3;
    }

        .wizard-bar .checkout-steps .step .circle {
            width: 29px;
            height: 29px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #bababa;
            background: #fff;
            color: #aeaeae;
            font-family: textsb;
            font-weight: 400;
            font-size: 15px;
        }

        .wizard-bar .checkout-steps .step.completed .circle {
            background: #0a6b37;
            border-color: #0a6b37;
            color: #fff;
        }

        .wizard-bar .checkout-steps .step.current .circle {
            color: #fff;
            border-color: #bd0009;
            background-color: #bd0009;
        }

            .wizard-bar .checkout-steps .step.current .circle i {
                position: relative;
                top: -1px;
                left: 0.5px;
            }

        .wizard-bar .checkout-steps .step .label {
            font-size: 13px;
            font-family: textsb;
            text-transform: uppercase;
            color: #333;
            position: absolute;
            top: 30px;
        }

.wizard-bar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width: 767px) {
    .wizard-bar .wrap {
        flex-direction: column;
        gap: 10px;
    }
}

.wizard-bar .btn-back {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 6px 13px;
    background: #efefef;
    color: #474747;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "textsb";
    border-radius: 30px;
    position: absolute;
}

@media (max-width: 767px) {
    .wizard-bar .btn-back {
        position: relative;
        margin-top: -10px;
    }
}

.wizard-bar .btn-back.show {
    display: inline-flex;
}

.wizard-bar .btn-back:hover {
    background-color: #e4e4e4;
    color: #000;
}

.rocket-cart {
    padding: 40px 0;
    background-color: #fff;
    display: none;
    min-height: calc(100vh - 192px);
}

    .rocket-cart.active {
        display: block;
    }

    .rocket-cart .container > .row {
        margin: 0 -10px;
    }

        .rocket-cart .container > .row > div {
            padding: 0 10px;
        }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .cart-header {
        flex-direction: column;
        gap: 15px;
    }
}

.cart-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #171717;
    font-family: "textbold";
    letter-spacing: -1px;
    margin: 0;
}

.cart-header .copy {
    font-size: 13px;
    color: #262626;
    text-decoration: underline;
    border: 1px solid #989898;
    padding: 7px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-family: "textsb";
    text-transform: uppercase;
}

    .cart-header .copy i {
        margin-right: 10px;
        font-size: 16px;
    }

.cart-header .form-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .cart-header .form-group > label {
        font-size: 14px;
        font-weight: 600;
        color: #262626;
        font-family: "textsb";
        margin: 0;
    }

.cart-body {
    margin-bottom: 20px;
}

    .cart-body .sub-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
        margin-top: 20px;
    }

        .cart-body .sub-header h5 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            color: #262626;
            font-family: "textsb";
        }

    .cart-body .cart-listing .cart-item {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 15px;
        position: relative;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

@media (max-width: 767px) {
    .cart-body .cart-listing .cart-item {
        gap: 0;
    }
}

.cart-body .cart-listing .cart-item .i-img {
    height: 90px;
    width: 90px;
    min-width: 90px;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 3px 5px -2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .cart-body .cart-listing .cart-item .i-img {
        height: 60px;
        width: 60px;
        min-width: 50px;
        border-radius: 7px;
        position: absolute;
        left: 0;
        top: 10px;
    }
}

.cart-body .cart-listing .cart-item .i-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-body .cart-listing .cart-item .i-info {
    flex: 1;
}

    .cart-body .cart-listing .cart-item .i-info .i-name {
        font-weight: 600;
        color: #262626;
        text-decoration: none;
        display: block;
        margin-bottom: 5px;
        font-family: "textsb";
        font-size: 16px;
    }

@media (max-width: 767px) {
    .cart-body .cart-listing .cart-item .i-info .i-name {
        padding-left: 70px;
    }
}

@media (max-width: 767px) and (max-width: 767px) {
    .cart-body .cart-listing .cart-item .i-info .i-name + p {
        padding-left: 70px;
    }
}

.cart-body .cart-listing .cart-item .i-info p {
    font-size: 14px;
    color: #767676;
    font-family: "text";
    margin-bottom: 0;
}

.cart-body .cart-listing .cart-item .rib {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .cart-body .cart-listing .cart-item .rib .price {
        display: inline-flex;
        align-items: flex-start;
        gap: 2px;
        min-width: 140px;
    }

@media (max-width: 767px) {
    .cart-body .cart-listing .cart-item .rib .price {
        min-width: 100%;
        margin-top: 15px;
    }
}

.cart-body .cart-listing .cart-item .rib .price span {
    font-size: 18px;
    font-weight: 400;
    font-family: "regular";
    position: relative;
    color: #000;
    margin-left: 2px;
}

.cart-body .cart-listing .cart-item .rib .price .sign {
    font-size: 20px;
    position: relative;
    color: #bd0009;
    font-family: textsb;
    margin-right: 3px;
    top: -2px;
}

.cart-body .cart-listing .cart-item .rib .price .curr {
    position: relative;
    font-family: regular;
    color: #bd0009;
    margin-left: 4px;
}

.cart-body .cart-listing .cart-item .rib .quantity {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 767px) {
    .cart-body .cart-listing .cart-item .rib .quantity {
        margin-block: 10px;
    }
}

.cart-body .cart-listing .cart-item .rib .quantity button {
    width: 24px;
    height: 24px;
    border-radius: 50px;
    border: none;
    font-size: 13px;
    background: linear-gradient(to bottom, #da131d, #8d0909);
    filter: grayscale(1);
    color: #fff;
}

    .cart-body .cart-listing .cart-item .rib .quantity button i {
        position: relative;
        top: 1px;
    }

    .cart-body .cart-listing .cart-item .rib .quantity button:hover {
        filter: grayscale(0);
        color: #fff;
    }

.cart-body .cart-listing .cart-item .rib .quantity input {
    width: 50px;
    height: 30px;
    border: none;
    border-radius: 50px;
    text-align: center;
    pointer-events: none;
    font-family: textsb;
    border: 1px solid #ddd;
}

.cart-body .cart-listing .cart-item .rib .total {
    font-size: 22px;
    font-weight: 300;
    color: #000;
    font-family: regular;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 140px;
}

    .cart-body .cart-listing .cart-item .rib .total .sign {
        position: relative;
        color: #bd0009;
        top: -2px;
        font-family: textsb;
        margin-right: 6px;
    }

    .cart-body .cart-listing .cart-item .rib .total .curr {
        font-family: regular;
        position: relative;
        margin-left: 4px;
        color: #bd0009;
        letter-spacing: 1px;
    }

.cart-body .cart-listing .cart-item .stock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

    .cart-body .cart-listing .cart-item .stock i {
        color: #008000;
        background-color: #fff;
        border-radius: 100%;
        font-size: 13px;
        position: relative;
        top: 1px;
    }

        .cart-body .cart-listing .cart-item .stock i.fa-times-circle {
            color: #c7000a;
        }

    .cart-body .cart-listing .cart-item .stock p {
        color: #4d4d4d;
        font-family: text;
    }

.cart-body .cart-listing .cart-item .actions button,
.cart-body .cart-listing .cart-item .actions a {
    font-size: 14px;
    font-weight: 500;
    color: #262626;
    text-decoration: underline;
    font-family: textsb;
    text-transform: uppercase;
}

    .cart-body .cart-listing .cart-item .actions button:hover,
    .cart-body .cart-listing .cart-item .actions a:hover {
        color: #da131d;
    }

    .cart-body .cart-listing .cart-item .actions button i,
    .cart-body .cart-listing .cart-item .actions a i {
        margin-right: 5px;
    }

.cart-summary {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
}

    .cart-summary h3 {
        font-size: 24px;
        font-weight: 600;
        color: #262626;
        font-family: "textsb";
        letter-spacing: -1px;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .cart-summary .discount {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

        .cart-summary .discount .toggle-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

            .cart-summary .discount .toggle-btn span {
                font-size: 14px;
                font-family: textsb;
                color: #262626;
                text-transform: uppercase;
                white-space: nowrap;
            }

            .cart-summary .discount .toggle-btn .icon {
                color: #fff;
                background-color: #bd0009;
                font-size: 20px;
                height: 22px;
                width: 22px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 20px;
            }

                .cart-summary .discount .toggle-btn .icon i {
                    line-height: 1;
                    position: relative;
                    top: 1px;
                }

            .cart-summary .discount .toggle-btn.active .icon i {
                transform: rotate(180deg);
                top: -1px;
            }

            .cart-summary .discount .toggle-btn:hover span {
                text-decoration: underline;
            }

        .cart-summary .discount .discount-code {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .cart-summary .discount .discount-code input {
                background: transparent;
                border: 1px solid #ddd;
                padding: 0 15px;
                border-radius: 30px;
                font-family: "textsb";
                font-size: 14px;
                color: #1d1d1d;
                height: 40px;
            }

            .cart-summary .discount .discount-code button {
                height: 40px;
                font-family: textsb;
                font-size: 14px;
                border: none;
                padding: 0 15px;
                border-radius: 30px;
                background-color: #026532;
                color: #fff;
            }

    .cart-summary .price {
        display: flex;
        align-items: center;
    }

        .cart-summary .price span {
            font-size: 16px;
            font-weight: 300;
            color: #000;
            font-family: regular;
        }

        .cart-summary .price .sign {
            color: #bd0009;
            font-family: textsb;
            margin-right: 5px;
            font-size: 18px;
        }

        .cart-summary .price .curr {
            font-family: regular;
            font-size: 16px;
            margin-left: 4px;
            color: #bd0009;
            letter-spacing: 1px;
        }

    .cart-summary .pay {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }

        .cart-summary .pay h6 {
            font-size: 13px;
            font-weight: 600;
            color: #262626;
            font-family: "textsb";
            margin-right: 2px;
        }

        .cart-summary .pay .price {
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
        }

            .cart-summary .pay .price span {
                font-size: 21px;
                font-weight: 300;
                color: #000;
                font-family: light;
                position: relative;
                top: -4px;
            }

            .cart-summary .pay .price strong {
                font-size: 32px;
                font-weight: 500;
                color: #000;
                font-family: medium;
            }

            .cart-summary .pay .price .sign {
                position: relative;
                color: #bd0009;
                top: -2px;
                font-family: textsb;
                margin-right: 5px;
                font-size: 30px;
            }

            .cart-summary .pay .price .curr {
                font-family: regular;
                font-size: 20px;
                position: relative;
                top: -5px;
                margin-left: 4px;
                color: #bd0009;
                letter-spacing: 1px;
            }

    .cart-summary .cart-item + .cs-row {
        margin-top: 15px;
    }

    .cart-summary #checkout_suummary {
        margin-bottom: 15px;
    }

    .cart-summary .cs-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 5px;
    }

        .cart-summary .cs-row h6 {
            font-size: 14px;
            font-weight: 500;
            color: #262626;
            font-family: "textsb";
            margin: 0 10px 0 0;
        }

            .cart-summary .cs-row h6 small {
                display: block;
                font-size: 90%;
                color: #767676;
            }

        .cart-summary .cs-row .save {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 5px;
        }

            .cart-summary .cs-row .save i {
                font-size: 14px;
                color: #bd0009;
                position: relative;
                top: 2px;
            }

            .cart-summary .cs-row .save p {
                font-size: 16px;
                font-weight: 600;
                color: #da131d;
                font-family: "textsb";
                margin: 0;
            }

                .cart-summary .cs-row .save p small {
                    position: relative;
                    top: -1px;
                    color: #2d2d2d;
                    font-family: text;
                    font-size: 14px;
                    padding-right: 3px;
                }

    .cart-summary .perks {
        margin: 15px 0 0;
    }

        .cart-summary .perks p {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            font-family: text;
            color: #767676;
            margin: 5px 0 0;
        }

        .cart-summary .perks i {
            font-size: 12px;
            margin-right: 3px;
            position: relative;
            top: 1px;
            color: #026532;
        }

    .cart-summary .cart-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
        padding: 5px 0;
        position: relative;
    }

        .cart-summary .cart-item .price {
            position: relative;
            top: 2px;
        }

        .cart-summary .cart-item .c-block {
            flex-grow: 1;
        }

            .cart-summary .cart-item .c-block .qty {
                display: flex;
                align-items: center;
                gap: 5px;
                font-size: 15px;
            }

                .cart-summary .cart-item .c-block .qty span {
                    font-family: textsb;
                    font-size: 14px;
                    text-transform: uppercase;
                    position: relative;
                }

                .cart-summary .cart-item .c-block .qty strong {
                    font-family: textbold;
                    font-size: 14px;
                    line-height: 1;
                }

                .cart-summary .cart-item .c-block .qty .price .sign {
                    font-size: 16px;
                }

        .cart-summary .cart-item .product-img {
            background-color: #fff;
            margin-right: 10px;
        }

            .cart-summary .cart-item .product-img img {
                width: 100%;
                max-width: 50px;
                height: 55px;
                object-fit: contain;
                object-position: center;
            }

@media (max-width: 1199px) {
    .cart-summary .cart-item .product-img img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 991px) {
    .cart-summary .cart-item .product-img img {
        width: 35px;
        height: 35px;
    }
}

.cart-summary .cart-item .product-name {
    font-size: 13px;
    font-family: textsb;
    letter-spacing: 1px;
    color: #333;
    display: block;
    transition: 0.12s linear;
}

.cards {
    margin-top: 14px;
}

    .cards h6 {
        font-size: 14px;
        font-weight: 600;
        color: #262626;
        font-family: "textsb";
        margin: 0 0 15px;
        text-align: center;
    }

    .cards .flex {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

        .cards .flex img {
            height: 30px;
            max-width: 90px;
            width: auto;
        }

.member {
    max-width: 600px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    margin: 0 auto;
    display: none;
}

    .member.active {
        display: block;
    }

    .member .nav-tabs {
        border-bottom: none;
        margin-bottom: 0;
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-end;
        justify-content: space-between;
        overflow: hidden;
        border-radius: 7px 7px 0 0;
    }

        .member .nav-tabs .nav-link {
            border: none;
            border-radius: 0;
            color: #000000;
            font-family: bold;
            text-transform: uppercase;
            padding: 16px 20px 14px;
            width: 100%;
            text-align: center;
            border-bottom: 2px solid #bd0009;
            font-size: 17px;
            letter-spacing: 1px;
            background-color: #fffaec;
        }

        .member .nav-tabs .nav-item {
            width: 100%;
        }

        .member .nav-tabs .nav-link.active {
            padding: 14px 20px;
            border-bottom: 4px solid #bd0009;
            color: #bd0009;
            background-color: #fff;
        }

    .member .tab-content {
        padding: 15px 25px 0;
    }

        .member .tab-content .tab-pane {
            padding: 0;
        }

    .member .section-title {
        font-size: 32px;
        line-height: 1;
        font-weight: 800;
        margin: 18px 0;
        text-align: center;
    }

    .member .details-form .form-group {
        margin-bottom: 16px;
    }

        .member .details-form .form-group label {
            font-weight: 600;
            color: #333;
            margin-bottom: 6px;
            font-family: textsb;
            font-size: 14px;
        }

    .member .details-form .form-control {
        height: 50px;
        border-radius: 50px;
        border: 1px solid #cfcfcf;
        padding: 5px 15px;
    }

        .member .details-form .form-control:focus {
            box-shadow: none;
            border-color: #0a6b37;
        }

.helper-text {
    margin: 16px auto 0;
    color: #565656;
    font-size: 13px;
    padding: 0 25px 20px;
}

.checkout {
    display: none;
    padding: 0 0 50px;
}

    .checkout.active {
        display: block;
    }

    .checkout h2 {
        font-size: 24px;
        font-weight: 600;
        color: #171717;
        font-family: "textbold";
        letter-spacing: -1px;
        margin: 0 0 10px;
    }

@media (max-width: 767px) {
    .checkout h2 {
        font-size: 20px;
    }
}

.modern .custom-radio > label {
    margin: 10px 0 0;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 15px 25px 15px 35px;
    width: 100%;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 #026532;
    transition: 0.2s ease-out;
}

    .modern .custom-radio > label:hover {
        border: 1px solid #026532;
    }

    .modern .custom-radio > label::before {
        top: 15px;
        left: 10px;
    }

.modern .labelTitle {
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

    .modern .labelTitle h6 {
        text-transform: uppercase;
        font-family: textsb;
        font-size: 13px;
        padding: 2px 0;
        margin: 0;
    }

    .modern .labelTitle p {
        margin: 0;
        color: #8894a4;
    }

    .modern .labelTitle img {
        max-height: 32px;
        width: auto;
        margin-left: 15px;
    }

.modern .pForm {
    border-top: 1px solid #eee;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: 0.14s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .modern .pForm label {
        font-family: textsb;
        margin: 0 0 5px;
    }

    .modern .pForm .form-control {
        border-radius: 30px;
        min-height: 40px;
        color: #000;
    }

        .modern .pForm .form-control::placeholder {
            color: #a1aeb6;
        }

    .modern .pForm .note {
        color: #00bfff;
        font-family: textsb;
        margin-bottom: 15px;
        background: #e1f4ff;
        padding: 5px;
        border: 1px solid #baddff;
        text-transform: initial;
    }

        .modern .pForm .note strong {
            font-family: textbold;
            text-transform: uppercase;
        }

    .modern .pForm .row {
        margin-inline: -10px;
    }

        .modern .pForm .row > div {
            padding-inline: 10px;
        }

    .modern .pForm .btn-default {
        background-color: #026532;
    }

.modern .custom-radio > input:checked ~ label {
    border: 1px solid #026532;
    box-shadow: inset 0 0 0 1px #026532;
}

    .modern .custom-radio > input:checked ~ label .pForm {
        padding: 15px 0 0;
        border-top: 1px solid #cddbe2;
        visibility: visible;
        opacity: 1;
        height: auto;
        margin-top: 15px;
    }

.gift-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

@media (max-width: 767px) {
    .gift-field {
        gap: 5px;
    }
}

.gift-field .form-group {
    margin-bottom: 0;
}

    .gift-field .form-group:first-of-type {
        width: 70%;
    }

@media (max-width: 767px) {
    .gift-field .form-group:first-of-type {
        width: 205px;
    }
}

.gift-field .form-group + .form-group {
    width: 20%;
}

@media (max-width: 767px) {
    .gift-field .form-group + .form-group {
        width: 100px;
    }
}

.gift-field .apply {
    width: 10%;
}

@media (max-width: 767px) {
    .gift-field .apply {
        flex-grow: 1;
    }
}

.gift-field .apply .btn {
    height: 40px;
    font-family: textsb;
    font-size: 14px;
    border: none;
    padding: 0 15px;
    border-radius: 30px;
    background-color: #026532;
    color: #fff;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.size-check {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

    .size-check .checker input {
        display: none;
    }

    .size-check .checker label {
        text-transform: uppercase;
        font-family: medium;
        color: #333;
        margin: 0;
        letter-spacing: 1px;
        min-width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        border: 1px solid #ddd;
        position: relative;
        cursor: pointer;
        transition: 0.15s ease;
        border-radius: 50px;
        padding: 0;
    }

    .size-check .checker input[type=radio]:checked ~ label {
        color: #fff;
        z-index: 1;
        border-color: #d50003;
        background-color: #d50003;
    }

.inote {
    padding: 3px 10px;
    font-size: 12px;
    margin: 5px 0 15px 26px;
}

    .inote.pl-0 {
        margin-left: 0;
    }

    .inote.note-info {
        background-color: #e9f2f9;
        border: 1px solid #4fc3f7;
        color: #01579b;
    }

    .inote.note-danger {
        background-color: #ffebee;
        border: 1px solid #d32f2f;
        color: #b71c1c;
    }

.size-options {
    display: flex;
    align-items: center;
    margin: 5px 0 15px;
    flex-wrap: wrap;
}

@media (max-width: 500px) {
    .size-options {
        flex-direction: column;
    }
}

.size-options label {
    font-size: 13px;
    text-transform: uppercase;
    font-family: "textsb";
    margin: 0 15px 0 0;
}

.inner_note {
    color: #b71c1c;
    font-size: 12px;
    margin: 10px 0 0;
}

    .inner_note strong {
        font-family: textbold;
    }

    .inner_note.info {
        color: #0064ae;
        font-size: 12px;
    }

        .inner_note.info .num {
            font-family: textbold;
        }

.outter_note {
    color: #5d96cc;
    font-size: 13px;
    margin: 5px 0 12px;
    text-align: center;
}

    .outter_note strong {
        font-family: textbold;
    }

.distinguish {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 7px 0;
}

    .distinguish span {
        display: inline-block;
        padding: 5px;
        background-color: #fff;
        text-transform: uppercase;
        color: #a6acb0;
        position: relative;
        z-index: 1;
        font-size: 12px;
        font-family: regular;
        letter-spacing: 1px;
    }

    .distinguish::after {
        content: "";
        position: absolute;
        height: 1px;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 100%;
        background-color: #eee;
    }

.pillFlex {
    display: flex;
    gap: 10px;
}

@media (max-width: 720px) {
    .pillFlex {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
    }
}

.pill-checkbox {
    flex-basis: 0;
    flex-grow: 1;
}

@media (max-width: 767px) {
    .pill-checkbox {
        flex-grow: 0;
        min-width: calc(50% - 5px);
    }
}

@media (max-width: 500px) {
    .pill-checkbox {
        flex-grow: 0;
        min-width: 100%;
    }
}

.pill-checkbox input {
    display: none;
}

.pill-checkbox label {
    font-size: 14px;
    font-family: text;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    gap: 10px;
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px 15px 10px 10px;
    transition: 0.1s ease-out;
    background-color: transparent;
    cursor: pointer;
    margin-bottom: 10px;
    box-shadow: inset 0 0 0 0 #026532;
}

    .pill-checkbox label:hover {
        border-color: #026532;
    }

    .pill-checkbox label img {
        height: auto;
        width: 30px;
        filter: grayscale(1) opacity(0.75);
        transition: 0.1s ease-out;
    }

    .pill-checkbox label .price {
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }

    .pill-checkbox label .sign {
        font-size: 16px;
        color: #dc0000;
    }

    .pill-checkbox label span {
        font-size: 18px;
        color: #dc0000;
    }

.pill-checkbox input:checked + label {
    color: #000000;
    border: 1px solid #026532;
    box-shadow: inset 0 0 0 1px #026532;
}

    .pill-checkbox input:checked + label img {
        filter: grayscale(0) contrast(1);
    }

form .row {
    margin-inline: -5px;
}

    form .row > div {
        padding-inline: 5px;
    }

form .form-group {
    margin-bottom: 10px;
}

    form .form-group label {
        font-family: textbold;
        font-size: 14px;
    }

        form .form-group label small {
            font-family: text;
        }

    form .form-group input,
    form .form-group select {
        min-height: 45px;
    }

    form .form-group .form-control {
        border-radius: 30px;
        min-height: 40px;
        font-size: 15px;
        font-family: text;
    }

        form .form-group .form-control::selection {
            background: rgb(56, 165, 255);
            color: #fff;
        }

        form .form-group .form-control ~ .form-control {
            margin-top: 15px;
        }

        form .form-group .form-control option {
            font-size: 16px;
            padding: 100px;
        }

.address-form .form-group label {
    display: none;
}

.stickyTop {
    position: sticky;
    top: 90px;
    z-index: 10;
}

    .stickyTop.shadowBox {
        padding: 0;
    }

.shadowBox + .shadowBox {
    margin-top: 20px;
}

.cta {
    margin-top: 15px;
}

    .cta button {
        width: 100%;
        font-size: 16px;
        font-family: textbold;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 12px 15px;
        border-radius: 50px;
        border: none;
        background-color: #026532;
        color: #fff;
    }

        .cta button:hover {
            color: #fff;
            background-color: #00793a;
        }

.disc {
    font-size: 14px;
    font-family: text;
    color: #767676;
    margin-top: 15px;
    margin-bottom: 5px;
}

    .disc a {
        color: #bd0009;
        text-decoration: underline;
        font-family: textsb;
    }

        .disc a:hover {
            color: #da131d;
        }

.faqs {
    padding: 15px 0;
}

    .faqs > h3 {
        font-size: 24px;
        font-weight: 600;
        color: #262626;
        font-family: "textsb";
        letter-spacing: -1px;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .faqs ul {
        margin: 15px 0 25px 10px;
    }

        .faqs ul li {
            font-size: 14px;
            font-family: text;
            color: #333;
            text-align: left;
            position: relative;
            padding-left: 20px;
            display: block;
            margin: 0;
        }

            .faqs ul li ~ li {
                margin-top: 7px;
            }

            .faqs ul li::before {
                content: "";
                height: 5px;
                width: 5px;
                border-radius: 5px;
                background-color: #000;
                position: absolute;
                top: 9px;
                left: 0;
            }

            .faqs ul li a {
                font-family: textbold;
                color: #000;
            }

                .faqs ul li a:hover {
                    color: #bd0009;
                }

    .faqs p {
        font-size: 14px;
        font-family: text;
        color: #656565;
        margin: 0 0 10px;
        text-align: left;
    }

        .faqs p a {
            font-family: textbold;
            color: #000;
        }

            .faqs p a:hover {
                color: #bd0009;
            }

#accordion .card {
    margin-bottom: 15px;
    padding: 0 15px;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.07);
}

    #accordion .card .card-header {
        font-family: "medium";
        letter-spacing: 1px;
        font-size: 16px;
        text-transform: uppercase;
        background-color: #fff;
        border: none;
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #bd0009;
    }

        #accordion .card .card-header i {
            transform: rotate(180deg);
            transition: 0.2s linear;
        }

        #accordion .card .card-header.collapsed {
            color: #333;
        }

            #accordion .card .card-header.collapsed i {
                transform: rotate(0deg);
            }

    #accordion .card .card-body {
        border: none;
        border-top: 1px solid #e4e4e4;
        padding: 12px 0;
    }

        #accordion .card .card-body h1,
        #accordion .card .card-body h2,
        #accordion .card .card-body h3,
        #accordion .card .card-body h4,
        #accordion .card .card-body h5,
        #accordion .card .card-body h6 {
            font-family: textbold;
            margin: 20px 0 10px;
        }

        #accordion .card .card-body strong {
            font-family: textbold;
        }

        #accordion .card .card-body img {
            display: block;
            margin: 25px auto;
            width: 100% !important;
        }

.shadowBox {
    border-radius: 10px;
    box-shadow: 0 3px 12px -3px rgba(0, 0, 0, 0.2);
    padding: 15px;
    border: 1px solid #ddd;
}

    .shadowBox .cart-summary {
        border: none;
    }

.iti--separate-dial-code .iti__selected-flag {
    border-radius: 20px;
}

.form-control:focus {
    border-color: #026532;
}

.chooseCurrency .form-control {
    color: #cc0009;
}

.cart-body .cart-listing .cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
