.cart-modal {
    width: 800px;
    max-width:90vw;
    padding:32px;
}
.cart-modal .cart-modal__header-title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #000000;
    text-align:start!important;
    margin-bottom:31px;
}
.cart-modal .btn.btn-secondary{
    padding:11px 0;
    border: 1px solid #1B969E;
    filter: drop-shadow(0px 12px 26px rgba(27, 150, 158, 0.2));
    border-radius: 24px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #1B969E;
    margin-right:10px;
    width:50%;
    background:none;
    transition: 0.2s;
}
.cart-modal .btn.btn-secondary:hover{
    background: #1B969E;
    color:white;
    transition: 0.2s;
}
.cart-modal a.btn.btn-primary{
    width:50%;
    margin-left:10px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #FFFFFF;
}
.cart-modal a.btn.btn-primary:visited{
    color: white;
}
.cart-modal .cart-item{
    display: flex;
    margin-bottom:40px;
    align-items: flex-end;
}
.cart-modal .cart-item .info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}
.cart-modal .cart-item .info .name {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    text-decoration: none;
    margin-bottom:8px;
    display: inline-flex;
}
.cart-modal .cart-item .cart-item__qty-ctrl .qty {
    margin: 0 4px;
    min-width: 20px;
    text-align: center;
}
.cart-modal .cart-item__qty-ctrl button {
    border: none;
    width: 26px;
    height: 26px;
    background: #befafe;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cart-modal .cart-item__price {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #000000;
    margin: 0px 27px;
}
.cart-modal .cart-item .cart-item__remove {
    cursor: pointer;
}
.cart-modal .cart-item .cart-item__remove svg {
    height: 16px;
    width: 16px;
    transition: .3s;
}
.cart-modal .cart-item .thumb {
    display: block;
    height: 70px;
    aspect-ratio: 1/1;
    background-size: cover;
    border-radius: 12px;
    margin-right: 18px;
    background-color: #e7e7e7;
}
@media screen and (max-width:991px){
    .cart-modal{
        padding: 28px 45px;
    }
}
@media screen and (max-width:600px){
     .cart-modal .buttons{
     flex-direction: column;   
    }
     .cart-modal .buttons button{
        width:100%!important;
        margin: 0 0 20px 0!important;
    }
    .cart-modal .buttons a{
        width:100%!important;
        margin: 0!important;
    }
}
@media screen and (max-width:500px){
    .cart-modal .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-modal .cart-item .thumb {
    margin-bottom:10px;
        
    }
}