﻿
.loaderOverlay {
    background: white;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    visibility: visible;
}

.loaderOverlay.inactive {
    animation: hideMe 1s forwards;
}

@keyframes hideMe {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    z-index: 9999999
}

#status {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px
}

.spinner {
    position: absolute;
    width: 78px;
    height: 78px;
    left: 50%;
    margin-left: -39px;
    margin-top: -39px
}

.spinner:before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    top: 50%;
    margin-top: -23px;
    left: 50%;
    margin-left: -23px;
    border-width: 2px 1px;
    border-style: solid;
    border-color: #33cdff rgba(51, 205, 255, .3);
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    animation: spin 3.45s infinite;
    -o-animation: spin 3.45s infinite;
    -ms-animation: spin 3.45s infinite;
    -webkit-animation: spin 3.45s infinite;
    -moz-animation: spin 3.45s infinite
}

.spinner:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
    left: 50%;
    margin-left: -6px;
    background-color: #33cdff;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
    -o-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
    -ms-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
    -webkit-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
    -moz-animation: pulse 6.9s infinite, borderPulse 6.9s infinite
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }

    100% {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg)
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0)
    }

    50% {
        -webkit-transform: rotate(360deg)
    }

    100% {
        -webkit-transform: rotate(1080deg)
    }
}

@keyframes pulse {
    0% {
        background-color: rgba(51, 205, 255, .2)
    }

    13% {
        background-color: rgba(51, 205, 255, .2)
    }

    15% {
        background-color: rgba(51, 205, 255, .9)
    }

    28% {
        background-color: rgba(51, 205, 255, .9)
    }

    30% {
        background-color: rgba(51, 205, 255, .2)
    }

    43% {
        background-color: rgba(51, 205, 255, .2)
    }

    45% {
        background-color: rgba(51, 205, 255, .9)
    }

    70% {
        background-color: rgba(51, 205, 255, .9)
    }

    74% {
        background-color: rgba(51, 205, 255, .2)
    }

    100% {
        background-color: rgba(51, 205, 255, .9)
    }
}

@-webkit-keyframes pulse {
    0% {
        background-color: rgba(51, 205, 255, .2)
    }

    13% {
        background-color: rgba(51, 205, 255, .2)
    }

    15% {
        background-color: rgba(51, 205, 255, .9)
    }

    28% {
        background-color: rgba(51, 205, 255, .9)
    }

    30% {
        background-color: rgba(51, 205, 255, .2)
    }

    43% {
        background-color: rgba(51, 205, 255, .2)
    }

    45% {
        background-color: rgba(51, 205, 255, .9)
    }

    70% {
        background-color: rgba(51, 205, 255, .9)
    }

    74% {
        background-color: rgba(51, 205, 255, .2)
    }

    100% {
        background-color: rgba(51, 205, 255, .9)
    }
}

@keyframes borderPulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #fff, 0 0 0 1px rgba(51, 205, 255, .8);
        box-shadow: 0 0 0 0 #fff, 0 0 0 1px rgba(51, 205, 255, .8)
    }

    40% {
        -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(51, 205, 255, .8);
        box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(51, 205, 255, .8)
    }

    80% {
        -webkit-box-shadow: 0 0 0 3px #fff, 0 0 1px 3px rgba(51, 205, 255, .8);
        box-shadow: 0 0 0 3px #fff, 0 0 1px 3px rgba(51, 205, 255, .8)
    }
}

@-webkit-keyframes borderPulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #fff, 0 0 0 1px rgba(51, 205, 255, .8);
        box-shadow: 0 0 0 0 #fff, 0 0 0 1px rgba(51, 205, 255, .8)
    }

    40% {
        -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(51, 205, 255, .8);
        box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(51, 205, 255, .8)
    }

    80% {
        -webkit-box-shadow: 0 0 0 3px #fff, 0 0 1px 3px rgba(51, 205, 255, .8);
        box-shadow: 0 0 0 3px #fff, 0 0 1px 3px rgba(51, 205, 255, .8)
    }
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
}

    .lds-roller div {
        animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .lds-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #236f93;
            margin: -4px 0 0 -4px;
        }

        .lds-roller div:nth-child(1) {
            animation-delay: -0.036s;
        }

            .lds-roller div:nth-child(1):after {
                top: 63px;
                left: 63px;
            }

        .lds-roller div:nth-child(2) {
            animation-delay: -0.072s;
        }

            .lds-roller div:nth-child(2):after {
                top: 68px;
                left: 56px;
            }

        .lds-roller div:nth-child(3) {
            animation-delay: -0.108s;
        }

            .lds-roller div:nth-child(3):after {
                top: 71px;
                left: 48px;
            }

        .lds-roller div:nth-child(4) {
            animation-delay: -0.144s;
        }

            .lds-roller div:nth-child(4):after {
                top: 72px;
                left: 40px;
            }

        .lds-roller div:nth-child(5) {
            animation-delay: -0.18s;
        }

            .lds-roller div:nth-child(5):after {
                top: 71px;
                left: 32px;
            }

        .lds-roller div:nth-child(6) {
            animation-delay: -0.216s;
        }

            .lds-roller div:nth-child(6):after {
                top: 68px;
                left: 24px;
            }

        .lds-roller div:nth-child(7) {
            animation-delay: -0.252s;
        }

            .lds-roller div:nth-child(7):after {
                top: 63px;
                left: 17px;
            }

        .lds-roller div:nth-child(8) {
            animation-delay: -0.288s;
        }

            .lds-roller div:nth-child(8):after {
                top: 56px;
                left: 12px;
            }

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
