.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #262c39;
    transition-duration: 1s;
}

.sticky a {
    color: rgb(241, 241, 241);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #212121;
    /* letter-spacing: 0.1rem; */
}


.box {
    /* box-shadow: var(--box_shadow) */
}

.zoom {
    transition: transform .2s;
    /* Animation */
}

.zoom:hover {
    transform: translate(0, -5px);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */

}

@media screen and (min-width: 769px) and (max-width: 1605px) {
    section .container {
        max-width: 75vw !important;
    }
}

@media screen and (max-width: 768px) {
    section .container {
        max-width: 90vw !important;
    }

}


/* Style the selected option */
select#city-option {
    color: #ffffff !important; /* Change the text color of the selected option */
}

select#city-option option {
    color: black !important;
}

/* Width and height of the scrollbar */
::-webkit-scrollbar {
    width: 1px; /* Width of the vertical scrollbar */
    height: 1px; /* Height of the horizontal scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f110;
    border-radius: var(--border-radius);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: var(--border-radius);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--text-color);
}

