﻿    @media only screen and (max-width:1024px) {
  .cart-header__subtotal {
    border-top: 0px;
  }

  .cart-header__count {
    border-bottom: 2px solid #747E8B;
    padding-bottom: 20px; 
  }
}

/***********************************

    Free Shipping Progress Bar

***********************************/


.free-shipping-progress-container {
    border: 1px solid #BEC3C9;
    padding: 16px;
    margin: 16px 0px;
    display: flex;
}

.shipping-message,
.shipping-success-message {
    display: flex;
    font-size: 14px;
    font-weight: 600;
}

.disclaimer,
.mobile-disclaimer {
    font-size: 12px;
    font-style: italic;
    color: #757D8B;
}

.progress-bar-wrapper {
    padding: 3px;
    background-color: #D5DDE6;
    width: 50%;
    height: 14px;
    align-self: center;
}


.us-progress-bar {
    content: '';
    position: relative;
    height: 100%;
    /* background: #193BA3; */
    width: 0%;
    max-width: 100%;
    display: flex;
    /* transition: width 0.5s ease-in; */
}

.int-progress-bar {
    content: '';
    position: relative;
    height: 100%;
    /* background: #27ABAD; */
    width: 0%;
    max-width: 100%;
    display: flex;
    /* transition: width 0.5s ease-in; */
}

/* .text-content {
    width: 50%;
} */

.money-remainder {
    display: inline-block;
}

.mobile-disclaimer {
    display: none;
}

.mobile-cart-shipping-progress {
        display: none;
}

.cart-products__products-item.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.cart-products__products-item.disabled input {
  pointer-events: none;
}

@media only screen and (max-width:1024px) {
    .desktop-cart-shipping-progress {
        display: none;
    }

    .mobile-cart-shipping-progress {
        display: block;
    }

    .free-shipping-progress-container {
        flex-direction: column;
        align-items: center;
    }

    .shipping-success-message,
    .shipping-message {
        justify-content: center;
        margin-bottom: 16px;
        text-align: center;
    }

    .progress-bar-wrapper, 
    .text-content {
        width: 100%;
    }

    .mobile-disclaimer {
        display: flex;
        margin-top: 16px;
        width: 100%;
        text-align: center;
        flex-direction: column;
    }

    .disclaimer {
        display: none;
    }

    .sidecart-wrap {
        padding-top: 5px !important;
    }
}