#loader-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    /* display: none; */
}
.loader {
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    max-width: 35rem;
    height: 30rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader .plane {
    position: absolute;
    margin: 0 auto;
    width: 100%;
}

.loader .plane-img {
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
    width: 130px;
}

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

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

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

.loader .earth-wrapper {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    /* padding-top: 2.7rem; */
}

.loader .earth {
    width: 100px;
    height: 100px;
    background: url("https://zupimages.net/up/19/34/6vlb.gif");
    border-radius: 100%;
    background-size: 200px;
    animation: earthAnim 12s infinite linear;
    margin: 0 auto;
    border: 1px solid #cdd1d3;
}

@keyframes earthAnim {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -340px;
    }
}

@media screen and (max-width: 420px) {
    .loader .arrival_city {
        left: 0;
        right: 0;
        top: 93%;
        position: absolute;
        margin: 0 auto;
    }
}
