.modal-rotate {
    /* display: none; */
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 1);
}


.display-form-modal {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    z-index: 80;
}


.modal-rotate-content {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.rotating-device {
    background-color: transparent;
    margin: auto;
    width: 260px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}



.rotate-device {
    background: black;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.phone, .message {
    display: block;
}



.phone {
    height: 50px;
    width: 100px;
    border: 3px solid white;
    border-radius: 10px;
    animation: rotate 1.5s ease-in-out infinite alternate;
}




.message {
    position: absolute;
    left: 0;
    right: 0;
    color: white;
    font-size: 12px;
    margin: auto;
    margin-top: 80px;
}



@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(-90deg)
    }

    100% {
        transform: rotate(-90deg)
    }
}







.oculto{
    display: none;
}