


* {

	box-sizing: border-box;
	
}


body {
	
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 100%;
	font-weight: 400;
	text-transform: none;

	height: 100%;
	width: 100%;

	padding: 0px;
	margin: 0px;
	
	overflow: hidden;
	
	background-color: white;
	
	transition: background-color 800ms linear;

	-webkit-tap-highlight-color: rgba(0,0,0,0);	/*	KILLS THE OBJECT HIGHLIGHT ON TAP	*/
}


a {
	
	color: black;
	text-decoration: underline;
}



/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


#ALL {
	
	display: flex; 
	flex-flow: row wrap;
	justify-content: space-between;	
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	COLOR LINES
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/



#LINES {
	
	height: 100vh;
	width: 100vw;
}



.color_a, .color_b, .color_c, .no_color {
	
	height: 1vh;
	width: 100vw;
	
	transition: background-color 800ms linear;
}



/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	SHAPES
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#SHAPES {
	
	position: fixed;
	
	top: 0px;
	left: 0px;
	
	height: 100vh;
	width: 100vw;
	
	overflow: hidden;
}


.shape_container {
	
	position: absolute;
	
	height: 20vh;
	width: 20vh;	
	
	border-radius: 100%;
	
	overflow: hidden;
	
	z-index: 10;	
}


.shape_container .SHAPE, .shape_container .LINES {
	
	position: absolute;
	
	height: 100%;
	width: 100%;
}	

.shape_container .SHAPE {
	
	background-color: white;
}


.shape_container .LINES {

	transition: opacity 300ms linear;
}


.shape_container:hover {
	
	z-index: 11;
}

.shape_container:hover .LINES {
	
	opacity: 0;
}




/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	PAUSE / PLAY
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#PAUSE, #PLAY {
	
	position: fixed;

	top: 0px;
	right: 0px;
	
	height: auto;
	width: auto;
	
	padding: 2vh;
	
	cursor: pointer;
	
	opacity: .8;
}

#PAUSE:hover, #PLAY:hover {
	
	opacity: 1;
}	


#PAUSE div, #PLAY div {
	
	height: 1vh;
	width: 1vh;
	
	float: left;

	background-color: white;
}


#PAUSE div:nth-of-type(1),#PAUSE div:nth-of-type(3), #PAUSE div:nth-of-type(5), #PAUSE div:nth-of-type(7), #PAUSE div:nth-of-type(9) {
	
	margin-right: 1vh;
	
	clear: left;
}


#PLAY div:nth-of-type(2), #PLAY div:nth-of-type(4), #PLAY div:nth-of-type(7), #PLAY div:nth-of-type(9) {
	
	clear: left;
}

#PLAY div:nth-of-type(10) {
	
	display: none;
}




/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	HAMBURGER
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


#HAMBURGER {

	position: fixed;

	top: 0px;

	height: auto;
	width: auto;

	padding: 2vh;

	cursor: pointer;

	z-index: 98;
	
	opacity: .8;
}


#HAMBURGER:hover {

	opacity: 1;
}


#HAMBURGER, #MENU #HAMBURGER_X {


	left: 0px;

	margin-left: 0px;
}




#MENU #HAMBURGER_X {

	position: absolute;

	top: 0px;
	left: 0px;

	opacity: 1;

	display: none;

}


#HAMBURGER div {

	height: 1vh;
	width: 1vh;
	
	display: block;

	background-color: white;

	margin-bottom: 1vh;
}

#HAMBURGER:hover div {


	background-color: white;

}




/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	MENU
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


#MENU {

	position: fixed;

	height: 100%;
	width: auto;
	max-width: 300px;
	min-width: 284px;

	font-family: Helvetiva, sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: black;
	line-height: 140%;

	padding: 20px;
	padding-top: 30px;

	top: 0px;
	left: -300px;

	background-color: rgba(255,255,255,.99);

	z-index: 10001;

	overflow-y: scroll;
	overflow-x: hidden; 

	border-right: 1px solid rgba(0,0,0,.1);
	
	cursor: default;

	display: none;
}





#MENU div {

}




#MENU .separator {
	
	height: 1px;
	width: 100%;
	
	margin-top: 50px;
	margin-bottom: 10px;
	
	padding: 0px;
	
	background-color: rgba(0,0,0,.2);
	
	opacity: 1;
	
	cursor: default;
}



#MENUABDUNKLER {

	position: fixed;

	top: 0px;
	left: 0px;

	width: 100%;
	height: 100%;

	background-color: rgba(0,0,0,.5);

	display: none;
	
	cursor: default;

	z-index: 99;
}



@media (orientation:landscape) {

	#MENU #intro_mobile {
	
		display: none;
	}
}

@media (orientation:portrait) {

	#MENU #intro_desktop {
	
		display: none;
	}
}




@keyframes menu_reinschieben {

    0% { left: -350px }

    100% { left: 0px; }
}


@keyframes menu_rausschieben {

    0% { left: 0px }

    100% { left: -350px; }
}





/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	COLOR PICKER
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


#COLOR_SCHEME_PICKER {
	
	
	margin-top: 25px;
	margin-bottom: 50px;
}


#COLOR_SCHEME_PICKER div {

	width: auto;
	
	margin-bottom: 20px;
	
	background-color: rgba(255,255,255,.1);
	background-position-x: -10px;
	background-size: calc(100% + 20px);

	cursor: pointer;	
}



#COLOR_SCHEME_PICKER div:hover, #COLOR_SCHEME_PICKER .selected {
	
	
}

#COLOR_SCHEME_PICKER div:active {
	
	
}

#COLOR_SCHEME_PICKER .theme_name:hover, #COLOR_SCHEME_PICKER .theme_name:active {
	
	border: none;
	background-color: transparent;
}

#COLOR_SCHEME_PICKER div div {
	
	height: 1vh;
	width: 100%;
	
	margin: 0px;
	
	padding: 0px;
	
	border: none;	
}

#COLOR_SCHEME_PICKER div div:hover {
	
	border: none;
}





/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	BUTTONS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


.button {
	
	margin-top: 20px;
	margin-bottom: 20px;
	
	padding: 10px;
	
	background-color: rgba(0,0,0,.1);
	border-radius: 10px;
	
	cursor: pointer;
	
	opacity: .9;
}


.button:hover {
	
	opacity: 1;
	background-color: rgba(0,0,0,.2);
}

.button:active {
	
	background-color: rgba(0,0,0,.5);
}
