/* Default Popup Styles */
.default-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.default-popup-container.show {
    display: flex !important;
    /* Display when show class is added */
}

.default-popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 300px;
    text-align: center;
    position: relative;
}

.close-default-popup {
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 10px;
}

svg.ci-location-icon-defaultpopup {
    width: 10%;
}

svg.ci-location-icon-popup {
    width: 10%;
}

.ci-popup-image {
    object-fit: cover;
}

.zip-code-checker {
    padding-top: 5px;
    display: flex;
    gap: 5px;
}

.truck-animation-img-popup {
    position: absolute;
    left: -22px;
    animation: moveTruckPopup 5s linear infinite;
}

@keyframes moveTruckPopup {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100vw);
        /* Move the truck off the screen */
    }
}

.truck-animation {
    position: relative;
    width: 100%;
    height: 35px;
    padding-top: 4px;
    overflow: hidden;
}

.ci-zipcode-result-inline {
    height: 23px;
    padding-top: 3px;
}

#zipcodeCheckerInline {
    display: flex;
    gap: 7px;
}

svg.ci-location-icon {
    width: 6%;
}

.popup-extra-image {
    margin-bottom: 15px;
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-container.show {
    display: flex !important;
}

.popup-content {
    background-color: white;
    padding: 23px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 360px;
    text-align: center;
    position: relative;
    min-height: 330px;
}

.close-popup {
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 5px;
}

.zipcode-input {
    padding: 8px;
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.zipcode-check-btn {
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.zipcode-check-btn:disabled {
background-color: #ddd;cursor: not-allowed;
}
.truck-animation-img {
animation: moveTruck 5s linear infinite;
}
@keyframes moveTruck {
0% {transform: translateX(0);}
100% {transform: translateX(100vw);}
}
.zipcode-result {
margin-top: 7px;font-size: 12px;font-weight: bold;
}
.open-popup-btn {
padding: 10px 20px;background-color: #007bff;color: white;border: none;border-radius: 5px;cursor: pointer;
}
.open-popup-btn:hover {
    background-color: #0056b3;
}