html {
    overflow-y: auto;
    height: 100%;
    width: 100%;
}

body {
    position: relative;
    height: 100%;
    width: 100%;
}

.loading-screen {
    display: none;
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: 100;
    background: rgba(0, 0, 0, .3);
}

body.is-loading .loading-screen {
    display: block
}

.loading-screen .progress {
    max-width: 200px;
    margin: 0 auto;
}

.countryselect {
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: 10;
}

.infobox {
    position: absolute;
    width: 100%;
    bottom: 0%;
    z-index: 10;
}

@media (min-width: 700px) {
    .infobox {
        max-width: 400px;
    }

}

.clickbox {
    position: absolute;
    top: 10%;
    bottom: 30%;
    margin: 10px;
    z-index: 10;
}

#backgroundMap {
    width: 100%;
    height: 100%;
    z-index: 1;
}



.tabs-content li {
    display: none;
    list-style: none;
}

.tabs-content li.is-active {
    display: block;
}

.has-background-aqua {
    background-color: rgb(153, 217, 249);
}

.modal-background {
    opacity: 30%;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #56829e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}