html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    transition: opacity 1s ease-in-out;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.muh-bg {
    overflow: hidden;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    background: url(/img/background.jpg) no-repeat;
    background-size: cover;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}


@media (orientation: landscape) {
    body {
        font-size: 2.8vh !important;
    }
}

.muh-panel-splash {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding-top: 1em;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
}

.muh-panel-splash.reveal {
    opacity: 1 !important;
}

/* CSS for ajax loader */
.muh-loader,
.muh-loader:before,
.muh-loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: muh-loader-keyframes 1.8s infinite ease-in-out;
    animation: muh-loader-keyframes 1.8s infinite ease-in-out;
}

.muh-loader {
    color: #fff;
    font-size: 5em;
    position: absolute;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    margin-left: 50%;
    left: -1.2em;
    margin-top: 50vh;
    top: -5em;
}

.muh-loader:before,
.muh-loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.muh-loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.muh-loader:after {
    left: 3.5em;
}

@-webkit-keyframes muh-loader-keyframes {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes muh-loader-keyframes {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

/* END: ajax loader */

.muh-glass {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    /* backdrop-filter: blur(2em); */
}

.muh-absolute {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

#muh-confetti {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.muh-reveal-instant {
    display: block;
}

.muh-panel-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .75);
}

* {
    user-select: none;
}