
.orientation-msg-container{
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 99999;
}

.orientation-inner{
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.orientation-logo{
    display: block;
    margin: 0 auto 34px;
    width: 108px;
    height: 108px;
    max-width: 55vw;
    max-height: 55vw;
}

.rotate-phone{
    -webkit-transform-box: fill-box;
    transform-box: fill-box;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: od-rotate 2.4s ease-in-out infinite;
    animation: od-rotate 2.4s ease-in-out infinite;
}

@-webkit-keyframes od-rotate{
    0%, 35%   { -webkit-transform: rotate(0deg); }
    65%, 100% { -webkit-transform: rotate(-90deg); }
}

@keyframes od-rotate{
    0%, 35%   { transform: rotate(0deg); }
    65%, 100% { transform: rotate(-90deg); }
}

.orientation-msg-text{
    font-size: 34px;
    font-family: "Arial", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    margin: 0;
}

@media (max-width: 767px) {
    .orientation-msg-text{
        font-size: 28px;
    }
}


@media (max-width: 500px) {
    .orientation-msg-text{
        font-size: 24px;
    }
}
