:root {
    --icon-size-small: 16px;
    --icon-size-medium: 20px;
    --icon-size-large: 24px;
    --shop-btn-quantity: var(--bs-danger);
    --shop-btn-quantity-disabled: var(--bs-gray-600);
    --shop-step-title-bg: var(--bs-primary);
}
.cart-quantity {
    background: none;
    border: 0;
    display: inline-block;
    height: 3rem;
    margin: 0;
    text-align: center;
    width: 3.5rem;
}
.cart-quantity:focus {
    border: none;
    outline: none;
}

.cart-icon-btn {
    background: transparent;
    border: none;
}
.cart-delete-btn,
.cart-quantity-btn {
    color: var(--shop-btn-quantity);
}
.cart-quantity-btn:disabled {
    color: var(--shop-btn-quantity-disabled);
}
.cart-address-overview {
    font-size: 14px;
}
.cart-table td {
    vertical-align: middle;
}
.cart-table th {
    font-weight: 600;
}
@media (max-width: 1023.98px) {
    .cart-table .header {
        display: none;
    }
}
.cart-item {
    grid-template-columns: auto auto;
    grid-template-rows: auto;
}
.cart-list .edit .price {
    font-weight: bold;
}
.cart-address-overview .collapsing {
    transition: height .0s ease;
}
.checkout-title {

}
.checkout-overview-title {
    font-weight: bold;
}
.checkout-step {
    margin: 0;
}
.checkout-step a {
    text-decoration: none;
}
.checkout-step .checkout-step-title {
    display: block;
    font-size: 1.3333333333rem;
    letter-spacing: -.025rem;
    line-height: 1.125;
    margin: 0;
    padding: 1rem;
    text-align: left;
    transition: background .25s;
    width: 100%;
}
.checkout-step.active .checkout-step-title,
.checkout-step.visited a .checkout-step-title:hover {
    background: var(--shop-step-title-bg);
    color: #fff;
}
.checkout-step.visited .checkout-step-title {
    background: #666666;
    color: #fff;
}
.checkout-step.disabled .checkout-step-title {
    background: #dadada;
    color: #333;
}
.checkout-registration {
    font-size: 14px;
}
.checkout-text-link:hover {
    text-decoration: underline;
}
.icon {
    vertical-align: -22%;
}
.icon-size-small {
    --icon-size: var(--icon-size-small);
}
.icon-size-medium {
    --icon-size: var(--icon-size-medium);
}
.icon-size-large {
    --icon-size: var(--icon-size-large);
}
.icon {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
    color: currentColor;
    height: var(--icon-size,1em);
    width: var(--icon-size,1em);
    line-height: var(--icon-size,1em);
    flex-shrink: 0;
}
.icon-markup {
    position: absolute;
    display: flex;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
}
.icon-markup > svg {
    height: 5rem !important;
}
@media (min-width: 768px) {
    .cart-confirmation-view .cart-address-overview {
        --bs-columns: 18;
    }
}
.cart-toast {
    overflow: hidden;
}
.cart-toast .progress {
    --bs-progress-bg: rgba(255,255,255, 0.4);
    height: 5px;
}
.cart-modal iframe {
    width: 100%;
    height: 100%;
}
.cart-modal .modal-body {
    min-height: 500px;
}
.regular-price,
.special-price {
    font-size: 1rem;
}
.regular-price > .price .price,
.special-price > .price .price {
    font-size: 1.4rem;
    font-weight: 300;
}
.special-price > .price .price {
    color: var(--bs-danger);
}
.quantity-discount {
    margin-top: 1rem;
}
.quantity-discount ul {
    list-style: none;
    padding: 0 !important;
    margin-top: 0.45rem !important;
}
div {
    /* background: var(--bs-modal-bg); */
}
.loader {
    width: 8px;
    height: 40px;
    border-radius: 4px;
    display: block;
    margin: 20px auto;
    position: relative;
    background: currentColor;
    color: var(--bs-primary);
    box-sizing: border-box;
    animation: animloader 0.6s 0.6s linear infinite alternate;
}

.loader::after, .loader::before {
    content: '';
    width: 8px;
    height: 40px;
    border-radius: 4px;
    background: currentColor;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    box-sizing: border-box;
    animation: animloader 0.6s  0.75s  linear infinite alternate;
}
.loader::before {
    left: -20px;
    animation-delay: 0s;
}

@keyframes animloader {
    0%   { height: 48px}
    100% { height: 4px}
}
.form-select.orderby {
    max-width: 160px;
    width: 100%;
    text-overflow: ellipsis;
}
