.cart-page{
    /*font-family: none;*/
}
.cart-page .title{
    margin-bottom: 5vh;
}
.cart-page .card{
    margin: auto;
    width: 100%;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 1rem;
    border: transparent;
}
@media(max-width:767px){
    .cart-page .card{
        margin: 3vh auto;
    }
}
.cart-page .cart{
    background-color: #fff;
    padding: 4vh 5vh;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
}
@media(max-width:767px){
    .cart-page .cart{
        padding: 4vh;
        border-bottom-left-radius: unset;
        border-top-right-radius: 1rem;
    }
}
.cart-page .summary{
    background-color: #ddd;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 4vh;
    color: rgb(65, 65, 65);
}
@media(max-width:767px){
    .cart-page .summary{
        border-top-right-radius: unset;
        border-bottom-left-radius: 1rem;
    }
    .login-fields-container{
        margin: 0 !important;
    }
}
.cart-page .summary .col-2{
    padding: 0;
}
.cart-page .summary .col-10
{
    padding: 0;
}
.cart-page .row{
     margin: 0;
 }
.cart-page .title b{
    font-size: 1.5rem;
}

.login-fields-container{
    margin: 0px 120px;
}
.cart-page .main{
    margin: 0;
    padding: 2vh 0;
    width: 100%;
}
.cart-page .col-2, .cart-page .col{
    padding: 0 1vh;
}
.cart-page .close{
    margin-left: auto;
    font-size: 0.7rem;
}
.cart-page img{
    width: 3.5rem;
}
.cart-page .back-to-shop{
    margin-top: 4.5rem;
}
.cart-page h5{
    margin-top: 4vh;
}
.cart-page hr{
    margin-top: 1.25rem;
}
.cart-page form{
    padding: 2vh 0;
}
.cart-page select{
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1.5vh 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}
.cart-page input:focus::-webkit-input-placeholder
{
    color:transparent;
}
.cart-page #code{
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.253) , rgba(255, 255, 255, 0.185)), url("https://img.icons8.com/small/16/000000/long-arrow-right.png");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center;
}


.checkout-page .form-section {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.checkout-page .order-summary {
    /*background: #fff;*/
    /*border-radius: 8px;*/
    /*padding: 25px;*/
    /*box-shadow: 0 1px 3px rgba(0,0,0,0.08);*/
    background-color: #ddd;
    /*border-top-right-radius: 1rem;*/
    /*border-bottom-right-radius: 1rem;*/
    border-radius: 1rem;
    padding: 4vh;
    color: rgb(65, 65, 65);
}
.checkout-page .summary-img {
    width: 60px;
    border-radius: 6px;
}
.checkout-page .pay-btn {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
}
.checkout-page .pay-btn:hover {
    background-color: #222;
}
.checkout-page .section-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.checkout-page .payment-option {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
}
.checkout-page .payment-option.active {
    border-color: #000;
    background-color: #f3f3f3;
}

.checkout-page .option-card {
    cursor: pointer;
    transition: all .2s ease;
}
.checkout-page .option-card:hover {
    border-color: var(--site-primary-color-1);
    background: #f8f9ff;
}
.checkout-page .option-card input:checked + span {
    font-weight: 600;
    color: var(--site-primary-color-1);
}
.checkout-page .option-card input:checked {
    border-color: var(--site-primary-color-1);
}
