/* ===========================
   MOBILE ORIENTATION LOCK
   =========================== */
#mobile-orientation-lock {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222f3e;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.lock-content {
    animation: rotatePhone 2s infinite ease-in-out;
}

.phone-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

#mobile-orientation-lock p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.sub-text {
    font-size: 1rem !important;
    color: #a4b0be;
    font-weight: normal !important;
}

@keyframes rotatePhone {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(90deg);
    }

    75% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}