body {
    overflow: hidden;
}
@keyframes spinloader {
    0%   { transform: rotate(0); }
    100% { transform: rotate(1turn); }
}
#loaderContainer {
    align-items: center;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0px;
    position: absolute;
    right: 0px;
    text-align: center;
    top: 0px;
}
#loaderWrapper {
    margin: 0px auto;
    position: relative;
}
#loader {
    height: 50px;
    width: 50px;
    animation: spinloader 1.2s infinite linear;
    background: #01CF97;
    border-radius: 50%;
    color: #01CF97;
    position: relative;
}
#loader::before {
    background: linear-gradient(0deg,#f9f9fb 50%,rgba(249,249,251,.9)) 0 0,linear-gradient(90deg,rgba(249,249,251,.9),rgba(249,249,251,.6)) 100% 0,linear-gradient(180deg,rgba(249,249,251,.6),rgba(249,249,251,.3)) 100% 100%,linear-gradient(1turn,rgba(249,249,251,.3),rgba(249,249,251,0)) 0 100%;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    border-radius: 50%;
    bottom: -1px;
    content: "";
    left: -1px;
    position: absolute;
    right: -1px;
    top: -1px;
}
#loader::after {
    background: #FFFFFF;
    border-radius: 50%;
    bottom: 3px;
    content: "";
    left: 3px;
    position: absolute;
    right: 3px;
    top: 3px;
}