/* FW LOADING */
body.mcLoading > *:not(#mcLoading) {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.circlePreloader {
    background-color: rgba(255, 255, 255, 0.6);
    background-image: url('../images/logo-big-new.png');
    background-repeat: no-repeat;
    background-position: center 49%;
    background-size: 200px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.circlePreloader.small {
    background-position: center;
}

#mcLoading .circlePreloader {
    position: fixed;
}

.circlePreloader > div {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: spin 1.3s cubic-bezier(0.65, 0.16, 0.15, 0.73) infinite;
    animation: spin 1.3s cubic-bezier(0.65, 0.16, 0.15, 0.73) infinite;
    width: 250px;
    height: 250px;
    line-height: 33px;
    font-size: 30px;
    border-radius: 50%;
}

.circlePreloader.small > div {
    width: 120px;
    height: 120px;
    top: 0;
}


.mcLoadingText {
    width: 200px;
    display: block;
    color: #1c1c1c;
    margin-top: 90px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.1;
}

.mcLoadingText:after {
    -webkit-animation-name: mcLoadingText;
    -webkit-animation-duration: 1s;
    animation-name: mcLoadingText;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    content: '';
}

@-webkit-keyframes mcLoadingText {
    0% {content: '.';}
    50% {content: '..';}
    100% {content: '...';}
}

@keyframes mcLoadingText {
    0% {content: '.';}
    50% {content: '..';}
    100% {content: '...';}
}

.circlePreloader.small > .mcLoadingText {
    display: none;
}

.circlePreloader > div {
    border-top: 5px solid #5578eb;
}