/* ---------------------------------------------------------*/
/* Variables - Start ---------------------------------------*/
:root { 
	/*LIGHT THEME ==============================*/
    --main-bg-color: rgba(34,34,34,1);
	--main-bg-color1: rgba(255,255,255,1);
	--main-bg-color2: rgba(179,145,34,0.15);
	--main-main-color: rgba(39,170,179,1);
	--main-text-color: rgba(72,72,72,1);  /*DARK GRAY*/
	--main-grey-color: rgba(47,47,47,1);	
	
	/*DARK THEME ==============================*/
    --main-bg-color: rgba(34,34,34,1);
    /*--main-main-color:rgba(0,184,255,1);  TRON*/
	--main-main-color: rgba(39,170,179,1);
	--main-bg-color1: rgba(78, 78, 78, 0.55);
	--main-bg-color2: rgba(78, 78, 78, 0);
	--main-text-color: rgb(255, 255, 255);
	--main-grey-color: rgba(47,47,47,1);
	
	--main-letter-spacing: 4px;
	--main-scrollbar-width: 8px;
}
/* Variables - End -----------------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Body - Start --------------------------------------------*/
body{
	/*font: Ariel, Helvetica, Sans serif;*/
	/*font-family: 'Rokkitt', serif;*/
	font-family: 'Titillium Web', sans-serif;
	/*font-family: 'Audiowide', cursive;*/
	/*font-family: 'Coda', cursive;*/
	/*font-family: 'Shadows Into Light', cursive;*/
	font-size: 1em;
	
	padding: 0px;
    margin: 0px;
	background-color: var(--main-bg-color);
}
/* Body - End ----------------------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Titles, Text and Tables - Start -------------------------*/
p{
	font-weight: 300;
	font-size: 100%;
	letter-spacing: 0.5px;
	color: var(--main-text-color);
	margin: 0px;
}

h1{
	font-size: 400%;
	color: var(--main-main-color);
	letter-spacing: var(--main-letter-spacing);
}

h2{
	font-size: 300%;
	color: var(--main-main-color);
    margin: 0px;
    padding: 30px 0px;
    text-align: center;
	letter-spacing: var(--main-letter-spacing);
}

h3{
	font-weight: 400;
	font-size: 200%;
	text-align: left;
	letter-spacing: var(--main-letter-spacing);
	color: var(--main-main-color);
	margin: 0px;
	padding-bottom: 20px;
}

h4{
	font-weight: 400;
	font-size: 125%;
	text-align: left;
	letter-spacing: var(--main-letter-spacing);
	color: var(--main-text-color);
	margin: 0px;
	padding-bottom: 10px;
}

pre{
	white-space: pre-wrap;	
	font-weight: 300;
	font-size: 90%;
	letter-spacing: 0.5px;
	color: var(--main-text-color);
	margin: 0px;
	font-family: Titillium Web,monospace;
}

hr{
	height: 1px;
	border: 0;
	width: 100%;
	background-color: var(--main-main-color);
	margin: 0px 0px 50px 0px;
}

hr.thin{
	height: 1px;
	border: 0;
	width: 100%;
	background-color: var(--main-main-color) !important;
}

a{
	color: #333;
	text-decoration: none;
	color: var(--main-main-color);
}

a:hover{
	color: grey;
	text-decoration: underline;
}

span{
	margin: 5px;
	white-space: nowrap
}

img{
	margin: 0px;
	padding: 0px;
}

td, th
{
    padding: 5px;   
}

tr 
{
    height: 25px;   
}
/* Titles, Text and Tables - End ---------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Header - Start ------------------------------------------*/
header{
	/*height: 70px;*/
	margin: 0px;
	padding: 0px;
	background-color: var(--main-grey-color);
	
	/*position: fixed;*/
	position: sticky;
	width: 100%;
	top: 0;
	z-index: 1000;
	/*left: 0px;*/
	border-bottom-color: 1px solid var(--main-main-color) !important;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

header h1{
	float: left;
	font-size: 150%;
	padding-left: 20px;
	
	/*margin: 15px 0px 0px 10px;
	
	-webkit-transition: background 0.3s linear;
	-moz-transition: background 0.3s linear;
	-ms-transition: background 0.3s linear;
	-o-transition: background 0.3s linear;
	transition: background 0.3s linear;*/
}

header h1 a{
	color: var(--main-main-color);
    text-decoration: none;
}

header h1 a:hover{
	color: var(--main-text-color) !important;
}

#logo a{	
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	font: 2.0em "Trebuchet MS",monospace;
	margin: 13px 0px;
}

@media all and (max-width: 910px) {
	header{
		flex-flow: column;
		justify-content: center;
		top: auto;
	}
	
	header h1{
		text-align: center;
	}
}
/*
#logo:hover{
	background-color: var(--main-main-color) !important;
}

#logo:hover a{
	color: black;
}*/
/* Header - End --------------------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Home Page - Start ---------------------------------------*/
.container{
	padding: 30px 15px 100px 15px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.background-color1{
	background-color: var(--main-bg-color1);
	overflow: hidden;
}

.background-color2{
	background-color: var(--main-bg-color2);
	overflow: hidden;
}
	
.listEntry{
	text-align: left;
}

.column33Percent{
	position: relative;
	float: left;
	width: 40%;
}

.column66Percent{
	position: relative;
	float: left;
	width: 60%;
	padding-bottom: 70px;
}

.paragraphBlock{
	padding-top: 20px;
	text-align: left;
}

.centeredImage{
    margin: 0px;
    max-width: 100%;
}

.centeredImage img{
	width: 100%;
    max-width: 246px;
    height: auto;
	border-radius: 50%;
}

#homeScreen{
	background: no-repeat center right fixed url('../images/Ice Palace.jpg'); 
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center center;
    margin-bottom: 0px;
    padding: 0px;
	width: calc(100vw - (100vw - 100%));
	height: 100vh;
}

#homeScreen .container{
    position: relative;
    top: 30%;
    z-index: 4;
    padding: 20px 0px;
    background-color: rgba(255, 255, 255, 0.35);
	margin: 0px;
	max-width: 100%;
}

#homeScreen .container h1{
	padding: 0px 100px 10px 100px;
    border-bottom: 1px solid var(--main-main-color);
    display: inline-block;
	margin: 0px;
	letter-spacing: var(--main-letter-spacing);
}

#homeScreen .container p{
    padding-top: 20px;
    margin: 0px;
	letter-spacing: var(--main-letter-spacing);
	font-weight: 400;
    font-size: 150%;
	color: var(--main-main-color);
}

#skillsContainer{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.skill{
	width: 30%;
	margin: auto;
	padding-bottom: 30px;
}

.skill h4{
	text-align: center;
}

.skill span{
	color: var(--main-main-color);
}

#contactForm{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: column wrap;
    flex-flow: column wrap;
}

.contactFormEntity{
    margin: 0px 0px 10px 0px;
    padding: 5px;
	color: var(--main-text-color);
	width: 100%;
	height: 35px;
	background-color: var(--main-grey-color);
	border: 1px solid var(--main-main-color);
	text-align: left;
}

.contactFormLabel{
	margin: 10px 0px 0px 0px;
	color: var(--main-text-color);
	background: none;
	border: none;
}

.contactFormTextArea{
	height: 100px;
}
/* Home Page - End -----------------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Home Page - Menu - Start --------------------------------*/
#mainMenu{
    background-color: var(--main-main-color);
    position: absolute;
    width: 125px;
    z-index: 10;
}

#mainMenu #mainNav{
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    flex-flow: column;
}

#mainMenu li{
	padding: 20px;
}

#mainMenu li a {
	letter-spacing: var(--main-letter-spacing);
	color: var(--main-bg-color);
}

#mainMenu li :hover{
	text-decoration: none;
	color: var(--main-text-color);
}

.sticky {
	z-index: 100;
	position: fixed !important;
	top: 0px !important;
}

.menuMobileMenu{
	display: none!important;
}

@media all and (max-width: 1155px) {
	#mainMenu{
		width: 100%;
		position: -webkit-sticky;
		position: sticky;
		top: 0px;
	}
	#mainMenu #mainNav{
		flex-flow: row;
		justify-content: space-around;
	}
}

@media all and (max-width: 560px) {
	#mainMenu #mainNav{
		flex-flow: column;
	}

	.menuMobileMenu{
		display: inline-block!important;
	}
	
	#mainNav li:not(:first-child) {
		display: none;
	}
	
	#mainNav.responsive{
		position: relative;
	}
	
	#mainNav.responsive li{
		float: none;
		display: block;
	}
}
/* Home Page - Menu - End ----------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Work Navigation Menu - Start ----------------------------*/
/*#workNav {
	float: right;
	list-style: none;
	padding: 15px;
	margin: auto;
}*/

#workNav{
	list-style: none;
	margin: 0px;
	padding: 0px;
	background-color: var(--main-grey-color);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	justify-content: flex-end;
}
/*
#workNav li{
	position: relative;
    display: inline-block;
	letter-spacing: var(--main-letter-spacing);
    line-height: 35px;
}*/

#workNav a {
	color: var(--main-text-color);
	display: block;
	padding: 22px;
	text-decoration: none;
	cursor: pointer;
	letter-spacing: var(--main-letter-spacing);
	text-align: center;
	border-right: 1px solid var(--main-bg-color);
}

#workNav li:last-of-type a {
	border-right: none;
}

@media all and (max-width: 560px) {
	#workNav{
		flex-flow: column wrap;
	}

	#workNav a{
		border-right: none;
		border-bottom: 1px solid var(--main-bg-color);
	}
	
	#workNav li:last-of-type a {
		border-bottom: none;
	}
	
	#workNav li:not(:first-child) {
		display: none;
	}
	
	#workNav.responsive{
		position: relative;
	}
	
	#workNav.responsive li{
		background: var(--main-bg-color);
		float: none;
		display: block;
		padding: 0;
		margin: 0;
	}
}

@media all and (max-width: 910px) {
	#workNav{
		justify-content: space-around;
	}
}

#workNav li :hover{
	text-decoration: none;
	color: var(--main-main-color);
}
	
.inactive {
	color: var(--main-text-color) !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	cursor: default !important;
}

#work3d header #workNav #workNav3D a,
#work2d header #workNav #workNav2D a,
#workScripts header #workNav #workNavScripts a,
#workPhotography header #workNav #workNavPhotography a,
#workMaker header #workNav #workNavMaker a{
	background-color: var(--main-grey-color);
	color: var(--main-main-color) !important;
}
/* Work Navigation Menu - End ------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Content -------------------------------------------------*/
.left{
	float: left;
	margin: 0px;
}

.right{
	float: right;
	margin: 0px;
}

.opacity0-5 {
	opacity: 0.2;
	filter: alpha(opacity=20);
}

.opacity:hover {
	opacity: 1;
	filter: alpha(opacity=100);
 	-webkit-transition: opacity 0.5s linear;
	-moz-transition: opacity 0.5s linear;
	-o-transition: opacity 0.5s linear;
	transition: opacity 0.5s linear;
}
/* End -----------------------------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Work - Start --------------------------------------------*/
#mainContent {
	width: 100%;
	/*min-width: 1000px;*/
    /*padding-top: 70px;*/
}

#mainContent  h2{
	font-size: 200%;
	font-weight: 400;
}

#contentHolder{
	/*min-width: 1000px;*/
	padding: 0px 15px;
}
/* Work - Sub Menu - Start ---------------------------------*/
#subMenuWorkFilter{
	list-style: none;
	margin: 0px;
	padding: 0px;
	background-color: var(--main-grey-color);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	justify-content: flex-start;
}

#subMenuWorkFilter a{
	color: var(--main-text-color);
	display: block;
	padding: 15px;
	text-decoration: none;
	cursor: pointer;
	letter-spacing: var(--main-letter-spacing);
	text-align: center;
	border-right: 1px solid var(--main-bg-color);
}

#subMenuWorkFilter li:last-of-type a {
	border-right: none;
}

#subMenuWorkFilter .menuMobileMenu{
	display: none!important;
}

@media all and (max-width: 750px) {
	#subMenuWorkFilter{
		flex-flow: column wrap;
	}
	
	#subMenuWorkFilter a{
		border-right: none;
		border-bottom: 1px solid var(--main-bg-color);
	}
	
	#subMenuWorkFilter li:not(:first-child) {
		display: none;
	}
	
	#subMenuWorkFilter li:last-of-type a {
		border-bottom: none;
	}
	
	#subMenuWorkFilter .menuMobileMenu{
		display: block!important;
	}
	
	#subMenuWorkFilter.responsive{
		position: relative;
	}
	
	#subMenuWorkFilter.responsive li{
		float: none;
		display: block;
		padding: 0;
		margin: 0;
	}
}

#subMenuWorkFilter li :hover{
	text-decoration: none;
	color: var(--main-main-color);
}
	
.focusIcon
{
	background-color: var(--main-grey-color);
	color: var(--main-main-color) !important;
}
/* Work - Sub Menu - End -----------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Work - 3D/2D/Maker - Tiles - Start ----------------------*/
#projectsList{
	/*min-width: 1000px;*/
	width: 100%;
	color: #fff;
	display: block;
	float: left;
	margin-bottom: 20px;
}

#projects {
	margin: auto;
	padding: 0px;
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    flex-flow: column;
}

#projectsPhotography, #projects2D{
	/*display: -webkit-box;*/
	/*display: -moz-box;*/
	/*display: -ms-flexbox;*/
	/*display: -webkit-flex;*/
	/*display: flex;*/
	/*-webkit-flex-flow: row wrap;*/
	/*justify-content: center;*/
	
	width: 100%;
    column-count: 3;
    column-gap: 20px;
}

#projectsHolder{
	/*height: auto;*/
}

.project {
	/*height: 180px;*/
	/*width: 180px;*/
	/*display: block;*/
	/*position: relative;*/
	/*float: left;*/
	/*cursor: pointer;*/
	/*overflow: hidden;*/
	/*margin: 5px 5px 5px 5px;*/
	
    width: 100%;
    display: block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    padding: 10px 0px;
}

.project img {
	height: auto;
	/*height: 100%;*/
	/*width: auto;*/
	width: 100%;
	display: block;
    margin-left: auto;
    margin-right: auto;
}

@media all and (max-width: 910px) {
	#projectsPhotography, #projects2D{
		/*justify-content: column;*/
		column-count: 2;
	}
}

@media all and (max-width: 510px) {
	#projectsPhotography, #projects2D{
		/*justify-content: column;*/
		column-count: 1;
	}
	
	.project{
		width: 100%;
		/*height: 300px;*/
	}
	
	.project img {
		height: auto;
		width: 100%;
	}
}

.project h3 {
	position: absolute;
	width: 100%;
	height: 30px;
	font-size: 75%;
	text-transform: uppercase;
	padding: 0px;
	letter-spacing: 0px;
    font-weight: 400;
    background-color: var(--main-grey-color);
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    justify-content: center;
    align-items: center;
	-o-text-overflow: ellipsis;   /* Opera */
    text-overflow:    ellipsis;   /* IE, Safari (WebKit) */
    overflow:hidden;              /* don't show excess chars */
	
	top: 50px;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition:    all 0.3s ease;
	-o-transition:      all 0.3s ease;
	transition:      	all 0.3s ease;
}

.project icon {
	position: absolute;
	margin: 0px;
	width: 30px;
	height: 30px;
	opacity: 0.75;
	bottom: -35px;
	left: calc(50% - 15px);
	left: -webkit-calc(50% - 15px);
	left: 	 -moz-calc(50% - 15px);
	left: 	   -o-calc(50% - 15px);
	
	bottom: calc(50% - 15px);
	bottom: -webkit-calc(50% - 15px);
	bottom: -moz-calc(50% - 15px);
	bottom: -o-calc(50% - 15px);
	
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition:    all 0.3s ease;
	-o-transition:      all 0.3s ease;
	transition:      	all 0.3s ease;
}
.project icon img {
	width: 100%;
	height: 100%;
}

.project:hover h3{
	/*top: calc(8%);*/
	/*top: -webkit-calc(8%);*/
	/*top: -moz-calc(8%);*/
	/*top: -o-calc(8%);*/
	opacity: 1;
}

.project:hover icon{
	/*bottom: calc(50% - 15px);*/
	/*bottom: -webkit-calc(50% - 15px);*/
	/*bottom: -moz-calc(50% - 15px);*/
	/*bottom: -o-calc(50% - 15px);*/
	opacity: 1;
}

.project:hover  img{
	opacity: 0.5;
	-webkit-transition: all 0.3s ease;
	-moz-transition:    all 0.3s ease;
	-o-transition:      all 0.3s ease;
	transition:      all 0.3s ease;
}
/* Work - 3D/2D/Maker - Tiles - End ------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/

/*##########################################################*/
/*##########################################################*/
/*##########################################################*/
/*##########################################################*/
/*##########################################################*/
/*##########################################################*/
/*##########################################################*/
/* projectViewHolder - Holder for single project view ------*/

#projectViewHolder {
	padding: 20px 0;
}

#projectViewHolder h1{
	color: var(--main-main-color);
}

#projectViewHolder h2{
	margin-top: 9px;
}

#projectMainImage {
	margin: 50px 0px 20px 0px;
	max-height: 200px;
	overflow: hidden;
}
/*
#projectMainImage a{
	height:200px;
	line-height: 200px;
	overflow: hidden;
}*/

#projectMainImage a img{
	width: 100%;
	-webkit-transform: 	translateY(-webkit-calc(-50% + 100px));
	-moz-transform: 	translateY(-moz-calc(-50% + 100px));
	-o-transform: 		translateY(-o-calc(-50% + 100px));
	transform: 			translateY(calc(-50% + 100px));
}
/* End -----------------------------------------------------*/

/* projectImages - Images from single project view ---------*/
#projectImages{
	margin: 50px 0px 50px 0px;
}

#projectImages div{
	height: 120px;
	width: 83px;
	position: relative;
	float: left;
	margin: 0px 8px 8px 0px;
	overflow: hidden;
}

#projectImages div a{
	position: absolute;
	background-repeat: no-repeat;
	background-position: center;
	height: 100%;
	width: 100%;
}

#projectImages div icon {
	position: absolute;
	margin: 0px;
	width: 30px;
	height: 30px;
	
	bottom: -35px;
	
	left: calc(50% - 15px);
	left: -webkit-calc(50% - 15px);
	left: 	 -moz-calc(50% - 15px);
	left: 	   -o-calc(50% - 15px);
	-webkit-transition: all 0.3s ease;
	-moz-transition:    all 0.3s ease;
	-o-transition:      all 0.3s ease;
	transition:      	all 0.3s ease;
}
#projectImages div icon img {
	width: 100%;
	height: 100%;
}

#projectImages div:hover icon{
	bottom: calc(50% - 15px);
	bottom: -webkit-calc(50% - 15px);
	bottom:    -moz-calc(50% - 15px);
	bottom: 	 -o-calc(50% - 15px);
}
/* End -----------------------------------------------------*/
/*##########################################################*/
/*##########################################################*/
/*##########################################################*/
/*##########################################################*/
/*##########################################################*/
/*##########################################################*/
/*##########################################################*/


/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Work - Scripts - Start ----------------------------------*/
.projectScript{
    padding: 30px 0px 70px 0px;
	border-top-style: 1px solid var(--main-main-color);
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    flex-flow: column;
}

.projectScript h3{
	padding: 0px;
	font-size: 150%;
}

.projectScript div{
	color: var(--main-main-color);
	padding-top: 20px;
}

.projectScriptDesc{
	padding-top: 20px;
	font-family: Titillium Web,monospace;
}
/* Work - Scripts - End ------------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Work - Photography - Start ------------------------------*/
#photographViewer{
	width: 100%;
	padding-bottom: 20px;
}

#photographViewHolder{
	width: 100%;
	position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.photographHolder{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	float: left;
	width: calc(100% - 301px);
	width: -ms-calc(100% - 301px);
	width: -webkit-calc(100% - 301px);
	width: 	 -moz-calc(100% - 301px);
	width: 	   -o-calc(100% - 301px);
	height: 700px;
	background-color: black;
}

#photograph{
	max-height: 100%;
    max-width: 100%;
    margin: auto;
	object-fit: contain;
    object-position: 50% 50%;
	cursor: pointer;
}

#photographInfoHolder{
	height: 100%;
    width: 300px;
    position: absolute;
    right: 0px;
    display: inline-block;
}

#photographInfo{
	margin: 10px;
}

#photographInfo h3{
	font-size: 170%;
	letter-spacing: 0;
	text-align: center;
	padding-bottom: 30px;
}

#photographInfo h4{
	font-size: 110%;
	letter-spacing: 0;
	text-align: center;
}

#photographInfo p{
	font-size: 90%;
	letter-spacing: 0;
}

#cameraSettings{
	padding: 40px 0px 20px 0px;
	margin: 0px;
}

#cameraSettings li{
    float: left;
    width: 100%;
    list-style: none;
}

#cameraSettings li h4{
    font-size: 100%;
	letter-spacing: 0;
	color: var(--main-main-color);
}

#cameraSettingsDesc{
	color: var(--main-text-color);
	position: absolute;
    bottom: 0px;
    text-align: justify;
}

.PhotoInfoText{
	font-size: 15px;
	color: var(--main-text-color);
	text-align: center;
    vertical-align: middle;
}
/* Work - Photography - End --------------------------------*/

#workScripts h2, #workMaker h2 {
	font-size: 200%;
	font-weight: 400;
	text-align: left;
	padding-left: 15px;
}
/* Work - End ----------------------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Uploading/Editing - Start -------------------------------*/
.formInput50Percent{
	float: left;
	padding: 0px 10px;
    width: calc(50% - 20px);
	min-height: 450px;
}

.formInput{
    margin: 10px 10px 10px 0px;
    padding: 5px;
	color: var(--main-text-color);
	width: calc((100% - 235px) / 2);
	height: 35px;
	background-color: var(--main-grey-color);
	box-sizing: border-box;
	border: 1px solid var(--main-main-color);
}

.formInputLabels{
	color: var(--main-main-color);
	width: 90px !important;
}

.formInputLabelsInlineBlock{
	display: inline-block;
}

.formTextArea{
    width: 100%;
    height: 120px;
    margin: 10px 0px;
    padding: 0px;
    border-width: 0px;
}

.formSubmit{
	width: 100px;
    height: 50px;
}

#formUpload hr{
	margin: 10px 0px;
}

#adminLoginMenu{
	position: absolute;
	bottom: 0px;
}

.user{
	float: left;
	padding: 0px 10px;
	font-weight: 200 !important;
}

.user a{
	/*font-size: 100% !important;
	font-weight: 200 !important;
	text-align: center !important;*/
	color: var(--main-text-color);
}

#editProjectImages{
	width: 100%;
	height: auto;
}

#editProjectImages tr td div a img{
	width: 100%;
	height: auto;
}

.center {
    text-align: center;
    vertical-align: middle;
}

/*
#editProjectImages tr td div{
	width: 100px;
	position: relative;
	float: left;
	margin: 0px 8px 8px 0px;
	overflow: hidden;
}
*/

#editProjectsProject{
	float: left;
    width: 100%;
    height: 100px;
	padding: 5px 0px;
    border-top-style: 1px solid var(--main-main-color);
}

#editProjectsProject h3 {
    padding: 0px 10px;
    height: 100%;
    font-size: 125%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    align-items: center;
}

/*#editProjectsProject a {
    position: relative;
    float: left;
    width: 66%;
    padding: 0px;
    font-size: 150%;
}*/

#editProjectsProjectThumb{
    height: 100px;
    width: 120px;
    float: left;
    overflow: hidden;
    margin: 0px;
}

#editProjectsProjectThumb a{
    display: block;
    height: 100%;
}

#editProjectsProjectThumb img{
	height: 100%;
    width: auto;
}
/* Uploading/Editing - End ---------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Icons - Start -------------------------------------------*/
#icons {
	padding: 50px;
	text-align: center;
}

#icons ul  {
	list-style:none;
	margin: 0px;
	padding: 0px;
}

#icons li  {
	margin: 0px 5px;
	display: inline-block;
	-webkit-transition: background 0.3s linear;
	-moz-transition: background 0.3s linear;
	-ms-transition: background 0.3s linear;
	-o-transition: background 0.3s linear;
	transition: background 0.3s linear;
}

#icons li a{
	width: 32px;
	min-height: 70px;
	display: block;
}

#icons li a svg{
	margin: 19px 0px 0px 0px;
}

#icons li a svg path{
	fill: #B8B8B8;
}

#icons li:hover {
	/*background-color: var(--main-main-color);*/
}

#icons li:hover svg path{
	fill: var(--main-main-color) !important;
}
/* Icons - End ---------------------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Footer - Start ------------------------------------------*/
footer{
	width: 100%;
	height: 300px;
	color: var(--main-main-color);
	background-color: var(--main-grey-color);
	border-top-style: 5px solid;
	position: relative;
}

footer #copyright {
    text-align: center;
    bottom: 100%;
    /*position: absolute;
    bottom: 0;*/
    height: 50px;
    width: 100%;
	font-size: 90%;
}

footer #user {
	font-size: 60%;
}
/* Footer - End --------------------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Scrollbar - Start ---------------------------------------*/
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-button {
	width: var(--main-scrollbar-width);
	height:5px;
}
::-webkit-scrollbar-track {
	background-color: var(--main-grey-color);
}
::-webkit-scrollbar-thumb {
	background-color: var(--main-text-color);
	border: skinny plain gray;
}
::-webkit-scrollbar-thumb:hover {
	background-color: var(--main-main-color) !important;
}
/* Scrollbar - End -----------------------------------------*/
/* ---------------------------------------------------------*/
/* ---------------------------------------------------------*/
/* Clear Fix - Start ---------------------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/* Clear Fix - End -----------------------------------------*/
/* ---------------------------------------------------------*/