.mobile .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);
    }
}

.mobile .loader-animation {
    width: 533.33px;
    height: 400px;
    margin-top: -160px;
    transform: scale(0.9);
    margin-left: 34.66px;
}

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

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

.mobile .loader .animation-block {
    width: 820.66px;
    height: 571.33px;
    background-image: url(../images/loader/bg-animation-block.png);
    background-size: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.mobile .loader .animation-block .name {
    width: 466px;
    height: 132.66px;
    background-image: url(../images/loader/bg-name.png);
    margin-top: 91px;
    color: #FFF;
    text-shadow: 0px 5px 0px #424344;
    font-family: Luckiest Guy;
    font-size: 129px;
    font-style: normal;
    letter-spacing: 7.9px;
    text-align: center;
    line-height: 132.66px;
    margin-left: 24.66px;
    background-size: 100%;
}

.mobile .safari .loader .animation-block .name {
    line-height: 166px;
}

.mobile .loader .progress-block {
    width: 980px;
    height: 73.33px;
    background-image: url(../images/loader/bg-progress-block.png);
    background-size: 100%;
    margin-top: 20px;
}

.mobile .loader .progress-block .progress {
    height: 28px;
    background-image: url(../images/loader/bg-progress-mobile.png);
    margin-top: 25px;
    margin-left: 22.33px;
    max-width: 940px;
    background-repeat: no-repeat;
}

.mobile .loader .progress-block .status {
    color: #FFF;
    text-shadow: 2px 1px 0px #424344;
    font-family: "Luckiest Guy";
    font-size: 27px;
    letter-spacing: 2.7px;
    position: relative;
    text-align: center;
    margin-top: -33px;
    cursor: pointer;
}

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