@charset "UTF-8";

.button__green {
	border-radius: 2px;
	background-color: #8BC34A;
	transition: all 0.3s ease-in-out;
	color: #F1F8E9;
	text-transform: uppercase;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
}

.button__green:hover {
	background-color: rgba(139, 195, 74, 0.7);
	color: #558B2F;
}

.button__blue {
	border-radius: 2px;
	background-color: #0091EA;
	transition: all 0.3s ease-in-out;
	color: #E1F5FE;
	text-transform: uppercase;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
}

.button__blue:hover {
	background-color: rgba(0, 145, 234, 0.7);
	color: #01579B;
}

.button__red {
	border-radius: 2px;
	background-color: #F44336;
	transition: all 0.3s ease-in-out;
	color: #E1F5FE;
	text-transform: uppercase;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
}

.button__red:hover {
	background-color: rgba(244, 67, 54, 0.7);
	color: #D32F2F;
}

.button__orange {
	border-radius: 2px;
	background-color: #FFB300;
	transition: all 0.3s ease-in-out;
	color: #E1F5FE;
	text-transform: uppercase;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
}

.button__orange:hover {
	background-color: rgba(255, 179, 0, 0.7);
	color: #FFA000;
}

html, body {
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	font-family: "Open Sans", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	line-height: 1.2em;
	color: #000;
	background-color: #fefefe;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Open Sans Condensed", sans-serif;
	font-weight: 300;
	margin-bottom: 20px;
	position: relative;
	padding: 0 0 10px 0;
	color: #8BC34A;
}

h1::after, h2::after, h3::after, h4::after, h5::after, h6::after {
	content: "";
	position: absolute;
	border-bottom: 1px dashed #8BC34A;
	bottom: 0;
	left: 0;
	width: 10%;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
}

h3 {
	font-size: 1.2em;
}

h4 {
	font-size: 1em;
}

p, label {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	color: #212121;
	font-size: 16px;
}

label {
	font-size: 14px;
}

.flex__container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}

.mra {
	margin-right: auto;
}

.navbar {
	background-color: #8BC34A;
	border-radius: 0;
	border: none;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.navbar .container {
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.navbar .container .navbar-header {
	margin-right: auto;
}

.navbar .nav li {
	border-right: 1px solid #DCEDC8;
}

.navbar .nav li:last-child {
	border-right: none;
}

.navbar .nav li.active a {
	background-color: #AED581;
	color: #33691E;
}

.navbar .nav li a {
	color: #F1F8E9;
	transition: all 0.3s ease-in-out;
}

.navbar .nav li a:hover {
	color: #33691E;
	background-color: #AED581;
}

.custom__table {
	border: 1px solid #DCEDC8;
}

.custom__table thead tr {
	border: none !important;
}

.custom__table thead tr th {
	font-family: "Open Sans Condensed", sans-serif;
	background-color: #8BC34A;
	font-size: 18px;
	font-weight: 300;
	color: #F1F8E9;
	border: 1px solid #DCEDC8;
}

.custom__table tbody tr {
	border: none;
}

.custom__table tbody tr:nth-child(2n+2) {
	background-color: #F1F8E9;
}

.custom__table tbody tr td {
	font-family: "Open Sans", sans-serif;
	color: #212121;
	padding: 10px;
	vertical-align: middle;
	border: 1px solid #DCEDC8;
}

.custom__table tbody tr td:last-child {
	text-align: center;
}

.custom__table tbody tr td .report-link {
	font-size: 18px;
	color: #0091EA;
	margin-right: 20px;
	font-family: "Open Sans", sans-serif;
}

.custom__table tbody tr td .report-delete-btn {
	border-radius: 2px;
	background-color: #F44336;
	transition: background-color 0.3s ease-in-out;
}

.custom__table tbody tr td .report-delete-btn:hover {
	background-color: rgba(244, 67, 54, 0.7);
}

.form-horizontal {
	border: 1px solid #eee;
	padding: 30px;
	border-radius: 2px;
	border: 1px solid #DCEDC8;
}

.form-horizontal input, .form-horizontal select {
	border: 1px solid #DCEDC8;
}

.form-horizontal input:focus, .form-horizontal select:focus {
	box-shadow: 0 0 15px 5px #DCEDC8;
	border: 1px solid #DCEDC8;
}

.material-switch > input[type="checkbox"] {
	display: none;
}

.material-switch > label {
	cursor: pointer;
	height: 0px;
	position: relative;
	width: 40px;
}

.material-switch > label::before {
	background: #D32F2F;
	box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	content: "";
	height: 16px;
	margin-top: -8px;
	position: absolute;
	opacity: 0.3;
	transition: all 0.4s ease-in-out;
	width: 40px;
}

.material-switch > label::after {
	background: #D32F2F;
	border-radius: 16px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	content: "";
	height: 24px;
	left: -4px;
	margin-top: -8px;
	position: absolute;
	top: -4px;
	transition: all 0.3s ease-in-out;
	width: 24px;
}

.material-switch > input[type="checkbox"]:checked + input[type="hidden"] + label::before {
	background: inherit;
	opacity: 0.5;
}

.material-switch > input[type="checkbox"]:checked + input[type="hidden"] + label::after {
	background: inherit;
	left: 20px;
}