html {
    overflow-y: auto !important;
    width: 100vw;
}

.v-application {
    background: var(--homefone);
}

.v-row {
    align-items: center;
}

.mobile-mode,
.mobile-menu,
.mobile-lang-switcher,
.mobile-currency-switcher,
.mobile-icon-mode,
.mobile-flex-mode,
.mobile-grid-mode {
    display: none;
}

.desktop-mode, .desktop-menu, .desktop-lang-switcher, .desktop-currency-switcher {
    display: block;
}

.v-container,
.v-container--fluid {
    padding: 0 !important;
}

.v-autocomplete__selection:first-child {
    margin-inline-start: -8px !important;
}

#app {
    max-width: 1440px;
    width: 100vw;
    font-family: var(--main-font);
    margin: 0 auto;
    padding: 0;
    font-weight: 400;
    background: var(--main-background);
    overflow-x: hidden;
}

input {
    outline: none;
}

.baner-on-page {
    width: 100%;
    max-width: 1440px;
}

.app-menu-bar {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    z-index: 1005;
    background: var(--white);
    box-shadow: 0 2px 4px #0002;
    padding-right: 36px;
}

.mobile-menu {
    display: none;
}

.user-preferences {
    display: grid;
    align-items: center;
    justify-items: end;
    column-gap: 16px;
    grid-area: preferences;
}

.v-carousel {
    height: max-content !important;
}

.grid-2-template {
    display: grid;
    grid-template-columns: 1fr 32px;
}

@media screen and (max-width: 1000px) {
    .passenger-details {
        grid-template-columns: 100%;
        grid-template-rows: max-content max-content;
    }

    .country-area {
        margin-top: 48px !important;
        margin-bottom: 32px;
    }
}

.hero-section {
    margin-top: 56px;
}

.select-component-overlay {
    z-index: 1000 !important;
}

/* Typographics */

.text-12-400 {
    font-size: 12px;
    font-weight: 400;
}

.text-12-500 {
    font-size: 12px;
    font-weight: 500;
}

.text-14-400 {
    font-size: 14px;
    font-weight: 400;
}

.text-14-500 {
    font-size: 14px;
    font-weight: 500;
}

.text-14-600 {
    font-size: 14px;
    font-weight: 600;
}

.text-16-400 {
    font-size: 16px;
    font-weight: 400;
}

.text-16-500 {
    font-size: 16px;
    font-weight: 500;
}

.text-16-600 {
    font-size: 16px;
    font-weight: 600;
}

.text-18-400 {
    font-size: 18px;
    font-weight: 400;
}

.text-18-500 {
    font-size: 18px;
    font-weight: 500;
}

.text-18-600 {
    font-size: 18px;
    font-weight: 600;
}

.text-20-500 {
    font-size: 20px;
    font-weight: 500;
}

.text-20-600 {
    font-size: 20px;
    font-weight: 600;
}

.text-22-500 {
    font-size: 22px;
    font-weight: 500;
}

.text-22-600 {
    font-size: 22px;
    font-weight: 600;
}

.text-28-500 {
    font-size: 28px;
    font-weight: 500;
}

.text-28-600 {
    font-size: 28px;
    font-weight: 600;
}

.text-shrinked {
    line-height: 100% !important;
}

.mt-20 {
    margin-top: 80px;
}

.mb-20 {
    margin-bottom: 80px;
}

.my-20 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.mt-25 {
    margin-top: 100px;
}

.mb-25 {
    margin-bottom: 100px;
}

.my-25 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.bottom-mobile-menu-elements {
    width: 100%;
    margin-bottom: 80px;
}

.bottom-navigation {
    position: fixed;
    bottom: 0px;
    z-index: 1004;
    transform: translateY(0px);
    height: 128px;
    left: 0px;
    width: calc(100% + 0px);
    padding: 12px 16px 16px 12px;
    border-top-left-radius: var(--default-border-radius);
    border-top-right-radius: var(--default-border-radius);
    background: var(--bottom-navigation-background);
}

/* Devices */

@media screen and (max-width: 1250px) {
    .mobile-menu, .mobile-lang-switcher, .mobile-currency-switcher {
        display: block !important;
    }

    .desktop-menu,
    .desktop-lang-switcher,
    .desktop-currency-switcher {
        display: none !important;
    }
}

@media screen and (max-width: 600px) {
    .mobile-mode {
        display: block !important;
    }

    .mobile-icon-mode {
        display: inline-block !important;
    }
    
    .mobile-flex-mode {
        display: flex !important;
    }
    
    .mobile-grid-mode {
        display: grid !important;
    }
    
    .desktop-mode {
        display: none !important;
    }

    .desktop-mode {
        display: none !important;
    }
}