:root {
	--blue: #6665fe;
	--grey: #f5f5f5;
	--lightgray: #56566d;
	--main: #42aa22;
	--lightmain: #e4f3e5;
	--lightmainblue: #c5d2dd;
	--secondary: #2b2a28;
	--third: #86786f;
	--lightblue: #9eb9f1;
	--red:#cc4141;
	--green: #46b446;
	--admin: #22aa5f;
	--lightadmin: #cbf3bc;
	--newlightgray: #ccc;
	--white:#fafafa;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1; 
	border: 1px solid var(--lightmain);
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: #888; 
}

::-webkit-scrollbar-thumb:hover {
	background: #555; 
}

body {
	overflow-x: hidden;
	background-color: var(--lightmain);
	position: relative;
	min-width: 100%;
}

tr:first-child td:first-child {border-left: solid 1px var(--lightmain); border-top-left-radius: 10px; }
tr:first-child td:last-child {border-right: solid 1px var(--lightmain); border-top-right-radius: 10px; }
tr:first-child td{border-top: solid 1px var(--lightmain)}

tr:last-child td:first-child {border-left: solid 1px var(--lightmain); border-bottom-left-radius: 10px; }
tr:last-child td:last-child {border-right: solid 1px var(--lightmain); border-bottom-right-radius: 10px; }
tr:last-child td{border-bottom: solid 1px var(--lightmain);}

tr:first-child td { border-top-style: solid; }
tr td:first-child { border-left-style: solid; }

td {
	border: 0px;
	border-style: none solid solid none;
	padding: 10px;
}

tr { 
	line-height: 30px; 
}

tr.header { 
	background-color: var(--main);
	color: var(--grey);
	position: sticky!important;
  	top: 0;
	z-index: 2;
}

tr.green { 
	background-color: var(--lightadmin);
	color: var(--secondary);
}

tr.lightmain { 
	background-color: var(--lightmain);
	color: var(--secondary);
}

tr.white { 
	background-color: var(--white);
	color: var(--secondary);
}

@-webkit-keyframes zoom {
	from {-webkit-transform: scale(0)} 
	to {-webkit-transform: scale(1)}
}

@keyframes zoom {
	from {transform: scale(0)} 
	to {transform: scale(1)}
}

@keyframes msgBox {
	0%   {right:-310px;}
	10% {right:50px;}
	90%   {right:50px;}
	100% {right:-350px;}
}

@keyframes msgBoxTimer {
	10%   {width:0%;}
	90% {width:100%;}
	100% {width:100%;}
}

div.header {
	max-height:6%;
	min-height:6%;
	position: sticky!important;
  	top: -1;
	z-index: 10;
	
	background-color: var(--main);
	border-bottom: 1px solid black;
	display: grid;
	place-content: center;
}

div.logo {
    width: 267px;
    height: 150px;
}

div.nav {
	min-width:10%;
	width: auto;
	height: 100%;
	text-align: center;
	position: relative;
}

div.nav-item {
	color:var(--grey);
	font-size: 30px;
	font-family: Arial, sans-serif;
	margin: 0;
	top: 50%;
	display: inline-block;
	padding-left: 15px;
	padding-right: 15px;
}

div.bigMsgBox {
	text-align: center;
	display: flex;
  	justify-content: center;
  	align-items: center;
	  flex-direction: column;
	background-color: white;
	width: 40%;
	height: 20%;
	z-index: 4;
	opacity: 1;
	color:gray;
	font-size: 18px;
	padding: 20px;
	border-radius :10px;
}

p.msgBoxText {
	font-family: Arial, sans-serif; 
}

div.grayPage {
	background-color: rgba(50, 50, 50, 0.5);
	width: 100%;
	height: 100%;
	z-index: 20;
	position: absolute;
	top:0;
	display: flex;
  	justify-content: center;
  	align-items: center;
}

div.grayPage-msg-box {
	display: grid;
	row-gap: 30px;
	grid-template-rows: min-content auto;
	text-align: center;
	background-color: white;
	width: 60%;
	height: 50%;
	z-index: 21;
	opacity: 1;
	color:gray;
	font-family: Arial, sans-serif; 
	font-size: 18px;
	padding: 20px;
	border-radius :10px;
	position: absolute;
	top:calc(100vh / 2 - 25%)!important
}

div.grayPage-msg-box-contribution {
	display: grid;
	row-gap: 30px;
	grid-template-rows: min-content auto;
	text-align: center;
	background-color: white;
	width: 60%;
	z-index: 21;
	opacity: 1;
	color:gray;
	font-family: Arial, sans-serif; 
	font-size: 18px;
	padding: 20px;
	border-radius :10px;
	position: absolute;
}

div.grayPage-msg {
	grid-row: 2;
	
	height: 100%;
}

div.grayPage-hotbar-item {
	float: right;
	width: fit-content;
	height: fit-content;
}

div.grayPage-hotbar {
	height: fit-content;
	width: 100%;
	grid-row: 1;
	z-index: 22;
}

div.msgBoxCloseButton {
	position: absolute;
	z-index: 21;
	height: 35px;
	width: 35px;
	color:var(--grey);
	display: flex;
  	justify-content: center;
  	align-items: center;
	  cursor: pointer;
	font-size: 16px;
	top:10px;
	right: 10px;
}

div.errorText {
	text-align: center;
	color: red;
	visibility:hidden;
	float:left;
	padding-left: 20px;
}

div.emailSubText {
	visibility:hidden;
}

div.emailCoolText {
	color: red;
	visibility:hidden;
}

div.emailPWText {
	color: red;
	visibility:hidden;
}

div.footer{
	margin-top: 10px;
	height: 50px;
	width: 100%;
	bottom: 0;
	left: 0;
}

div.msgBox {
	height: 100px;
	width: 300px;
	background-color: #444;
	z-index: 30;
	opacity: 1;
	color:gray;
	font-family: Arial, sans-serif; 
	font-size: 18px;
	padding: 40px;
	border-radius :10px;
	position: fixed;
	bottom: 50px;
	right: 50px;
	animation-name: msgBox;
  	animation-duration: 7s;
	box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);
}

div.msgBoxTimerWrapper {
	position: absolute;
	z-index: 21;
	width: 100%;
	height: 5px;
	background-color: var(--grey);
	bottom:10px;
	left: 0px;
}

div.msgBoxTimer {
	width: 0%;
	z-index: 22;
	height: 5px;
	background-color: var(--third);
	animation-name: msgBoxTimer;
  	animation-duration: 7s;
}

table {
	font-size: 20px;
	font-family: Arial, sans-serif;
	width:100%;
	margin-top:5px;
	border-collapse: separate;
  	border-spacing: 0;
	text-align: center;
	table-layout: fixed;
}

th{
	padding-top: 5px;
}


input[type=text], input[type=password], input[type=number], input[type=email], select {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid var(--newlightgray);
	border-radius: 4px;
	box-sizing: border-box;
}
  
input[type=submit] {
	width: 100%;
	background-color: var(--admin);
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
  
input[type=submit]:hover {
	background-color: var(--green);
}

img {
	width: 100%;
	height: 100%;
}

h4{
	color: var(--main);
	margin: 0;
}

p {
	color:var(--third);
	font-family: Arial, sans-serif;
	margin: 0;
}

iframe {
	margin: 0;
	padding: 0;
	border: none; 
	overflow: hidden;
	resize: both;
	width: 100%;
	height: 600px;
}

.margin {
	margin: auto;
}

.margin-zero {
	margin: 0;
}

.marginMid {
	margin-left: auto;
	margin-right: auto;
}

.pointer {
	cursor: pointer;
}

.moveable {
	cursor: move;
}

.cls:hover {
	color: var(--red);
}

.save:hover {
	color: var(--blue);
}

.articleButton.articleHover { background-color: lightgray; }

.material-symbols-outlined {
	font-size: 28px!important;
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}

.shadow {
	padding: 20px;
	box-shadow: 5px 5px 5px silver;
}