﻿
.autocomplete-container-country {
    position: relative;
}


#RqFrom {
    width: 100%;
    padding: 7px;
    padding-right: 30px;  
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#RqDestination {
    width: 100%;
    padding: 7px;
    padding-right: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loading-icon-fromdes {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid #ccc;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.suggestions-list-country {
    position: absolute;
    z-index: 1000;
    width: 100%;
    border: none;
    border-top: none;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 5px 5px;
}

.suggestions-list-destination {
    position: absolute;
    z-index: 1000;
    width: 100%;
    border: none;
    border-top: none;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 5px 5px;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item-country {
    padding: 10px;
    cursor: pointer;
}

    .suggestion-item-country:hover {
        background-color: #f0f0f0;
    }

.suggestion-item-destination {
    padding: 10px;
    cursor: pointer;
}

    .suggestion-item-destination:hover {
        background-color: #f0f0f0;
    }

