.content-cart {
    padding: 0 20px;
    padding: 0 5%;
    padding-top: 20px;
    padding-bottom: 50px;
    width: 100%;
}

/*.content-cart .container {
}*/

.content-cart .empty-cart {
    min-height: 400px;
    padding-bottom: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-items: center;
}

.content-cart .empty-cart h1 {
    font-size: 20px;
    margin: 0 0 15px;
    color: #08c;
    font-weight: 400;
}

.content-cart .empty-cart p {
    margin: 0 0 15px;
    line-height: 1.5;
    font: 13px;
    color: #777;
}

.content-cart .empty-cart a {
    color: #08c;
}

.content-cart .empty-cart a:hover {
    text-decoration: underline;
}

.content-cart .cart-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.content-cart .cart-header h1 {
    color: #08c;
    font-size: 20px;
    font-weight: 400;
}

.content-cart .cart-header .button-checkout {
    background: green;
    font-weight: normal;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    border-radius: 5px;
    padding: 0 15px;
    line-height: 38px;
    border: 0;
    color: white;
}

.content-cart .cart-message {
    border-style: solid;
    border-width: 1px;
    min-height: 24px;
    padding: 15px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
}

.content-cart .message-success {
    border-color: #d6e9c6;
    background: #dff0d8;
    color: #3c763d;
}

.content-cart .message-error {
    border-color: #ebccd1;
    background-color: #f2dede;
    color: #a94442;
}

.content-cart .message-header {
    margin-bottom: 20px;
}

.content-cart .message-item {
    border-style: none;
    background-color: initial;
    padding: 0;
    font-weight: bold;
    font-size: 11px;
    margin: 5px 0;
    line-height: 1.5;
    display: block;
}

.content-cart .message-item:empty {
    display: none;
}

.content-cart .message-shipping {
    margin: 5px 0;
}

.content-cart .cart-content {
    display: flex;
    column-gap: 30px;
    margin-bottom: 30px;
    flex-direction: row;
}

.content-cart .cart-area {
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 3px rgba(0,0,0,0.08);
    
    padding: 30px;
    margin-bottom: 60px;

    display: flex;
    flex-direction: column;
    width: 100%;
}

/*.content-cart .cart-list {
}*/

.content-cart table.cart-list {
    border: 0;
    border-collapse: separate;
    border-collapse: collapse;
    border-spacing: 1px;
}

/*.content-cart table.cart-list th,
.content-cart table.cart-list td
 {
    padding: 0;
}*/

.content-cart table.cart-list thead tr,
.content-cart table.cart-list tbody tr {
    border: 1px solid #dcdcdc;
    border-width: 0 0 1px; 
}

.content-cart table.cart-list thead th,
.content-cart table.cart-list tbody td {
    padding: 15px 10px;
}

.content-cart table.cart-list tbody td {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

.content-cart .cart-list th {
    font-weight: 600;
    color: #777;
    white-space: nowrap;
    font-size: 14px;
    vertical-align: middle;
    text-align: left;
}

.content-cart .cart-list td.remove i {
    font-size: 18px;
    color: #08c;
    line-height: 22px;
}


.content-cart .cart-list img {
    width: 80px;
    width: 26px;
    width: 42px;
}

.content-cart table.cart-list td.product a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: #08c;
    font-weight: 400;
    font-size: 14px;
}

/* .content-cart table.cart-list .price {} */

/* .content-cart table.cart-list .qty {} */

.content-cart table.cart-list .qty-actions {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.content-cart table.cart-list .qty-actions:hover {
    border: 1px solid #08c;
}


.content-cart table.cart-list .qty-actions button,
.content-cart table.cart-list .qty-actions input
 {
    height: 30px;
    vertical-align: middle;
}

.content-cart table.cart-list .qty-actions button {
    color: #777;
    background: #f4f4f4;
    font-size: 14px;
    width: 30px;
    line-height: 30px;
    font-weight: 700;
    /*border: 1px solid #ccc;*/
    border-style: solid;
    border-color: #ccc;
    border-left:  1px;
}

.content-cart table.cart-list .qty-actions button {
    filter: none;
}

.content-cart table.cart-list .qty-actions button:hover {
    color: #fff;
    background: #777;
    background: #08c;
}

.content-cart table.cart-list .qty-actions button.qty-minus {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.content-cart table.cart-list .qty-actions button.qty-plus {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.content-cart table.cart-list .qty-actions input {
    /*padding: 8px;*/
    color: #777;
    background: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    width: 35px;
    text-align: center;
}

.content-cart table.cart-list .qty-actions input {
    border-width: 1px;
    border-color: #ccc;
    border-style: solid;
    border-top: 0;
    border-bottom: 0;
    filter: none;
}

/* .content-cart table.cart-list .qty-actions input:hover,
.content-cart table.cart-list .qty-actions input:focus
 {} */

.content-cart table.cart-list .subtotal {
    text-align: left;
}

.content-cart table.cart-list td.subtotal {
    color: #08c;
}

.content-cart .cart-actions {
    display: flex;
    justify-content: space-between;
    padding: 15px 5px 0;
    column-gap: 10px;
}

.content-cart .cart-actions .button-empty-cart {
    margin-left: auto;
}

.content-cart .cart-actions .button {
    background: #fff;
    border: 1px solid #ccc;
    color: #777;
    line-height: 32px;
    padding: 0 12px;
    font-weight: normal;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 5px;
    transition: 0.2s;
    filter: none;
}

.content-cart .cart-actions .button:hover{
    background: #08c;
    color: #fff;
    border-color: #08c;
}

.content-cart .calc-area {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 45px;
}

/* .content-cart .calc-card { */
    /* border-radius: 7px; */
    /* border: 1px solid #ddd; */
/* } */

.content-cart .calc-card h1 {
    border-radius: 7px 7px 0 0;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #000;
    line-height: 1.35;
}

.content-cart .calc-card .content {
    padding: 15px;
    border: 1px solid #ddd;
    border-top: 0;
    border-radius: 0 0 7px 7px;
    background-color: #fbfbfb;

    font-size: 14px;
    line-height: 1.5;
    color: #777;
}

.content-cart .calc-card .content p {
    margin: 0 0 15px;
    margin-bottom: 10px;
}

.content-cart .calc-card .content label {
    display: block;
    margin-bottom: 10px;
}

.content-cart .calc-card .content input[type=text] {
    display: block;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.075);
    color: #777;
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    outline-color: #777;
    padding: 10px;
    width: 100%;
    filter: none;
}

.content-cart .shipping-methods {
    margin-top: 10px;
    padding-top: 5px;
}

.content-cart .shipping-methods input[type=radio] {
    margin-right: 5px;
}

.content-cart .shipping-methods label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
}

.content-cart .shipping-methods span .description {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.content-cart .shipping-methods .value {
    color: #08c
}

.content-cart .calc-card input:hover {
    border-color: #08c;
}

.content-cart .calc-card .zipcode span {
    display: block;
    display: none;
}

.content-cart .calc-area .button {
    width: 100%;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    border-radius: 6px;
    padding: 0 15px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #08c;
}

.content-cart .shipping-items {
    margin-bottom: 10px;
}

/* .content-cart .button-shipping-calc {
} */

.content-cart .button-checkout2 {
    background: green !important;
    margin-bottom: 10px;
}

.content-cart .total-items {
    display: table;
    margin-bottom: 10px;
}

.content-cart .total-item {
    display: table-row;
    justify-content: space-between;
    padding: 0;
}

.content-cart .total-item span {
    display: table-cell;
    font-weight: 300;
    line-height: 1.4;
    font-size: 15px;
    color: #777;
    padding: 10px;
    vertical-align: middle;
}

.content-cart .total-item .value {
    display: table-cell;
    white-space: nowrap;
    color: #000;
    padding: 10px;
    text-align: right;
    font-weight: 600;
    font-size: 17px;
    vertical-align: middle;
}

.content-cart .subtotal .value,
.content-cart .cart-shipping .value
 {
    font-size: 14px;
}

.content-cart .subtotal span,
.content-cart .subtotal .value,
.content-cart .cart-shipping span,
.content-cart .cart-shipping .value
{
    border-bottom: 1px solid #dcdcdc;
}

.content-cart .tax-item {
    background: #dae1e4;
}

.content-cart .total-taxes {
    cursor: pointer;
}

.content-cart .taxes-items {
    display: none;
}

.content-cart .taxes {
    display: table-row-group;
}

.content-cart .total-taxes span {
    text-align: right;
}

.content-cart .total-item span {
    width: 100%;
}

@media (max-width: 990px) {
    .content-cart .cart-content {
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .content-cart .cart-list {
        display: flex;
        flex-direction: column;
    }
    .content-cart .cart-list thead {
        display: none;
    }
    .content-cart .cart-list tbody {
        display: flex;
        flex-direction: column;
        row-gap: 25px;
    }
    .content-cart .cart-list tr {
        display: flex;
        flex-direction: column;
        /* padding: 25px 0; */
        row-gap: 15px;
        padding-bottom: 25px;
    }
    .content-cart .cart-list th {
        display: none;
    }
    .content-cart .cart-list td {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        line-height: 24px;
    }

    .content-cart .cart-list img {
        width: 80px;
    }

    .content-cart table.cart-list thead th,
    .content-cart table.cart-list tbody td {
        padding: 0;
    }

    .content-cart .cart-list .remove {
        position: absolute;
        right: 10%;
    }

    /*.content-cart .cart-area {*/
        /* padding-top: 0;*/
    /*}*/

    /*.content-cart .total-item span {
        width: 100%;
    }*/
}

@media (max-width: 600px) {
    .content-cart .cart-actions {
        flex-direction: column;
        row-gap: 10px;
        padding-top: 25px;
        padding-bottom: 10px;
    }

    .content-cart .cart-actions .button {
        text-align: center;
    }
    .content-cart .cart-actions .button-empty-cart {
        margin-left: 0;
    }
}
