#main_mask_loader {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 18000;
    backface-visibility: hidden;
    display: block !important;
    background-position: center;
    position: absolute;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}

#main_mask_loader div {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    margin: 35px 0 0 -20px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color:  hsl(271, 100%, 71%) ;
    border-right-color:  hsl(271, 100%, 71%) ;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

#main_mask_loader div:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: hsl(44,  100%, 77%);
    border-right-color: hsl(44,  100%, 77%);
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

#main_mask_loader div:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: hsl(207, 61%,  53%);
    border-right-color: hsl(207, 61%,  53%);
    animation: spin 0.5s linear infinite;
}

body::after{
    position:absolute; width:0; height:0; overflow:hidden; z-index:-1;
    /*content:url('/src/assets/img/bg-light-img.svg') url('/src/assets/img/bg-g-img.svg') url('/src/assets/img/bg-dark-img.svg');*/
}


.main_mask_loader {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 18000;
    backface-visibility: hidden;
    /*display: block !important;*/
    background-position: center;
    position: absolute;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;


    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    div.circ {
        display: block;
        /*position: absolute;*/
        /*left: 50%;
        top: 50%;*/
        width: 40px;
        height: 40px;
        /*margin: 0px 0 0 -20px;*/
        border-radius: 50%;
        border: 2px solid transparent;
        border-top-color: hsl(271, 100%, 71%);
        border-right-color: hsl(271, 100%, 71%);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }



    div.circ:before {
        content: "";
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        border-radius: 50%;
        border: 2px solid transparent;
        border-top-color: hsl(44, 100%, 77%);
        border-right-color: hsl(44, 100%, 77%);
        -webkit-animation: spin 1s linear infinite;
        animation: spin 1s linear infinite;
    }



    div.circ:after {
        content: "";
        position: absolute;
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
        border-radius: 50%;
        border: 2px solid transparent;
        border-top-color: hsl(207, 61%, 53%);
        border-right-color: hsl(207, 61%, 53%);
        animation: spin 0.5s linear infinite;
    }
}


.animate_msg {
    -webkit-animation: show 6s;
    -moz-animation: show 6s;
    -o-animation: show 6s;
    animation: show 6s;
    opacity: 12;
}


@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
        /* Firefox 16+*/
    }
    100% {
        -moz-transform: rotate(360deg);
        /* Firefox 16+*/
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}


@keyframes show {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes show {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }

}
@-moz-keyframes show {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes show {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes show {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.mask_msg{
    position: absolute;
    top:50%;
    left: 50%;
    width: 300px;
    margin-left: -150px;
    margin-top: 100px;
    text-align: center;

}