.title--long-line{
    position: relative;
}
.title--long-line span{
    padding-right: 27px;
    background: #fff;
    position: relative;
    z-index:2;
}
.title--long-line:after{
    content: '';
    left:0;
    right: -1000px;
    height:2px;
    background: rgba(0, 0, 0, 0.5);
    bottom:15px;
    position: absolute;
}

@media screen and (max-width: 1199px){
    .title--long-line:after{
        bottom:12px;
    }
}

@media screen and (max-width: 991px){
    .title--long-line:after{
        display: none;
    }
}

.back-link {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.1px;
    color: rgba(0, 0, 0, 0.7);
    vertical-align: middle;
}

.back-link svg {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 7px 0 0;
    fill: currentColor
}

.back-link:hover {
    color: #da4932;
    text-shadow: 0 0;
}

.title-main+.back-link {
    margin-top: -24px;
    margin-bottom: 60px;
}

.cart-wrapper {
    position: relative;
}

.cart-wrapper:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8) url('assets/images/svg/loader-circle.svg') no-repeat center / 100px auto;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
    -ms-transition: opacity 0.3s ease, visibility 0.3s ease;
    -o-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-wrapper.loading:before {
    opacity: 1;
    visibility: visible;
}

.new-cart {}

.new-cart-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px 24px 48px;
    background: #F9F9F9;
    border-width: 1px 0px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 32px;
}

.new-cart-item:last-child {
    margin-bottom: 0;
}

.new-cart-item__left {
    width: calc(100% - 364px);
    display: flex;
}

.new-cart-item__right {
    width: 300px;
    flex: none;
    margin-left: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.new-cart-item__image {
    text-align: center;
    margin-right: 64px;
    flex: none;
}

.new-cart-item__image img {
    mix-blend-mode: multiply;
    max-width: 225px;
    height: auto;
}

.new-cart__edit {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.7);
    border-radius: 2px;
    padding: 0 16px;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.1px;
    color: rgba(0, 0, 0, 0.7);
    height: 25px;
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}

.new-cart__edit svg {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 2px 0 0;
    fill: currentColor;
}

.new-cart__edit:hover {
    background-color: #da4932;
    color: #fff;
    border-color: #da4932;
}

.new-cart-item .cart-item-info-wrapper {}

.new-cart-item .cart-item-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.1px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.new-cart-item .cart-item-name a {
    color: inherit;
}

.new-cart-item .cart-item-name:hover {
    color: #da4932;
}

.cart-item-descr {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.1875;
}

.cart-item-descr__item {
    margin-bottom: 10px;
}

.cart-item-descr__item:last-child {
    margin-bottom: 0;
}

.cart-item-colors {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 10px;
}

.cart-item-colors__item {
    margin-right: 16px;
    width: 32px;
    height: 32px;
    display: block;
    padding: 3px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.cart-item-colors__item:last-child {
    margin-right: 0;
}

.cart-item-colors__item img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: all 0.3s linear;
}

.cart-item-colors__item:hover {
    opacity: 0.7;
}

.cart-item-colors__item.active {
    border-color: #000;
    opacity: 1;
}

.new-cart-item .quantity {
    display: flex;
    align-items: center;
    width: 111px;
    flex: none;
    justify-content: space-between;
}

.new-cart-item .quantity .btn {
    width: 27px;
    height: 29px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.7);
    border-radius: 2px;
    line-height: 27px;
    text-align: center;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    background-color: transparent;
    flex: none;
    text-transform: uppercase;
}

.new-cart-item .quantity .btn:hover {
    color: #fff;
    background: #da4932;
    border-color: #da4932;
}

.new-cart-item .quantity .btn.quantity-minus {
    line-height: 20px;
}

.new-cart-item .quantity .form-input {
    width: calc(100% - 54px);
    height: 29px;
    border: none;
    background: transparent;
    text-align: center;
    padding: 0 5px;
    font-size: 20px;
    letter-spacing: 0.1px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    cursor: default;
}

.new-cart-item .quantity .form-input::-webkit-inner-spin-button,
.new-cart-item .quantity .form-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.new-cart-item .cart-item-price {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.7);
}

.new-cart-item .remove-cart-item {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 0 16px;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.1px;
    color: rgba(0, 0, 0, 0.7);
    height: 25px;
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    font-weight: normal;
    position: absolute;
    right: 32px;
    bottom: 24px;

}

.new-cart-item .remove-cart-item svg {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 2px 0 0;
    fill: currentColor;
}

.new-cart-item .remove-cart-item:hover {
    background-color: #da4932;
    color: #fff;
    border-color: #da4932;
}

.new-cart-subtotal {
    margin-top: 64px;
    margin-left: auto;
    width: calc(100% - 337px);
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.1px;

}

.new-cart-subtotal-title {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    padding: 20px 32px 20px 0;
}

.new-cart-subtotal-content {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 32px 20px 0;
    margin-bottom: 56px;
}

.new-cart-subtotal-content__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
}

.new-cart-subtotal-info {}

.new-cart-subtotal-info__item {
    display: flex;
    margin-bottom: 20px;
}

.new-cart-subtotal-info__item:last-child {
    margin-bottom: 0;
}

.new-cart-subtotal-info__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    width: 135px;
    flex: none;
}

.new-cart-subtotal-info__content {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #000000;

}

.new-cart-subtotal-checkout {
    text-align: right;
}

.btn-checkout {
    background: #000;
    border-color: #000;
    width: 280px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-checkout svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    margin: -3px 8px 0 0;
}

.btn-checkout:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

@media screen and (min-width: 992px) {
    .title--d-300 {
        font-weight: 300;
    }
}

.title-main+.products {
    margin-top: 64px;
}

.products--list .y-col--d-hide {
    display: none;
}

@media screen and (max-width: 1199px) {
    .new-cart-item {
        padding-left: 32px;
    }

    .new-cart-item__image {
        margin-right: 32px;
    }

    .new-cart-item__right {
        width: 260px;
        margin-left: 32px;
    }

    .new-cart-item__left {
        width: calc(100% - 292px);
    }

    .new-cart-subtotal {
        width: calc(100% - 289px);
    }
}

@media screen and (max-width: 991px) {
    .back-link {
        display: none;
    }

    .new-cart-item {
        margin-left: -36px;
        margin-right: -36px;
        padding: 32px 36px 25px;
        flex-direction: column;
        border: none;
        margin-bottom: 20px;
    }

    .new-cart-item__left {
        width: 100%;
    }

    .new-cart-item__right {
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.7);
        margin-left: 0;
    }

    .new-cart-item .remove-cart-item {
        position: relative;
        bottom: auto;
        right: auto;
        margin-left: 12px;
        margin-left: auto;
    }

    .new-cart-item .cart-item-name {
        font-weight: 700;
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 20px;
    }

    .cart-item-descr {
        font-size: 12px;
        line-height: 14px;
    }

    .cart-item-descr__item {
        margin-bottom: 16px;
    }

    .cart-item-colors {
        display: flex;
        margin: 4px 0 0 0;
    }

    .cart-item-colors__item {
        width: 36px;
        height: 36px;
    }

    .new-cart-item .quantity .form-input {
        font-size: 18px;
    }

    .new-cart-item .cart-item-price {
        font-size: 18px;
        line-height: 21px;
    }

    .new-cart__edit,
    .new-cart-item .remove-cart-item {
        font-size: 12px;
    }

    .new-cart-subtotal {
        width: 100%;
        margin-top: 45px;
    }

    .new-cart-subtotal-title {
        font-size: 18px;
        line-height: 21px;
        margin-right: -36px;
        padding-right: 36px;
    }

    .new-cart-subtotal-content__title {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 16px;
    }

    .new-cart-subtotal-info__item {
        margin-bottom: 16px;
    }

    .new-cart-subtotal-info__content {
        font-size: 12px;
        line-height: 18px;
        color: rgba(0, 0, 0, 0.6);
    }

    .new-cart-subtotal-info__title {
        font-size: 16px;
        line-height: 18px;
    }

    .new-cart-subtotal-content {
        margin-bottom: 45px;
        padding-right: 36px;
        margin-right: -36px;
    }

    .btn-checkout {
        width: 100%;
    }

    .new-cart-item .quantity .btn {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .products--list .y-col--d-hide {
        display: block
    }

    .new-cart-item__left {
        justify-content: space-between;
    }

    .new-cart-item__image {
        width: 110px;
        margin-right: 20px;
    }

    .new-cart-item .cart-item-info-wrapper {
        text-align: right;
    }

    .new-cart__edit,
    .new-cart-item .remove-cart-item {
        width: 100%;
        margin: 24px 0 0;
        padding-left: 10px;
        padding-right: 10px;
    }

    .cart-item-colors {
        justify-content: flex-end;
    }

    .new-cart-subtotal-info__item {
        flex-direction: column;
    }

    .new-cart-subtotal-info__title {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 575px) {
    .cart-item-descr__item b.block {
        display: block;
    }
}