@import url("font-awesome.min.css");
@import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic,600,600italic,700,700italic");

@font-face {
	font-family: "n27";
	font-weight: 400;
	font-style: Regular;
	src: url("../fonts/n27-regular-webfont.woff") format("woff"), url("../fonts/n27-regular-webfont.woff2") format("woff2"), url("../fonts/n27-regular-webfont.tff") format('truetype'), url("../fonts/n27-regular-webfont.eot") format('embedded-opentype');
  }
  @font-face {
	font-family: "n27";
	font-weight: 500;
	font-style: Regular;
	src: url("../fonts/n27-medium-webfont.woff") format("woff"), url("../fonts/n27-medium-webfont.woff2") format("woff2"), url("../fonts/n27-medium-webfont.tff") format('truetype'), url("../fonts/n27-medium-webfont.eot") format('embedded-opentype');
  }
  @font-face {
	font-family: "n27";
	font-weight: 700;
	font-style: Regular;
	src: url("../fonts/n27-bold-webfont.woff") format("woff"), url("../fonts/n27-bold-webfont.woff2") format("woff2"), url("../fonts/n27-bold-webfont.tff") format('truetype'), url("../fonts/n27-bold-webfont.eot") format('embedded-opentype');
  }
/*
	Directive by HTML5 UP
	html5up.net | @n33co
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* Basic */

*,
*:before,
*:after {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	background: #181818;
	color: #FFF;
}

body.is-loading * {
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-o-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-o-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
}

body, input, select, textarea {
	color: #6e6e6e;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16pt;
	font-weight: 400;
	line-height: 1.75em;
}

a {
	-moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	border-bottom: dotted 1px;
	color: #FFF;
	text-decoration: none;
}

a:hover {
	border-bottom-color: transparent;
	color: #e4a3b7;
}

strong, b {
	font-weight: 600;
	color: #5b5b5b;
}

em, i {
	font-style: italic;
}

p, ul, ol, dl, table, blockquote, form {
	margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'n27';
	color: #EFDE5B;
	line-height: 1.75em;
	text-align: center;
    margin: 0 0 1rem;
	text-transform: uppercase;
	font-weight: 400;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
}

h1{
	font-size: 3.25rem;
	line-height: 1.2;
	margin: 0 0 1rem;
}

h2 {
	font-size: 1.75em;
}

h3 {
	font-size: 1.5em;
}

sub {
	font-size: 0.8em;
	position: relative;
	top: 0.5em;
}

sup {
	font-size: 0.8em;
	position: relative;
	top: -0.5em;
}

hr {
	border: 0;
	border-top: solid 1px rgba(224, 224, 224, 0.75);
	margin-bottom: 1.5em;
}

blockquote {
	border-left: solid 0.5em rgba(224, 224, 224, 0.75);
	font-style: italic;
	padding: 1em 0 1em 2em;
}


header {
	text-align: center;
}

footer {
	text-align: center;
}

/* Form */

.row{
	margin-bottom: 3vh;
}

.widefat{
	position: relative;
}

.flex{
	display: flex;
	justify-content: center;
}

.flex .widefat{
	flex-grow: 1;
	padding-right: 1em;
	flex-basis: 50%;
}

.flex .widefat:last-child{
	padding-right: 0;
}

label {
	display: block;
	color: #FFF;
	font-size: 0.8em;
	font-weight: 700;
	letter-spacing: 0.125em;
	line-height: 1.75em;
	text-transform: uppercase;
	margin: 0 0 0.5em 0;
	position: relative;
}

.label-description{
	font-size: 0.6em;
	line-height: normal;
}

.tooltip{
	position: absolute;
	background: #333;
	background: rgba(0, 0, 0, .8);
	bottom: 100%;
	left: 0;
	padding: 5px 10px;
	font-size: 15px;
	font-weight: normal;
	text-transform: none;
	line-height: 1.3;
	opacity: 0;
	visibility: hidden;
	z-index: 10000;
	transition: opacity .3s ease-in-out;
}

.icon:hover + .tooltip{
	opacity: 1;
	visibility: visible;
}


input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: background-color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
	background: #FFF;
	border: 0;
	border: solid 1px rgba(224, 224, 224, 0.75);
	color: inherit;
	display: block;
	outline: 0;
	padding: 0.75em;
	text-decoration: none;
	width: 100%;
	opacity: 1;
}

input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
select.error,
textarea.error{
	border-color: #EF5350 !important;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
	background: rgba(255, 255, 255, 0.8);
	border-color: #4eb980;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
	line-height: 1em;
}

textarea {
	padding: 0.5em 0.75em;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.5;
	position: relative;
	top: 3px;
}

:-moz-placeholder {
	color: inherit;
	opacity: 0.5;
}

::-moz-placeholder {
	color: inherit;
	opacity: 0.5;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 0.5;
}

.formerize-placeholder {
	color: rgba(110, 110, 110, 0.5) !important;
}

.form-error{
	color:#EF5350;
	position: absolute;
	font-size: 15px;
	background: rgba(0,0,0,0.5);
	padding: 5px 10px;
	top: 100%;
	left: 0;
	line-height: normal;
	z-index: 1000;
}

/* Icon */
.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}

.icon > .label {
	display: none;
}


/* List */

ol.default {
	list-style: decimal;
	padding-left: 1.25em;
}

ol.default li {
	padding-left: 0.25em;
}

ul.default {
	list-style: disc;
	padding-left: 1em;
}

ul.default li {
	padding-left: 0.5em;
}

ul.icons {
	cursor: default;
}

ul.icons li {
	display: inline-block;
	font-size: 1.25em;
	line-height: 1em;
	padding-left: 0.5em;
}

ul.icons li:first-child {
	padding-left: 0;
}

ul.icons li a, ul.icons li span {
	-moz-transition: background-color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
	border-radius: 100%;
	border: solid 1px rgba(224, 224, 224, 0.75);
	display: inline-block;
	height: 2em;
	line-height: 2em;
	text-align: center;
	width: 2em;
}

ul.icons li a:hover, ul.icons li span:hover {
	background: rgba(224, 224, 224, 0.15);
}

ul.actions {
	cursor: default;
	text-align: center;
}

ul.actions:last-child {
	margin-bottom: 0;
}

ul.actions li {
	display: inline-block;
	padding: 0 0 0 1.5em;
}

ul.actions li:first-child {
	padding: 0;
}

ul.actions.vertical li {
	display: block;
	padding: 1.5em 0 0 0;
}

ul.actions.vertical li:first-child {
	padding: 0;
}

/* Button */
.button {
	background-color: transparent;
	border-radius: 0;
	border: 2px solid #FFF;
	color: #FFF;
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 300;
	letter-spacing: 1px;
	padding: 1rem 3.5rem;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	position: relative;
	border: 1px solid rgba(255,255,255,0.5);
	overflow: hidden;
}

.button.fit {
	width: 100%;
}

.button.small {
	font-size: 0.8em;
}
.button:before {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translate(-100%, -600%) rotate(30deg);
    transform: translate(-100%, -600%) rotate(30deg);
    background-color: rgba(255,255,255,0.5);
    -webkit-transition-timing-function: cubic-bezier(0.75,0,0.125,1);
    transition-timing-function: cubic-bezier(0.75,0,0.125,1);
}

.button:hover:before{
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
}

.button:hover {
	border: 1px solid rgba(255, 255, 255, 0);
}

/* Box */
.box {
	margin-bottom: 3em;
	padding: 1.5em;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* Header */
.header {
	position: relative;
	text-align: center;
	padding-top: 2vh;
}

.header h1 {
	font-size: 2.5em;
	margin: 0;
}

.header p {
	font-size: 1.5em;
	line-height: 1.5em;
	margin: 0.25em 0 0 0;
}


/* Main */
.main {
	padding: 1em 0 2em 0;
	position: relative;
	z-index: 1;
}
