.loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F86A05;
    min-width: 320px;
    z-index: 1;
}

body[flt-embedding="full-page"] .loader {
    display: none !important;
}

.loader-progress {
    position: absolute;
    left: 50%;
    width: 160px;
    max-width: 328px;
    height: 12px;
    background-color: #fff;
    border-radius: 20px;
    transform: translateX(-50%);
}

.loader-progress:after {
    border-radius: 20px;
    content: "";
    position: absolute;
    background-color: #F86A05;
    left: 3px;
    top: 3px;
    bottom: 3px;
    width: 98px;
    animation-name: slide;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.loader-inner img {
    display: block;
    max-width: 115px;
    height: auto;
    margin-bottom: 22px;
}

iframe {
    background: #fff;
}

@keyframes slide {
    0% {
        right: 60px;
        left: 3px;
    }

    5% {
        left: 3px;
    }

    50% {
        right: 3px;
        left: 60px;
    }

    55% {
        right: 3px;
    }

    100% {
        right: 60px;
        left: 3px;
    }
}


@keyframes load {
    0% {
        right: 60px;
        left: 3px;
    }

    5% {
        left: 3px;
    }

    50% {
        right: 3px;
        left: 60px;
    }

    55% {
        right: 3px;
    }

    100% {
        right: 60px;
        left: 3px;
    }
}

