.outOfScreen {
    opacity: 0%;
    filter: opacity(0%);
    pointer-events: none;
}

.hiddenIE {
    visibility: hidden;
}

.hiddenContent {
    filter: opacity(0%);
    pointer-events: none;
}

.noTransition {
    -webkit-transition-duration: 0s !important;
    -moz-transition-duration: 0s !important;
    -o-transition-duration: 0s !important;
    transition-duration: 0s !important;
}

.loadingGif {
    background-image: url("../img/loading.gif");
    background-position: center;
    background-repeat: no-repeat;
}

.divider {
    /*background-color: #d1d3d4;*/
    border: 0;
    /*border-top: 1px solid #d1d3d4;
    border-bottom: 1px solid #f9f9fa;*/
    border-top: 1px solid rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid rgba(229, 229, 229, 0.42);
    color: #d1d3d4;
    display: block;
    box-sizing: border-box;
    height: 2px;
    margin: calc(10px + 1vmin) 20px;
}


hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    /* border-bottom: 1px solid rgba(229, 229, 229, 0.42); */
    color: #d1d3d4;
    display: block;
    box-sizing: border-box;
    height: 2px;
    margin: 30px 30%;
}


@media screen and (orientation:portrait) {
 
    .outOfScreen {
        top: 150vh;
    }
    
}

@media screen and (orientation:landscape) {
 
    .outOfScreen {
        left: 150vw;
        right: calc(5vmin - 150vw + 50vmin);
    }
    
}