body.order-page {
    padding: 60px 0 0;
}

body.order-page header {
    top: 0px;
    border-bottom: 1px solid var(--border);
    position: fixed;
}

body.order-page footer {
    border-top: 1px solid var(--border);
}

.payments-icon {
    height: 120px;
}

.payments-icon path {
    fill: #f3f3f3;
}

.cart--textarea {
    min-height: 75px;
}

.cart-element .title {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

#js-cart-deliverys.loading,
#js-cart-payments.loading {
    color: transparent;
    background: #FFF url('../img/loading.svg') no-repeat center;
    background-size: 44px;
    min-height: 80px;
}

.cart-item-old-price {
    text-decoration: line-through;
    color: #acacac;
    font-size: 12px;
}

.cart-item-old-price+.cart-item-price {
    color: #c70000;
    font-weight: bold;
}

.cart-thumb {
    max-width: 50px;
}

@media (min-width: 380px) {
    .cart-thumb {
        max-width: 75px;
    }
}

.cart-header {
    background: #f3f3f3;
    border-radius: 7px 7px 0 0;
}

.cart-header .cart-col {
    padding: 12px 4px;
    text-align: center;
    font-weight: bold;
}

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

.cart-col-right {
    position: relative;
}

.cart-col1 {
    width: calc(100% - 38px);
    padding: 8px 0 16px;
    text-align: left;
}

.cart-col2 {
    width: 100%;
}

.cart-col3 {
    width: 60%;
    padding: 0;
}

.cart-col4 {
    width: 40%;
    font-weight: bold;
}

.cart-col5 {
    position: absolute;
    top: 3px;
    right: 5px;
}

@media (min-width: 576px) {
    .cart-col1 {
        width: 34%;
        padding: 0;
        text-align: left;
    }

    .cart-col2 {
        width: 16%;
    }

    .cart-col3 {
        width: 26%;
        padding: 0;
    }

    .cart-col4 {
        width: 16%;
        font-size: 120%;
    }

    .cart-col5 {
        width: 5%;
        padding: 0;
        position: relative;
        top: auto;
        right: auto;
    }
}

@media (min-width: 992px) {
    .cart-col1 {
        width: 44%;
    }

    .cart-col2 {
        width: 15%;
    }

    .cart-col3 {
        width: 19%;
    }

    .cart-col4 {
        width: 15%;
    }

    .cart-col5 {
        width: 5%;
    }
}

.free-delivery {
    background: var(--main);
    padding: 2px;
    border-radius: 5px;
}

.free-delivery.free-delivery--free {
    background: #51B219;
}

.free-delivery-inner {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    background: #ffffff;
    color: #131415;
    text-align: center;
}

.free-delivery-inner img {
    display: none;
}

.free-delivery .deliv-icon2 {
    display: block;
    margin: 0 13px 0 0;
}

#free-delivery-amount {
    min-width: 37px;
    display: inline-block;
}

@media (min-width: 400px) {
    .free-delivery-inner {
        padding: 8px 15px;
        font-size: 14px;
    }

    .free-delivery-inner img {
        width: 20px;
        opacity: .9;
        display: block;
        margin: 0 13px 0 0;
    }

    .free-delivery .deliv-icon1 {
        display: block;
    }

    .free-delivery .deliv-icon2 {
        display: none;
    }

    .free-delivery.free-delivery--free .deliv-icon1 {
        display: none;
    }

    .free-delivery.free-delivery--free .deliv-icon2 {
        display: block;
    }
}

#free-delivery-amount.loading {
    color: transparent;
    background: #FFF url(../img/loading.svg) no-repeat center;
    background-size: 16px;
}

#free-delivery-free {
    display: none;
}


.coupon-box {
    width: 100%;
    max-width: 400px;
}

.cart-subtotals {
    width: 100%;
    min-height: 28px;
}

.cart-subtotals--card {
    background: #F9FFFB;
    padding: 25px 21px;
    border-radius: 4px;
    position: sticky;
    top: 90px;
}

.cart-subtotals-line--last {
    font-weight: bold;
    font-size: 18px;
    padding: 0;
}

.cart-subtotals-line--last-span {
    font-size: 20px;
}

.order {
    min-height: calc(100vh - 148px);
}

.order-step {
    padding: 0 5px;
}

.order-step-number {
    width: 20px;
    height: 20px;
    background-color: var(--lightgray);
    border: 1px solid var(--border);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 9px;
}

.order-step--active .order-step-number {
    width: 20px;
    height: 20px;
    background: var(--main);
    border: 3px solid #9BE3BE;
    color: var(--main);
}

.order-step--before .order-step-number {
    width: 20px;
    height: 20px;
    background: var(--main);
    border: 3px solid var(--main);
    color: var(--main);
}

.order-step-text {
    padding: 0 8px;
    font-size: 11px;
    display: none;
    text-align: center;
}

@media (min-width: 500px) {

    .order-step-number,
    .order-step--active .order-step-number {
        width: 16px;
        height: 16px;
    }

    .order-step-text {
        display: block;
    }
}

@media (min-width: 768px) {

    .order-step-number,
    .order-step--active .order-step-number {
        width: 20px;
        height: 20px;
    }

    .order-step-text {
        font-size: 12px;
        padding: 0 10px;
    }

    .cart-subtotals {
        max-width: 325px;
    }
}

.order-step-line {
    height: 1px;
    width: 40px;
    background: #ddd;
}

.label--loading {
    line-height: 1.6;
    cursor: pointer;
    position: relative;
    padding-left: 24px;
    padding-right: 15px;
    transition: border-color .2s ease;
    padding-top: 14px;
    padding-bottom: 14px;
}

.label--loading.selected {
    background: #ffffff;
    border-color: var(--main);
    position: relative;
    box-shadow: 0 0 0 1px var(--main);
}

.label--loading.selected::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url(../img/ok2.svg) no-repeat center;
    background-size: 18px;
    position: absolute;
    top: 5px;
    left: 5px;
}

.label--loading:hover,
.label--loading:focus {
    border-color: var(--main);
}

.label--loading::after {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 1px;
    z-index: 9;
    opacity: 0;
    border-radius: 4px;
    background: #FFF url(../img/load.svg) no-repeat center;
    background-size: 102px;
    transition: opacity .2s ease;
}

.label--loading.load::after {
    opacity: 1;
}

.summary-box-line {
    border-top: 1px solid var(--border);
    padding: 15px 5px;
}

.summary-box-img {
    min-width: 60px;
    margin-right: 10px;
}

.summary-box-img img {
    margin: 0 auto;
    display: block;
    max-width: 60px;
}

.summary-box-name {
    width: 100%;
    text-align: left;
    padding-bottom: 15px;
}

.summary-box-price,
.summary-box-total {
    width: 40%;
}

.summary-box-qty {
    width: 20%;
    text-align: center;
}

.summary-box-price {
    text-align: left;
    display: none;
}

.summary-box-total {
    text-align: right;
}

@media (min-width: 420px) {
    .summary-box-price {
        display: block;
    }
}

@media (min-width: 768px) {
    .summary-box-line {
        padding: 0;
    }

    .summary-box-img img {
        margin: 0 auto;
        max-width: 50px;
    }

    .summary-box-name {
        padding-bottom: 0;
    }

    .summary-box-img,
    .summary-box-name,
    .summary-box-price,
    .summary-box-qty,
    .summary-box-total {
        padding: 10px;
        text-align: left;
    }

    .summary-box-img {
        width: 15%;
        margin-right: 0;
    }

    .summary-box-name {
        width: 35%;
    }

    .summary-box-price {
        width: 22%;
    }

    .summary-box-qty {
        width: 13%;
    }

    .summary-box-total {
        width: 15%;
    }
}

@media (min-width: 992px) {
    .summary-box-img {
        width: 8%;
    }

    .summary-box-name {
        width: 46%;
    }
}

.coupon-down {
    cursor: pointer;
}

.coupon-down svg {
    width: 14px;
    height: 28px;
    margin-left: 10px;
    position: relative;
    top: 1px;
    transition: transform .2s ease;
}

.coupon-down.open svg {
    top: 2px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.coupon-box-inner {
    max-height: 0;
    min-height: 0;
    overflow: hidden;
    transition: max-height .2s ease, min-height .2s ease;
}

.coupon-box-inner.open {
    max-height: 75px;
    min-height: 75px;
}

.card-img {
    min-width: 80px;
    height: 42px;
    text-align: center;
    border-radius: 4px;
    border: 0px solid var(--border);
}

.card-img img {
    width: 80px;
    height: 42px;
}

.cart-address--delivery {
    height: calc(100% - 20px);
}

.label--loading:last-child {
    margin-bottom: 0;
}

.confirmation-icon svg {
    width: 90px;
    height: 90px;
}

.summary-box {
    background: var(--lightblue);
    border: none;
}

.price-summary {
    font-size: 16px;
    background: var(--lightblue);
    padding: 24px;
    border-radius: 4px;
}

.price-summary-line {
    width: 100%;
}

@media (min-width: 576px) {
    .price-summary-line {
        max-width: 360px;
    }
}

.price-summary-big {
    font-size: 20px;
}

@media (min-width: 576px) {
    .inpost-paczkomat {
        max-width: 265px;
    }
}

.inpost-box {
    border-radius: 4px;
    padding: 15px 20px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.comments-box textarea {
    margin-top: 20px;
}

.comments-box label {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    pointer-events: none;
}

.comments-box-header {
    cursor: pointer;
}

.comments-box-header img {
    width: 20px;
    height: 40px;
    transition: transform .2s ease;
}

.comments-box-header.open img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.comments-box-inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s;
}

.comments-box-inner.open {
    max-height: 101px;
}

.transaction-number {
    word-break: break-all;
}

.justify-center {
    justify-content: center;
}
.flex {
    display: flex;
}
