﻿.sizevalidation {
    font-size: 12px !important;
}

.error_outline {
    border:1px solid red;
}
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader1 {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #04719a;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}
/*.middle_swap{
    padding:15px 0!important;
}*/
@media (min-width: 768px) and (max-width: 1023px) {
    .middle_swap {
    display:flex;
    justify-content: center;
    align-items: center;
    }
}
.fareRulesDiv{
    font-size:13px!important;
    line-height:1.3!important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body.loading {
    overflow: hidden;
}

   