/* Nav Dropdown Menu -------------------------- */

#nav_wrapper {
    position: absolute;
    top: 1em;
    left: 1em;
    z-index: 80;
    display: block;
}

#nav_square {
    width: 3em;
    height: 3em;
    cursor: pointer;
}

@media only screen and (max-width: 1100px) {
    #nav_square {
     width: 2em; 
     height: 2em;
    }
}


/* PRELOADER --------------------------------------------------------------------------- */
#preloader {
    background-color: #659e44;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader_wrapper {
    width: 85%;
    max-width: 550px;
    text-align: center;
    height: 180px;
}

#loading_gif {
	width:68px;
	height: 68px;
}

#loading_bar_full_wrapper {
    width: 100%;
    margin: 30px auto 0;
    opacity: 0;
}
#loading_bar_full_bar {
    height: 8px;
    background: rgb(110, 190, 73);
    width: 100%;
}
#loading_bar_full_inner {
    width: 0px;
    height: inherit;
    background:#eaeaea;
}

#loading_bar_full-progress {
    text-align:center;
    margin-top: 30px;
    font-weight: lighter;
}


@media only screen and (min-width: 1921px) {

	#loading_gif {
		width: 74px;
		height: 74px;
	}

	#preloader_wrapper {
		max-width: 700px;
	}
	
	#loading_bar_full-progress.p20 {font-size:1.7em;}
	
}


@media only screen and (max-width: 1024px) {
	
    #loading_gif {
		width: 60px;
		height: 60px;
	}
    
	#preloader_wrapper {
		max-width: 400px;
        height: 160px;
	}
	
}