#pjax-cart {
    position: relative;
}

.cart-widget{
    position: absolute;
    width: 305px;
    box-shadow: 0px 6px 60px 0px rgba(207, 207, 207, 0.35);
    right: 90px;
    /* transition: 200ms linear all; */
    z-index: 999;
    background: #fff;
    top: 115px;
}
.cart-widget--fixed{
    position: fixed;
    top: 60px;
    z-index: 102;
}
.cart-widget__header{
    position: relative;
    padding: 12px 28px 10px 80px;
    background: #F2F1F1;
    border-bottom: 2px solid #EBEAEA;

}
.cart-widget__header-img{
    width: 38px;
    position: absolute;
    left: 30px;
    top: 22px;
    
}
.cart-widget__counter{
    font-size: 18px;
    color: #E20932;
    font-weight: bold;
}
.cart-widget__price{
    display: flex;
}
.cart-widget__price-label{
    font-weight: bold;
}
.cart-widget__price-value{
    font-weight: bold;
    padding-left: 4px;
}
.cart-widget__price-value::after{
    content: var(--default-currency-symbol);
}
.cart-widget__list{
    padding: 0px 30px;
    background: #fff;
    max-height: 185px;
    overflow: auto;
}
.cart-widget__list-title{
    font-size: 18px;
    font-weight: bold;
    margin: 25px 30px 15px;
}
.cart-widget__list-item{
    position: relative;
    padding: 15px 0 15px 33px;
    border-bottom: 1px solid #F1F2F3;
}
.cart-widget__list-item:first-child {
    padding-top: 0px;
}
.cart-widget__item-remove{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #f1f1f1;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    background: url('./images/close.svg') no-repeat;
    background-position: center;
    background-size: 12px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left:  0;
    top: 12px;
}
.cart-widget__item-remove:hover{
    background: url('./images/close-red.svg') no-repeat;
    background-position: center;
    background-size: 12px;
}

.cart-widget__item-name{
    font-weight: bold;
}
.cart-widget__item-counter{
    color: #E20932;
    font-weight: bold;
}
.cart-widget__item-name:hover{
    color: #E20932;
}
.cart-widget__item-price::after{
    content: var(--default-currency-symbol);
    font-weight: bold;
}

.cart-widget__footer{
    background: #fff;
    padding: 0 30px 22px;
}
.cart-widget__total-price{
    margin-top: 25px;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 22px;
    text-align: center;
    background: #fff;
}
.cart-widget__total-price-value::after{
    content: var(--default-currency-symbol);
}
.cart-widget__cart-link{
    display: block;
    padding: 15px 12px;
    margin:  0 20px 20px;
    color: #E20932;
    border: 2px solid #E20932;
    font-weight: bold;
    text-align: center;
    transition: 200ms ease all;
    background: #fff;
}
.cart-widget__cart-link:hover{
    background: #E20932;
    color: #fff;
}
.cart-widget__reasons{
    background: #fff;
}
.cart-widget__reasons-header{
    color: #fff;
    background: #E20932;
    position: relative;
    padding: 25px 25px 25px 60px;
    margin-bottom: 15px;
}
.cart-widget__reasons-title{
    font-size: 16px;
}
.cart-widget__reasons-counter{
    font-size: 54px;
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 14px;
}
.cart-widget__title-capital{
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.cart-widget__reason-title{
    font-weight: bold;
    font-size: 18px;
    color: #000;
    display: block;
}
.cart-widget__reason{
    display: flex;
    padding: 15px 20px;
    align-items: center;
}
.cart-widget__reason:last-child{
    padding-bottom: 30px;
}
.cart-widget__reason-image-holder{
    display: flex;
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px dashed #BDBDBD;
    margin-right: 15px;
    position: relative;
}
.cart-widget__reason-image-holder::before{
    content: '';
    height: 30px;
    width: 1px;
    border-right: 1px dashed #bdbdbd;
    position: absolute;
    top: -30px;
}
.cart-widget__reason-feature{
    font-size: 16px;
    color: #6c6c6c;
}

.cart-widget a, .cart-widget a:hover, .cart-widget a:visited {
    color: black;
}

@media screen and (max-width: 1800px){
    .cart-widget{
        display: none;
    }
}

@media screen and (max-height: 800px){
    .cart-widget__reasons {
        display: none;
    }
}