.rotate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 25px 0;
    background-image: url('../images/rule__top.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 0 calc( 100% - 149px );
}

.rotate__area {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.rotate__table {
    width: 100%;
    transition: 3s;
    transition-timing-function: ease;
}

.desktop {
    display: block;
}

.laptop {
    display: none;
}

.rotate__table.stop {
    transition: none;
}

.rotate__table.slow {
    transition: 6s;
}


.rotate__center__area {
    position: absolute;
    top: calc( 50% - 75px );
    left: 42.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 15%;
    height: 150px;
    cursor: pointer;
    transition: .3s;
}

.rotate__center__area:hover {
    transform: translateY(-5px);
}

.rotate__center__area:active {
    transform: translateY(1px);
}

.rotate__center {
    width: 100%;
    z-index: 999;
}

.rotate__arrow {
    position: absolute;
    top: 40%;
    right: -25%;
    height: 50px;
    height: 20%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    } 50% {
        transform: rotate(180deg);
    } 100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1023px) {
    .rotate {
        padding: 25px 25px 0;
        background-position: 0 calc( 100% - 74px );
    }

    .desktop {
        display: none;
    }
    
    .laptop {
        display: block;
    }

    .rotate__center__area {
        left: 40%;
        width: 20%;
    }
    
}