@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

.preloader-body {
    height: 100%;
    position: fixed;
    overflow: hidden;
}

.page-preloader {
    background: white;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999999999999999!important;
    font-family: 'Roboto', sans-serif;
}

.page-preloader_active {
    display: flex;
}

.page-preloader__text {
    color: #2d3347;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    padding-top: 25px;
    padding-left: 10px;
    padding-right: 10px;
    height: 100px;
}

.page-preloader-container {
    max-width: 760px;
    width: 100%;
}

.page-preloader-logo {
    display: flex;
    max-width: 300px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.page-preloader-logo__gif {
    max-width: 60px;
    width: 100%;
    margin-right: 10px;
}

.page-preloader-logo__text {
    width: 110px;
    height: 60px;
}

.page-preloader-footer {
    max-width: 760px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    position: absolute;
    bottom: 40px;
}

.page-preloader-footer__copy {
    color: #7c8b92;
}

.page-preloader-footer__question {
    color: #084e76;
}

.page-preloader-footer__iata {
    width: 100px;
    height: 25px;
}

@media screen and (max-width: 768px) {
    .page-preloader {
        height: 110%;
    }

    .page-preloader-container {
        margin-top: -10%;
    }

    .page-preloader-footer {
        display: none;
    }
}