/*! core.css */

/* Reset
   ========================================================================== */

/**
 * Make viewport responsive.
 */

@-ms-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

/**
 * Box model.
 */

html {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

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

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers.
 */

a:active,
a:hover {
	outline-width: 0;
}

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */

abbr[title],
dfn[title] {
	cursor: help;
}

/**
 * Add the correct line height in all browsers.
 */

small {
	line-height: 1;
}

/**
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 */

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

/**
 * Make images, iframes and videos responsive.
 */

img,
video {
	max-width: 100%;
	height: auto;
}

iframe {
	max-width: 100%;
}

/**
 * Remove default fieldset styles.
 */

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

/**
 * Remove default figure styles.
 */

figure {
	margin: 0 0 20px;
}

/**
 * So that label text is aligned to the top.
 */

textarea {
	vertical-align: top;
	resize: vertical;
}

/**
 * Remove outline from tabindex.
 */

[tabindex="-1"]:focus {
	outline: none !important;
}

/**
 * Maps canvas.
 */

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
	max-width: none !important;
}

/* Fonts
   ========================================================================== */

/**
 * font-family: 'Roboto', sans-serif;
 */

/* Base
   ========================================================================== */

html {
	background-color: #0072ae
}

body {
	background-color: #fff;
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 28px;
}

/**
 * Admin bar
 */

body.admin-bar {
	padding-top: 46px;
}

@media (min-width: 783px) {
	body.admin-bar {
		padding-top: 32px;
	}
}

/* Text-level semantics
   ========================================================================== */

/**
 * Links.
 */

a {
	color: #00b8af;
	text-decoration: underline;
}

a:hover,
a:focus {
	text-decoration: none;
}

a[href^=tel] {
	color: inherit;
	text-decoration: none;
}

/**
 * Headings 1–6.
 */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	color: #0072ae;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 16px;
	padding-top: 16px;
}

h1, .h1 {
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
}

h2, .h2 {
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
}

h3, .h3 {
	font-weight: 500;
	font-size: 22px;
	line-height: 28px;
}

h4, .h4 {
	font-size: 20px;
	line-height: 28px;
}

h5, .h5 {
	font-size: 18px;
	line-height: 24px;
}

h6, .h6 {
	font-size: 16px;
	line-height: 24px;
}

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

/**
 * Paragraph.
 */

p {
	margin-top: 0;
	margin-bottom: 16px;
}
.sm{
	font-size: 14px;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 5px;
}

/**
 * Lead.
 */

.lead {
	font-size: 18px;
}

/**
 * Dropcap.
 */

.dropcap {
	float: left;
	color: #00b8af;
	font-size: 56px;
	font-weight: 400;
	line-height: 1;
	margin-right: 8px;
}

/**
 * Address.
 */

address {
	font-size: 18px;
	font-style: normal;
	line-height: inherit;
	margin-top: 0;
	margin-bottom: 16px;
}

/**
 * Blockquote.
 */

blockquote {
	border-left: 4px solid #00b8af;
	font-style: italic;
	margin: 0 0 16px 0;
	padding: 8px 0 8px 32px;
}

blockquote *:last-child {
	margin-bottom: 0;
}

blockquote cite {
	display: block;
	font-style: normal;
	font-weight: bolder;
	font-size: 14px;
	line-height: 20px;
}

blockquote cite em {
	display: block;
	color: #00b8af;
}

@media (min-width: 576px) {
	blockquote {
		margin-left: 32px;
	}
}

/**
 * Code.
 */

code {
	background-color: #f2fafa;
	padding: 2px 4px;
	border-radius: 4px;
}

kbd {
	background-color: #00b8af;
	padding: 2px 4px;
	color: #fff;
	border-radius: 4px;
}

kbd kbd {
	padding: 0;
	font-weight: bolder;
	-webkit-box-shadow: none;
	box-shadow: none;
}

pre {
	display: block;
	background-color: #f2fafa;
	border-width: 1px 1px 1px 4px;
	border-style: solid;
	border-color: #d7f0ef #d7f0ef #d7f0ef #00b8af;
	margin-top: 0;
	margin-bottom: 16px;
	padding: 15px 15px 15px 16px;
	word-break: break-all;
	word-wrap: break-word;
	overflow: auto;
}

pre code {
	padding: 0;
	font-size: inherit;
	color: inherit;
	white-space: pre-wrap;
	background-color: transparent;
}

/**
 * Horizontal rule.
 */

hr, .hr {
	display: block;
	border-top: 3px solid transparent;
	border-right-width: 0;
	border-bottom: 1px solid #d7f0ef;
	border-left-width: 0;
	color: inherit;
	margin-top: 28px;
	margin-bottom: 32px;
}

hr + h1, .hr + h1, hr + .h1, .hr + .h1,
hr + h2, .hr + h2, hr + .h2, .hr + .h2,
hr + h3, .hr + h3, hr + .h3, .hr + .h3,
hr + h4, .hr + h4, hr + .h4, .hr + .h4,
hr + h5, .hr + h5, hr + .h5, .hr + .h5,
hr + h6, .hr + h6, hr + .h6, .hr + .h6 {
	padding-top: 0;
}

/* Images
   ========================================================================== */

/* Image caption
   -------------------------------------------------------------------------- */

.img-caption {
	max-width: 100%;
	margin-bottom: 16px;
}

.img-caption img {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-caption-text {
	border-bottom: 1px solid #d7f0ef;
	color: #00b8af;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	margin-top: 16px;
	padding-bottom: 15px;
}

@media (min-width: 768px) {
	.img-caption-text {
		font-size: 15px;
	}
}

@media (min-width: 1280px) {
	.img-caption-text {
		font-size: 16px;
	}
}

/* Contextual variations
   -------------------------------------------------------------------------- */

.img-cover,
.img-contain {
	position: relative;
	width: 100%; /* Set dimensions on parent. */
	height: 100%; /* Set dimensions on parent. */
	overflow: hidden;
}

.img-contain img {
	position: absolute;
	left: -10000%;
	right: -10000%;
	top: -10000%;
	bottom: -10000%;
	margin: auto;
	max-width: 10%;
	max-height: 10%;
	-webkit-transform: scale(10);
	transform: scale(10);
}

.img-cover img {
	position: absolute;
	left: -10000%;
	right: -10000%;
	top: -10000%;
	bottom: -10000%;
	margin: auto;
	min-width: 1000%;
	min-height: 1000%;
	max-width: none;
	max-height: none;
	-webkit-transform: scale(0.1);
	transform: scale(0.1);
	width: auto;
	height: auto;
}

.img-fluid,
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-thumbnail {
	display: block;
	background-color: #d7f0ef;
	padding: 16px;
	width: auto;
}

.img-rounded {
	border-radius: 8px;
}

.img-circle {
	border-radius: 50%;
}

/**
 * Spacing.
 */

.img-vspace {
	margin-top: 28px;
	margin-bottom: 28px;
}

.img-hspace {
	margin-left: 28px;
	margin-right: 28px;
}

/**
 * Alignment.
 */

img.alignright,
.img-caption.alignright {
	float: right;
	margin-left: 32px;
	margin-bottom: 16px;
}

img.alignleft,
.img-caption.alignleft {
	float: left;
	margin-right: 32px;
	margin-bottom: 16px;
}

img.aligncenter,
.img-caption.aligncenter {
	float: none;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 16px;
}

img.alignnone,
.img-caption.alignnone {
	float: none;
	display: block;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 16px;
}

@media (min-width: 576px) {
	img.alignright-sm,
	.img-caption.alignright-sm {
		float: right;
		margin-left: 32px;
		margin-bottom: 16px;
	}
	
	img.alignleft-sm,
	.img-caption.alignleft-sm {
		float: left;
		margin-right: 32px;
		margin-bottom: 16px;
	}
	
	img.aligncenter-sm,
	.img-caption.aligncenter-sm {
		float: none;
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 16px;
	}
	
	img.alignnone-sm,
	.img-caption.alignnone-sm {
		float: none;
		display: block;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 16px;
	}
}

@media (min-width: 768px) {
	img.alignright-md,
	.img-caption.alignright-md {
		float: right;
		margin-left: 32px;
		margin-bottom: 16px;
	}
	
	img.alignleft-md,
	.img-caption.alignleft-md {
		float: left;
		margin-right: 32px;
		margin-bottom: 16px;
	}
	
	img.aligncenter-md,
	.img-caption.aligncenter-md {
		float: none;
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 16px;
	}
	
	img.alignnone-md,
	.img-caption.alignnone-md {
		float: none;
		display: block;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 16px;
	}
}

@media (min-width: 1024px) {
	img.alignright-lg,
	.img-caption.alignright-lg {
		float: right;
		margin-left: 32px;
		margin-bottom: 16px;
	}
	
	img.alignleft-lg,
	.img-caption.alignleft-lg {
		float: left;
		margin-right: 32px;
		margin-bottom: 16px;
	}
	
	img.aligncenter-lg,
	.img-caption.aligncenter-lg {
		float: none;
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 16px;
	}
	
	img.alignnone-lg,
	.img-caption.alignnone-lg {
		float: none;
		display: block;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 16px;
	}
}

@media (min-width: 1280px) {
	img.alignright-xl,
	.img-caption.alignright-xl {
		float: right;
		margin-left: 32px;
		margin-bottom: 16px;
	}
	
	img.alignleft-xl,
	.img-caption.alignleft-xl {
		float: left;
		margin-right: 32px;
		margin-bottom: 16px;
	}
	
	img.aligncenter-xl,
	.img-caption.aligncenter-xl {
		float: none;
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 16px;
	}
	
	img.alignnone-xl,
	.img-caption.alignnone-xl {
		float: none;
		display: block;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 16px;
	}
}

/* Lists
   ========================================================================== */

ul,
ol {
	margin-top: 0;
	margin-bottom: 16px;
	padding-left: 32px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul, 
li > ol {
	margin-bottom: 0;
}

dl {
	margin-top: 0;
	margin-bottom: 16px;
}

dd {
	margin-left: 32px;
}

/* Contextual variations
   -------------------------------------------------------------------------- */

/**
 * Unstyled list.
 */

ul.list-unstyled,
ol.list-unstyled,
.list-unstyled > ul,
.list-unstyled > ol {
	list-style: none;
	margin-top: 0;
	padding-left: 0;
}

ul.list-unstyled > li,
ol.list-unstyled > li,
.list-unstyled > ul > li,
.list-unstyled > ol > li {
	margin-bottom: 0;
}

/**
 * Inline list.
 */

ul.list-inline,
ol.list-inline,
.list-inline > ul,
.list-inline > ol {
	list-style: none;
	margin-left: -4px;
	padding-left: 0;
}

ul.list-inline > li,
ol.list-inline > li,
.list-inline > ul > li,
.list-inline > ol > li {
	display: inline-block;
	margin-bottom: 0;
	padding-right: 4px;
	padding-left: 4px;
}

/**
 * Columned list.
 */

@media (min-width: 576px) {
	ul.list-columned,
	ol.list-columned,
	.list-columned > ul,
	.list-columned > ol {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 64px;
		-moz-column-gap: 64px;
		column-gap: 64px;
	}
	
	ul.list-columned > li,
	ol.list-columned > li,
	.list-columned > ul > li,
	.list-columned > ol > li {
		-webkit-column-break-inside: avoid;
		page-break-inside: avoid;
		break-inside: avoid;
	}
}

/**
 * Highlight list.
 */

ul.list-highlight,
.list-highlight > ul {
	list-style: none;
}

ul.list-highlight > li,
.list-highlight > ul > li {
	position: relative;
}

ul.list-highlight > li:before,
.list-highlight > ul > li:before {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\eafb";
	font-size: 12px;
	color: #00b8af;
	text-align: right;
	white-space: nowrap;
	position: absolute;
	right: 100%;
	margin-right: 6px;
}

ul.list-highlight > li > ul,
ul.list-highlight > li > ol,
.list-highlight > ul > li > ul,
.list-highlight > ul > li > ol {
	list-style: none;
	padding-left: 24px;
}

ul.list-highlight > li > ul > li,
ul.list-highlight > li > ol > li,
.list-highlight > ul > li > ul > li,
.list-highlight > ul > li > ol > li {
	position: relative;
}

ul.list-highlight > li > ul > li:before,
ul.list-highlight > li > ol > li:before,
.list-highlight > ul > li > ul > li:before,
.list-highlight > ul > li > ol > li:before {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\eafb";
	font-size: 12px;
	color: #000;
	text-align: right;
	white-space: nowrap;
	position: absolute;
	right: 100%;
	margin-right: 6px;
}


/**
 * Unordered list.
 */

ul.list-unordered,
.list-unordered > ul {
	list-style: none;
}

ul.list-unordered > li,
.list-unordered > ul > li {
	position: relative;
	margin-bottom: 4px;
}

ul.list-unordered > li:before,
.list-unordered > ul > li:before {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\eaed";
	font-size: 12px;
	color: #00b8af;
	text-align: right;
	white-space: nowrap;
	position: absolute;
	right: 100%;
	margin-right: 6px;
}

ul.list-unordered > li > ul,
ul.list-unordered > li > ol,
.list-unordered > ul > li > ul,
.list-unordered > ul > li > ol {
	list-style: none;
	padding-left: 24px;
}

/**
 * Ordered list.
 */

ol.list-ordered,
.list-ordered > ol {
	list-style: none;
	counter-reset: li;
}

ol.list-ordered > li,
.list-ordered > ol > li {
	position: relative;
}

ol.list-ordered > li:before,
.list-ordered > ol > li:before {
	counter-increment: li;
	content: counter(li) ".";
	color: #00b8af;
	text-align: right;
	white-space: nowrap;
	position: absolute;
	right: 100%;
	margin-right: 4px;
}

ol.list-ordered > li > ul,
ol.list-ordered > li > ol,
.list-ordered > ol > li > ul,
.list-ordered > ol > li > ol {
	padding-left: 24px;
}

/**
 * Definition list.
 */

dl.list-definition,
.list-definition > dl {
}

dl.list-definition > dt,
.list-definition > dl > dt {
	float: left;
	font-weight: bolder;
	margin-right: 4px;
	position: relative;
}

dl.list-definition > dt:after,
.list-definition > dl > dt:after {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	content: "\eaed";
	color: #00b8af;
	font-size: 12px;
	margin-left: 4px;
}

dl.list-definition > dd,
.list-definition > dl > dd {
	margin-bottom: 4px;
	margin-left: 0;
}

/* Forms
   ========================================================================== */

form {
}

fieldset {
}

legend {
}

label {
	display: inline-block;
	font-weight: 400;
}

button,
input,
optgroup,
select,
textarea {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
}

input,
select,
textarea {
	display: block;
	background-color: #f2fafa;
	border: 1px solid #d7f0ef;
	border-radius: 8px;
	width: 100%;
	height: 48px;
	padding: 0 0 0 15px;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #00b8af;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: inherit;
	text-overflow: ellipsis;
	opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: inherit;
	text-overflow: ellipsis;
	opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: inherit;
	text-overflow: ellipsis;
	opacity: 1;
}

input[type="checkbox"],
input[type="radio"] {
	display: inline-block;
	background-color: transparent;
	border: 0;
	width: auto;
	height: auto;
	margin: 0 4px 0 0;
	padding: 0;
}

select[multiple] {
	height: auto;
}

textarea {
	line-height: 24px;
	height: auto;
	min-height: 120px;
	padding: 7px 15px;
}

/**
 * Input and select large.
 */

.input-large,
.select-large {
	height: 56px;
}

/**
 * Input and select small.
 */

.input-small,
.select-small {
	height: 40px;
}

/**
 * Checkbox and radio.
 */

.checkbox,
.radio {
	font-weight: normal;
	position: relative;
	padding-left: 20px;
	vertical-align: top;
}

.checkbox input[type="checkbox"],
.radio input[type="radio"] {
	margin-left: -20px;
}

/**
 * Field.
 */

.field {
	margin-bottom: 20px;
}

.required {
	color: #00b8af;
}

/* Tables
   ========================================================================== */

table {
	border-spacing: 0;
	text-align: left;
}

caption {
	padding-top: 8px;
	padding-bottom: 8px;
	font-style: italic;
	text-align: center;
	caption-side: top;
}

thead {
	vertical-align: bottom;
}

th {
	font-weight: bolder;
}

th,
td {
	padding: 0;
}

td {
	vertical-align: top;
}
