.product-cart {
    min-height: 6rem;
}

/* overview general */
.product-cart-overview-card {
    margin-left: auto;
    width: 100%;
    max-width: 384px;
    font-size: 1.25rem;
}

.product-cart-overview-card.hidden {
    display: none;
}

.product-cart-overview-content {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
}

.product-cart-overview {
    display: flex;
    flex-direction: row;
    padding: 1rem;
}

/* overview confirm */
.product-cart-overview-button {
    padding: 0 1rem 1rem;
}

.overview-button {
    margin: 0;
}

.product-cart-overview-names {
    flex: 1 1 auto;
    width: 50%;
    text-align: left;
}

.product-cart-overview-values {
    flex: 1 1 auto;
    width: 50%;
    text-align: right;
}

.overview-name.bold, .overview-value.bold {
    font-weight: bold;
}

/* Empty */
.product-cart-empty {
    font-size: 1.25rem;
    font-style: italic;
    margin: auto;
    text-align: center;
    padding: 2rem;
    height: 6rem;
}

/* Responsiveness */
/* lg screen */
@media only screen and (max-width: 1200px) {

}

/* md screen */
@media only screen and (max-width: 992px) {

}

/* sm screen */
@media only screen and (max-width: 768px) {

}

/* xs screen */
@media only screen and (max-width: 576px) {
    .product-cart-overview-card {
        max-width: unset;
    }
}