.form-check-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

#order {
    width: 100%;
    padding: 48px 0px;
}

@media only screen and (max-width:768px){
    #order {
        width: 100%;
        padding: 20px 0px;
    }
}

.order-content {
    width: 100%;
    display: flex;
}

.order-content-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.order-content-title-box {
    width: 50%;
    display: flex;
}

    .order-content-title-box img {
        margin-right: 15px;
    }

    .order-content-title-box h2 {
        font-size: 24px;
        font-weight: 600;
        line-height: 40px;
        color: #14325c;
    }

    .order-content-title-box p {
        font-size: 18px;
        color: #404b5b;
        font-weight: 500;
    }

.orders-delete-basket {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #ef162c;
    color: #ef162c;
    background-color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    height: 40px;
}

    .orders-delete-basket img {
        position: relative;
        top: -3px;
        left: -3px;
    }

.order-content {
    width: 100%;
    padding: 40px 0px;
}

@media only screen and (max-width: 768px) {
    .order-content-title {
        flex-wrap: wrap;
        padding-bottom: 40px;
    }

    .order-content-title-box {
        width: 100%;
        display: flex;
        margin-bottom: 6px;
    }

        .order-content-title-box p {
            font-size: 15px;
            color: #404b5b;
            font-weight: 500;
        }

        .order-content-title-box h2 {
            font-size: 18px;
            font-weight: 600;
            line-height: 40px;
            color: #14325c;
        }

    .orders-delete-basket {
        display: inline-block;
        padding: 12px 20px;
        width: 100%;
        font-weight: 600;
        font-size: 12px;
        height: 45px;
        margin-top: 6px;
    }

    .order-products .product-card .product-card__img {
        width: 124px !important;
        height: 124px !important;
        object-fit: contain;
        margin-top: 14px;
        margin-bottom: 2px;
    }

    .order-products .product-card {
        height: 150px !important;
    }

    .order-products .product-card-trash {
        bottom: 10px !important;
    }

    .order-products .product-card .quantity-area {
        top: 3px !important;
    }

    .other-products-header__title {
        font-size: 17px !important;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .order-content {
        padding: 0px;
    }

    .order-products {
        width: 65% !important;
        padding-right: 10px;
        overflow: hidden !important;
    }

    .order-payment {
        width: 35% !important;
        margin-left: 20px;
        position: relative;
        right: 4.5%;
    }
}

@media only screen and  (max-height: 640px) {

    .order-payment {
        position: relative !important;
        right: 0.5% !important;
        z-index: 1 !important;
        width: 28% !important;
    }


}

/** order products **/

.order-products {
    width: 70%;
    padding-right: 40px;
}

@media only screen and (max-width: 768px) {
    .order-products {
        width: 100%;
        padding-right: 0px;
    }

    .order-content {
        width: 100%;
        padding: 0px 0px;
        overflow: hidden;
        flex-wrap: wrap;
    }

    .order-products .product-card .text-area {
        padding: 14px 12px;
        height: 100%;
    }

    .order-products .product-card .text-area h2 {
        font-size: 12px!important;
        line-height:12px!important;

    }

    .order-products .product-card .text-area p {
        font-size: 12px!important;
        font-weight: 500!important;
        padding-bottom: 12px!important;
    }


}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .order-products .product-card .product-card__img {
        width: 113px !important;
        height: 113px !important;
    }

    .header-search-area {
        display: none !important;
    }

    .order-products .product-card {
        height: 146px !important;
    }

        .order-products .product-card .quantity-area {
            right: 1px !important;
            top: 0px !important;
        }

    .order-products .product-card-trash {
        position: absolute;
        right: -1px !important;
        bottom: 14px !important;
    }

    .order-content-title {
        margin-bottom: 18px;
    }

    .order-content-title-box {
        position: relative;
        top: -15px;
    }

        .order-content-title-box h2 {
            font-size: 20px;
        }

        .order-content-title-box p {
            font-size: 15px;
            color: #404b5b;
            font-weight: 500;
        }
}

/** order products end */

/* Product Card */
.order-products .product-card {
    display: flex;
    flex-direction: row;
    padding: 0px 0px 32px 0px;
    margin-bottom: 25px;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
    transition: transform 0.3s ease;
    height: 232px;
}

    .order-products .product-card.no-stock {
        text-align: center;
    }

    .order-products .product-card:hover {
        cursor: pointer;
        transform: scale(1.02);
    }

@media only screen and (max-width: 768px) {
    .order-products .product-card:hover {
        transform: none;
    }
}

.order-products .product-card .product-card__img {
    width: 250px;
    height: 200px;
    margin-top: 14px;
    margin-bottom: 2px;
    object-fit: contain;
}

.order-products .product-card .text-area {
    padding: 8px 12px;
    height: 100%;
}

@media only screen and (max-width:768px) {
    .order-products .product-card .text-area {
        width: 49%;
    }
}

.order-products .product-card .text-area h2 {
    color: #14325c;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 10px;
}

.order-products .product-card .text-area p {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 10px;
}

.order-products .product-card .text-area span.product-price {
    font-size: 16px;
    font-weight: 300;
    color: #14325c;
}

    .order-products .product-card .text-area span.product-price b {
        font-weight: 700;
        font-size: 17px;
    }

.order-products .product-card .product-coin-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 8px;
    top: 6px;
    width: 24px;
    height: 24px;
}

    .order-products .product-card .product-coin-area img {
        width: 24px !important;
        height: 24px;
    }

.order-products .product-card .quantity-area {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all 0.9s ease;
    z-index: 9;
}

    .order-products .product-card .quantity-area .plus-area {
        background-color: #ed1c24;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

.order-products .product-card.no-stock .quantity-area .plus-area {
    background-color: #e6e6e6;
    pointer-events: none;
}

.order-products .product-card .quantity-area .minus-area {
    background-color: #ed1c24;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
}

.order-products .product-card .quantity-area .active {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.order-products .product-card .quantity-area span {
    color: #404b5b;
    text-align: center;
    font-family: PoppinsRegular;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.order-products .product-card-trash {
    position: absolute;
    right: 9px;
    border: 0.73px solid #a0a5ad;
    border-radius: 999px;
    bottom: 60px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Card End */

/** order payment start */

.order-payment {
    width: 30%;
}

.order-payment-content {
    padding: 30px 20px;
    background: #f9fafb;
    height: auto;
    border-radius: 12px;
}

  .order-payment-content .skeleton {
        width: 70px;
        height: 30px;
        display: inline-block;
        position:relative;
        top:4px;
   }

.order-payment h2 {
    font-family: PoppinsRegular;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    color: #14325c;
    padding-bottom: 15px;
}

.order-payment ul {
    padding-left: 0px !important;
}

    .order-payment ul li {
        padding: 10px 0px 16px 0px !important;
        list-style: none;
        font-size: 14px;
        display: block;
        border-bottom: 1px solid #f1f1f1;
        /*color: #404b5b;*/
    }

        .order-payment ul li span {
            font-weight: 400;
            display: inline-block;
            width: 70%;
            letter-spacing: 0em;
        }

        .order-payment ul li b {
            font-weight: 600;
            letter-spacing: 0em;
            display: inline-block;
        }

.total-payment {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f1f1f1;
}

    .total-payment h3 {
        font-size: 20px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0em;
        text-align: left;
        color: #14325c;
    }

    .total-payment span {
        color: #14325c;
        font-family: PoppinsRegular;
        font-size: 18px;
        font-weight: 600;
        line-height: 29px;
        padding-bottom: 10px;
        display: block;
        letter-spacing: 0em;
        text-align: left;
    }

.order-payment-content .form-check-input {
    width: 30px !important;
    height: 18px !important;
    border-radius: 4px;
    border: 1px solid #abb5c4;
}

.check {
    display: flex !important;
    justify-content: space-around;
    margin-top: 15px;
    width: 382px;
}


    .check .form-check-input {
        width: 30px;
        height: 16px;
        margin-right: 3px;
    }

    .check .form-check-label {
        font-size: 13px;
        font-weight: 400;
        color: #6b7381;
        position: relative;
        top: -1px;
    }

        .check .form-check-label a {
            font-size: 13px;
            font-weight: 500;
            color: #14325c;
            text-decoration: underline;
        }

.payment-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #ed1c24;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 14px;
    font-weight: 600;
}

    .payment-btn img {
        position: absolute;
        right: 15px;
        top: 17px;
    }

    .payment-btn:hover {
        color: #fff;
    }

.payment-warning-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #ed1c24;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 14px;
    font-weight: 600;
}

    .payment-warning-btn img {
        position: absolute;
        right: 15px;
        top: 17px;
    }

    .payment-warning-btn:hover {
        color: #fff;
    }

/*.order-payment-content ul li:last-child {
    display: none;
}*/

.order-payment-mobile {
    display: none;
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .order-payment h2 {
        font-family: PoppinsRegular;
        font-size: 16px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0em;
        text-align: left;
        color: #14325c;
        padding-bottom: 15px;
    }

    .order-payment ul li span {
        font-weight: 400;
        display: inline-block;
        width: 70%;
        letter-spacing: 0em;
        font-size: 13px;
    }

    .order-payment ul li b {
        font-weight: 600;
        letter-spacing: 0em;
        font-size: 11px;
        display: inline-block;
    }

    .total-payment h3 {
        font-size: 15px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0em;
        text-align: left;
        color: #14325c;
    }

    .total-payment span {
        color: #14325c;
        font-family: PoppinsRegular;
        font-size: 15px;
        font-weight: 600;
        line-height: 29px;
        padding-bottom: 10px;
        display: block;
        letter-spacing: 0em;
        text-align: left;
    }

    .check .form-check-input {
        width: 50px !important;
        height: 18px !important;
        margin-right: 3px;
    }

    .payment-btn {
        font-size: 12px;
    }

        .payment-btn img {
            position: absolute;
            right: 13px;
            top: 15px;
        }
}

@media only screen and (max-width: 768px) {
    .order-payment {
        display: block;
        width: 100%;
        position: relative !important;
    }

    .order-payment-content {
        background: #fff;
        padding: 20px;
        height: auto;
    }

        .order-payment-content ul li:last-child {
            display: block;
        }

    .total-payment {
        display: none;
    }

    .payment-btn {
        display: none;
    }

    .order-payment-mobile {
        display: flex;
        position: fixed;
        bottom: 0px;
        z-index: 100;
        width: 100%;
        box-shadow: 1px -6px 22px 0px #0000001a;
        height: 63px;
        left: 0px;
    }

    .order-payment-text {
        width: 45%;
        background-color: #fff;
        padding: 12px 15px;
        text-align: right;
    }

        .order-payment-text h3 {
            font-size: 14px;
            color: #868686;
            padding-bottom: 3px;
            font-weight: 400;
        }

        .order-payment-text span {
            font-weight: 600;
            font-size: 16px;
            color: #14325c;
        }

    .order-payment-mobile .order-payment-btn {
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 55%;
        background-color: #ed1c24;
        color: #fff;
        text-align: center;
        font-weight: 600;
        font-size: 14px;
    }
}

/** order payment end */

/** other products **/

.other-products-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    font-family: PoppinsRegular;
}

.other-products-header__title {
    color: #14325c;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

    .other-products-header__title img {
        margin-right: 10px;
    }

.other-products-swiper-navigation {
    display: flex;
    gap: 10px;
}

    .other-products-swiper-navigation .swiper-navigation-button {
        display: flex;
        width: 56px;
        height: 56px;
        justify-content: center;
        align-items: center;
        background: white;
        box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
        border-radius: 100px;
        transform: all 0.3s ease-in-out;
    }

        .other-products-swiper-navigation
        .swiper-navigation-button.swiper-button-disabled {
            pointer-events: none;
            opacity: 0.5;
        }

        .other-products-swiper-navigation .swiper-navigation-button.swiper-button-lock {
            display: none;
        }

        .other-products-swiper-navigation .swiper-navigation-button img {
            display: block;
            width: 24px;
            height: auto;
        }

@media only screen and (max-width: 768px) {
    .other-products-header {
        margin-bottom: 24px;
    }

    .other-products-swiper-navigation {
        display: none;
    }
}

.other-products-wrapper {
    margin-bottom: 72px;
}

@media only screen and (max-width: 768px) {
    .other-products-wrapper {
        margin-bottom: 44px;
    }
}

/** order products card **/

.other-products .product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.14);
    position: relative;
    transition: transform 0.3s ease;
    height: 240px;
}

    .other-products .product-card.no-stock {
        text-align: center;
    }

    .other-products .product-card:hover {
        cursor: pointer;
        transform: scale(1);
    }

@media only screen and (max-width: 768px) {
    .other-products .product-card:hover {
        transform: none;
    }
}

.other-products .product-card .product-card__img {
    width: 100%;
    height: 132px;
    object-fit: contain;
    margin-top: 14px;
    margin-bottom: 2px;
}

.other-products .product-card .text-area {
    padding: 8px 12px;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    background: #fafafa;
    border-radius: 0 0 10px 10px;
}

    .other-products .product-card .text-area .price {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
    }

        .other-products .product-card .text-area .price img {
            height: auto;
            width: 16px;
        }

        .other-products .product-card .text-area .price .price-text {
            color: #14325c;
            font-family: PoppinsRegular;
            font-size: 13px;
            font-style: normal;
            font-weight: 600;
            line-height: 26px;
        }

.other-products .product-card .price .price-text span {
    color: #c7c7c7;
    font-size: 10px;
    font-weight: 500;
    text-decoration-line: line-through;
}

.other-products .product-card .text-area .no-stock-button {
    width: 128px;
    color: #747474;
    font-family: PoppinsRegular;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #ebebeb;
    border-radius: 8px;
    margin: 0 auto;
    margin-bottom: 9px;
}

    .other-products
    .product-card
    .text-area
    .no-stock-button.no-stock-button-stretch {
        width: 100%;
    }

.other-products .product-card .text-area .discount-badge {
    width: 128px;
    color: #00a12d;
    font-family: PoppinsRegular;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #eaffeb;
    border-radius: 8px;
    margin: 0 auto;
    margin-bottom: 9px;
}

    .other-products
    .product-card
    .text-area
    .discount-badge.discount-badge-stretch {
        width: 100%;
    }

.other-products .product-card .text-area .text-area__title {
    color: #7e7e7e;
    font-family: PoppinsRegular;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.other-products .product-card .text-area .text-area__desc {
    color: #0c4a64;
    font-family: PoppinsRegular;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
}

.other-products .product-card .product-coin-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 8px;
    top: 6px;
    width: 24px;
    height: 24px;
}

    .other-products .product-card .product-coin-area img {
        width: 24px !important;
        height: 24px;
    }

.other-products .product-card .quantity-area {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all 0.9s ease;
    z-index: 9;
}

    .other-products .product-card .quantity-area .plus-area {
        background-color: #ed1c24;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4px;
    }

.other-products .product-card.no-stock .quantity-area .plus-area {
    background-color: #e6e6e6;
    pointer-events: none;
}

.other-products .product-card .quantity-area .minus-area {
    background-color: #ed1c24;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.other-products .product-card .quantity-area .active {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.other-products .product-card .quantity-area span {
    color: #404b5b;
    text-align: center;
    font-family: PoppinsRegular;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/** order products card end **/

/** order products end **/

/** order basket empty **/

.order-products.empty {
    width: 70%;
    margin: 0px auto;
    text-align: center;
}

    .order-products.empty h2 {
        font-family: PoppinsRegular;
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 0em;
        padding-bottom: 10px;
        color: #404b5b;
    }

    .order-products.empty p {
        font-family: PoppinsRegular;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0em;
        padding-bottom: 20px;
        text-align: center;
        color: #9a9a9a;
    }

    .order-products.empty button.recycle-btn {
        height: 44px;
        padding: 12px 20px 12px 20px;
        border-radius: 999px;
        gap: 8px;
        background: #ed1c24;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        margin: 0px auto;
    }

        .order-products.empty button.recycle-btn img {
            position: relative;
            top: -1px;
            left: -4px;
        }

@media only screen and (max-width: 768px) {
    .order-products.empty {
        width: 100%;
        margin: 0px auto;
        text-align: center;
    }

        .order-products.empty h2 {
            font-family: PoppinsRegular;
            font-size: 15px;
        }

        .order-products.empty p {
            font-size: 12px;
        }

        .order-products.empty button.recycle-btn {
            font-size: 12px;
        }
}

/** order basket empty end **/

/** delivery **/

.delivery-box {
    width: 100%;
    padding: 20px 0px;
}

    .delivery-box:last-child .delivery-content {
        border-bottom: 0px;
    }

.delivery-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.delivery-title-left {
    display: flex;
}

    .delivery-title-left h2 {
        font-family: PoppinsRegular;
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0em;
        text-align: center;
        color: #0c4a64;
    }

    .delivery-title-left img {
        margin-right: 15px;
        position: relative;
        top: -8px;
    }

.delivery-content {
    width: 100%;
    padding: 16px 16px 30px 16px;
    border-bottom: 1px solid #e6e6e6;
}

@media only screen and (max-width: 768px) {
    .delivery-box {
        width: 100%;
        padding: 10px 0px;
    }

    .delivery-content {
        width: 100%;
        padding: 5px 16px 15px 16px;
        border-bottom: 0px solid #e6e6e6;
    }

    .delivery-title-left h2 {
        font-family: PoppinsRegular;
        font-size: 16px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0em;
        text-align: center;
        color: #0c4a64;
    }

    .delivery-title-left img {
        margin-right: 7px;
    }

    .delivery-content.address {
        position: relative;
        border-bottom: 0px;
        background: #f9f9f9;
        border-radius: 16px;
    }

        .delivery-content.address .editAddress {
            top: 35px !important;
            right: 24px !important;
        }

            .delivery-content.address .editAddress img {
                width: 23px;
            }
}





@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .delivery-times {
        overflow-y: scroll;
    }

    .delivery-time-box {
        flex: 0 0 auto;
    }

    .delivery-content.times .form-check-label {
        font-size: 12px !important;
    }

        .delivery-content.times .form-check-label span {
            font-size: 12px !important;
        }

    .delivery-title-left h2 {
        font-family: PoppinsRegular;
        font-size: 16px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0em;
        text-align: center;
        color: #0c4a64;
    }

    .delivery-title-left img {
        margin-right: 7px;
    }
}



.delivery-choice {
    width: 100%;
    padding: 3px 0px 16px 0px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.radio-container {
    display: flex;
    margin: 10px 0;
    position: relative;
    justify-content: flex-start;
}


.radio-input:focus {
    outline: none;
}


.radio-input:checked, .radio-input:focus {
    background-color: #ed1c24 !important;
    border-color: #ed1c24 !important;
}

.radio-label.disabled {
    opacity: 0.5;
    text-decoration: line-through;
    cursor: inherit;
}



.radio-label {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 0px;
    font-weight: 500;
    font-size: 15px;
    color: #404B5B;
    margin-left: 10px;
    margin-top: 0px;
    padding-left:30px;
}

.radio-input {
    display: none;
}

.radio-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ABB5C4;
    border-radius: 50%;
    background-color: #fff;
}

.radio-input:checked + .radio-label::before {
    border: 2px solid #ed1c24;
}

.radio-input:checked + .radio-label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: #ed1c24;
    border-radius: 50%;
}

.free-text {
    position: absolute;
    right: 0px;
    color: #A0A5AD;
    font-weight:500;
    font-size:14px;
}

.delivery-container{
    display:none;
}


.delivery-dates {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.delivery-date {
    width: 250px;
    background: #fff;
    margin-right: 10px;
    height: 32px;
    border-radius: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    border: 1px solid #E6E6E6;
    color: #404B5B;
    cursor:pointer;
}

    .delivery-date.active {
        color: #fff;
        background: #ed1c24;
    }


.delivery-content.times {
    padding: 16px 16px 0px 0px;
   
    }

/** delivery address */

.delivery-content.address {
    position: relative;
    border-bottom: 0px;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 16px;
}

    .delivery-content.address h3 {
        font-size: 14px;
        font-weight: 600;
        margin-top: 7px;
        line-height: 18px;
        letter-spacing: 0em;
        padding-bottom: 5px;
        color: #14325c;
    }

    .delivery-content.address p {
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0em;
        text-align: left;
    }

    .delivery-content.address .editAddress {
        position: absolute;
        right: 30px;
        top: 20px;
        cursor: pointer;
    }

/** delivery addres end **/

/** delivery time **/

.delivery-title-right.time {
    width: 85px;
    height: 36px;
    padding: 0px 12px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -5px;
}

.delivery-day-select {
    font-size: 13px;
    font-weight: 500;
    position: relative;
    color: #14325c;
}

    .delivery-day-select:focus {
        outline: none;
    }

.delivery-times {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.delivery-time-box {
    display: inline-block;
    padding: 7px 12px 7px 12px;
    border-radius: 999px;
    border: 1px solid #e6e6e6;
    font-size: 12px;
    font-weight: 500;
    margin: 0px 6px;
    cursor: pointer;
    color: #14325C;
    margin-bottom:10px!important;
}

    .delivery-time-box.active {
        background-color: #ed1c24;
        color: #fff;
    }

.delivery-content p {
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #404b5b;
    padding-bottom: 14px;
}

.form-check-label {
    font-family: PoppinsRegular;
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}

    .form-check-label span {
        font-size: 14px;
        font-weight: 500;
        line-height: 24px;
        color: #6b7381;
        letter-spacing: 0em;
        margin-left: 6px;
        text-align: left;
    }

    .delivery-content-info{
        display:none!important;
    }

@media only screen and (max-width: 768px) {
    .delivery-times {
        width: 100%;
        flex-wrap: wrap;
    }


    .delivery-time-box {
        display: inline-block;
        padding: 7px 12px 7px 12px;
        border-radius: 999px;
        border: 1px solid #e6e6e6;
        font-size: 12px;
        font-weight: 500;
        margin: 0px 6px;
        cursor: pointer;
        color: #14325C;
        margin-bottom: 16px;
        width:114px;
        text-align:center;
    }
        .delivery-times::-webkit-scrollbar {
            display: none;
        }

    .delivery-content.times {
        margin-bottom: 0px;
    }

        .delivery-content.times p {
            font-size: 12px;
            font-weight: 400;
            line-height: 19px;
            letter-spacing: 0em;
            border-bottom: 1px solid #e6e6e6;
            text-align: left;
            color: #404b5b;
            margin-bottom: 11px;
            padding-bottom: 14px;
        }

    .delivery-time-box {
        flex: 0 0 auto;
    }

    .form-check-label {
        font-size: 12px;
        font-weight: 500;
        color: #404b5b;
        position: relative;
        top: -2px;
    }

        .form-check-label span {
            font-size: 12px;
            font-weight: 400;
            margin-left: 0px;
            display: block;
        }
}

/** delivery time end */

/** delivery payments **/

.delivery-payments {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-bottom: 20px;
}

.delivery-payment-box {
    padding: 7px 12px 7px 12px;
    border-radius: 999px;
    border: 1px solid #e6e6e6;
    font-size: 12px;
    font-weight: 500;
    margin: 0px 6px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.payment img {
    position: relative;
    left: -2px;
    top: -1px;
}

.delivery-payment-box .active-payment {
    display: none;
}

.delivery-payment-box.active {
    background-color: #ed1c24;
    color: #fff;
}

    .delivery-payment-box.active .active-payment {
        display: block;
    }

    .delivery-payment-box.active .payment {
        display: none;
    }

    .delivery-payment-box.active svg {
        fill: #fff;
        position: relative;
        left: -3px;
        top: -1px;
    }

.payment-content {
    display: none;
}

    .payment-content.active {
        display: block;
    }

.payment-logo {
    position: relative;
    top: -1px;
}

.payment-content-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .payment-content-title h3 {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0em;
        color: #14325c;
        padding-bottom: 5px;
    }

    .payment-content-title p {
        font-family: PoppinsRegular;
        font-size: 12px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: left;
        color: #a0a5ad;
    }

    .payment-content-title a {
        font-family: PoppinsRegular;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0em;
        text-align: left;
        color: #ed1c24;
    }

    .payment-content-title span {
        font-family: PoppinsRegular;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0em;
        text-align: left;
        cursor:pointer;
        color: #ed1c24;
    }

.form-floating .form-control {
    margin-bottom: 15px;
    border-radius: 8px;
    height: 56px !important;
    padding-top: 30px !important;
    font-size: 16px !important;
    color: #404b5b !important;
    position: relative;
    border: 1px solid #e6e6e6;
    font-weight: 500 !important;
    top: 7px;
}

.form-floating label {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 18px;
    color: #a0a5ad;
    top: 6px;
    left: 12px;
}

.payment-card {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0px 14px 49px 0px #00000014;
    padding: 16px 25px;
    border-radius: 12px;
    position: relative;
    margin-bottom: 10px;
}

.card-set {
    width: 7%;
    position: absolute;
    /* right: 30px; */
    left: 90%;
    top: 33px;
    cursor: pointer;
}

    .card-set img {
        padding: 7px 9px;
        border: 1px solid rgba(0,0,0,0.3);
        border-radius: 50%;
    }


    .check.creditCard .form-check-input {
        width: 20px;
        height: 20px;
        margin-right: 0px;
        position: relative;
        top: -3px;
        border-radius: 4px;
    }

    .check.creditCard .form-check-label {
        margin-left: 2px;
    }

.form-check-input:focus {
    outline: none !important;
    box-shadow: 0px !important;
}

.form-check-input:checked {
    background-color: #ed1c24;
    border-color: #ed1c24;
}

.form-check-input {
    opacity: 1 !important;
    cursor: pointer;
}

.payment-card-radio {
    width: 3%;
    position: relative;
    left: -6px;
    top: 6px;
}

.payment-card-content {
    width: 85%;
    position: relative;
    top: 13px;
}

    .payment-card-content h2 {
        font-size: 12px;
        font-weight: 600;
        color: #14325c;
        padding-bottom: 6px;
    }

.payment-card-card-content p {
    font-size: 12px;
    color: #6b7381;
    font-weight: 500;
}

.payment-card-card-content span {
    display: inline-block;
    margin-left: 15px;
}

.payment-card-card-set {
    position: relative;
    top: 5px;
    display: flex;
    justify-content: flex-end;
}

.payment-card-set button {
    display: inline-block;
    padding: 8px 16px 8px 16px;
    border-radius: 8px;
    border: 1px solid #ed1c24;
    background-color: #fff;
    color: #ed1c24;
    font-weight: 500;
    font-size: 11px;
}

@media only screen and (max-width: 768px) {
    .delivery-box.payment {
        border-top: 12px solid#F5F6F7;
        border-bottom: 12px solid #f5f6f7;
        padding: 20px 0px;
    }

        .delivery-box.payment .delivery-title-left img {
            top: -10px;
        }

    .delivery-payments {
        overflow-y: scroll;
    }

        .delivery-payments::-webkit-scrollbar {
            display: none;
        }

    .delivery-payment-box {
        flex: 0 0 auto;
    }

    .delivery-payment-contents p {
        text-align: center;
    }

    .col-md-6.form-floating {
        width: 50%;
    }

    .payment-content-title-left p {
        display: none;
    }

    .payment-card-content {
        padding-left: 15px;
    }

        .payment-card-content p {
            text-align: left;
        }

    .payment-card-radio {
        left: -12px;
        top: 0px;
    }

        .payment-card-radio .form-check-input {
            width: 1.5em !important;
            height: 1.5em !important;
        }

    .check.creditCard {
        display: block;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .delivery-payments {
        overflow-y: scroll;
    }

    .delivery-payment-box {
        flex: 0 0 auto;
    }

    .delivery-box.payment .delivery-title-left img {
        position: relative;
        top: -10px;
    }

    .payment-content-title p {
        display: none;
    }

    .check.creditCard {
        display: block;
    }

    .payment-card-radio {
        left: -12px;
        top: 0px;
    }

        .payment-card-radio .form-check-input {
            width: 1.5em !important;
            height: 1.5em !important;
        }

    .payment-card-content {
        width: 85%;
        position: relative;
        top: 11px;
        left: 17px;
    }
}

/** delivery payments end **/

/** delivery campaigns **/

.campaign-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 18px 24px 18px 24px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    font-family: PoppinsRegular;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    background-color: #fff;
    color: #a0a5ad;
    text-align: left;
}

    .campaign-btn.selected {
        font-weight: 500;
        font-size: 16px;
        color: #14325c;
    }

        .campaign-btn.selected span img {
            position: relative;
            top: 2px;
            margin-right: 5px;
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

    .campaign-btn img {
        position: relative;
        top: 9px;
    }

@media only screen and (max-width: 768px) {
    .delivery-box.campaign {
        border-bottom: 12px solid #f5f6f7;
        padding: 20px 0px;
    }

        .delivery-box.campaign .delivery-title-left img {
            top: -10px;
        }

    .campaign-btn {
        font-size: 14px;
        font-weight: 500;
        color: #14325c;
        border: 0px;
        padding: 0px;
    }

        .campaign-btn img {
            transform: rotate(-90deg);
        }

        .campaign-btn.selected span img {
            transform: rotate(0deg);
        }

        .campaign-btn.selected {
            font-weight: 400;
            font-size: 14px;
            color: #14325c;
        }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .delivery-box.campaign {
        padding: 20px 0px;
    }

        .delivery-box.campaign .delivery-title-left img {
            top: -10px;
        }

    .campaign-btn {
        font-size: 14px;
        font-weight: 500;
        color: #14325c;
        border: 0px;
        padding: 0px;
    }

        .campaign-btn img {
            transform: rotate(-90deg);
        }

        .campaign-btn.selected span img {
            transform: rotate(0deg);
        }

        .campaign-btn.selected {
            font-weight: 400;
            font-size: 14px;
            color: #14325c;
        }
}

/** delivery campaigns end **/

/** modals **/

.modal.show {

    top: 0%;
}

#deleteModal {
    top: 27% !important;
}

@media only screen and (max-width:769px){
    #deleteModal {
        top: 0% !important;
    }
}

.modal-body-content {
    width: 50%;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    padding: 32px 30px !important;
    border-radius: 18px;
}

.card-modal {
    width: 100%;
    height: 100vh;
    background-color: #00000073;
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}




    .card-modal .modal-body-content {
        width: 439px;
        padding: 22px 12px;
    }

.card-modal-header {
    position: relative;
    top: -15px;
}

    .card-modal-header .close-modal {
        right: 0px;
        top: 0px;
        background-color: #fff;
    }

.close-modal {
    position: absolute;
    top: 20px;
    right: 50px;
    cursor: pointer;
}

.card-modal-header h2 {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    color: #14325c;
}

.mobile-close-modal {
    position: relative;
}

    .mobile-close-modal::before {
        display: block;
        content: "";
        position: absolute;
        top: -20px;
        width: 30%;
        margin: 0px auto;
        left: 35%;
        height: 4px;
        background: #d3d3d3;
    }

.promotion-code {
    width: 100%;
    position: relative;
}

.form-control.code {
    width: 100%;
    border-radius: 8px;
    padding: 8px 16px;
    border: 1px solid #e6e6e6;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
    height: 56px;
}

.promotion-code img {
    position: absolute;
    right: 20px;
    top: 21px;
}

@media only screen and (max-width: 768px) {
    .card-modal-header .close-modal {
        display: block;
        top: -16px;
    }

    .address-modal .close-modal {
        display: none;
    }

    .card-modal {
        justify-content: center;
        align-items: flex-end !important;
    }

    .card-modal-header {
        top: 2px !important;
        margin-bottom: 14px;
    }

    .mobile-close-modal {
        position: relative;
        display:none;
    }

        .mobile-close-modal::before {
            display: block;
            content: "";
            position: absolute;
            top: -20px;
            width: 30%;
            margin: 0px auto;
            left: 35%;
            height: 4px;
            background: #d3d3d3;
        }

        .mobile-close-modal::after {
            display: block;
            content: "";
            position: absolute;
            top: -20px;
            width: 30%;
            margin: 0px auto;
            left: 35%;
            height: 4px;
            background: #d3d3d3;
        }

    .card-modal .modal-body-content {
        width: 100% !important;
        padding: 22px 12px;
        border-radius: 0px;
    }
}

/** campaign-modal **/

.campaign-box {
    width: 100%;
    /*display: flex;*/
    justify-content: space-between;
    height: auto;
    padding: 12px 20px 12px 20px;
    border-radius: 12px;
    box-shadow: 0px 14px 49px 0px #00000014;
    margin-bottom: 10px;
    display: block
}

.campaign-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    width: 70%;
    letter-spacing: 0px;
    text-align: left;
}

.campaign-select-btn {
    min-width: 76px;
    height: 34px;
    text-align: center;
    color: #fff;
    background-color: #ed1c24;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
}

.modal-campaign-footer {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #14325c;
    padding: 30px 0px 0px 0px;
    cursor: pointer;
}

/** campaign-modal end **/

/** delete card modal **/
.statu-card-modal {
    width: 100%;
    text-align: center;
    padding: 32px 10px;
}

.card-modal .mobile-close-modal::before {
    display: none;
}

.statu-card-modal img {
    position: relative;
    top: -20px;
}

.statu-card-modal h3 {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
    color: #14325c;
}

.statu-card-modal p {
    font-size: 14px;
    color: #404b5b;
    font-weight: 500;
}

.statu-card-modal .statu-card-buttons {
    width: 100%;
    position: relative;
    top: 25px;
    left: 5px;
}

.statu-card-buttons button {
    width: 100%;
    margin-right: 12px;
    padding: 14px 0px !important;
    border-radius: 10px;
    height: 50px;
    background-color: #ed1c24;
    color: #fff;
}

/** delete card modal end */

/** modals end **/

/** delivery end **/

/** scroll **/
.delivery-payments::-webkit-scrollbar {
    display: none;
}

.delivery-times::-webkit-scrollbar {
    display: none;
}


/** credit cards **/

.order-content-title.creditCards {
    padding-bottom: 30px;
}

.order-content-title h2 {
    font-size: 20px;
    position: relative;
    top: 5px;
}

@media(max-width:768px) {
    .order-content-title.creditCards {
        padding-bottom: 30px;
        display: none;
    }
}

.profile-settings-cards {
    width: 100%;
    display: flex;
}

.profile-card {
    width: 33%;
    display: flex;
    justify-content: flex-start;
    margin: 0px 4px;
    box-shadow: 0px 14px 49px 0px #00000014;
    padding: 16px;
    border-radius: 12px;
}

.card-radio {
    width: 5%;
    position: relative;
    left: -6px;
    top: 6px;
}

.card-logo {
    width: 20%;
}

    .card-logo img {
        width: 38px;
        position: relative;
        top: 5px;
    }

.card-content {
    width: 68%;
}

    .card-content h2 {
        font-size: 12px;
        font-weight: 600;
        color: #14325c;
        padding-bottom: 6px;
    }

    .card-content p {
        font-size: 12px;
        color: #6b7381;
        font-weight: 500;
    }

    .card-content span {
        display: inline-block;
        margin-left: 15px;
    }



.profile-card.cardWallet {
    width: 100%;
    display: none;
}

.cardWallet .addCard {
    font-family: PoppinsRegular;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    left: 15px;
    top: 7px;
    line-height: 18px;
    letter-spacing: 0px;
    text-align: left;
    color: #14325c;
}

.continueSelectedCard {
    width: 221px;
    height: 48px;
    padding: 8px 30px 8px 30px;
    border-radius: 999px;
    background-color: #ed1c24;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin: 0px auto;
    position: relative;
    top: 50px;
    display: none;
}

@media only screen and (max-width: 768px) {
    .chooseAddress {
        position: relative;
        right: 0px;
        cursor: pointer;
        display: flex;
        width: 100%;
        top: 13px;
        text-align: center;
        justify-content: center;
    }

    .continueSelectedCard {
        display: block;
    }

    .profile-card.cardWallet {
        display: flex;
    }

    .chooseAddress span {
        display: none;
    }

    .profile-settings-cards {
        flex-wrap: wrap;
    }

    .chooseAddress p {
        color: #14325c;
        font-size: 14px;
        position: relative;
        top: 9px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .profile-card {
        width: 100%;
        margin: 0px 0px;
        padding: 15px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
}

.card-buttons {
    width: 100%;
    margin-top: 10px;
    position: relative;
    top: 10px;
}

    .card-buttons button {
        width: 100%;
        display: block;
    }

    .card-buttons span {
        width: 100%;
        display: block;
        cursor: pointer;
    }

.delete-card-buttons button {
    width: 44% !important;
}

.delete-card {
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    font-weight: 500;
    color: #ed1c24;
    margin-bottom: 10px;
}

.save-card {
    font-size: 14px;
    border-radius: 10px;
    color: #fff;
    background-color: #ed1c24;
    padding: 14px 0px;
    text-align: center;
}

#cardSetModal .close-modal {
    position: absolute;
    top: -2px;
    right: 0px;
    cursor: pointer;
}

    #cardSetModal .close-modal img {
        width: 40px;
    }

.modal-cards {
    width: 100%;
    display: flex;
    padding-bottom: 10px;
}

.modal-card-box {
    margin-right: 10px;
    display: inline-block;
    text-align: center;
    padding: 7px 12px;
    background-color: #fff;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid #e6e6e6;
}

    .modal-card-box span {
        font-size: 12px;
        font-weight: 500;
        color: #14325c;
    }

    .modal-card-box svg {
        fill: #ed1c24;
    }

    .modal-card-box.active {
        background-color: #ed1c24;
    }

        .modal-card-box.active span {
            color: #fff;
        }

        .modal-card-box.active svg {
            fill: #fff !important;
        }

/** delete card modal **/
.delete-card-modal {
    width: 100%;
    text-align: center;
    padding: 32px;
}

    .delete-card-modal img {
        position: relative;
        top: -20px;
    }

    .delete-card-modal h3 {
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 10px;
        color: #14325c;
    }
    .delete-card-modal p {
        font-size: 14px;
        color: #404b5b;
        font-weight: 500;
    }

    .delete-card-modal .delete-card-buttons {
        width: 100%;
        position: relative;
        top: 25px;
        left: 5px;
    }

.delete-card-buttons button {
    width: 45%;
    margin-right: 12px;
    padding: 14px 0px !important;
    border-radius: 10px;
    height: 50px;
}

.delete-card-buttons .cancel-card {
    border: 1px solid #ed1c24;
    color: #ed1c24;
    background-color: #fff;
}

.delete-card-buttons .save-card {
    padding: 14px 0px !important;
}

/*** delete card modal end ***/

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .profile-settings-cards {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .profile-card {
        width: 100%;
        margin-bottom: 21px !important;
        display: flex;
        justify-content: flex-start;
        margin: 0px 4px;
        box-shadow: 0px 14px 49px 0px #00000014;
        padding: 16px;
        border-radius: 12px;
    }
}
/* Progressbar */

/* Form */

.form-step-text {
    width: 80%;
    margin: 0px auto;
    text-align: center;
    padding-bottom: 15px;
}

    .form-step-text p {
        color: #9b9b9b;
        font-weight: 400;
        font-size: 15px;
    }

.form-step {
    display: none;
    transform-origin: top;
    /*animation: animate 0.5s;*/
}

.form-step-active {
    display: block;
}

/* Button */

/** 2fac **/
.input-otp {
    width: 14%;
    height: 60px;
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 9px;
    margin: 0 4px;
    text-align: center;
    font-size: 25px;
    color: #6b7381;
}
    /*.input-otp:focus {
        color: #ED1C24;
    }*/

    /* hide spinner */
    .input-otp::-webkit-outer-spin-button,
    .input-otp::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

#otpInputs input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

#otpInputs input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

#timer {
    text-align: center;
    margin-top: 10px;
    color: #9b9b9b;
    font-size: 16px;
    position: relative;
    top: 9px;
}

.again {
    color: #ed1c24;
    font-weight: 700;
}

/** modal **/

@media (min-width: 414px) and (max-width: 768px) {

    .input-otp {
        width: 13%;
        height: 41px;
        border: none;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 9px;
        margin: 0 4px;
        text-align: center;
        font-size: 25px;
        cursor: not-allowed;
        pointer-events: none;
    }
}

@media (max-width: 413px) {

    .input-otp {
        width: 12%;
        height: 41px;
        border: none;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 9px;
        margin: 0 4px;
        text-align: center;
        font-size: 25px;
        cursor: not-allowed;
        pointer-events: none;
    }
}

#2fac .inputs {
    display: flex;
    justify-content: center;
}

.phone-number-text {
    font-weight: 600;
}

.input-otp:focus-visible {
    outline: #475467;
}

#sendAgainArea {
    display: none;
    text-align: center;
    margin-top: 10px;
    color: #9b9b9b;
    font-size: 16px;
    position: relative;
    top: 9px;
}

.input-otp {
    pointer-events: auto !important;
}


#next2Fac {
    text-align: center;
    margin-top: 30px !important;
    display: block;
    background-color: #ed1c24;
    color: #fff;
    text-decoration: none;
    border: 0px;
    outline: none;
    width: 95% !important;
    margin: 0px auto;
    padding: 15px 0px;
    border-radius: 13px;
}

.modal-card-buttons {
    width: 100%;
    display: flex;
    justify-content: space-around;

    position: relative;
    top: 23px;
}

    .modal-card-buttons button {
        background: #ed1c24;
        color: #fff;
        width: 42%;
        margin-right: 1%;
        padding: 7px;
        border-radius: 99px;
    }

    .modal-cancel{
        background:#fff!important;
        color:#ed1c24!important;
        border:1px solid #ed1c24;
        margin-right:8px;
    }

.mobile-close-modal {
    position: relative;
    top: 9px;
    display:none;
}

@media only screen and (max-width:768px){
    .mobile-close-modal {
        position: relative;
        top: 9px;
        display: none;
    }
}

#campaignsContent .code {
    margin-top: 14px;
    margin-bottom: 0;
}

.campaign-select-btn[data-selector-type="select"] {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-bottom: auto;
    margin-top: auto;
    right: 14px;
    color: #ed1c24;
    background: white;
    border: 1px solid #ed1c24;
    border-radius: 10px;
}

.remove-campaign {
    margin-left: 14px;
    cursor: pointer;
}

#completeOrderResult .order-products .product-card .product-card__img {
    width: 100px;
    height: 100px;
}

#completeOrderResult .order-products .product-card {
    height: 152px;
    padding: 25px 0px 25px 14px;
}

.error-msg {
    display: none;
    color: red;
    padding-top: 11px;
    display: block;
    padding-left: 3px;
    position: relative;
}



.sodexo_get_btn {
    background: #ed1c24;
    color: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

    .sodexo_get_btn:hover {
        color: #fff;
        text-decoration: none;
    }

.form-switch {
    display: flex;
    width: 100%;
    padding-left: 16px;
}

.form-check-name {
    min-width: 100px;
    color: #14325c;
    font-size: 16px;
    font-weight: 500;
}

.form-check-label {
    font-size: 14px;
    color: #14325c;
    font-weight: 500;
    margin-right: 23px;
}

.form-switch .form-check-input {
    width: 2em;
    padding: 10px 21px;
    order: 2;
    margin-left: 0em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    position: relative;
    background-color: #d6d8e7;
    border-color: #d6d8e7;
    top: -3px;
    transition: background-position 0.15s ease-in-out;
    left:-10px;
}

.form-check-input:focus {
    outline: none !important;
    /*border: 0px;*/
    box-shadow: 0px !important;
}

.form-check-input:checked {
    background-color: #ed1c24;
    border-color: #ed1c24;
}

#completeOrderResult .order-payment-mobile{
    display:none;
}


#nxmDialogModal {
    top: 0 !important;
}

.empty-content-message {
    background: #ffa5008c;
    padding: 6px 14px;
    border-radius: 7px;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

.text-area__desc {
    color: #0c4a64;
    font-family: PoppinsRegular;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
}

.close-modal img {
    width: 15px !important;
}

.mostReadWrapperItem {
    padding-bottom: 21px;
}

.modal-campaign-footer {
    display: none;
}

.payment-cart-save-btn {
    background: #fff;
    color: #ed1c24;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid red;
    width: 246px;
    margin-top: 11px;
    margin-left: 2rem;
}

    .payment-cart-save-btn:focus {
        box-shadow: none;
    }

.contact-form {
    margin-top: 24px;
}

    .contact-form .form-group {
        margin-bottom: 16px;
    }

        .contact-form .form-group .form-control {
            box-shadow: none !important;
            padding: 18px 24px;
            border: 1px solid #e6e6e6;
            background: white;
            border-radius: 100px;
            color: #14325c;
            font-family: PoppinsRegular;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
        }

        .contact-form .form-group .form-control {
            box-shadow: none !important;
        }

    .contact-form .form-button {
        width: 100%;
        text-align: center;
        background: #ed1c24;
        border-radius: 100px;
        padding: 16px 24px;
        color: #fff;
        font-family: PoppinsRegular;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        transition: all 0.3s ease-in-out;
        margin-top: 8px;
    }

        .contact-form .form-button:hover {
            background: #fa4349;
        }

@media only screen and (max-width: 768px) {
    .contact-form .form-group .form-control {
        font-size: 14px;
    }

    .contact-form .form-button {
        font-size: 14px;
    }
}


.order-promotion-code {
    width: 85%;
    display: flex;
    justify-content: space-between;
    padding: 18px 24px 18px 24px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    font-family: PoppinsRegular;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    background-color: #fff;
    color: #a0a5ad;
    text-align: left;
}

.promotion-code-apply-btn {
    border-radius: 10px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    width: 111px;
    transition: all .2s ease-in-out;
    border: 1px solid #ed1c24;
    color: #ed1c24
}
.promotion-code-apply-btn:hover {
    background: #ed1c24;
    color: #fff;
}
.promotion-code-apply-btn.active {
    border: 1px solid #14325C !important;
    color: #14325C !important;
}
.promotion-code-apply-btn.active:hover {
    color: #fff !important;
    background: #14325C !important;
}

.payment-code-validation {
    display: none;
    font-size: 15px !important;
    color: #ed1c24 !important;
    font-weight: 500 !important;
}