html, body{
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	background: #FAFAFA;
}

*{
    box-sizing: border-box;
}

input, select, textarea{
	font-family: 'Open Sans', sans-serif;
	padding: 10px;
	border: none;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08);
}

input[type='radio'], input[type='checkbox']{
	box-shadow: none;
	padding: 0;
	margin: 0;
	margin-right: 5px;
}

label{
	font-size: 13px;
}

button{
	font-family: 'Open Sans', sans-serif;
	margin: 10px 0;
	padding: 10px;
	cursor: pointer;
	border: 0;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08);
	text-transform: uppercase;
	font-weight: 700;
	opacity: 0.8;
	transition: all 0.2s ease;
}

button:hover{
	opacity: 1;
}

header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	background: #2D2D2D;
	color: #B7CECE;
}

header h4{
	margin: 0;
	color: #FFFFFF;
}

header nav ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

header nav ul li{
	display: inline;
	margin-left: 10px;
}

header nav ul li a{
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;
}

header nav ul li a.active{
 	color: #FFFFFF;
}

header nav ul li a:hover{
	color: #FFFFFF;
}

.row{
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
}

.row:last-of-type{
	margin-bottom: 0;
}

.row .column{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-right: 10px;
}

section.search-header{
	display: flex;
	flex-direction: column;
	padding: 10px;
	background: #EFF7F6;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

section.tabs{
	padding: 10px;
	width: 50%;
	min-width: 600px;
}

.checkboxes{
	display: flex;
	flex-wrap: wrap;
	margin: -5px;
}

.sub-section{
	flex: 1;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08);
	background: #FFFFFF;
	padding: 10px;
	margin: 5px;
	min-width: 250px;
}

.sub-section h5{
	width: 100%;
	margin: 0;
	margin-bottom: 5px;
}

.sub-section .field{
	display: flex;
	align-items: center;
	margin-bottom: 2px;
}

section.statistics{
	padding: 0 20px;
	margin-bottom: 10%;
}

section.statistics .rows{
	display: flex;
	flex-direction: column;
}

section.statistics .rows .row{
	background: #F7EBE8;
	padding: 3px;
	border: 1px solid rgba(0,0,0,0.08);
	font-size: 14px;
	margin-bottom: 5px;
}

section.statistics .rows .row:hover{
	border: 1px solid rgba(0,0,0,0.3);
}

section.statistics .rows .row .title{
	flex: 1;
}

section.statistics .rows .row .progress-text{
	margin: 0 10px;
}

section.statistics .rows .row .progress-bar{
	position: relative;
	width: 300px;
	background: #818D92;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08);
}

section.statistics .rows .row .progress{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #56E39F;
	color: #FFFFFF;
	font-size: 14px;
}

table.all-travel-agencies{
	width: calc(100% - 30px);
	margin: 15px;
	border-collapse: collapse;
	font-size: 13px;
}

table.all-travel-agencies td, table.all-travel-agencies th{
	text-align: left;
}

table.all-travel-agencies th a{
	color: inherit !important;
}

table.all-travel-agencies tr:not(.letter) td{
	border-bottom: 1px solid rgba(0,0,0,0.2);
}

table.all-travel-agencies tr.letter{
	font-size: 25px;
	font-weight: 700;
}

table.all-travel-agencies tr:not(.letter):not(.th):hover{
	background: rgba(0,0,0,0.1);
}

table.all-travel-agencies i{
	opacity: 0.5;
}

table.all-travel-agencies i:hover{
	cursor: pointer;
	opacity: 1;
}

table.all-travel-agencies input{
	padding: 5px;
	border: none;
	box-shadow: none;
	background: inherit;
}

table.all-travel-agencies input:focus{
	outline: none;
}

section.login-screen{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	background: #FAFAFA;
}

section.login-screen .login{
	border: 2px solid rgba(0, 0, 0, 0.5);
	padding: 20px;
}

section.login-screen .login p{
	margin: 0;
}
