body{
    overflow: hidden;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    border: 0;
    margin: 0 !important;
}
.cache{
    opacity: 0;
    position: fixed;
    pointer-events: none;
}
#loaderCRM {
    width: 100vw;
    height: 100vh;
    position: fixed;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: #444;
    overflow: hidden;
    z-index: 4000;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#loaderCRM .delay1 {
    -webkit-animation: waves 2.5s linear infinite;
    animation: waves 2.5s linear infinite;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

#loaderCRM:hover .delay2 {
    -webkit-animation: waves 2.5s linear 0.7s infinite;
    animation: waves 2.5s linear 0.7s infinite;
}

#loaderCRM.delay3 {
    -webkit-animation: waves 2.5s linear 1.3s infinite;
    animation: waves 2.5s linear 1.3s infinite;
}

#loaderCRM .delay4 {
    -webkit-animation: waves 2.5s linear 1.9s infinite;
    animation: waves 2.5s linear 1.9s infinite;
}

#loaderCRM .loading {
    -webkit-animation: bloop 1s linear infinite;
    animation: bloop 1s linear infinite;
}

@keyframes waves {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@-webkit-keyframes bloop {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bloop {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

#loaderCRM .logo {
    position: absolute;
    z-index: 10;
    border-radius: 50%;
    height: 78px;
    width: 450px;
    display: flex;
    z-index: 100;
    justify-content: center;
    transition: all 0.7s;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 60px;
}

#loaderCRM .logoImg {
    height: 100%;
    object-fit: cover;
    overflow: visible !important;
}

#loaderCRM #imageSeparator {
    justify-content: flex-end;
}

#loaderCRM .loading #imageSeparator {
    justify-content: center !important;
}

#loaderCRM .loading #message {
    margin: 0 !important;
}

#loaderCRM #message {
    transition: all 0.7s;
    width: 0px;
    margin: 0 15px 0 15px;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

#loaderCRM #message span {
    position: relative;
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    transition: all 0.7s;
}

#loaderCRM .circle {
    display: flex;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background: #0194c7;
    margin: 10px 0 60px 0;
    transition: 5s ease;
    position: absolute;
}

#loaderCRM .d-none {
    display: none !important;
    width: 0;
}

#loaderCRM.finished {
    display: none !important;
    pointer-events: none !important;
}