/* Globals */
html {
	height: 100%;
}

body {
	font-size: 14px;
	line-height: 160%;
	min-height: 100%;
	height: 100%;
	color: #1d1d1b;
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	image-rendering: -moz-auto;
	image-rendering: -o-auto;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: auto;
	-ms-interpolation-mode: nearest-neighbor;
	background-color: #f7f7f7;
}

input.form-control::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #bbb;
}

input.form-control::-moz-placeholder,
input::-moz-placeholder {
	/* Firefox 19+ */
	color: #bbb;
}

input.form-control:-ms-input-placeholder,
input:-ms-input-placeholder {
	/* IE 10+ */
	color: #bbb;
}

input.form-control:-moz-placeholder,
input:-moz-placeholder {
	/* Firefox 18- */
	color: #bbb;
}

input.form-control::placeholder,
input::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #bbb;
	opacity: 1;
	/* Firefox */
}

.flex-grow {
	flex-grow: 1;
}

/* Global basic component styles */

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Montserrat', 'helvetica neue', 'arial', sans-serif;
	font-weight: 600;
	margin: 0;
}

h1,
h2 {
	color: #009c85;
}

h3,
h4,
h5 {
	color: #1d1d1b;
}

h1 {
	font-size: 22px;
	line-height: 100%;
}

h2 {
	font-size: 19px;
}

h3 {
	font-size: 17px;
}

a {
	color: #00769e;
}

a:hover,
a:focus,
a:active {
	color: #00769e;
	text-decoration: none;
}

/*a:active {
    color: #212529 !important;
    background-color: transparent !important;
}*/

strong {
	font-weight: 600;
}

.btn {
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 8px 22px 11px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.43px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.small-btn {
	padding: 3px 12px 5px;
	font-size: 12px;
}

.medium-btn {
	padding: 5px 17px 7px;
	font-size: 14px;
}

.input-btn {
	padding: 6px 22px 8px;
	border-radius: 5;
}

.input-group-append .btn {
	padding: 0 15px;
	border-radius: 5px;
}

.btn a:focus,
.btn a:active,
.btn a:hover,
.btn:focus,
.btn:active,
.btn:hover {
	color: #fff;
}

svg.prepend {
	margin-right: 5px;
	display: inline-block;
}

svg.append {
	margin-left: 5px;
	display: inline-block;
}

.btn:not(:hover) {
	transition: 0.2s ease all;
}

.btn:hover {
	transition: 0.2s ease all;
}

.btn:focus,
.btn:active {
	transition: 0.1s ease all;
}

.btn:after {
	content: '';
	display: block;
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	opacity: 0;
	transition: 0.2s ease all;
}

.btn:hover:after {
	opacity: 0.1;
}

.btn.btn-default {
	color: #00779c;
	box-shadow: inset 0 0 0 1px #00779c;
}

.btn.btn-default:hover,
.btn.btn-default:focus {
	background-color: #00779c;
	color: #fff;
}

.btn-inactive {
	background: #fff;
	color: rgba(0, 0, 0, 0.7);
}

.btn.btn-inactive a:focus,
.btn.btn-inactive a:active,
.btn.btn-inactive a:hover,
.btn.btn-inactive:focus,
.btn.btn-inactive:active,
.btn.btn-inactive:hover {
	color: #aaa;
}

.btn.btn-primary,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
	background-color: #009c85;
}

.btn.btn-secondary,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
	background-color: #00779c;
}

.btn.btn-success,
.btn.btn-success:hover,
.btn.btn-success:focus,
.btn.btn-success:active {
	background-color: #96b138;
}

.btn.btn-warning,
.btn.btn-warning:hover,
.btn.btn-warning:focus,
.btn.btn-warning:active {
	background-color: #f3b611;
}

.btn.btn-danger,
.btn.btn-danger:hover,
.btn.btn-danger:focus,
.btn.btn-danger:active {
	background-color: #a81818;
}

*.btn.btn-gray {
	filter: grayscale(1);
	opacity: 0.5;
	cursor: not-allowed;
}

/* Global container/grid styles */

.wrapper {
	position: relative;
	display: flex;
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
	flex-direction: column;
}

.flex-container {
	display: flex;
	width: 100%;
	position: relative;
	padding: 0 15px;
}

/* Flex container */

@media (min-width: 576px) {
	.flex-container {
		max-width: 540px;
		margin: 0 auto;
	}
}

@media (min-width: 768px) {
	.flex-container {
		max-width: 720px;
		margin: 0 auto;
	}
}

@media (min-width: 992px) {
	.flex-container {
		max-width: 960px;
		margin: 0 auto;
	}
}

@media (min-width: 1200px) {
	.flex-container {
		max-width: 1140px;
		margin: 0 auto;
	}
}

/* Media queries */

@media (min-width: 576px) {
}

@media (min-width: 768px) {
	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 17px;
	}
}

@media (min-width: 992px) {
	h1 {
		font-size: 27px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 18px;
	}
}

@media (min-width: 1200px) {
}
