/* Ventilator animations */
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.speed0 {}
.speed1 {animation:spin 4s linear infinite;}
.speed2 {animation:spin 2s linear infinite;}
.speed3 {animation:spin 1s linear infinite;}
.speed4 {animation:spin 0.5s linear infinite;}

.room {
    border: 2px solid #dc3545;
    border-radius: 10px;
}

.room-sensor {
    max-height: 5vh;
    max-width: 50%;
    min-width: 35px;
}

.unit {
    border: thick solid #dc3545;
    border-radius: 5%;
    min-width: 340px;
    max-width: 340px;
}

.temperature {
    position: relative;
    left: -20px;
}
