.head-location {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.location-btn {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.location-btn img {
    width: 20px;
    margin-right: 8px;
}

#current-city {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.current-city:hover {
    color: rgba(53, 60, 64, 1);
}

/* Dropdown styles */
.city-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: fixed;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 180px;
    border-radius: 5px;
    z-index: 1100;
    top: 65px;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}

@media (max-width: 768px) {
    .city-dropdown {
        left: 40%;
    }

    #current-city {
        font-size: 12px;
    }
}

.city-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.city-dropdown li {
    padding: 10px;
    transition: background-color 0.3s ease;
}

.city-dropdown li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.city-dropdown li:hover {
    background-color: #f0f0f0;
}

/* Animation for the dropdown */
.city-dropdown li a:hover {
    color: #007bff;
}

#languageDropdown+.dropdown-menu {
    left: -25px !important;
    min-width: 18px;
}

#stars .star {
    font-size: 2em;
    cursor: pointer;
    color: gray;
    transition: color 0.3s;
}

#stars .star:hover {
    color: gold;
}

.main-cookies {
    /* display: flex;  */
    display: none;
    z-index: 1000;
    position: fixed;
    box-shadow: 0px 2px 30px 20px #0000000F;
    background: #FFFFFF;
    padding: 24px;
    border-radius: 30px;
    min-height: 170px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3%;
    text-align: left;
    transition: .4s all ease;
}

.main-cookies .text-cookies {
    font-size: 20px;
}

.close-btn {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 2%;
    color: rgba(53, 60, 64, 0.33);
    background: none;
    border: 1px solid rgba(53, 60, 64, 0.33);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.close-btn:hover {
    color: rgba(53, 60, 64, 1);
}

.dark-button {
    border: none;
    padding: 13px 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    border-radius: 77px;
    background: #353C40;
}

.dark-button:hover {
    background: #FF0000;
}

.dark-button span {
    font-size: 22px;
    font-weight: 600;
    line-height: 25.78px;
    color: #fff;
}

.soft-button {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.09px;
    color: rgba(53, 60, 64, 0.33);
}

.soft-button:hover {
    color: rgba(53, 60, 64, 1);
}

@media (max-width: 768px) {
    span[id^="snowflake"] {
        display: none !important;
    }
}