.empty-cart {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#empty-cart-btn-wrapper {
    text-decoration: none;
}

.btn-wrapper {
    margin-top: 50px;
}

.item-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #C4D6E7;
    padding-bottom: 15px;
    align-items: center;
}

.item-product-cart {
    display: flex;
}

.item-product-image {
    max-width: 80px;
    margin-right: 15px;
}

.cart-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
}

.items-wrapper {
    width: 55%;
}

.payment-details {
    width: 45%;
}

.summary-cart {
    margin: auto;
    width: 80%;
}

.item-attributes {
    margin-top: 5px;
    display: flex;
}

.cart-header {
    margin-bottom: 40px;
    
}

#summary-cart {
    margin: auto; 
    width: 80%;
}

.voucher-field-wrapper {
    margin-top: 10px;
    display: flex;
}

#voucher-input {
    height: fit-content;
}

#voucher-btn {
    margin-left: 15px;
    background-color: var(--secondary-color);
    color: black;
    border-color: var(--secondary-color);
    margin-top: 0px;
}

#voucher-code {
    margin-top: 3px;
    color: #1ba01f;
}

.buttons-wrapper {
    display: flex;
    flex-direction: column;
}


@media only screen and (max-width: 650px) {
    .btn-wrapper {
        margin-top: 20px;
    }

    .cart-header {
        text-align: center;
        margin-bottom: 55px;
    }

    .cart-wrapper {
        flex-direction: column;
        margin-top: 30px;
    }

    .items-wrapper {
        width: 100%;
    }

    .item-wrapper {
        flex-direction: column;
    }
    
    .item-price-wrapper {
        margin-top: 20px;
        text-align: center;
    }

    .payment-details {
        width: 100%;
        padding-left: 7%;
        padding-right: 7%;
    }

    .item-product-cart {
        align-items: flex-start;
    }

    #summary-cart {
        width: 100%;
    }

    .voucher-field-wrapper {
        margin-top: 10px;
        display: block;
    }
    
    #voucher-btn {
        margin-left: 0px;
        margin-top: 10px;
        background-color: var(--secondary-color);
        color: black;
        border-color: var(--secondary-color);
    }
}

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

.total-saved-text {
    font-size: large;
    padding: 2px;
    color: #fa3737;
    font-weight: 700;
}
