.cart-headers{
    width: 100%;
    background: #fff;
    border-radius: 0;
}
.cart-headers-content{
    display: grid;
    grid-template-columns: 1fr 350px 2fr 2fr 2fr 1fr;
    gap: 1rem;
    font-size: 15px;
    font-family: 'Switzer-Medium';
    padding: 5px 15px;
}

.prodtitleandimg{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.cart-item{
    width: 100%;
    background: #fff;
    padding: 8px 15px;
    display: grid;
    grid-template-columns: 1fr 350px 2fr 2fr 2fr 1fr;
    gap: 1rem;
    align-items: center;
    overflow: hidden;
    font-size: 14px;
}
.prodvariations{
    display: flex;
    flex-direction: column;

    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}
.prodvariations .prodtitleee_{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.prodimg_{
    min-width: 60px;
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.kolicinaeditcart input[type="number"] {
  height: 30px;
  width: 70px;
  border: 2px solid #c7c7c7;
  padding-left: 10px;
  padding-right: 10px;
}
/* .prodimg_ img{
    width: 100%;
    height: 100%;
} */


.cart-tt{
    width: 100%;
    background: #fff;
    padding: 30px 20px;
    color: #131212;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}
.order-summary .total-text{
    font-size: 18px;
    font-family: 'Switzer-Regular';
}
.order-summary .total-amount{
    font-size: 18px;
    font-family: 'Switzer-Medium';
}
.order-summary .ustedas{
    color: rgb(255, 100, 28);
}


.updateadresebtn{
    width: 100% !important;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 10px 0;
    background: #85A898;
    text-align: center;
    text-decoration: none !important;
    font-size: 15px;
    color: #fff;
    transition: opacity 0.3s ease;
}
.updateadresebtn:visited{
    text-decoration: none !important;
    color: #fff;
}

.zavkupovinubtn{
    width: 100%;
    padding: 10px 0;
    background: #000000;
    text-align: center;
    text-decoration: none !important;
    font-size: 15px;
    color: #fff;
    transition: opacity 0.3s ease;
}

.updateadresebtn:hover, .zavkupovinubtn:hover{
    opacity: 0.6;
}




@media (max-width:991px){

    .cart-mobile-scroll{
        width:100%;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        padding-bottom:10px;
    }

    .cart-mobile-width{
        min-width:900px;
    }

}