:root {
    --color1: #f2f2f2;
    --color2: #0c3db8;
    --color3: #ffffff;
    --color4: #0049ff;
    --b-radius-s: 5px;
    --b-radius-m: 10px;
}

* {
    color: var(--color3);
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: var(--color3);
}

input {
	background-color: white;
	width: 100%;
	border: none;
	outline: none;
	padding: 10px;
	border-radius: var(--b-radius-s);
	color: var(--color2);
}

button {
	width: 100%;
	background-color: var(--color4);
	border-radius: var(--b-radius-s);
	font-weight: 600;
}

textarea {
	background-color: white;
	width: 100%;
	border: none;
	outline: none;
	padding: 10px;
	border-radius: var(--b-radius-s);
	color: var(--color2);
	font-size: 14px;
}

.header {
    background-color: var(--color1);
}

.header-left, .header-right {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	padding: 15px;
}

.header-left img {
	width: 250px;
}

.header-right ul {
	display: flex;
	width: 100%;
	justify-content: flex-end;
}

.btn-header {
	background-color: var(--color2);
	padding: 1rem;
	border-radius: var(--b-radius-s);
	margin: 5px;
	transition: 0.5s all;
}

.btn-header:hover {
	background-color: var(--color4);
}

.btn-header i {
	font-size: 1.3rem;
}

.content-title h1, p {
	color: var(--color2);
}

.content {
	margin-top: 4rem;
	margin-bottom: 4rem;
}

.content-inner {
	border-radius: var(--b-radius-m);
	background-color: var(--color2);
}

.inp-wrapper {
	padding: 15px;
}

.inp-label {
	display: block;
	font-size: 14px;
	padding-bottom: 5px;
}

.form-error {
	font-size: 12px;
	margin-top: 5px;
	display: inline-block;
	color: red;
}

.form-error i {
	color: red;
}

.after-submit {
	background-color: var(--color3);
	border-radius: var(--b-radius-m);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	min-height: 400px;
}

.after-submit span:first-child {
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: 600;
}

.after-submit span:last-child a {
	padding: 12px 15px;
	background-color: var(--color4);
	border-radius: var(--b-radius-s);
}

#flash-mssg {
	height: auto;
	opacity: 1;
	visibility: visible;
	transition: 0.3s all;
}

#flash-mssg.hidden {
	height: 0;
	display: block;
	opacity: 0;
	visibility: hidden;
}

.table-header {
	padding: 10px 0px;
	margin-bottom: 1rem;
	background-color: var(--color4);
	border-radius: var(--b-radius-m);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.table-header .row > .col {
	font-weight: 600;
}

.table .col {
	text-align: center;
	padding: 5px;
}

.table-content .col {
	font-size: 13px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.table-content p {
	color: var(--color3);
}

.table-content > .row {
	padding: 10px;
	border-bottom: 1px solid #4f46e55c;
}

.table-content > .row:last-child {
	border-bottom: none;
}

.modal-btn {
	cursor: pointer;
}

.modal-btn i {
	font-size: 1rem;
}

.modal {
	position: fixed;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #1e1b4be8;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s all;
}

.modal.show {
	visibility: visible;
	opacity: 1;
}

.modal-body {
	background-color: var(--color3);
	border-radius: var(--b-radius-m);
	padding: 2rem;
	position: relative;
	max-width: 850px;
	width: 90vw;
	max-height: 100vh;
	overflow: auto;
}

.modal-body p {
	padding: 12px;
	font-size: 14px;
	border-bottom: 1px solid var(--color4);
}

.modal-body p span {
	background-color: var(--color4);
	padding: 10px 11px;
	min-width: 35px;
	display: inline-block;
	font-weight: 600;
	margin-right: 10px;
	border-radius: var(--b-radius-s);
}

.modal-body p span i {
	font-size: 1.2rem;
}

.report-title {
	text-transform: uppercase;
	border-bottom: none!important;
}

.message-txt {
	background-color: var(--color4);
	margin-top: 1rem;
	border-radius: var(--b-radius-s);
	padding: 1rem;
	font-size: 14px;
}

.modal-body img {
	width: 100px;
	height: auto;
	text-align: center;
	margin-top: 1rem;
}

.dismiss-modal {
	position: absolute;
	z-index: 1;
	right: 30px;
	top: 20px;
	cursor: pointer;
}

.dismiss-modal i {
	font-size: 1.2rem;
	color: var(--color2);
}

.notes {
	padding: 2rem;
	margin-top: 2rem;
	background-color: var(--color2);
	border-radius: var(--b-radius-m);
}

.notes-inner h3 {
	margin-bottom: 1rem;
}

.notes-inner ul li {
	font-size: 14px;
	list-style: circle;
	margin-bottom: 8px;
}

.contact-wrapper {
	padding: 2rem;
}

.contact {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}

.contact li a {
	font-size: 1.2rem;
	padding: 10px 25px;
	margin-right: 2rem;
	background-color: var(--color4);
	border-radius: var(--b-radius-s);
	transition: 0.5s all;
}

.contact li a:hover {
	background-color: var(--color1);
}

.pagination-wrapper {
	display: flex;
	justify-content: space-between;
	margin-top: 1rem;
	padding: 10px;
}

.pagination-wrapper li {
	cursor: pointer;
	font-size: 14px;
	padding: 8px 15px;
	background-color: var(--color2);
	border-radius: var(--b-radius-s);
}

.pagination-wrapper li.paginate-disable {
	cursor: not-allowed;
	background-color: transparent;
	color: var(--color2);
}