/*
Simple Framework using flexboxes, inspiration from kube.css
*/
/*
Legend:
1. Columns
100. Misc
*/

/* -------------------------------------- 1. Columns ---------------------------------------- */
.row {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.row.gutters {
	margin-left: -2%;
}
.gutters [class^="col-"] {
	margin-left: 2%;
}
.col-1 {
	width: 8.33%;
}
.gutters .col-1 {
	width: calc( 8.33% - 2% );
}
.col-2 {
	width: 16.67%;
}
.gutters .col-2 {
	width: calc( 16.67% - 2% );
}
.col-3 {
	width: 25%;
}
.gutters .col-3 {
	width: calc( 25% - 2%);
}
.col-4 {
	width: 33.33%;
}
.gutters .col-4 {
	width: calc( 33.33% - 2% );
}
.col-5 {
	width: 41.67%;
}
.gutters .col-5 {
	width: calc( 41.67% - 2% );
}
.col-6 {
	width: 50%;
}
.gutters .col-6 {
	width: calc( 50% - 2% );
}
.col-7 {
	width: 58.33%;
}
.gutters .col-7 {
	width: calc( 58.33% - 2% );
}
.col-8 {
	width: 66.67%;
}
.gutters .col-8 {
	width: calc( 66.67% - 2% );
}
.col-9 {
	width: 75%;
}
.gutters .col-9 {
	width: calc( 75% - 2% );
}
.col-10 {
	width: 83.33%;
}
.gutters .col-10 {
	width: calc( 83.33% - 2% );
}
.col-11 {
	width: 91.67%;
}
.gutters .col-11 {
	width: calc( 91.67% - 2% );
}
.col-12 {
	width: 100%;
}
.row .push-bottom {
	margin-top: auto;
}
.row .push-right {
	margin-left: auto;
}
.row .push-center {
	margin-top: auto;
	margin-bottom: auto;
}
.row .align-center {
	margin-left: auto;
	margin-right: auto;
}

/* ----------------------------------- 100. Misc ------------------------------- */
.video-container {
	height: 0;
	position: relative;
	padding-bottom: 56.25%;
}
.background-image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#eye_um_search_export.um_export_wrap{
	position: absolute;
    bottom: 100%;
    right: 0;
}
input, textarea, select {
    display: block;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    height: 40px;
    outline: none;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 3px;
    box-shadow: none;
    padding: 0 12px;
}
input[type="submit"] {
	padding: 10px 20px;
	height: auto;
	text-transform: uppercase;
}
input[type="submit"]:hover, .button:hover {
	position: relative;
	top: 1px;
	left: 1px;
}
input[type="radio"] {
	width: auto;
	display: inline-block;
}
.button {
	padding: 10px 20px;
	text-transform: uppercase;
	display: inline-block;
	text-decoration: none;
}

@media only screen and ( max-width: 768px ) {
	div[class*="col-"] {
		width: 100% !important;
	}
	.row {
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	.row.gutters {
		margin-left: 0;
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	.row.gutters [class*="col-"] {
		margin-left: 0;
	}
	.newsletter input {
		margin: 0 auto;
	}
	.newsletter input[type="email"] {
		max-width: 500px;
		margin-bottom: 10px;
	}
	.newsletter input[type="submit"] {
		max-width: 300px;
	}
}