/* CSS Document */
@import url("fonts.css"); /* Page layout styles */
@import url("login.css"); /* Login styles */
@import url("alert-box.css"); /* Alert box styles */
@import url("custom.css"); /* Custom styles */
@import url("header.css"); /* Header styles */
@import url("msg-box.css"); /* Footer styles */
@import url("footer.css"); /* Footer styles */
@import url("color-codes.css"); /* Standard Color styles */
@import url("tabs.css"); /* Standard Color styles */
@import url("containers.css"); /* Standard Color styles */
.cart-wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.cart-items-wrap{
    width: 100%;
    max-width: 1000px;
    padding: 10px;
}
.cart-others-wrap{
    width: 100%;
    max-width: 400px;
}
.cart-total-wrap{
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}
.cart-total-title{
    width: 100%;
    font-size: 1.4em;
    font-weight: 600;
    text-align: left;
}
.cart-total-cont{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-content: space-between;
}
.cart-total-label{
    display: inline-block;
    font-size: 1.3em;
    font-weight: 600;
    padding: 10px 0px;
}
.cart-total-value{
    display: inline-block;
    font-size: 2.0rem;
    color:#932D12;
    font-weight: 600;
}
.cart-total-currency{
    font-size: 0.5rem;
}
.cart-checkout-btn-cont{
    width: 100%;
    padding: 10px;
}
.cart-checkout-btn{
    width: 100%;
    border-radius: 30px;
    height: 40px;
    display: inline-block;
    border: none;
    font-size: 1.2rem;
    line-height: 1.0rem;
    padding: 8px 20px;
    color: #fff;
    margin-right: 30px;
    background-color: #57B4BA;
    transition: all linear 200ms;
    cursor: pointer;
}
.cart-checkout-btn:hover{
    background-color: #368C8E;
    transition: all linear 200ms;
}
.cart-items-summary{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #ebfcfc;
    background-color: #fff;
    margin-bottom: 20px;
}
.cart-items-summary-details{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.cart-items-title{
    font-weight: 600;
    font-size: 1.5rem;
    color: #000;
    text-align: left;
}
.cart-items-count{
    font-weight: 600;
    font-size: 1.5rem;
    color: #000;
    text-align: right;
}
.cart-items-list{
    width: 100%;
    padding: 20px 5px;
    background-color: #fff;
}
.cart-item{
    width: 100%;
    display: flex;
    flex-direction: row;
    border-bottom: solid 1px #efefef;
    padding: 20px 0px;
    margin-bottom: 10px;
}
.cart-item:last-child{
    border-bottom: solid 1px transparent;
}
.ci-selector-cont{
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.ci-selector-cont input {
    position: absolute;
    cursor: pointer;
    height: 20px;
    width: 20px;
    accent-color: #C64F27;
    left:0;
    top:0;
}
/* .ci-checkmark{
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    
}
.ci-selector-cont:hover input ~ .ci-checkmark {
    background-color: #ccc;
}

.ci-selector-cont input:checked ~ .ci-checkmark {
    background-color: #57B4BA;
}

.ci-selector-cont:after {
    content: "";
    position: absolute;
    display: none;
}

.ci-selector-cont input:checked ~ .ci-checkmark:after {
    display: block;
}

.ci-selector-cont .ci-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
} */
.ci-photo-cont{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}
.ci-photo{
    width: 100%;
    position: absolute;
    height: 100%;
    top:0;
    left:0;
}
.ci-details{
    width: calc(100% - 50px - 30px);
}
.ci-title-cont{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: space-between;
}
.ci-product-title-var-cont{
    width: calc(100% - 60px);
    padding: 0px 5px;
}
.ci-product-name{
    width: 100%;
    font-weight: 600;
    font-size: 1.0rem;
    line-height: 1.0rem;
    
}
.ci-product-variant{
    width: auto;
    border-radius: 30px;
    background-color: #efefef;
    padding: 2px 20px;
    margin: 10px;
    color:#3e4242;
    font-size: 0.675rem;
    display: inline-block;
}
.ci-action-btns{
    width: 50px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-content: flex-end;
    gap:10px;
}
.ci-action-btns div{
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
}
.ci-action-btns div svg{
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    fill:#555;
}
.ci-action-btns div:hover svg{
    fill:#C64F27;
}
.ci-price-details{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 10px;
}
.ci-price{
    width: auto;
    color:#C64F27;
}
.ci-currency{
    font-size: 0.5rem;
}
.ci-price-value{
    font-size: 1.5rem;
    font-weight: 600;    
}
.ci-quantity-cont{
    width: 100px;
    display: flex;
    flex-direction: row;
}
.ci-quantity-btn{
    width: 25px;
    height: 25px;
    position: relative;
    cursor: pointer;
}
.ci-quantity-btn svg{
    width: 100%;
    height: 100%;
    position: absolute;
    fill:#555;
}
.ci-quantity-btn svg:hover{
    fill:#57B4BA;
}
.ci-quantity-input{
    margin: 0 4px;
    height: 25px;
    width: 32px;
    background-color: #fff;
    border: none;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
    outline: 0;
    color: #191919;
    font-weight: 700;
}
@media screen and (min-width:600px) {
    .cart-wrap{
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .cart-items-wrap{
        width: 100%;
        max-width: 1000px;
        padding: 10px;
    }
    .cart-others-wrap{
        width: 100%;
        max-width: 400px;
    }
    .cart-total-wrap{
        width: 100%;
        background-color: #fff;
        border-radius: 5px;
        padding: 10px;
        margin-bottom: 20px;
    }
    .cart-total-title{
        width: 100%;
        font-size: 1.4em;
        font-weight: 600;
        text-align: left;
    }
    .cart-total-cont{
        width: 100%;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-content: space-between;
    }
    .cart-total-label{
        display: inline-block;
        font-size: 1.3em;
        font-weight: 600;
        padding: 10px 0px;
    }
    .cart-total-value{
        display: inline-block;
        font-size: 2.0rem;
        color:#932D12;
        font-weight: 600;
    }
    .cart-total-currency{
        font-size: 0.5rem;
    }
    .cart-checkout-btn-cont{
        width: 100%;
        padding: 10px;
    }
    .cart-checkout-btn{
        width: 100%;
        border-radius: 30px;
        height: 40px;
        display: inline-block;
        border: none;
        font-size: 1.2rem;
        line-height: 1.0rem;
        padding: 8px 20px;
        color: #fff;
        margin-right: 30px;
        background-color: #57B4BA;
        transition: all linear 200ms;
        cursor: pointer;
    }
    .cart-checkout-btn:hover{
        background-color: #368C8E;
        transition: all linear 200ms;
    }
    .cart-items-summary{
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        background-color: #ebfcfc;
        background-color: #fff;
        margin-bottom: 20px;
    }
    .cart-items-summary-details{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .cart-items-title{
        font-weight: 600;
        font-size: 1.5rem;
        color: #000;
        text-align: left;
    }
    .cart-items-count{
        font-weight: 600;
        font-size: 1.5rem;
        color: #000;
        text-align: right;
    }
    .cart-items-list{
        width: 100%;
        padding: 20px 10px;
        background-color: #fff;
    }
    .cart-item{
        width: 100%;
        display: flex;
        flex-direction: row;
        border-bottom: solid 1px #efefef;
        padding: 20px 10px;
        margin-bottom: 10px;
    }
    .cart-item:last-child{
        border-bottom: solid 1px transparent;
    }
    .ci-selector-cont{
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 22px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .ci-selector-cont input {
        position: absolute;
        cursor: pointer;
        height: 20px;
        width: 20px;
        accent-color: #C64F27;
        left:0;
        top:0;
    }
    /* .ci-checkmark{
        position: absolute;
        top: 0;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: #eee;
        
    }
    .ci-selector-cont:hover input ~ .ci-checkmark {
        background-color: #ccc;
    }
    
    .ci-selector-cont input:checked ~ .ci-checkmark {
        background-color: #57B4BA;
    }
    
    .ci-selector-cont:after {
        content: "";
        position: absolute;
        display: none;
    }
    
    .ci-selector-cont input:checked ~ .ci-checkmark:after {
        display: block;
    }
    
    .ci-selector-cont .ci-checkmark:after {
        left: 9px;
        top: 5px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    } */
    .ci-photo-cont{
        position: relative;
        width: 100px;
        height: 100px;
        border-radius: 4px;
        overflow: hidden;
    }
    .ci-photo{
        width: 100%;
        position: absolute;
        height: 100%;
        top:0;
        left:0;
    }
    .ci-details{
        width: calc(100% - 100px - 30px);
    }
    .ci-title-cont{
        width: 100%;
        display: flex;
        flex-direction: row;
    }
    .ci-product-title-var-cont{
        width: calc(100% - 100px);
        padding: 0px 10px;
    }
    .ci-product-name{
        width: 100%;
        font-weight: 600;
        font-size: 1.2rem;
        line-height: 1.0rem;
        
    }
    .ci-product-variant{
        width: auto;
        border-radius: 30px;
        background-color: #efefef;
        padding: 4px 20px;
        margin: 10px;
        color:#3e4242;
        font-size: 0.875rem;
        display: inline-block;
    }
    .ci-action-btns{
        width: 100px;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-content: flex-end;
        gap:10px;
    }
    .ci-action-btns div{
        width: 20px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }
    .ci-action-btns div svg{
        width: 100%;
        height: 100%;
        position: absolute;
        top:0;
        left: 0;
        fill:#555;
    }
    .ci-action-btns div:hover svg{
        fill:#C64F27;
    }
    .ci-price-details{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0px 10px;
    }
    .ci-price{
        width: auto;
        color:#C64F27;
    }
    .ci-currency{
        font-size: 0.5rem;
    }
    .ci-price-value{
        font-size: 1.5rem;
        font-weight: 600;    
    }
    .ci-quantity-cont{
        width: 100px;
        display: flex;
        flex-direction: row;
    }
    .ci-quantity-btn{
        width: 25px;
        height: 25px;
        position: relative;
        cursor: pointer;
    }
    .ci-quantity-btn svg{
        width: 100%;
        height: 100%;
        position: absolute;
        fill:#555;
    }
    .ci-quantity-btn svg:hover{
        fill:#57B4BA;
    }
    .ci-quantity-input{
        margin: 0 4px;
        height: 25px;
        width: 32px;
        background-color: #fff;
        border: none;
        line-height: 25px;
        letter-spacing: 0;
        text-align: center;
        outline: 0;
        color: #191919;
        font-weight: 700;
    }
}