/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* cart */
#checkout-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.cart-content-row {
    padding: 20px 10px 40px 10px;
    width: 100%;
    background: #F9F9F9;
}

.cart-content h1 {
    margin-bottom: 25px;
    color: #0F0F0F;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-align: start;
}

.cart-content-coordinates {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 25px auto;
    width: 100%;
    max-width: 556px;
}

.cart-content-coordinates-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 7px 3px;
    width: 50%;
    font-size: 12px;
    line-height: 15px;
}

.cart-content-coordinates-link::before {
    content: '';
    position: absolute;
    top: 27%;
    right: 0;
    display: block;
    width: 7px;
    height: 7px;
    -webkit-transform: translate(-5px, 50%) rotate(45deg);
    -ms-transform: translate(-5px, 50%) rotate(45deg);
    transform: translate(-5px, 50%) rotate(45deg);
}

.cart-content-coordinates-link_cart {
    border-radius: 5px 0 0 5px;
    background: #303030;
}


.cart-content-coordinates-link_cart::before {
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
}

.cart-content-coordinates-link__number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    color: #303030;
    border-radius: 50%;
    background: var(--color-white);
}

.cart-content-coordinates-link_checkout {
    border-radius: 0px 5px 5px 0px;
    border: 1px solid #303030;
    -webkit-transition: background 0.2s ease-in;
    -o-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
}

.cart-content-coordinates-link_checkout .cart-content-coordinates-link__text {
    color: var(--color-black);
    -webkit-transition: color 0.2s ease-in;
    -o-transition: color 0.2s ease-in;
    transition: color 0.2s ease-in;
}

.cart-content-coordinates-link_checkout .cart-content-coordinates-link__number {
    border: 1px solid #303030;
    -webkit-transition: border 0.2s ease-in, color 0.2s ease-in;
    -o-transition: border 0.2s ease-in, color 0.2s ease-in;
    transition: border 0.2s ease-in, color 0.2s ease-in;
}

.cart-content-coordinates-link_checkout::before {
    border-top: 2px solid var(--color-black);
    border-right: 2px solid var(--color-black);
    -webkit-transition: border 0.2s ease-in;
    -o-transition: border 0.2s ease-in;
    transition: border 0.2s ease-in;
}

.cart-content-product-form {
    margin-bottom: 46px;
}

.cart-content-product-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart-content-product-titles {
    display: none;
}

.cart-content-product-article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    background: var(--color-white);

}

.cart-content-product-article:last-child {
    margin-bottom: 0;
}

.cart-content-product-article-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
    width: 36.05%;
    max-width: 150px;
}

.cart-content-product-article-img a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

.cart-content-product-article-img img {
    display: block;
    width: 100%;
    height: auto;
}

.cart-content-product-article-info {
    width: calc(100% - 36.05%);
    max-width: 270px;
}

.cart-content-product-article-price {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 16px;
    color: var(--color-black);
}

.cart-content-product-article-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.cart-content-product-article-name a {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 16px;
    color: var(--color-black);
    -webkit-transition: color 0.2s ease-in;
    -o-transition: color 0.2s ease-in;
    transition: color 0.2s ease-in;
}

.cart-content-product-article-name a:hover, .cart-content-product-article-name a:focus, .cart-content-product-article-name a:active {
    color: var(--color-red);
}

.cart-content-product-article-name .text-danger {
    margin-bottom: 10px;
    font-size: 10px;
    color: var(--color-red);
}

.cart-content-product-article-name-article {
    display: block;
    margin-bottom: 15px;
    font-family: OpenSans-Light, Arial, Helvetica, sans-serif;
    color: #A1A1A1;
    font-size: 10px;
    line-height: 10px;
}

.cart-content-product-article-info-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-content-product-article-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-content-product-article-remove-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    background-color: var(--color-red);
    border-radius: 5px;
    -webkit-transition: background 0.2s ease-in;
    -o-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
    cursor: pointer;
}

.cart-content-product-article-remove-button:hover, .cart-content-product-article-remove-button:focus, .cart-content-product-article-remove-button:active {
    background: var(--color-black);
}

.cart-content-product-article-remove-button__span {
    position: relative;
    display: block;
    width: 60%;
    height: 60%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cart-content-product-article-remove-button__span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cart-content-product-article-remove-button__span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 2px;
    height: 100%;
    background: var(--color-white);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.cart-content-product-article-quantity input {
    display: block;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
}

.cart-content-product-article-quantity .btn-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    font-size: 16px;
    border-radius: 5px;
    -webkit-transition: background 0.2s ease-in;
    -o-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
    cursor: pointer;
}

button[data-type="minus"] {
    color: #909090;
    background-color: #353535;
}

button[data-type="plus"] {
    color: var(--color-white);
    background: var(--color-red);
}

.cart-content-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 20px;
    line-height: 23px;
    color: var(--color-black);
    white-space: nowrap;
}

.cart-content-total-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.cart-content-total-title {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.cart-content-total-dashed {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 2px dashed #E2E2E2;
    margin: 0 10px -13px 10px;
}

.cart-contetn-buttons-clearfix-checkout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 14px;
    width: 100%;
    max-width: 375px;
    color: var(--color-white);
    font-size: 16px;
    font-family: Montserrat-Bold, Arial, Helvetica, sans-serif;
    font-weight: 700;
    background: var(--color-red);
    border-radius: 5px;
    -webkit-transition: background 0.2s ease-in;
    -o-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
    cursor: pointer;
}

.cart-contetn-buttons-clearfix-checkout:hover, .cart-contetn-buttons-clearfix-checkout:focus, .cart-contetn-buttons-clearfix-checkout:active {
    background: var(--color-black);
}

.cart-content-product-buy {
    width: 100%;
}

.viewed-row .product-layout .price {
    color: var(--color-white);
}

#checkout-cart .product-module h3, #checkout-cart .product-module h2 {
    color: var(--color-white)
}

@media (min-width: 480px) {
    .cart-content-total-title {
        white-space: nowrap;
    }
}

@media (min-width: 576px) {

    /* cart */
    .cart-content-product-article {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 10px;
        padding: 10px;
        width: 49%;
        border-radius: 5px;
        background: var(--color-white);
    }

}

@media (min-width: 992px) {

    /* cart */
    .cart-content-row {
        padding: 15px 50px 40px 50px;
    }

}

@media (min-width: 1024px) {

    /* cart */
    .cart-content-row {
        padding: 30px 50px 40px 50px;
        border-radius: 60px 60px 0px 0px;
    }

    .cart-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cart-content h1 {
        margin-bottom: 40px;
        width: 100%;
        font-size: 44px;
        line-height: 50px;
    }

    .cart-content-coordinates {
        margin: 0 0 60px 0;
        max-width: 600px;
    }

    .cart-content-coordinates-link {
        padding: 18px 10px;
        font-size: 17px;
        line-height: 32px;
    }

    .cart-content-coordinates-link__number {
        margin-right: 15px;
        width: 27px;
        height: 27px;
        -webkit-transition: color 0.2s ease-in, border 0.2s ease-in;
        -o-transition: color 0.2s ease-in, border 0.2s ease-in;
        transition: color 0.2s ease-in, border 0.2s ease-in;
    }

    .cart-content-coordinates-link__text {
        -webkit-transition: color 0.2s ease-in;
        -o-transition: color 0.2s ease-in;
        transition: color 0.2s ease-in;
    }

    .cart-content-coordinates-link::before {
        top: 37%;
        right: 20px;
        -webkit-transition: border 0.2s ease-in;
        -o-transition: border 0.2s ease-in;
        transition: border 0.2s ease-in;
    }

    .cart-content-coordinates-link_checkout {
        -webkit-transition: border 0.2s ease-in, color 0.2s ease-in;
        -o-transition: border 0.2s ease-in, color 0.2s ease-in;
        transition: border 0.2s ease-in, color 0.2s ease-in;
    }

    .cart-content-coordinates-link:hover, .cart-content-coordinates-link:focus, .cart-content-coordinates-link:active {
        color: var(--color-red);
        border-color: var(--color-red);
    }

    .cart-content-coordinates-link_checkout:hover::before, .cart-content-coordinates-link:focus::before, .cart-content-coordinates-link:active::before {
        border-color: var(--color-red);
    }

    .cart-content-coordinates-link_checkout:hover .cart-content-coordinates-link__number, .cart-content-coordinates-link:focus .cart-content-coordinates-link__number, .cart-content-coordinates-link:active .cart-content-coordinates-link__number {
        color: var(--color-red);
        border-color: var(--color-red);
    }

    .cart-content-coordinates-link:hover .cart-content-coordinates-link__text, .cart-content-coordinates-link:focus .cart-content-coordinates-link__text, .cart-content-coordinates-link:active .cart-content-coordinates-link__text {
        color: var(--color-red);
    }

    .cart-content-coordinates-link_cart {
        pointer-events: none;
    }

    .cart-content-product-form {
        width: 100%;
    }

    .cart-content-product-box {
        padding: 30px;
        border-radius: 10px;
        background: var(--color-white);
    }

    .cart-content-product-titles {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }

    .cart-content-product-titles-item {
        color: #A1A1A1;
        font-family: OpenSans-Light, Arial, Helvetica, sans-serif;
        font-size: 18px;
    }

    .cart-content-product-titles-img {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-right: 10px;
        width: 105px;
    }

    .cart-content-product-titles-name {
        width: 51.59%;
    }

    .cart-content-product-titles-quantity {
        width: 95px;
    }

    .cart-content-product-titles-remove {
        width: 30px;
        height: 30px;
    }

    .cart-content-product-article {
        position: relative;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 0;
        padding: 10px 0;
        width: 100%;
        border-radius: 0;
    }

    .cart-content-product-article::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        width: calc(100% - 115px);
        height: 1px;
        background: #E2E2E2;
    }

    .cart-content-product-article:last-child:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        display: block;
        width: calc(100% - 115px);
        height: 1px;
        background: #E2E2E2;
    }

    .cart-content-product-titles-price {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 16.64%
    }

    .cart-content-product-article-img {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-right: 10px;
        max-width: 105px;
    }

    .cart-content-product-article-name {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding-right: 20px;
        width: 51.59%;
    }

    .cart-content-product-article-name a {
        font-size: 20px;
        line-height: 28px;
    }

    .cart-content-product-article-name-article {
        margin: 0;
        font-size: 18px;
        line-height: 18px;
    }

    .cart-content-product-article-price {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-bottom: 0;
        width: 16.64%;
        color: #353535;
        font-size: 24px;
        font-family: Montserrat-Bold, Arial, Helvetica, sans-serif;
        font-weight: 700;
    }

    .cart-content-product-article-quantity .btn-number {
        width: 30px;
        height: 30px;
        font-size: 24px;
        line-height: 24px;
    }

    .cart-content-product-article-quantity {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .cart-content-product-article-quantity input {
        font-family: OpenSans-Light, Arial, Helvetica, sans-serif;
        color: #787878;
        font-size: 20px;
        line-height: 27px;
    }

    .cart-content-product-article-remove-button {
        position: absolute;
        top: 50%;
        right: 0;
        width: 14px;
        height: 14px;
        background-color: transparent;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .cart-content-product-article-remove-button:hover, .cart-content-product-article-remove-button:focus, .cart-content-product-article-remove-button:active {
        background: transparent;
    }

    .cart-content-product-article-remove-button__span {
        width: 100%;
        height: 100%;
    }

    .cart-content-product-article-remove-button__span::before {
        background: #D5D5D5;
        -webkit-transition: background 0.2s ease-in;
        -o-transition: background 0.2s ease-in;
        transition: background 0.2s ease-in;
    }

    .cart-content-product-article-remove-button__span::after {
        background: #D5D5D5;
        -webkit-transition: background 0.2s ease-in;
        -o-transition: background 0.2s ease-in;
        transition: background 0.2s ease-in;
    }

    .cart-content-product-article-remove-button:hover .cart-content-product-article-remove-button__span::before, .cart-content-product-article-remove-button:focus .cart-content-product-article-remove-button__span::before, .cart-content-product-article-remove-button:active .cart-content-product-article-remove-button__span::before, .cart-content-product-article-remove-button:hover .cart-content-product-article-remove-button__span::after, .cart-content-product-article-remove-button:focus .cart-content-product-article-remove-button__span::after, .cart-content-product-article-remove-button:active .cart-content-product-article-remove-button__span::after {
        background: var(--color-red);
    }

    .cart-content-total {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 25px;
        width: 100%;
        font-size: 32px;
        line-height: 47px;
    }

    .cart-content-total-box {
        margin: 0;
        width: 100%;
        max-width: unset;
    }

    .cart-content-total-dashed {
        margin: 0 25px -25px 25px;
    }

    .cart-contetn-buttons-clearfix {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }

    .cart-contetn-buttons-clearfix-checkout {
        padding: 18px 87px;
        font-size: 18px;
    }

    #checkout-cart .viewed-row .product-layout {
        background: transparent;
    }

    #checkout-cart .viewed-row .product-add-to-compare, #checkout-cart .viewed-row .product-add-to-whishlist {
        display: none;
    }
}

@media (min-width: 1400px) {

    /* cart */
    .cart-content-total {
        margin-bottom: 0;
        margin-right: 50px;
        max-width: calc(100% - 386px);
    }

    .cart-contetn-buttons-clearfix {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .cart-contetn-buttons-clearfix-checkout {
        padding: 18px 68px;
        max-width: 337px;
    }
}