/*
// .cart-table
*/
.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.cart-table__product-name {
    color: inherit;
}

.cart-table__options {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    font-size: 14px;
    color: #999;
    line-height: 19px;
}
.cart-table__options li {
    position: relative;
}
[dir=ltr] .cart-table__options li {
    padding-left: 12px;
}
[dir=rtl] .cart-table__options li {
    padding-right: 12px;
}
.cart-table__options li::before {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: currentColor;
}
[dir=ltr] .cart-table__options li::before {
    left: 1px;
}
[dir=rtl] .cart-table__options li::before {
    right: 1px;
}

.cart__actions .form-control{
    height: auto;
}
.ahContinueShop{
    text-decoration: unset;
    color: #222529;
}
.cart__actions {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cart__coupon-form {
    width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cart__buttons {
    width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    align-items: center;
}
#coupon-code, #update_cart {
    white-space: nowrap;
    margin-left: 15px;
    background-color: #be0604;
    border-color: #be0604;
}

/*
// .cart
*/
.cart__actions {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
}

.cart__coupon-form {
    width: calc(50% - 15px);
    display: flex;
}
.cart__coupon-form .btn {
    flex-shrink: 0;
}
[dir=ltr] .cart__coupon-form .btn {
    margin-left: 0.5rem;
}
[dir=rtl] .cart__coupon-form .btn {
    margin-right: 0.5rem;
}

.cart__buttons {
    width: calc(50% - 15px);
    display: flex;
    justify-content: flex-end;
}

[dir=ltr] .cart__update-button {
    margin-left: 0.5rem;
}
[dir=rtl] .cart__update-button {
    margin-right: 0.5rem;
}

.cart__totals {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    margin-bottom: 20px;
}
.cart__totals a:hover {
    text-decoration: underline;
}
.cart__totals th, .cart__totals td {
    vertical-align: top;
    padding: 6px 0;
}
.cart__totals th {
    font-weight: 700;
}
[dir=ltr] .cart__totals tr > :first-child {
    padding-right: 20px;
}
[dir=rtl] .cart__totals tr > :first-child {
    padding-left: 20px;
}
[dir=ltr] .cart__totals tr > :last-child {
    text-align: right;
}
[dir=rtl] .cart__totals tr > :last-child {
    text-align: left;
}

.cart__totals-header tr:last-child > * {
    padding-bottom: 10px;
}

.cart__totals-body tr:first-child > * {
    padding-top: 20px;
    border-top: 1px solid #ebebeb;
}
.cart__totals-body tr:last-child > * {
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
}

.cart__totals-footer {
    font-size: 24px;
}
.cart__totals-footer tr:first-child > * {
    padding-top: 20px;
}

.cart__calc-shipping {
    margin-top: 2px;
    font-size: 15px;
}


/*
// .checkout
*/
.checkout__totals {
    font-size: 15px;
    line-height: 19px;
    width: 100%;
    margin-bottom: 20px;
}
.checkout__totals th, .checkout__totals td {
    padding: 4px 0;
}
.checkout__totals th {
    font-weight: 700;
}
[dir=ltr] .checkout__totals tr > :first-child {
    padding-right: 20px;
}
[dir=rtl] .checkout__totals tr > :first-child {
    padding-left: 20px;
}
.checkout__totals tr > :last-child {
    white-space: nowrap;
}
[dir=ltr] .checkout__totals tr > :last-child {
    text-align: right;
}
[dir=rtl] .checkout__totals tr > :last-child {
    text-align: left;
}

.checkout__totals-header tr:last-child > * {
    padding-bottom: 10px;
}

.checkout__totals-products tr:first-child > * {
    padding-top: 20px;
    border-top: 1px solid #ebebeb;
}
.checkout__totals-products tr:last-child > * {
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
}

.checkout__totals-subtotals tr:first-child > * {
    padding-top: 20px;
}
.checkout__totals-subtotals tr:last-child > * {
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
}

.checkout__totals-footer {
    font-size: 24px;
}
.checkout__totals-footer th {
    font-weight: 500;
}
.checkout__totals-footer tr:first-child > * {
    padding-top: 20px;
}

.payment-methods {
    margin-bottom: 10px;
}

.payment-methods__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-methods__item {
    border-radius: 2px;
    background: transparent;
    border: 1px solid #e5e5e5;
}
.payment-methods__item:hover {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}
.payment-methods__item + .payment-methods__item {
    margin-top: 6px;
}

.payment-methods__item-header {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    margin-bottom: 0;
}

[dir=ltr] .payment-methods__item-radio {
    margin-right: 10px;
}
[dir=rtl] .payment-methods__item-radio {
    margin-left: 10px;
}

.payment-methods__item-container {
    overflow: hidden;
    height: 0;
    transition: height 0.2s;
}

.payment-methods__item-description {
    font-size: 15px;
    line-height: 20px;
    padding: 2px 16px 13px 16px;
}

.payment-methods__item--active, .payment-methods__item--active:hover {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}
.payment-methods__item--active .payment-methods__item-container {
    height: auto;
}

.checkout__agree {
    margin-bottom: 0px;
}
.checkout__agree a:hover {
    text-decoration: underline;
}
.bgRed{
    background-color: #be0604 !important;
    border-color: #be0604 !important;
}

@media (max-width: 767px) {
    .cart__actions {
        margin-top: 1.5rem;
        display: block;
    }

    .cart__coupon-form {
        width: 100%;
    }

    .cart__buttons {
        flex-direction: column;
        margin-top: 2.5rem;
        width: 100%;
    }

    .cart__update-button {
        order: -1;
        margin-bottom: 0.75rem;
    }
    [dir=ltr] .cart__update-button {
        margin-left: 0;
    }
    [dir=rtl] .cart__update-button {
        margin-right: 0;
    }
}
@media (max-width: 479px) {
    .cart__checkout-button {
        font-size: 1.125rem;
        height: calc(2.75rem + 2px);
        padding: 0.8125rem 2rem;
        line-height: 1;
        font-weight: 500;
    }
    .cart__checkout-button.btn-svg-icon {
        width: calc(2.75rem + 2px);
    }
}
@media (max-width: 379px) {
    .cart__checkout-button {
        font-size: 1rem;
        height: calc(2.25rem + 2px);
        line-height: 1.5;
        padding: 0.375rem 1.25rem;
        font-weight: 500;
    }
    .cart__checkout-button.btn-svg-icon {
        width: calc(2.25rem + 2px);
    }
}

.cart__checkout-button {
    background-color: #be0604 !important;
    border-color: #be0604 !important;
}

@media (min-width: 768px) {
    .cart-table__column {
        padding: 12px 18px;
        border-top: 1px solid #ebebeb;
    }
    [dir=ltr] .cart-table__column:first-child {
        border-left: 1px solid #ebebeb;
    }
    [dir=rtl] .cart-table__column:first-child {
        border-right: 1px solid #ebebeb;
    }
    [dir=ltr] .cart-table__column:last-child {
        border-right: 1px solid #ebebeb;
    }
    [dir=rtl] .cart-table__column:last-child {
        border-left: 1px solid #ebebeb;
    }

    .cart-table__head {
        background: #f7f7f7;
        font-size: 15px;
    }
    .cart-table__head .cart-table__column {
        font-weight: 500;
    }
    [dir=ltr] .cart-table__head .cart-table__column:first-child {
        border-top-left-radius: 2.5px;
    }
    [dir=rtl] .cart-table__head .cart-table__column:first-child {
        border-top-right-radius: 2.5px;
    }
    [dir=ltr] .cart-table__head .cart-table__column:last-child {
        border-top-right-radius: 2.5px;
    }
    [dir=rtl] .cart-table__head .cart-table__column:last-child {
        border-top-left-radius: 2.5px;
    }

    .cart-table__body .cart-table__column {
        padding-top: 18px;
        padding-bottom: 18px;
    }
    .cart-table__body .cart-table__row:last-child .cart-table__column {
        border-bottom: 1px solid #ebebeb;
    }
    [dir=ltr] .cart-table__body .cart-table__row:last-child .cart-table__column:first-child {
        border-bottom-left-radius: 2.5px;
    }
    [dir=rtl] .cart-table__body .cart-table__row:last-child .cart-table__column:first-child {
        border-bottom-right-radius: 2.5px;
    }
    [dir=ltr] .cart-table__body .cart-table__row:last-child .cart-table__column:last-child {
        border-bottom-right-radius: 2.5px;
    }
    [dir=rtl] .cart-table__body .cart-table__row:last-child .cart-table__column:last-child {
        border-bottom-left-radius: 2.5px;
    }

    .cart-table__column--image {
        width: 1px;
        text-align: center;
    }
    [dir=ltr] .cart-table__column--image {
        padding-right: 4px;
    }
    [dir=rtl] .cart-table__column--image {
        padding-left: 4px;
    }
    .cart-table__column--image .product-image {
        width: 80px;
    }

    .cart-table__column--price {
        width: 170px;
    }
    [dir=ltr] .cart-table__column--price {
        text-align: right;
    }
    [dir=rtl] .cart-table__column--price {
        text-align: left;
    }

    .cart-table__column--quantity {
        text-align: center;
        width: 1px;
    }
    [dir=ltr] .cart-table__column--quantity {
        padding-left: 90px;
    }
    [dir=rtl] .cart-table__column--quantity {
        padding-right: 90px;
    }

    .cart-table__column--total {
        width: 170px;
    }
    [dir=ltr] .cart-table__column--total {
        text-align: right;
    }
    [dir=rtl] .cart-table__column--total {
        text-align: left;
    }

    .cart-table__column--remove {
        width: 1px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    [dir=ltr] .cart-table__column--quantity {
        padding-left: 40px;
    }
    [dir=rtl] .cart-table__column--quantity {
        padding-right: 40px;
    }

    .cart-table__column--price,
    .cart-table__column--total {
        width: 130px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    [dir=ltr] .cart-table__column--quantity {
        padding-left: 0;
        padding-right: 0;
    }
    [dir=rtl] .cart-table__column--quantity {
        padding-right: 0;
        padding-left: 0;
    }

    .cart-table__column--price,
    .cart-table__column--total {
        width: 1px;
    }

    [dir=ltr] .cart-table__column--remove {
        padding-left: 0;
    }
    [dir=rtl] .cart-table__column--remove {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .cart-table {
        display: block;
    }

    .cart-table__head {
        display: none;
    }

    .cart-table__body {
        display: flex;
        flex-wrap: wrap;
    }

    .cart-table__row {
        position: relative;
        width: 100%;
        display: block;
        border: 1px solid #ebebeb;
        border-radius: 2px;
    }
    .cart-table__row + .cart-table__row {
        margin-top: 15px;
    }

    .cart-table__column {
        display: block;
        padding: 0;
    }

    .cart-table__column--image {
        padding: 20px 20px 12px;
        text-align: center;
    }
    .cart-table__column--image .product-image {
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
    }

    .cart-table__column--product {
        text-align: center;
        border-bottom: 1px solid #ebebeb;
        padding: 0 20px 18px;
    }

    .cart-table__column--price,
    .cart-table__column--quantity,
    .cart-table__column--total {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 20px;
    }
    .cart-table__column--price::before,
    .cart-table__column--quantity::before,
    .cart-table__column--total::before {
        font-weight: 500;
        width: 55%;
        flex-shrink: 0;
        content: attr(data-title) ": ";
    }
    [dir=ltr] .cart-table__column--price::before,
    [dir=ltr] .cart-table__column--quantity::before,
    [dir=ltr] .cart-table__column--total::before {
        text-align: right;
    }
    [dir=rtl] .cart-table__column--price::before,
    [dir=rtl] .cart-table__column--quantity::before,
    [dir=rtl] .cart-table__column--total::before {
        text-align: left;
    }

    .cart-table__column--quantity .input-number {
        width: 110px;
    }

    .cart-table__column--price {
        padding-top: 18px;
    }

    .cart-table__column--total {
        padding-bottom: 18px;
    }

    .cart-table__column--remove {
        position: absolute;
        top: 5px;
    }
    [dir=ltr] .cart-table__column--remove {
        right: 5px;
    }
    [dir=rtl] .cart-table__column--remove {
        left: 5px;
    }

    .cart-table__options li::before {
        display: none;
    }
}