body{
    background-color: #f1f3f6;
}

.whatapp-new-icon,
.go-top,
.main-header-after,
header,
footer
{
display: none;
}


/* --- */
.check-out-header{
    background: #141A4E;
    background-image: linear-gradient(90deg, #141A4E,  #E31E24 );
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 1024;
}

.check-out-header .coh-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: auto;
    position: relative;
}

.check-out-header .coh-inner .coh-logo{
    width: 140px;
}

.check-out-header .coh-inner .coh-back-icon{
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    display: flex;
    height: 40px;
    justify-content: center;
    left: 10px;
    padding: 8px;
    position: absolute;
    top: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    width: 40px;
}

.check-out-header .coh-inner .coh-back-icon svg{
    left: -1px;
    position: relative;
}

.check-out-header .coh-inner .coh-back-icon:hover{
    color: #a03042;
    background-color: rgba(255, 255, 255, 1);
}
/* --- */


/* --- */
.check-out-body{
    margin-top: 40px;
}

.check-out-body .cob-inner{
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    gap: 15px;
}

.check-out-body .cob-inner .cob-left{
    flex: 0 0 768px;
}

.check-out-body .cob-inner .cob-right{
    flex: 0 0 360px;
    height: fit-content;
    position: sticky;
    top: 100px;
}


.cob-common-box{
    background-color: white;
    box-shadow: 2px 2px 4px #00000017;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.cob-common-box .cob-heading{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #878787;
    font-weight: 500;
    background-color: white;
}

.cob-common-box .cob-heading .cob-h-num{
    width: 20px;
    height: 20px;
    font-size: 12px;
    color: #a03042;
    background-color: #f0f0f0;
    border-radius: 2px;
    /* padding: 3px 7px; */
    vertical-align: baseline;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cob-common-box .cob-heading svg{
    width: 18px;
    height: 18px;
    color: #a03042;
    margin-left: -4px;
}

.cob-common-innre{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-right: 15px;
}

.cob-common-box.cob-current .cob-heading{
    color: white;
    background: #141a4d;
    background-image: linear-gradient(90deg, #141a4d, #3744b9);
}

.cob-common-box .cob-data-bx{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: black;
    font-weight: 400;
    font-size: 14px;
    padding: 0px 15px 15px;
    margin-top: -2px;
}

.cob-common-box .cob-data-bx span{
    font-weight: 500;
}

.cob-change-btn{
    cursor: pointer;
    width: fit-content;
    border: none;
    color: #a03042;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    background: white;
    border-radius: 5px;
    padding: 8px 15px;
    background-size: 200%;
    background-position: center left;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.cob-change-btn:hover{
    color: white;
    border-color: #a03042;
    background-color: #a03042;
}

.checkout-group-btns{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.checkout-common-btn{
    width: fit-content;
    border: none;
    color: white;
    font-size: 14px;
    background: #141a4d;
    border-radius: 5px;
    padding: 10px 15px;
    background-image: linear-gradient(90deg, #141a4d, #3744b9);
    background-size: 200%;
    background-position: center left;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.checkout-common-btn:hover{
    background-position: center right;
}

.checkout-cancel-btn{
    width: fit-content;
    border: none;
    color: #a03042;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    padding: 10px 15px;
    background: transparent;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.checkout-cancel-btn:hover{
    background-color: rgba(160, 48, 67, 0.1);
}
/* --- */


/* --- */
.cob-login-form{
    background-color: #fff;
    padding: 15px;
}

.cob-login-form .row{
    max-width: 450px;
    width: 1005;
    margin: auto;
}

/* --- */


/* --- */
.cob-address-bx .cob-address-item{
    cursor: pointer;
    position: relative;
    padding: 15px;
    padding-left: 40px;
    padding-right: 70px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-bottom: 1px solid #f0f0f0;
}

.cob-address-bx .cob-over-layer{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cob-address-bx .cob-address-item:last-child{
    border-bottom: none;
}

.cob-address-bx .cob-address-item .cob-ai-inner{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cob-address-bx .cob-address-item .cob-ai-inner .c-address-name{
    color: black;
    font-weight: 500;
    font-size: 14px;
    margin-right: 10px;
}

.cob-address-bx .cob-address-item .cob-ai-inner .c-address-number{
    color: black;
    font-weight: 500;
    font-size: 14px;
}

.cob-address-bx .cob-address-item .c-address-bx{
    color: black;
    font-weight: 400;
    font-size: 14px;
}

.cob-address-bx .cob-address-item .c-address-icon{
    border: 2px solid #878787;
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px #0000;
    cursor: pointer;
    display: inline-flex;
    height: 18px;
    width: 18px;
    left: 15px;
    position: absolute;
    top: 16px;
    padding: 2px;
    transition: .3s ease-in-out;
}

.cob-address-bx .cob-address-item .c-address-icon .cai-inner {
    background-color: #a03042;
    border-radius: 50%;
    height: 100%;
    transform: scale(0);
    transition: all .1s ease-in-out;
    width: 100%;
}

.cob-address-bx .cob-address-item .c-address-btns{
    display: none;
    position: absolute;
    right: 15px;
    top: 15px;
}

.cob-address-bx .cob-address-item .c-address-btns .c-address-edit{
    position: relative;
    z-index: 2;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #d7807b;
    padding: 5px;
    transition: all .1s ease-in-out;
}

.cob-address-bx .cob-address-item .c-address-btns .c-address-edit:hover{
    color: #a03042;
}

.cob-address-bx .cob-address-item .checkout-common-btn{
    display: none;
    position: relative;
    z-index: 2;
}

.cob-address-bx .cob-address-item.address-selected{
    background-color: #f5faff;
}

.cob-address-bx .cob-address-item.address-selected .c-address-icon {
   border-color: #a03042;
}

.cob-address-bx .cob-address-item.address-selected .c-address-icon .cai-inner {
    transform: scale(1);
}

.cob-address-bx .cob-address-item.address-selected .c-address-btns{
    display: flex;
}

.cob-address-bx .cob-address-item.address-selected .checkout-common-btn{
    display: block;
}

.cob-address-bx .add-address-item{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #a03042;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 15px;
    cursor: pointer;
}

.cob-address-bx .add-address-item svg{
    width: 24px;
    height: 24px;
}

.cob-address-bx .add-address-item:hover{
    background-color: #f5faff;
}

.cob-address-form{
    background-color: #f5faff;
    padding: 15px;
}

.cob-address-form-label{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a03042;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 0px;
    cursor: pointer;
    margin-bottom: 5px;
}

.cob-address-form-label svg{
    width: 24px;
    height: 24px;
}
/* --- */


/* --- */
.cob-payment-op-bx .cpop-item{
    cursor: pointer;
    position: relative;
    padding: 15px;
    padding-left: 40px;
    padding-right: 70px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-bottom: 1px solid #f0f0f0;
    color: #878787;
    font-weight: 500;
    font-size: 14px;
}

.cob-payment-op-bx .cpop-item .cpop-icon{
    border: 2px solid #878787;
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px #0000;
    cursor: pointer;
    display: inline-flex;
    height: 18px;
    width: 18px;
    left: 15px;
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    padding: 2px;
    transition: .3s ease-in-out;
}

.cob-payment-op-bx .cpop-item .cpop-icon .cpop-inner {
    background-color: #a03042;
    border-radius: 50%;
    height: 100%;
    transform: scale(0);
    transition: all .1s ease-in-out;
    width: 100%;
}

.cob-payment-op-bx .cpop-item.selected-payment {
    background-color: #f5faff;
}

.cob-payment-op-bx .cpop-item.selected-payment .cpop-icon {
    border-color: #a03042;
}

.cob-payment-op-bx .cpop-item.selected-payment .cpop-icon .cpop-inner {
    transform: scale(1);
}
/* --- */



/* --- */
.check-out-footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 15px;
    background-color: white;
    display: none;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
}

.check-out-footer .cof-left .cof-label{
    font-weight: 400;
    font-size: 12px;
    color: #878787;
    margin: 0px;
}

.check-out-footer .cof-left .cof-amount{
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.check-out-footer .cof-left .cof-amount::first-letter{
    font-family: 'Roboto';
    font-size: 19px;
}

.check-out-footer .cof-left .cof-amount svg{
    width: 18px;
    height: 18px;
    color: #a03042;
    position: relative;
    top: -1px;
}


.check-out-footer .cof-right .checkout-common-btn{
    padding: 8px 15px;
    margin-left: auto;
    display: block;
    min-width: 130px;
}

.check-out-footer .cof-right .cof-discount-btn{
    font-weight: 400;
    font-size: 12px;
    color: #a03042;
    margin: 0px;
    text-align: center;
    margin-top: 5px;
}
/* --- */



/* --- --- */
@media screen and (max-width:1200px) {
    .check-out-body .cob-inner .cob-left{
        flex: 0 1 auto;
    }    
}

@media screen and (max-width:992px) {
    .check-out-body{
        padding-bottom: 80px;
    }

    .check-out-body .cob-inner{
        flex-direction: column;
    }
    
    .check-out-body .cob-inner .cob-left{
        flex: inherit;
        width: 100%;
    }
    
    .check-out-body .cob-inner .cob-right{
        flex: inherit;
        width: 100%;
        position: static;
        top: inherit;
    }

    .check-out-footer{
        display: flex;
    }
    
}


@media screen and (max-width:576px) {
    .cob-address-bx .cob-address-item{
        padding-right: 15px;
    }

    .cob-common-innre{
        flex-direction: column;
        padding: 0;
    }

    .cob-common-innre > div{
        width: 100%;
    }
    .cob-common-innre .cob-change-btn{
        width: fit-content;
        margin-left: auto;
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .cob-common-box .cob-data-bx{
        padding-bottom: 0;
    }

    .cob-address-bx .cob-address-item .c-address-btns{
        top: inherit;
        bottom: 15px;
    }
    
}
/* --- --- */