html, body {
    background-color: #f2f2f2;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    html, body {
        -ms-overflow-x: hidden;
        overflow-x: hidden;
    }
}

.wrapper {
    overflow: hidden;
}

#main {
    min-height: 100vh;
    background-color: #fff;
    padding: 110px 0;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: #fff;
    -webkit-transition: all 1000ms ease-out;
    -moz-transition: all 1000ms ease-out;
    -ms-transition: all 1000ms ease-out;
    -o-transition: all 1000ms ease-out;
    transition: all 1000ms ease-out;
}

body.loaded #loading {
    opacity: 0;
    visibility: hidden;
}


