.desktop .loader {
    background-size: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

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

    100% {
        -webkit-transform: rotate(0deg);
        transform:rotate(0deg);
    }
}

.desktop .loader-animation {
    width: 800px;
    height: 600px;
    margin-top: -240px;
    transform: scale(0.9);
    margin-left: 52px;
}

.desktop .preloader {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.desktop .preloader svg {
    -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
    width: 250px;
    height: 250px;
}

.desktop .loader .animation-block {
    width: 1231px;
    height: 857px;
    background-image: url(../images/loader/bg-animation-block.png);
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.desktop .loader .animation-block .name {
    width: 699px;
    height: 199px;
    background-image: url(../images/loader/bg-name.png);
    margin-top: 160px;
    color: #FFF;
    text-shadow: 0px 5px 0px #424344;
    font-family: Luckiest Guy;
    font-size: 158px;
    font-style: normal;
    letter-spacing: 7.9px;
    text-align: center;
    line-height: 199px;
    margin-left: 37px;
}

.desktop .safari .loader .animation-block .name {
    line-height: 250px;
}

.desktop .loader .progress-block {
    width: 1470px;
    height: 110px;
    background-image: url(../images/loader/bg-progress-block.png);
    margin-top: 20px;
}

.desktop .loader .progress-block .progress {
    /* width: 1413px; */
    width: 1000px;
    height: 40px;
    background-image: url(../images/loader/bg-progress.png);
    margin-top: 37px;
    margin-left: 32px;
}

.desktop .loader .progress-block .status {
    color: #FFF;
    text-shadow: 4px 6px 0px #424344;
    font-family: "Luckiest Guy";
    font-size: 54px;
    letter-spacing: 2.7px;
    position: relative;
    text-align: center;
    margin-top: -55px;
    cursor: pointer;
}

.desktop .safari .loader .progress-block .status {
    margin-top: -40px !important;
}