@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*
#outer_load {
    background-color: #f5f5f5;
    height: 100vh;
    overflow-y: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}*/
#outer_load {
    background-color: #f5f5f5;
    background-color: #000;
    height: 100%;
    overflow-y: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.loader {
    display: inline-block;
    position: absolute;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    border: 2px solid #555;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.75s infinite linear;
}

.loader::before,
.loader::after {
    left: -2px;
    top: -2px;
    display: none;
    position: absolute;
    content: '';
    width: inherit;
    height: inherit;
    border: inherit;
    border-radius: inherit;
}
/*
* LOADER 1
*/

.loader_01 {
    border-top-width: 0;
}
/*
* LOADER 2
*/

.loader_02 {
    border-top-color: transparent;
}

.loader_02::after {
    display: block;
    left: -2px;
    top: -2px;
    border: inherit;
    transform: rotate(65deg);
}
/*
* LOADER 3
*/

.loader_03,
.loader_03::before,
.loader_03::after {
    display: inline-block;
    border-color: transparent;
    border-top-color: #555;
    animation-duration: 1.2s;
}

.loader_03::before {
    transform: rotate(120deg);
}

.loader_03::after {
    transform: rotate(240deg);
}
/*
* LOADER 4
*/

.loader_04 {
    border-top-color: transparent;
}

.loader_04::after {
    display: block;
    border-color: transparent;
    border-top-color: #555;
    animation: spin 1.25s infinite linear reverse;
}
/*
* LOADER 5
*/

.loader_05,
.loader_05::before {
    display: inline-block;
    border-color: transparent;
    border-top-color: #555;
}

.loader_05::before {
    animation: spin 1.5s infinite ease;
}
/*
* LOADER 6
*/

.loader_06 {
    border-color: transparent;
    border-top-color: #555;
    animation-duration: 5s;
}

.loader_06::after {
    display: block;
    border-color: transparent;
    border-top-color: #555;
    animation: spin 0.75s infinite ease-in-out alternate;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



