@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

/* CSS reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;

	/* font-family: 'Source Sans Pro',sans-serif; */
	margin: 0;
	padding: 0;
	background-color: #f0f0f0;
	/* default font color  - black */
	color: #000000;
	display: block;
}

select {                                                                                                                                     
        font-family: Arial, sans-serif;                                                                                                      
        font-size: 1.5em;                                                                                                                      
}                                                                                                                                            
                                                                                                                                             
option {                                                                                                                                     
        font-family: Arial, sans-serif;                                                                                                      
        font-size: 1em;                                                                                                                      
}

.preload * {
	transition: none !important;
}

.back-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70vw;
}

.topnav {
	/* border: 1px solid #0f0f0f; */
	border-radius: 5px;
	margin: 0 auto 0 auto;
	width: 98vw;
	height: 80px;
	background: #E3E3E3;
	padding: 0 10px;
	box-sizing: border-box;
	display:flex;
	text-align: center;
}

.main-body {
	/* border: 1px solid #0f0f0f; */
	border-radius: 5px;
	margin: 0 auto 0 auto;
	width: 98vw;
	padding: 0;
	box-sizing: border-box;
	text-align: center;
	display: flex;
}

.container {
	/* border: 1px solid #0f0f0f; */
	border-radius: 5px;
	padding: 1em;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}


main, footer {
	padding: 1em;
	flex-grow: 1;
	margin-bottom: 1em;
	background-color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul {
	margin: 0;
	list-style-type: none;
	padding: 0;
}

li {
	padding: 5px 0;
	border-bottom: 1px solid #ddd;
}


ul li {
	list-style: none;
}

.menu-btn {
	display: none;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}

.menu-btn__burger {
	width: 50px;
	height: 6px;
	background: #000;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(255,101,47,.2);
	transition: all .3s ease-in-out;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 6px;
	background: #000;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(255,101,47,.2);
	transition: all .3s ease-in-out;
}

.menu-btn__burger::before {
	transform: translateY(-16px) translateX(-25px);
}

.menu-btn__burger::after {
	transform: translateY(16px) translateX(-25px);
}

.menu-btn.open .menu-btn__burger {
	transform: translateX(-50px);
	background: transparent;
	box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
	transform: rotate(45deg) translate(25px, -25px);
}

.menu-btn.open .menu-btn__burger::after {
        transform: rotate(-45deg) translate(25px, 25px);
}

.content-wide {
        margin-left: 0;
}

.main_content{
	font-size: 1.5vw;
	width: 95%;
	height: 90%;
	/*margin-left: 200px;*/
	margin: auto;
	/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.main_content input{
	margin: 5px;
	padding: 3px;
	font-size: 1.5rem;
	border-radius: 5px;
}

.main_content ul {
	margin: 5px;
	padding: 5px;
	display: block;
}

.main_content ul li{
	list-style: unset;
}

.page_title {
	margin: 0 auto;
	color: #0f0f0f;
	padding: 0 20px;
	font-size: 1.1em;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
}

ul li a {
	color: #0f0f0f;
	padding: 0 20px;
	font-size: 1.1em;
	text-decoration: none;
	font-weight: bold;
}

h1 {
	font-size: 3em;
	margin: auto;
}

section {
	padding: 80px 5px 5px;
	box-sizing: border-box;
	height: 100%;
}

form {
	height: 100%;
}

section h1 {
	margin: 0;
	padding: 0;
	font-size: 3em;
}

section h1 span {
	font-size: 0.8em;
	color: #0bacff;
}

.menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
	visibility: hidden;
	opacity: 0;
        transition: opacity 0.3s;
        margin: 0;
        padding: 0;
}

.menu-overlay.open {
	visibility: visible;
	opacity: 1;
}

.nav__links {
	position: fixed;
	top: 80px;
	width:20vw;
	left: 0;
	z-index: 2;
	height: 100vh;
	background: #ffffff;
	font-size: 2vw;
	transform: translateX(0px);
	transition: transform 0.3s;
}

.nav--open .nav__links {
	width: unset;
	transform: translateX(0);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.nav__link {
        display: flex;
        align-items: center;
        color: #666666;
        font-weight: bold;
        /*font-size: 3vw;*/
        text-decoration: none;
        padding: 12px 15px;
        transition: background 0.2s;
}

.nav__link > i {
	margin-right: 15px;
}

.nav__link--active {
	color: #009578;
}

.nav__link--active,
.nav__link:hover {
	background: #eeeeee;
}

.side-nav {
        border-radius: 5px;
        text-align: center;
        margin: 0;
}


/*Mobile styles*/
/* @media (max-width: 768px){ */
/*@media (min-width: 768px) and (max-height: 1024px)  { */
@media (max-width: 768px){
	.side-nav {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 2;
		height: 100vh;
		width: 0;
		background: #ffffff;
		transform: translateX(-1250px);
		transition: transform 0.3s;
		font-size: 1rem;
	}

	.menu-btn {
		display: flex;
	}

	body {
		font-size: 1rem;
	}
}

.side-nav--open {
	width: 80vw;
	transform: translateX(0);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.visual {
	height: 100px;
	width: 100%;
	background: wheat;
	margin: 1rem;
}

.parent {
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	place-items: center;
	height: 100vh;
	width: 100vw;
}

.card {
	border-radius: 5px;
	width: clamp(50ch, 40vw, 50ch);
	height: 50%;
	display: block;
	background: AliceBlue;
	font-size: 3vw;
	border: solid 1px #0f0f0f;
	background: #E3E3E3;
}

.tcard {
	display: flex;
	overflow-y: auto;
	padding: 1rem;
	font-size: 4vw;
	text-align: center;
	align-content:flex-start;
	border: solid 1px #0026ff;
	place-items: center;
	text-align:center;
}

.bt{
	width: 25vw;
	height: 1rem;
	font-size: 1rem;
	margin: 10px 20px 10px auto;
}

.textBox {
	border-radius: 5px;
	width: clamp(50ch, 40vw, 50ch);
	font-size: 4vw;
	border: solid 1px #0f0f0f;
	padding: 1rem;
}

.report-settings {
	padding: 0;
	display: flex;
}

.settings-left {
	margin: 0 auto 1rem auto;
}

.settings-right {
	margin: 0 auto 1rem auto;
}

.table-scroll {
	width: 90vw;
	display: block;
	position: relative;
	margin: auto;
	overflow: hidden;
	border: 1px solid #000000;
}
.table-wrap {
	width:100%;
	overflow:auto;
}
.table-scroll table {
	width: 100vw;
	margin:auto;
	border-collapse:separate;
	border-spacing:0;
}
.table-scroll th, .table-scroll td {
	padding:5px 10px;
	border:1px solid #000;
	background:#fff;
	white-space:nowrap;
	vertical-align:top;
}
.table-scroll thead, .table-scroll tfoot {
	background:#f9f9f9;
}
.clone {
	position:absolute;
	top:0;
	left:0;
	pointer-events:none;
}

th {
	overflow-wrap: break-word;
}

.clone th, .clone td {
	visibility:hidden
}
.clone td, .clone th {
	border-color: transparent;
}
.clone tbody th {
	visibility:visible;
	color:cornflowerblue;
}
.clone .fixed-side {
	border:1px solid #000;
	background:#eee;
	visibility:visible;
}
.clone thead, .clone tfoot{background:transparent;}

.input_block {
	display: grid;
	grid-template-columns: auto auto;
	width: 90%;
	margin: 0 auto;
}

.input_slot_left{
	padding: 0;
	padding-right: 5px;
	text-align: right;
}

.input_slot_right{
	/*	border:1px solid #000; */
	border-radius: 5px;
}

.bordered{
	border:1px solid #000;
	border-radius: 5px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: papayawhip;
}

.input_slot_right input{
	margin: 5px;
	padding: 1px;
	font-size: 1.5rem;

	width: 100%;
	max-width: 300px;
}

.input_slot_central{
	align-self: center;
	grid-column-start: 1;
	grid-column-end: 3;
	text-align: center;

	/*	border:1px solid #000; */
	border-radius: 5px;
}

.input_block_4 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 6rem auto;
	grid-auto-rows: auto;

	width: 90%;
	height: 100%;
	margin: 0 auto;
}

.input_slot_central_4{
	align-self: center;
	grid-column-start: 1;
	grid-column-end: 4;
	text-align: left;

	/*	border:1px solid #000; */
	margin:15px 0;
	/*background-color: #0f9d58; */
	height: 100%;
	width: 100%;
}

.md_textarea {
	width: 100%;
	height: 50vh;
	box-sizing: border-box;
	padding: 10px;
}

.md_textarea_10vh {
	width: 100%;
	height: 10vh;
	box-sizing: border-box;
	padding: 10px;
}

.material-icons.md-3v {
	font-size: 2rem;
	color: #FB8C00;
	margin: auto;
}

.hlink {
	font-size: 1.5rem; 
}

.main_content_grid{
	width: 90%;
	margin-left: 200px;
	/*	border: 1px solid #F00; */
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 3fr;
}

.content_grid_cell{
	text-align: center;
	margin-top: 10px;
	font-size: 2vw;
	border: 1px solid #F00;
}

.content_grid_cell-span2{
	font-size: 2vw;
	grid-column: span 2;
}

/* Dashed border */
hr.dashed {
	border-top: 3px dashed #bbb;
}

/* Dotted border */
hr.dotted {
	border-top: 3px dotted #bbb;
}

/* Solid border */
hr.solid {
	border-top: 3px solid #bbb;
}

/* Rounded border */
hr.rounded {
	border-top: 8px solid #bbb;
	border-radius: 5px;
}

.table_list{
	border: 3px solid #000;
	border-collapse: collapse;
	overflow-x:auto;
}


.table_list td,th{
	border: 3px solid #000;
	margin: 0px;
	padding-left: 5px;
	padding-right: 5px;
}


.table_list tr:nth-child(even) {
	background: #DDD
}

.table_list tr:nth-child(odd) {
	background: #FFF
}

.emoji-popup {
	display: none;
	position: absolute;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	padding: 10px;
	z-index: 10;
}

.emoji-option {
	font-size: 20px;
	cursor: pointer;
	margin: 5px;
}

.emoji-option:hover {
	transform: scale(1.2);
}


.icon_btn {
        padding: 1px !important;
        width: 30px;
        margin: 3px !important;
}

input[type=checkbox] {
	width: 30px;
	height: 30px;
	accent-color: #445768;
}


button {
	margin: 5px;
	padding: 3px;
	font-size: 1.5rem;
	border-radius: 5px;
}

.exe-button-style {
    font-size: 1rem;
    background-color: #FFAC49;
    border: 1px solid #FF7417;
    width: 100%;
    max-width: 200px;
    height: 5rem;
    border-radius: 10px;
    color: black; /* Text color */
    text-align: center; /* Text alignment */
    padding: 5px 0; /* Padding top/bottom 10px, left/right 0 */
    margin: 10px auto 10px auto;
}

.exe-button-style:hover {
    background-color: #FFD001;
}
