/*
* checkout style
* general
* reset

*/

.amazon-button{
    height:59px !important;
}
.kart{
    font-size:12px;
    margin-top: 20px;
    margin-bottom: 70px;
}
.kart select {
    width: 100%;
    /*padding: 15px;*/

}
.kart input{
    width: 30px;
    font-size: 12px;
    border-radius: 0;
    border: 1px solid #ccc;
    text-align: center;
}
.kart .title{
    padding: 15px 0;
    font-size: 40px;
    font-family: 'Playfair';
    font-weight: normal;
}

.kart .name{
    font-size:14px;
    font-weight: 700;
}
.products-row .name {
    color: #000;
}

.kart .det-pro{
    color: #aaaaaa;
}

.kart .sub-title{
    padding: 15px 0;
    border-bottom: 1px solid #c3c3c3;
    border-top: 1px solid #c3c3c3;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.kart .sub-title2{
    font-weight:bold;
    padding: 15px 0;
    font-size: 14px;
}
.kart .coupon{
    text-transform: uppercase;
    font-weight:bold;
    padding: 15px 0;
    font-size: 14px;
}

.kart input{
    background-color: #F5F5F5;
    border: 0;
    padding-top:5px;
    padding-bottom: 5px;
}

.kart input .coupon{
    padding: 15px 0;
}

.kart .coupon a{
    background-color: #000000;
    font-size: 14px;
    padding:10px 25px;
    color: white;
    border-radius: 0;
}

.kart .coupon a:hover{
    text-decoration: none;
    font-weight: normal;
}

.kart .products-row{
    padding: 15px 0 20px 15px;
   /* border-bottom: 1px solid #D6D6D6;*/
}

.kart select {
    width: 50%;
    font-size: 12px;
    color: #000;
}
#stato {
    width: 300px;
}

.kart .coupon input{
    width:200px;
    font-size:12px;
    padding: 13px 20px 13px 20px;
}
.kart a.del{
    font-size: 12px;
    padding: 11px 17px;
    background-color: #F5F5F5;
    border-radius: 50%;
    color: #000000;
}

.kart a.del:hover{
    color:#000000;
    text-decoration: none;
}

.kart .total{
    text-transform: uppercase;
    font-weight:bold;
    padding: 15px;
    font-size: 14px;
    color: black;
    margin-top: 15px;
}


.kart .total-price{
    font-size: 18px;
    padding-top: 20px;
    text-transform: uppercase;
    font-weight: 900;
    margin-right: 10px;
}

.kart-detail{
    font-size: 14px;
    line-height: 30px;
    margin: 20px 0;
}

.kart-detail input {
    width: 20px;
    font-size: 16px;
    border-radius: 20px;
    border: 1px solid #ccc;
    text-align: center;
}
.kart .pos-box{
    text-align: right;
}

.kart .input-ch{
    text-align: left;
}

.kart.step4 checkbox {
    width: 20px;
    font-size: 16px;
    border-radius: 20px;
    border: 1px solid #ccc;
}

.btn-next{
    text-align: right;
}
.kart .btn-black {
    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 5px 60px;
    text-decoration: none;
    border-radius: 0;
}

select {
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
    height: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    background: white;
    border: 0;
}
.spedizione_img {
    width: 30px;
}
.products-row a {
    color: #000;
}

.pay-now{
    padding: 3px 10px;
    width: 200px;
    height: auto;
}

.text-warning{
    color: red !important;
    font-family: 'Lato';
    font-size: 14px;
}

/*-- media query--*/

@media (max-width: 991px) {
    .kart .coupon a{
        display: block;
        margin-top: 15px;
        width: 200px;
        text-align: center;
    }
    .kart select {
        width: 50%;
    }
    #stato {
        width: 100%;
    }
}


/* Loading overlay cart*/
.cart-loading-overlay {
    display: none; /* Will be controlled by JS */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.cart-loading-overlay.active {
    display: flex;
}

.cart-spinner-container {
    text-align: center;
}

.cart-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.cart-spinner-container p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}