body {
	font-size: 14px;
   padding-top: 67px;
   font-family: Open Sans;
}

h1,h2,h3 {
	font-family: Open Sans;
	font-weight: 300;
}

h1 {
	font-size: 35px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 25px;
}

.inner {
	padding: 0;
	margin: 0 auto;
	max-width: 960px;
	padding: 0 20px;
}

.inner-content {
	padding-top: 30px;
	padding-bottom: 30px;
}

a,a:visited {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

a:focus {
   outline: none;
}

a,a:hover {
	text-decoration: underline;
}

button {
	color: white;
	background: #EF6C00;
	border: 1px solid #EF6C00;
	padding: 12px 40px;
	border-radius: 3px;
	opacity: 0.9;
}

button.secondary {
	background: transparent;
	color: #EF6C00;
}

button:hover {
	opacity: 1;
}

button.secondary:hover {
	background: rgba(0,0,0,0.03);
}

.hidden {
	display: none !important;
}

.code {
	background: #FFFDE7;
	padding: 12px 15px;
	border-radius: 3px;
	border: 1px solid rgba(0,0,0,0.1);
	font-family: monospace;
}

.capitalize {
	text-transform: capitalize;
}

.nowrap {
	white-space: nowrap;
}

/*---------------------------------------------*/

#header {
   box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
   position: fixed;
   left: 0;
   top: 0;
   right: 0;
   background: white;
	z-index: 1;
}

html.loggedin #header {
	top: 32px;
}

#header #branding {
	font-family: "Open Sans";
	font-size: 20px;
	font-weight: 300;
}

#header #branding a {
   text-decoration: none;
}

#header .inner {
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
}

#header #top-menu {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

#header #menu-top-menu > li {
	display: inline-block;
	position: relative;
	margin-left: 3px;
	color: #494949;
	font-weight: bold;
   text-decoration: none;
}

#header #menu-top-menu > li:hover {
	background: #f0f0f0;
}

#header #menu-top-menu > li > a {
	display: inline-block;
	position: relative;
   padding: 8px 15px;
	box-sizing: border-box;
   border-radius: 3px;
   text-decoration: none;
}

#header .mobile-menu-toggle {
	display: none;
	position: absolute;
	top: 17px;
	left: -32px;
	padding: 10px;
	vertical-align: top;
	cursor: pointer;
	background: white;
	transition: background .4s;
}

@media (max-width: 800px) {
	#header .mobile-menu-toggle {
		display: inline-block;
	}

	#header #top-menu.open .mobile-menu-toggle {
		background: #ddd;
		transition: background .4s;
	}
	
	#header #top-menu {
		height: 100%;
		position: fixed;
		transform: initial;
		margin-top: 0;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 9999;
	}

	#header .menu-top-menu-container {
		xdisplay: none;
		display: inline-block;
		height: 100%;
		background: black;
		margin-right: -240px;
		transition: margin-right .4s;
	}

	#header #top-menu.open .menu-top-menu-container {
		margin-right: 0px;
		transition: margin-right .4s;
	}

	#header ul#menu-top-menu {
		padding: 2em 50px 0 50px;
		text-align: center;
	}

	#header ul#menu-top-menu li {
		display: block;
		margin-bottom: 2em;
		margin-left: 0;
	}

	#header ul#menu-top-menu li a {
		color: white;
		width: 100%;
		display: inline-block;
	}
   
	#header ul#menu-top-menu li a:hover {
	  background: #444;
   }
}

/*---------------------------------------------*/

#main {
	min-height: 650px;
	padding-bottom: 50px;
}

/*---------------------------------------------*/

#footer {
	background: #f3f3f3;
	line-height: 120px;
	font-size: 14px;
	position: relative;
	font-weight: 600;
}

#footer a {
	color: #888;
	text-decoration: none;
	font-weight: bold;
	font-family: Roboto;
	xvertical-align: middle;
	display: inline-block;
}

#footer #social {
	float: right;
}

#footer #social img {
	width: 25px;
}

/*---------------------------------------------*/

.popup-overlay	{
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	z-index: 100;

	-webkit-transition: opacity 0.1s ease-in-out;
	-moz-transition: opacity 0.1s ease-in-out;
	-o-transition: opacity 0.1s ease-in-out;
	transition: opacity 0.1s ease-in-out;
}

.popup-overlay.visible {
	opacity: 1;
	-webkit-transition: opacity 0.1s ease-in-out;
	-moz-transition: opacity 0.1s ease-in-out;
	-o-transition: opacity 0.1s ease-in-out;
	transition: opacity 0.1s ease-in-out;
}

.popup {
	position: absolute;
	background: white;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 0px 5px 60px rgba(0,0,0,0.4);

	width: 600px;
	top: 45%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.9);
	transform: translateX(-50%) translateY(-50%) scale(0.9);
}

.popup {
	opacity: 0;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

.popup-overlay.visible .popup {
	opacity: 1;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
	transform: translateX(-50%) translateY(-50%) scale(1);
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

.popup .popup-header {
	background: #f26800;
	color: white;
	padding: 15px 25px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	position: relative;
}

.popup .popup-content {
	padding: 30px 25px;
}

.popup .popup-footer {
	padding: 15px 25px;
	border-top: 1px solid rgba(0,0,0,0.1);
	position: relative;
	text-align: right;
}

.popup-header .close-popup {
	color: white;
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	cursor: pointer;
	opacity: 0.9;
}

.close-popup:hover {
	opacity: 1;
}

.popup h3 {
	margin: 0;
	margin-bottom: 20px;
	font-weight: normal;
	font-size: 20px;
	color: #363636;
}

.popup label {
	display: block;
	margin: 0;
	font-size: 12px;
	color: #777;
}

.popup input,
.popup select,
.popup textarea {
	width: 100%;
	margin-bottom: 18px;
	margin-top: 4px;
	box-sizing: border-box;
	font-size: 13px;
	padding: 8px;
	border: 1px solid #bbb;
}

.popup select[name=platform] {
	text-transform: capitalize;
}

.popup button.done {
	pointer-events: none;
}

@media (max-width: 700px) {
	.popup {
		position: fixed;
 		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		transform: inherit !important;
		width: 100%;
	}
}

/*---------------------------------------------*/

.material-after:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

/*---------------------------------------------*/

.dropmenu {
	display: none;
	position: absolute;
	left: 1px;

	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: -1px;
	padding: 10px 0;
	border: 1px solid #eee;
	box-shadow: 0px 2px 1px rgba(0,0,0,0.2);
	background-color: white;
}

#menu-top-menu > li:hover .dropmenu {
	display: block;
}

.dropmenu a {
	display: block;
	padding: 8px 40px 8px 14px;
	text-decoration: none;
}

.dropmenu a:hover {
	background: #eee;
}

/*---------------------------------------------*/

.feedback {
	font-weight: bold;
	color: #555;
}

.feedback .button {
	margin: 0 0.2em;
	color: #666;
	background: rgba(0,0,0,0.04);
	padding: 3px;
	display: inline-block;
	font-size: 13px;
	border-radius: 3px;
	width: 4em;
	text-align: center;
	vertical-align: top;
	margin-top: -2px;
	text-decoration: none !important;
}

.feedback .button:hover {
	color: #000;
	background: rgba(0,0,0,0.08);
}

.feedback .button.clicked {
	background: #888;
	color: white;
}
