/* CSS Document */

/********************************
▄▖▄▖▄▖▄▖  ▄▖▄▖▄▖
▙▌▌▌▌ ▙▖  ▐ ▌▌▙▌
▌ ▛▌▙▌▙▖  ▐ ▙▌▌ 

********************************/

@font-face {
    font-family: systemFontNormal ;
    src:url("themes/_fonts/Barlow_Condensed/BarlowCondensed-Regular.ttf");
}
@font-face {
    font-family: systemFontBold;
    src:url("themes/_fonts/Barlow_Condensed/BarlowCondensed-SemiBold.ttf");
}

body { /* General font color */
	
	font-family: systemFontNormal, sans-serif;
	
	color: #ffffff;
	background: linear-gradient(180deg, #565656 0%, #292929 100%);
	
	padding: 0px;
	margin: 0px;
	
	/* Safari/Chrome, other WebKit */
	-webkit-box-sizing: border-box; 
	/* Firefox, other Gecko */
	-moz-box-sizing: border-box;
	/* Opera/IE 8+ */
	box-sizing: border-box;
}
div {
	box-sizing: border-box;
}
a {
	color: white;
}
b {
	font-family: systemFontBold;
}

.contentWrapperThin {
	position: relative;
	
	width: 600px;
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;	
	
	overflow: hidden;
	min-height: 100vh;
}

.alertSymbol {
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(themes/_icons/01/warning.png);
	background-size: 70px;
	
	height: 70px;
	width: 70px;
	
	margin: 20px auto 20px auto;
}

.headerLarge {
	
	font-family: systemFontBold;
	font-size: 50px;
	line-height: 1;
	
	margin-bottom: 20px;
	
	text-align: center;
}
.headerSmall {
	
	font-family: systemFontBold;
	font-size: 30px;
	line-height: 1;
	
	margin-bottom: 20px;
}

.bodyTextMed {
	
	font-size: 25px;
	text-align: left;
	
	margin-bottom: 20px;
}

.inputWrapper {
	display: block;
}
	#intent-email {
		
		all: unset;
		display: block;
		width: 100%;
		box-sizing: border-box;
		
		border: 1px solid #8f8f8f;
		border-radius: 5px;
		padding: 10px 20px 10px 20px;
		
		font-size: 25px;
		font-family: systemFontBold;
		margin-bottom: 10px;
	}
	#intent-email-send {
		display: inline-block;
		padding: 10px 30px 10px 30px;
		border-radius: 5px;
		background-color: #7e7e7e;
		
		font-size: 25px;
		font-family: systemFontBold;
		cursor: pointer;
	}
	#intent-email-send:hover {
		background-color: #a6a6a6;
		z-index: inherit;
	}
	#feedback {
		margin-top: 10px;
		font-size: 20px;
		font-family: systemFontBold;
	}

.bodyTextNote {
	font-size: 18px;
	text-align: left;
	font-style: italic;
}

.imgwlegend {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	height: auto;
	overflow: auto;
}
	.tutimgwrap {
		width: 60%;
	}
		.tutimg {
			width:100%;
			box-shadow: rgba(0, 0, 0, 0.5) 2.4px 2.4px 3.2px;
		}
	.imglegend {
		width: 40%;
		font-size: 20px;
		padding-left: 20px;
		font-style: italic;
	}
	
#footerWrapper {
	padding-top: 20px;
	padding-bottom:70px;
	position: relative;
	display: block;

}

@media only screen and (max-device-width: 480px) {
	.imglegend {
		width: 40%;
	   font-size: 15px;
	   padding-left: 20px;
	}
}
