.rotate-wrapper {
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: #000;
    position: fixed
}

.rotate-wrapper_content {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.rotate-wrapper_circle {
    background: url("../images/rotate-circle.svg") no-repeat;
    width: 125px;
    height: 116px;
    position: relative;
    animation: wiggle 1.5s infinite
}

.rotate-wrapper_phone {
    background: url("../images/rotate-device.svg") no-repeat center;
    width: 100%;
    height: 100%;
    left: -5px;
    position: absolute
}

.rotate-wrapper_text {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #fff;
    display: block;
    margin-top: 20px
}

.screentest .rotate-wrapper {
    display: none
}

@keyframes wiggle {
    0% {
        transform: rotate(1deg)
    }
    50% {
        transform: rotate(-91deg)
    }
    100% {
        transform: rotate(1deg)
    }
}
