﻿.flex{
        display: flex;
        justify-content: space-around;
    align-items: center;
     }
.loader-bg {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    background: #000000bd;
    height: 100%;
    z-index: 9999;
    overflow: auto;
}
.img-part {
    width: 100%;
    position: relative;
    display: block;
    display: flex;
    height: 16rem;}

.loader {
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    max-width: 82rem;
    height: 30rem;
    margin: 0 auto;
    top: 25%;
}

.wait {
    margin: 3rem 0;
}

.iata_code {
    font-size: 13rem;
	font-weight: 500;
    opacity: 1;  
    color: #0099cc;
    display: block;
}

.departure_city {
    left: 0;
}

.arrival_city {
    right: 1.5rem;
}

.plane {
    margin: 0 auto;
    width: 100%;
}

.plane-img {
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
    height: 221px;
}

@-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);
    }
}


.earth-wrapper {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    padding-top: 2.7rem;
}

.earth {
    width: 142px;
    height: 142px;
    background: url("https://dev.twai.com/projects/travelonecms/landing/images/loder/earth.gif");
    border-radius: 100%;
    background-size: 340px;
    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) {
    .departure_city {
        left: 0;
        right: 0;
        top: 30%;
        position: absolute;
        margin: 0 auto;
    }

    .arrival_city {
        left: 0;
        right: 0;
        top: 93%;
        position: absolute;
        margin: 0 auto;
    }
}



.progress1 {
    background: rgba(255,255,255,0.1);
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    padding: 0 5px;
    display: flex;
    height: 40px;
    width: 500px;
}

.progress-value1 {
    animation: load 3s normal forwards;
    box-shadow: 0 10px 40px -10px #fff;
    border-radius: 100px;
    background: #fff;
    height: 30px;
    width: 0;
}

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 75%;
    }
}