.cart-page {
    padding-top: 150px;
    background-color: var(--dark-bkgd);
    color: var(--light-text);
}

.cart-page .content_div {
     justify-content: center;
    align-items: center;
}

.cart-page .breadcrumb {
    margin-top: 0px;
    display: flex;
    flex-direction: row;
}

.cart-page .cart-container {
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 850px;
}

.cart-page .woocommerce-remove-coupon {
    color: var(--light-text);
}

.cart-page td.product-thumbnail {
    width: 150px;
}

.cart-page h1 {
    color: var(--light-text);
    width: 100%;
    text-align: center;
    margin-bottom: 55px;
    width: 100%;
    border-bottom: 2px solid var(--accent);
    padding: 15px 0px;
}

.cart-page .product-name a {
    color: var(--light-text);
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 15px;
    display: block;
}

.cart-page .product-name .woocommerce-Price-amount {
    display: none;
}

.cart-page .cart-items, .cart-page table, .cart-page form {
    width: 100%;
    
}

.cart-page .cart-item {
       border-bottom: 1px solid var(--accent-rgb);
        padding-bottom: 25px;
        margin-bottom: 25px;
        display: block;
}


.cart-page .product-short-description {
    font-size: 14px;
    margin-bottom: 25px;

}

.cart-page .product-details {
    padding-right: 50px;
    padding-left: 15px;
}

.cart-page .cart-table td {
    vertical-align: top;
}

.cart-page input {
background-color: transparent;
    border: 2px solid var(--accent);
    border-radius: var(--button-radius);
    color: var(--light-text);
    padding: 10px 10px 10px 20px;
    font-size: 16px;
    max-width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cart-page .quantity-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.cart-page .quantity-selector label {
    margin-right: 25px;
}

.cart-page .product-quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.cart-page .product-quantity label {
    margin-right: 25px;
    font-size: 15px;
}

.cart-page .product-remove {
    margin-left: 25px;
}

.cart-page .product-remove a {
    color: var(--light-text);
    font-size: 14px;
    text-decoration: none;
}

.cart-page .product-remove a:hover {
    text-decoration: underline;
}

.cart-page .product-price span {
    color: var(--light-text);
}

.cart-page .cart-actions {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.cart-page .primary_button {
    border: none;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    position: relative;
    padding: 10px 20px;
    background-color: var(--accent);
    color: var(--light-text);
    border-radius: var(--button-radius);
}

.cart-page .primary_button:hover {
    background-color: var(--secondary);
}

.cart-page .primary_button:disabled,
.cart-page .primary_button[disabled] {
    pointer-events: auto !important;
    cursor: pointer !important;
    opacity: 1 !important;
    background-color: var(--accent) !important;
    color: var(--light-text) !important;
}

.cart-page .cart-empty {
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.cart-page .cart-empty p {
    color: var(--light-text);
}

.cart-page .cart-totals {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.cart-page .totals-table {
    width: 300px;
    margin-bottom: 35px;
    margin-top: 50px;

}

.cart-page .backorder_notification {
    color: rgb(198, 119, 9);
}

.cart-page .totals-table span {
color: var(--light-text);

}

.cart-page .totals-table td, .cart-page .totals-table th   {
   text-align: right;
}

.cart-page .update-cart {
    background-color: transparent;
    color: var(--light-text);
    font-size: 16px;
    padding: 10px 30px;
    border: 2px solid var(--secondary);
}

.cart-page .update-cart:hover {
    cursor: pointer;
    background-color: var(--secondary);
}


@media (max-width: 900px)
{
    .cart-page {
    padding-top: 125px;
  
}
}

@media (max-width: 600px) {
    .cart-page .product-name .woocommerce-Price-amount {
    display: block;
    color: var(--light-text);
        margin-bottom: 15px;
}

.cart-page span.woocommerce-Price-currencySymbol {
    color: var(--light-text);
}

.cart-page .product-name a {

    margin-bottom: 5px;

}

.cart-page td.product-price {
    display: none;
}

.cart-page .product-details {
    padding-right: 0px;
}

.cart-page .cart-actions {
    justify-content: center;
    align-items: center;
}

.cart-page .update-cart {
    width: 100%;
}

.cart-page .checkout-button, .cart-page .primary_button {
    width: 100%;
    max-width: unset;
    display: block;
     border: none;
    font-family: inherit;
    line-height: 1.25;
}

.cart-page .cart-item {
        display: flex;
        flex-direction: column;
}

}