.card-row {
    height: 90vh;
    justify-content: center;
    align-items: center;
}

.cart-box {
    border-radius: 8px;
    border: 2px solid #737373;
    padding: 48px 32px;
}

.title-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 2px solid #737373;
}

.title-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item {
    border-bottom: 1px solid #F1F1F1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
}

.item .price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon-btn {
    border: 0;
}

.title-check p {
    color: #D91C42;
    margin: 24px 0;
}

.item .price-box .price-with-disc {
    margin: 0;
}

.item .price-box .price {
    font-weight: 300;
    color: #292929;
    text-decoration: line-through;
    margin: 0;
}

.price-badge {
    background-color: #B91C1C;
    border-radius: 10px;
    padding: 3px;
    font-weight: 100;
    color: #fff;
    margin-left: 10px;
}

.pay-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
}

.pay-item p {
    margin: 0;
}

.pay-item.disc {
    color: #991B1B;
}

.offer-input {
    border: 2px solid rgba(107, 114, 128, 1);
    border-radius: 8px;
    padding: 10px 12px !important;
}

.offer-btn {
    min-width: 120px;
    background-color: #F7DEDF;
    border: 0 !important;
    margin-right: 12px;
}

.offer-code-box {
    display: flex;
    padding: 12px 0;
    border-bottom: 2px solid #F1F1F1;
}

.cart-btn-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 4px;
}

.cart-btn {
    padding: 12px 16px;
    border-radius: 8px;
}

.cart-btn.submit {
    background-color: #D7A2A5;
    color: #000;
}

.cart-btn.back {
    background-color: #F9E7E8;
    color: #000;
}

@media(max-width:767px) {
    .item p {
        font-size: 12px;
    }

    .title-check p {
        font-size: 12px;
    }

    .item .price-box .price-with-disc {
        font-size: 12px;
    }

    .item .price-box .price {
        font-size: 10px;
    }

    .price-badge {
        font-size: 10px;
    }

    .icon-btn {
        padding: 0 !important;
    }

    .icon {
        width: 20px;
        height: 20px;
    }

    .pay-item {
        font-size: 12px;
    }

    .offer-text {
        color: #3D3D3D;
        font-size: 12px;
    }

    .pay-item.final {
        font-size: 18px;
        margin-top: 12px;
    }

}

@media(min-width:768px) {
    .item p {
        font-size: 20px;
    }

    .title-check p {
        font-size: 18px;
    }

    .item .price-box .price-with-disc {
        font-size: 20px;
    }

    .item .price-box .price {
        font-size: 16px;
    }

    .price-badge {
        font-size: 11px;
    }

    .main-cart {
        min-height: 500px;
    }

    .pay-item {
        font-size: 20px;
    }

    .offer-text {
        color: #3D3D3D;
        font-size: 20px;
    }

    .pay-item.final {
        font-size: 28px;
        margin-top: 12px;
    }

}
