.loader {
    margin-left: 75px;
    padding: 30px 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border-radius: 90%;
}

.hide {
    display: none;
}

.loader2 {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 50px auto 0;
}

.loader2 span {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    transform: rotate(calc(18deg* var(--i)));
}

.loader2 span:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: #55A13D;
    border-radius: 50%;
    transform: scale(0);
    animation: animate 2s linear infinite;
    animation-delay: calc(0.1s* var(--i));
}

.loader2 .plane {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    animation: rotating 2s linear infinite;
    animation-delay: -1s;
}

.loader2 .plane:before {
    content: "";
    background: url(/assets/images/plane-loader.png) no-repeat 0 0;
    background-size: 50%;
    position: absolute;
    top: 5px;
    left: 9px;
    color: #5cb85c;
    transform: rotate(90deg);
    width: 55px;
    height: 50px;
}


.PlaceholderAirlineFilter{
    text-align: center;
    font-size: 18px;
    color: #494949;
    font-weight: 600;
    margin-top: -15px;
    margin-bottom: 15px;
    float: left;
    width: 100%;
}

.loader-text{
    text-align: center;
    font-size: 20px;
    color: #494949;
    font-weight: 600;
    margin-top: -15px;
    margin-bottom: 15px;
}

@keyframes animate {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    80%,
    100% {
        transform: scale(0);
    }
}

@keyframes rotating {
    0% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(370deg);
    }
}