#loader-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000
}

.loading #loader-wrapper {
    display: block;
    background: #ffffffa6;
}

.loading #loader-wrapper #loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 350px;
    margin: -175px 0 0 -150px;
    z-index: 1001
}

.loading #loader-wrapper #loader > img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -39.5px;
    margin-left: -75px
}

.loading #loader-wrapper #loader .text-best-rate {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center
}

.loading #loader-wrapper #loader .text-best-rate img {
    vertical-align: text-top;
    margin-right: 5px;
    width: 22px
}

.loading #loader-wrapper .circular-loader {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto
}

.loading #loader-wrapper .loader-path {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round
}

.loading #loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    z-index: 1000
}

.loading #loader-wrapper .loader-section.section-left {
    left: 0
}

.loading #loader-wrapper .loader-section.section-right {
    right: 0
}

@-webkit-keyframes rotate {
    to {
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    to {
        transform: rotate(1turn)
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35
    }
    to {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35
    }
    to {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124
    }
}

@-webkit-keyframes color {
    0% {
        stroke: #a9a9a9
    }
    40% {
        stroke: #a9a9a9
    }
    66% {
        stroke: #a9a9a9
    }
    80%, 90% {
        stroke: #a9a9a9
    }
}

@keyframes color {
    0% {
        stroke: #a9a9a9
    }
    40% {
        stroke: #a9a9a9
    }
    66% {
        stroke: #a9a9a9
    }
    80%, 90% {
        stroke: #a9a9a9
    }
}

.loading-logo {
    width: 150px;
}

.text-load {
    color: black !important;
    font-family: 'spartan', sans-serif;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 21px;
}

.lds-ellipsis div {
    position: absolute;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--main-color-logo-light);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
