body .ui-autocomplete {
    z-index: 9999999999;
    position: absolute;
    background: #fff;
    border: 1px solid #d1d9e6;
    box-shadow: 0 8px 8px rgba(0 0 0 / 14%);
    top: 100%;
    width: 100px;
    height: auto;
    padding: 0;
    list-style-type: none;
    border-radius: 0 0 10px 10px;
}

body .ui-autocomplete .ui-menu-item {
    list-style-type: none;
    width: 100%
}

body .ui-autocomplete .ui-menu-item .ui-menu-item-wrapper {
    font-size: 12px;
    font-weight: 500;
    padding: 8px 22px;
    background-image: url('images/pin.png');
    background-position: 5px center;
    background-size: 14px;
    background-repeat: no-repeat;
    color: #000;
    border-bottom: 1px solid #d1d9e6;
}

/* body .ui-autocomplete .ui-menu-item .ui-menu-item-wrapper.airportList{
    background-image: url('images/plane.png');
    background-size: 12px;
} */

body .ui-autocomplete .ui-menu-item .ui-menu-item-wrapper.info-message{
    background-image: url('images/search.png');
    font-size: 13px;
    color: rgba(0 0 0 / 60%);
    font-style: italic;
    background-size: 11px;
    padding-left: 24px;
    font-weight: 600;
}
body .ui-autocomplete .ui-menu-item .ui-menu-item-wrapper.invalidInput{
    background-image: url('images/sad.png');
    padding: 14px 14px 14px 24px;
}
body .ui-autocomplete .ui-menu-item .ui-menu-item-wrapper.invalidInput span{
    font-weight: 700;
}

body .ui-autocomplete .ui-menu-item .ui-menu-item-wrapper.addrSearching{
    background: none;
    padding: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    /*font-weight: 700 !important;*/
    color: #000 !important;
    padding: 24px;
    cursor: pointer;
    background-color: var(--webThemeColor) !important
}

.ui-autocomplete {
    max-height: 211px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ui-helper-hidden{
    display: none
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: #1a1a1a;
    background-size: 200% 100%;
    width: 0%;
    animation: slideProgress 1.5s ease-in-out infinite, gradientMove 3s ease infinite;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes slideProgress {
    0% {
        width: 70%;
        transform: translateX(-100%);
    }
    100% {
        width: 70%;
        transform: translateX(100vw);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}