@charset "utf-8";
/* CSS Document */
/*tOD separate list from form*/

/*Elements*/

html, body {
	height: 100%;
}

body {
	position: relative;
	background-color: #f0f1f6;
}

* {
	font-family: 'Roboto', sans-serif;
	color: #777;
}

th, th a {
	font-family: 'Lato', sans-serif;
}

textarea {
	resize: none;
}

ul, li {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

a:focus, button:focus, button.btn:focus {
	outline: none;
	box-shadow: none;
}

#success-modal .bg-success {
	background-color: #273C87;
}

#success-modal .modal-dialog {
	max-width: 350px;
}

#success-modal * {
	text-align: center;
	font-weight: bold;
	color: #fff;
}

/*Backgounds*/

#page-background {
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: -2;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
    -webkit-transition: background-image 2s;
    transition: background-image 2s;
}

#background-overlay {
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: -1;
	transition: all 1s;
	opacity: 0;
}

#background-overlay.light, #background-overlay.dark {
	opacity: 1;
}

#background-overlay.light {
	background-color: rgba(255, 255, 255, 0.9);
}

#background-overlay.dark {
	background-color: rgba(0, 0, 0, 0.7);
}
/*Sections*/

body.has-news .section {
	padding-top: 36px;
}

.section {
	max-width: 1100px;
	width: calc(100% - 90px);
	min-height: 100vh;
	position: relative;
}

.section.section-table, .section .section-table {
	display:  table;
}

.section.section-table {
	height: 100vh;
}

.section.section-table .section-table-cell, .section .section-table .section-table-cell {
	display:  table-cell;
	vertical-align: middle;
}

.section * {
    -webkit-transition: transform 0.5s;
    transition: transform 0.5s;
}

.section.transition > * {
	-webkit-transform: scale(0.85);
	transform: scale(0.85);
}

.section .section-title {
	margin-bottom: 30px;
}

.section .section-title span {
	font-family: 'Raleway', sans-serif;
	border-bottom: #ADA49F solid 3px;
	color: #000;
}

.section .separator {
	height: 40vh;
	display: inline-block;
	vertical-align: middle;
	padding: 0 !important;
	border-left: rgba(75, 75, 178, 0.42) solid 1px;
}

.section .section-right {
	border-left: rgba(75, 75, 178, 0.42) solid 1px;
}

.section .section-left {
	border-right: rgba(75, 75, 178, 0.42) solid 1px;
}

/*Alerts*/

.alert {
	margin-bottom: 0;
	position: relative;
	z-index: 9999;
}

/*Buttons*/

.btn-primary, .btn-success {
	background-color: transparent;
	text-transform: uppercase;
	border: #aaa solid 1px;
	border-radius: 0;
	box-shadow: none;
	font-size: 12px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	color: #fff;
}

.btn-primary {
	border-color: #3c81ba;
	background-color: #3c81ba;
}

.btn-success {
	border-color: #33bd86;
	background-color: #33bd86;
}

.btn-primary:hover, .btn-primary:focus, .btn-success:hover, .btn-success:focus {
	outline: none;
	box-shadow: none;
}

.btn-primary:hover, .btn-primary:focus {
	border: #000 solid 1px;
	background-color: rgba(60, 129, 186, 0.6);
}

.btn-success:hover, .btn-success:focus {
	border: #449D44 solid 1px;
	background-color: rgba(51, 189, 134, 0.6);
}

/*Modals*/

.modal-header {
    border-bottom: none;
}

.modal-header h3 {
	font-family: 'Raleway', sans-serif;
	margin-bottom: 0 !important;
}

.modal-header button span {
	font-size: 26px;
}

.modal-body {
	padding: 20px;
}

/*Forms*/

.has-error .help-block * {
	color: red;
}

@media (min-width: 768px) {
.inline-col {
	display:  inline-block;
	vertical-align: middle;
	float: none;
}
}

@media (max-width: 767px) {
.section {
	max-width: 1100px;
	width:calc(100% - 30px);
}

.section .separator {
	display: none;
}

.section .section-left, .section .section-right {
	border: none;
}

.section.section-table {
	padding-top: 60px;
}

body.has-news .section.section-table {
	padding-top: 96px;
}

.section .section-table {
	padding-top: 60px;
}

.section .section-table.no-padding-mobile {
	padding-top: 0px;
}
}
