﻿.overlay {
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0px;
    background-color: white;
    width: 100%;
    height: 100%;
    filter: Alpha(Opacity=80);
    opacity: 0.70;
    -moz-opacity: 0.70;
}

.theprogress {
    background-color: transparent;
    width: 110px;
    height: 24px;
    text-align: center;
    filter: Alpha(Opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

.modalprogress {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -11px 0 0 -44px;
    color: #fff;
}

body > .modalprogress {
    position: fixed;
}


.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(0deg, #FFFFFF 50%, #FF5C35 100%);
    animation: spin 1s linear infinite;
}

.inner-circle {
    width: 90%;
    height: 90%;
    background-color: white;
    border-radius: 50%;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}
