/* CSS Document */


.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                supported by Chrome, Opera and Firefox */
}

body {
    background-color: #98b8c9;
    width:100%;
    margin: 0;
    font-family: "Open Sans", "Arial", sans-serif;
    font-size: 16px;
    overflow: hidden;
}

div.bg_filler {
    position: fixed;
    bottom: 0;
    width:100%;
    height: 100%;
}

.bg_welkomstscherm {
    background: rgb(41,78,0);
    background: linear-gradient(0deg, rgba(41,78,0,1) 0%, rgba(69,129,72,1) 35%, rgba(88,144,88,1) 50%, rgba(122,227,255,1) 52%, rgba(151,233,255,1) 80%, rgba(255,255,255,1) 100%);
}

img.fullwidth {
    width:100%;
    height:auto;
}

#blocker {
    display:none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}



#instructions {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    font-size: 14px;
    cursor: pointer;

    color:#ffffff;
}

#debug{
    font-size:0.8rem;
    font-family: unset;
}

.minimap {
    display:none;
}

#minimap_local,
#minimap_global {
    box-sizing: content-box;
    position: absolute;
    background-color: #aaaaaa;
    bottom: 4rem;
    width:16rem;
    height: 7rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border: 0.5rem solid #ffffff;
    border-radius: 0.3rem;
}

@media screen and (min-width: 940px) {
    
}


#minimap_local {
    left:1rem;
}

.minimap_kust {
    right:1rem;
    background-image: url(../img/minimap_kust.jpg);
}
.minimap_platteland {
    right:1rem;
    background-image: url(../img/minimap_platteland.jpg);
}
.minimap_stad {
    right:1rem;
    background-image: url(../img/minimap_stad.jpg);
}
.minimap_dorp {
    right:1rem;
    background-image: url(../img/minimap_dorp.jpg);
}

#minimap_global {
    right:1rem;
    background-image: url(../img/minimap_global.svg);
}
#minimap_global_svg_hotspots {
    width:100%;
    height:auto;
}
#hotspot_stad,
#hotspot_dorp,
#hotspot_platteland,
#hotspot_kust {
    cursor:pointer;
}

#minimap_cursor_local {
    position:absolute;
    margin-left: -0.3rem;
    margin-top: -0.3rem;
    width:0.6rem;
    height:0.6rem;
    background-color:#ff36ba;

    bottom:1rem;
}


#navigatie {
    width:100%;
    position: fixed;
    background:transparent;
    text-align: center;
    overflow:hidden;
    top:1rem;
    padding-top:1em;
    padding-bottom: 0.6rem;
    display:none;
}

.nav_control {
    color: #243883;
    background-color: #eac700;
    width: 4rem;
    height: 4rem;
    border-radius: 2rem;
    cursor:pointer;
    display:inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 2rem 2rem;
    position:fixed;
}
.nav_control.active {
    background-color: #00b0ea;
}

.knop_vooruitachteruit {
    display:none;
}

#knop_links {
    background-image: url('../img/knop_sturing_links.svg');
    left: calc( 50% - 6.5rem);
    bottom: 4rem;
}
#knop_rechts {
    background-image: url('../img/knop_sturing_rechts.svg');
    left: calc( 50% + 2.5rem);
    bottom: 4rem;
}
#knop_vooruit {
    background-image: url('../img/knop_sturing_vooruit.svg');
    left: calc( 50% - 2rem);
    bottom:9rem;
}
#knop_achteruit {
    background-image: url('../img/knop_sturing_achteruit.svg');
    left: calc( 50% - 2rem);
    bottom:4rem;
}


#player_tip {
    position:fixed;
    width:100%;
    background:transparent;
    text-align: center;
    height: 2em;
    overflow:hidden;
    margin-top:0.5rem;
    text-align: center;
    font-size:1em;
    color:#ffffff;
    font-family: 'Courier New', Courier, monospace;
}


.dropshadow {
    filter: drop-shadow(0em 0em 0.3em rgba(0,0,0,0.4));
}

.popup_container_home {
    position: absolute;
    
    border-collapse: collapse;
    overflow-x: hidden;
    filter: drop-shadow(0.5em 0.5em 1em #000000);
    top: 4rem;
    left: calc(32% - 2rem);
    width: 36%;
    z-index: 999999999;
    padding: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0.5em;
    background-color: #ffffff;
    color: #666666;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: bold;
    text-align: center;
}

.popup_container_home h1 {
    line-height: 2.3rem;
}

.popup_container {
    position: absolute;
    width: 50%;
    border-collapse: collapse;
    overflow-x: hidden;
    filter: drop-shadow(0.5em 0.5em 1em #000000);
    top: 6rem;
    left: calc(25% - 4rem);
    z-index: 999999999;
    padding-top: 1rem;
    padding-left:5vw; 
    padding-right:5vw;
    padding-bottom:2rem;
    border-radius: 0.5em;
    background-color: #ffffff;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: bold;

    max-width:800px; 
    
    color: #243883; 

}
.popup_close {
    text-align: right;
    text-decoration: underline;
    margin:1em;
    color:#000000;
    cursor:pointer;
}





.popup_container_loading {
    position: absolute;
    overflow:hidden;
    width: 20rem;
    height:15rem;
    border-collapse: collapse;
    overflow-x: hidden;
    filter: drop-shadow(0.5em 0.5em 1em #000000);
    top: calc(50% - 10rem);
    left: calc(50% - 10rem);
    z-index: 999999999;
    padding: 0rem;
    border-radius: 0.5em;
    background-color: #ffffff;
    color: #666666;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: bold;
    text-align: center;
}


.popup_image_loading {
    width:100%;
    display:block;
}

.popup_tekst_loading {
    margin-top:-2rem;
}
    


/* HIERONDER OPRUIMEN */


.popup_title {
    margin-top:2rem;
    width:90%; 
    margin-bottom:1rem; 
    font-size:2rem;
}
.popup_type {
    width:90%; 
    margin-bottom:1rem; 
    font-size:1.4rem;
}

#popup-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 999;
    background-color: #ffa913;
    color: #ffffff;
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    line-height: 2.7rem;
    text-align: center;
    border-radius: 1rem;
    cursor: pointer;
}
#popup-close-button:hover,
#popup-close-button:focus-visible {
    background-color: #ff7513;
}


.popup_image {width: 50%; display: inline-block;}
.popup_image img{width:100%;}
.popup_content {width: 40%; display: inline-block; margin-right: 5%; vertical-align: top;}




.popup_achievement_all {
    width: 20rem;
    top: calc(50% - 16rem);
    left: calc(50% - 11.5rem);
}

.popup_achievement_all,
.popup_achievement_all div.popup_title,
.popup_achievement_all div.popup_content {
    text-align: center;
}

.popup_achievement_all div.popup_title,
.popup_achievement_all div.popup_content,
.popup_achievement_all div.popup_image {
    width:100%;
}

.popup_achievement_all div.popup_image img {
    width:50%;
    height:auto;
}




#quickmenu {
    z-index:99999999999999999;
    box-sizing: border-box;
    border-radius: 0.3rem;
    position: fixed;
    width: 3rem;
    height: 3rem;
    right: 1rem;
    top: 1rem;
    background-color: #ffffff;
    text-align: center;
    color: #000000;
    cursor:pointer;
    /* background-image: url('../img/icon-quickmenu.svg'); */
    background-image: url('../img/icon-home.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80%;
}
#quickmenu:hover {
    border: 0.2rem solid #000000;
}

#audioswitch {
    z-index:99999999999999999;
    box-sizing: border-box;
    border-radius: 0.3rem;
    position: fixed;
    width: 3rem;
    height: 3rem;
    right: 1rem;
    top: 4.5rem;
    background-color: #ffffff;
    text-align: center;
    color: #000000;
    cursor:pointer;
    background-image: url('../img/icon-audio_on.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80%;
    display:none;
}
#audioswitch:hover {
    border: 0.2rem solid #000000;
}
#audioswitch.audio_muted {
    background-image: url('../img/icon-audio_off.svg');
}




#menu_container {
    display:none;
    box-sizing: border-box;
    position: fixed;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    bottom: 0px;
    left: 0px;
    height: 3rem;
    line-height: 2rem;
    background-color: #ffffff;
    text-align: center;
    color: #000000;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.menu_item {
    display: inline-block; vertical-align: top;	margin-right: 1rem;
}
#menu_container a {
    text-decoration: none;
    color: #000000;
}
#menu_container a:hover,
#menu_container a:focus-visible {
    text-decoration: underline;
}

.menu-icon {
    width: 2rem; margin-right:0.2rem; display:inline-block; opacity:0.3;
}
.menu-icon img{
    width: 100%;
}

div#menu-icons {
    display: inline-block;
    line-height: 0px;
}

a.btn-start{
    color: #243883;
    background-color: #eac700;
    display: inline-block;
    margin-top: 0.5em;
    font-size: 1.3333333333em;
    margin: 0;
    padding: 0.7em 1em;
    transition: all 300ms ease;
    border: 0;
    border-radius: 0;
    font-weight: 400;
    text-decoration: none;
}
.popup_image_credits {
    text-align: right;
    font-style: italic;
	font-size: 0.8rem;}

#welkomstscherm-home-button {
    z-index: 99999999999999999;
    box-sizing: border-box;
    border-radius: 0.3rem;
    position: fixed;
    width: 3rem;
    height: 3rem;
    right: 1rem;
    top: 1rem;
    background-color: #ffffff;
    text-align: center;
    color: #000000;
    cursor: pointer;
	display:block;
}

@media screen and (max-width: 860px) {
.popup_container_home {left: calc(20% - 2rem); width: 60%;}
	.popup_container{left: calc(20% - 2rem); width: 60%; top:8rem;}
}
@media screen and (max-width: 667px) {
.popup_container_home {left: calc(10% - 2rem); width: 80%;}
	#menu_container {height: 5rem;}
	.popup_container{left: calc(10% - 2rem); width: 80%; top:8rem;}
	#minimap_local, #minimap_global {bottom:6rem; width: 20vw;
    height: 8vw;  border: 2px solid #ffffff;}
	#knop_rechts, #knop_links{bottom:6rem;}
}
