.cart-page > .content > h1 {
    margin-top: 9px;
    margin-bottom: 16px;
}

.cart-product-table {
    border-top: 2px solid #DBDEE0;
    padding: 20px 20px 0;
    width: 100%;
}

.cart-product-table__divider {
    border-top: 2px solid #DBDEE0;
    width: calc(100% + 40px);
    margin: 20px -20px;
}

.cart-product-table__column {
    padding: 0 40px;
    border-right: 2px solid #DBDEE0;
}

.cart-product-table__column.good {
    width: calc(100% - 620px);
    flex-grow: 1;
    padding-left: 0;
}

.cart-product-table__column.amount {
    width: 212px;
}

.cart-product-table__column.cost {
    width: 212px;
}

.cart-product-table__column.value {
    width: 196px;
    border-right: 0;
    padding: 0 35px;
}

.cart-product-table__row {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.cart-item__delete {
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url("image/cross.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: opacity .2s ease;
}

.cart-item__delete:hover {
    opacity: .7;
}

.cart-product__name-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.cart-product__name {
    color: #222222;
}

.cart-product__image {
    width: 168px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-right: 20px;
}

.cart-product__image img {
    max-width: 100%;
    height: auto;
    max-height: 124px;
}

.cart-product-column__title {
    font-size: 16px;
    line-height: 130%;
    color: #222222;
    margin-bottom: 20px;
}

.cart-product-table__column-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.number-control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-control .number-control__input {
    height: 28px;
    min-height: 28px;
    line-height: 28px;
    text-align: center;
    -moz-appearance: textfield;
    border-radius: 0;
    width: 60px;
    color: #222222;
    font-size: 18px;
}

.number-control .number-control__input:focus,
.number-control .number-control__input:hover {
    outline: none;
}

.number-control .number-control__input::-webkit-outer-spin-button,
.number-control .number-control__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.number-control .number-control__button {
    min-width: 0;
    max-width: 28px;
    width: 28px;
    text-align: center;
    height: 28px;
    border: 2px solid #DBDEE0;
    background-size: 8px;
    cursor: pointer;
    padding: 0;
}

.number-control .number-control__button.up {
    border-left: 0;
    border-radius: 0 5px 5px 0;
    background: center no-repeat url("image/up.svg") white;
}

.number-control .number-control__button.up:focus,
.number-control .number-control__button.up:hover {
    background: center no-repeat url("image/up.svg") white;
}

.number-control .number-control__button.down {
    border-right: 0;
    border-radius: 5px 0 0 5px;
    background: center no-repeat url("image/down.svg") white;
}

.number-control .number-control__button.down:focus,
.number-control .number-control__button.down:hover {
    background: center no-repeat url("image/down.svg") white;
}

.currency,
.cart-product-table__value,
.cart-product-table__price,
.cart-product__total .amount {
    font-size: 24px;
    line-height: 28px;
    color: #222222;
    font-weight: bold;
}

.cart-product-table {
    margin-bottom: 40px;
}

.cart-product__total {
    width: 250px;
    padding: 20px;
    border: 2px solid #DBDEE0;
    border-radius: 10px;
    margin-left: auto;
    margin-bottom: 10px;
}

.total-quantity-line {
    margin-bottom: 10px;
}

.cart-product__total .amount {
    margin-bottom: 20px;
}

.do-order-button {
    margin-bottom: 10px;
}

.cart-notice {
    text-align: right;
    text-align-last: right;
    font-size: 14px;
    line-height: 130%;
}

.cart-error {
    text-align: center;
}

@media (max-width: 1025px) {
    .cart-product-column__title {
        font-size: 14px;
        line-height: 130%;
        margin-bottom: 15px;
    }

    .currency,
    .cart-product-table__value,
    .cart-product-table__price,
    .cart-product__total .amount {
        font-size: 18px;
        line-height: 21px;
    }

    .cart-product-table__column.amount {
        width: 198px;
    }

    .cart-product-table__column.cost {
        width: 170px;
    }

    .cart-product-table__column.value {
        width: 180px;
    }
}

@media (max-width: 900px) {
    .cart-product-table__row {
        flex-wrap: wrap;
    }

    .cart-product-table__column.good {
        width: 100%;
        border-right: none;
    }

    .cart-product__name-wrapper {
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .cart-product-table__column.amount,
    .cart-product-table__column.cost,
    .cart-product-table__column.value {
        width: calc(100% / 3);
        padding: 0 10px;
    }

    .cart-product__image img {
        max-height: 100%;
    }

    .cart-product__image {
        width: 90px;
        height: 70px;
    }
}

@media (max-width: 600px) {
    .cart-product-column__title {
        margin-bottom: 5px;
    }

    .number-control .number-control__input {
        font-size: 12px;
        line-height: 22px;
        width: 37px;
        height: 22px;
        max-height: 22px;
        min-height: 22px;
        padding: 0;
    }

    .number-control .number-control__button {
        max-width: 22px;
        width: 22px;
        height: 22px;
    }

    .cart-product-table {
        padding: 10px 0 0 0;
        margin-bottom: 20px;
    }

    .cart-product-table__divider {
        width: calc(100% + 10px);
        margin: 10px -10px;
    }

    .currency,
    .cart-product-table__value,
    .cart-product-table__price,
    .cart-product__total .amount {
        font-size: 17px;
        line-height: 21px;
    }

    .cart-product__total{
        width: 160px;
        padding: 10px;
    }
    .cart-notice,
    .total-quantity-line{
        font-size: 12px;
        line-height: 14px;
    }
    .cart-product__total .default-button{
        width: 100%;
        min-width: 0;
        font-size: 12px;
        line-height: 14px;
        padding: 8px 20px;
    }
}

@media (max-width: 320px) {
    .currency,
    .cart-product-table__value,
    .cart-product-table__price,
    .cart-product__total .amount {
        font-size: 16px;
        line-height: 18px;
    }
}

@media only screen and (min-width: 1020px) {
    .cart-product-table__row .number-control .number-control__input {
        width: 80px;
        padding-left: 15px;
        padding-right: 15px;
    }
}