@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

:root {
	--main-height: 1vh;
	--main-width: 1vh;
	--main-red: rgb(194, 55, 55);
	--main-blue: #225470;
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scrollbar-width: 0;
}
body {
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #444;
	overflow: hidden;
	background: transparent;
}
.hover {
	cursor: pointer;
}
.center {
	display: flex;
	align-items: center;
	justify-content: center;
}
section {
	width: 100%;
	height: min-content;
	min-height: 100%;
}
.intra_section {
	width: 100%;
	min-height: 100%;
	height: min-content;
}
.name {
	font-size: 1rem;
}
.caps {
	text-transform: capitalize;
}
.upper {
	text-transform: uppercase;
}
.cols {
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.hidden {
	display: none;
}
.warning {
	color: #c43939;
}
.error_message {
	width: 100%;
	height: auto;
	padding: .5rem 1rem;
	color: #c43939;
	border: 2px solid #c43939;
	margin-top: 1rem;
}
form {
	width: 100%;
}
.page_header {
	color: white;
	text-transform: uppercase;
	width: 100%;
	height: 55px;
	background: #444;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 1rem;
}
.input_wrapper {
	width: 100%;
	height: auto;
	padding: .5rem 1rem;
	background: white;
	border: 2px solid #225470;
	margin-top: 1rem;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .26);
	border-radius: 5px;
}
.half_wrapper {
	width: 49%;
	height: auto;
	padding: .5rem 1rem;
	background: white;
	border: 2px solid #225470;
	margin-top: 1rem;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .26);
	border-radius: 5px;
}
.input_wrapper .row, .half_wrapper .row {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin-bottom: .3rem;
}
.input_wrapper .row span, .half_wrapper .row span {
	margin-left: 1rem;
}
input, textarea {
	width: 100%;
	height: 25px;
	border: none;
	outline: none;
	padding-left: 1rem;
	background: transparent;
	color: #444;
	text-align: left;
	font-weight: bold;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
}
input[type="radio"], input[type="checkbox"]{
	width: 10%;
}
label {
	font-size: 1rem;
	width: 100%;
	display: inline-block;
	padding: .3rem;
}
select {
	width: 100%;
	height: 25px;
	border: none;
	outline: none;
	padding-left: 1rem;
	background: transparent;
	color: #444;
	text-align: left;
	font-weight: bold;
}
.fontp8 {
	font-size: .8rem;
	color: black;
}
.row {
	display: flex;
	align-items: center;
}
textarea {
	height: 100px;
	resize: none;
	font-size: 1rem;
}
input::placeholder, textarea::placeholder {
	color: #225470;
	font-family: 'Poppins', sans-serif;
	font-weight: normal;
	font-size: .8rem;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
	display: none;
}
.backdrop {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, .8);
	display: flex;
	justify-content: center;
	align-items: center;
}
.popupmodal {
	width: 70vw;
	height: 60vh;
	background: white;
	display: flex;
	border-radius: 5px;
}
.popupmodal::-webkit-scrollbar {
	display: none;
}

table {
	width: 100%;
	min-width: 100%;
	height: auto;
	border-collapse: collapse;
}
tr {
	font-size: .8rem;
	width: 100%;
	height: auto;
}
th {
	background: #444;
	color: white;
	padding: .25rem;
	border: none;
	text-align: left;
}
tr:hover td{
	background: #444;
	color: white;
	cursor: pointer;
}
td {
	padding: .25rem;
	text-align: left;
}
.icon {
	margin-right: 1rem;
}
.icon_sm {
	margin-right: .5rem;
}

/* TABLES */
.default_table {
	width: 100%;
	height: auto;
	border-collapse: collapse;
	position: relative;
	z-index: 0;
}
.default_table th {
	text-align: left;
	padding: .25rem;
	max-width: 50%;
	background: #444;
	color: white;
	position: sticky;
	top: 0;
	font-weight: 200;
	cursor: default i !important;
}
.default_table tr {
	text-align: left;
	cursor: pointer;
}
.default_table td {
	padding: .25rem;
}
.default_table tr:hover {
	background: rgb(173, 173, 173);
	color: white;
}
.default_table .active {
	background: #808080;
	color: white;
}
.t_center {
	text-align: center;
}
.red {
	color: var(--main-red) !important;
}
.blue {
	color: var(--main-blue) !important;
}
.green {
	color: rgb(51, 158, 47) !important;
}