#changePortrait {
    display: none;
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    opacity: 1;
    z-index: 1000000;
}

#changePortrait img {
    position: absolute;
    animation: rotate-phone 3s linear infinite;
    width: 35vw;
    top: 3vw;
    left: 33vw;
}

#changePortrait p {
    width: 100%;
    position: relative;
    top: 42vw;
    font-size: 2.3vw;
    font-family: "888-DemiBold";
    text-align: center;
    color: #fff; 
}

@media screen and (max-width: 813px) and (orientation:landscape) {
    #changePortrait {
        display:block;
        overflow: hidden;
    }

    body {
        position: fixed !important;
        -webkit-overflow-scrolling: auto !important;
        margin-top: auto !important;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width:1024px) and (orientation:portrait) {
    #changePortrait {
        display:none !important;
    }
}

@media only screen and (device-width : 812px) and (orientation:landscape) and (-webkit-device-pixel-ratio :3) {
    #changePortrait {
        display:block !important;
    }
}
