/*.loader{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../assets/images/loading.gif')
    50% 50% no-repeat rgb(255,255,255);
    background-size: 20%;
    !*animation: fadeOut 3s ease-in;*!
}*/

.loader{
    position: fixed;
    width: 100%;
    height: 90%;
    z-index: 9999;
    background-color:rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-loader-PM {
    width: fit-content;
    display: flex;
}

.big-loader-PM span{
    font-size: 50px;
    color: #2385c3;
    margin-right: 15px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-weight: 400;
    line-height: 1.5;
}

.mini-loader {
    background: var(--white-PM);
    border: 2px solid var(--blue-PM);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.micro-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto !important;
}

.mini-loader span, .micro-loader span {
    width: 7px !important;
    height: 7px !important;
}

#loader-2 span{
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: var(--blue-PM);
    margin: 35px 2px;
}

#loader-2 span:nth-child(1){
    animation: bounce 1s ease-in-out infinite;
}

#loader-2 span:nth-child(2){
    animation: bounce 1s ease-in-out 0.33s infinite;
}

#loader-2 span:nth-child(3){
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce{
    0%, 75%, 100%{
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25%{
        -webkit-transform: translateY(-7px);
        -ms-transform: translateY(-7px);
        -o-transform: translateY(-7px);
        transform: translateY(-7px);
    }
}