/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
.page-link{
    text-align: center;
}
.pages nav{
    display: flex;
    justify-content: center;
}

.search-container {
    position: relative;
    margin: 50px auto;
}

.search-input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
}
.where-input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
}

.suggestions-list {
    position: absolute;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 1000;
    display: none;
}
.where-suggestions-list {
    position: absolute;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 1000;
    display: none;
}

.suggestions-list li {
    padding: 10px;
    cursor: pointer;
    color: black;
    text-align: right;
}
.where-suggestions-list li {
    padding: 10px;
    cursor: pointer;
    color: black;
    text-align: right;
}

.suggestions-list li:hover {
    background-color: #f0f0f0;
}
.where-suggestions-list li:hover {
    background-color: #f0f0f0;
}
.sticky #logo .h2 {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #0054a6 !important;
}
#loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .header__lang{
        margin-top: 20px;
        margin-right: 150px;
    }
}
