/* is this thing on */


.rotating-left {
    transform: rotate(-90deg);
    transition: transform 0.5s linear;
}

.rotating-right {
    transform: rotate(90deg);
    transition: transform 0.5s linear;
}

