html,
body {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.cart-popup {
    z-index: 1000 !important;
}

.ksc-delivery-meter {
    width: 100%;
    background-color: #1e73be;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.ksc-delivery-meter__text {
    margin-bottom: 5px;
    font-weight: 700;
}

.ksc-delivery-meter__rail {
    width: 90%;
    max-width: 800px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin: 0 auto;
    overflow: hidden;
}

.ksc-delivery-meter__value {
    height: 100%;
    width: 0%;
    background-color: #00ffcc;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .ksc-delivery-meter {
        font-size: 14px;
        padding: 8px 0;
    }

    .ksc-delivery-meter__rail {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .ksc-delivery-meter {
        font-size: 12px;
        padding: 6px 0;
    }

    .ksc-delivery-meter__rail {
        height: 6px;
    }
}
