@font-face {
  font-family: Roboto;
  src: url("Roboto-Regular.ttf");
}

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: Roboto;
  font-size: 1rem;
	
	background-image: url('bg.jpg');
	background-repeat: no-repeat;
	background-size:cover;
}


@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}



.main-wrapper {
  width: 100vw;
  height: 100vh;
  padding-top: 20px;
  padding-left: 0px;
}

.bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
}

.menu-btn {
  position: relative;
  width: 260px;
  color: white;
  font-size: 1em;
}

.dropdown-trigger,
li {
  height: 40px;
}

.dropdown-trigger {
  background:black;
  border-radius: 20px;
  display: flex;
  align-items: center;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.28);
}

.dropdown-wrapper {
  height: 210px;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  filter: drop-shadow(4px 6px 8px rgba(0, 0, 0, 0.33));
  visibility: hidden;
  opacity: 0;
  transition: 0.1s ease-in-out;
  z-index: 10000;
}

ul,
li {
  padding: 0;
  margin: 0;
  width: 100%;
}

li {
  background: linear-gradient(180deg, rgba(68, 68, 68, 0.76) 0%, #3b3b3b 100%);
  list-style: none;
  display: flex;
  align-items: center;
}

li:first-child {
  border-radius: 10px 10px 0 0;
}

li:last-child {
  border-radius: 0 0 10px 10px;
}

.dropdown-trigger,
li {
  padding-left: 20px;
}

span {
  padding-left: 10px;
}

.material-icons.sizing {
  font-size: 20px;
}

ul {
  position: relative;
}

ul::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 46%;
  border-top: 8px solid transparent;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #5e6161;
  z-index: 10;
}

.menu-btn:hover .dropdown-trigger {
  color: #FFCF69;
  cursor: pointer;
}

em,
span {
  transition: 0.1s ease-in-out;
}

.menu-btn:hover .dropdown-wrapper {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

li:hover {
  color: #FFCF69;
  cursor: pointer;
}


input[type=password] {
  padding: 10px 10px;
  margin: 3px 0;
  box-sizing: border-box;
}

input[type=password]:focus {
  background-color:#FFF4CB;
}


input[type=text] {
  padding: 10px 10px;
  margin: 3px 0;
  box-sizing: border-box;
}

input[type=text]:focus {
  background-color:#FFF4CB;
}

/* CSS */
.button-4 {
  background-color: initial;
  background-image: linear-gradient(-180deg, #00D775, #00BD68);
  border-radius: 5px;
  color: #FFFFFF;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
  border: 0;
  touch-action: manipulation;
}

.button-4:hover {
  background: #00bd68;
}

.button-452 {
  background-color:#B4B4B4;
  border-radius: 5px;
  color: #FFFFFF;
  height: 35px;
  line-height: 20px;
  text-align: center;
  width: 13rem;
  border: 0;
}

.button-452:hover {
  background:#6B6B6B;
}

.button-45 {
  background-color:#05CD0E;
  border-radius: 5px;
  color: #FFFFFF;
  height: 40px;
  line-height: 20px;
  text-align: center;
  width: 100%;
  border: 0;
  touch-action: manipulation;
}

.button-45:hover {
  background:#00AB07;
}

.button-42 {
  background: #fcb740;
  background-image: -webkit-linear-gradient(top, #fcb740, #faaa31);
  background-image: -moz-linear-gradient(top, #fcb740, #faaa31);
  background-image: -ms-linear-gradient(top, #fcb740, #faaa31);
  background-image: -o-linear-gradient(top, #fcb740, #faaa31);
  background-image: linear-gradient(to bottom, #fcb740, #faaa31);
  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  border-radius: 2px;
  color: #ffffff;
  font-size: 14px;
  padding: 15px 40px 15px 40px;
  border: solid #666666 1px;
  text-decoration: none;
  width: 100%;
  touch-action: manipulation;
  cursor: pointer;
  z-index: 9;
}

.button-42:hover {
  background: #e08b14;
  text-decoration: none;}
select {

  /* styling */
  background-color: white;
  border: thin solid black;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;

  /* reset */

  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.minimal {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

select.minimal:focus {
  background-image:
    linear-gradient(45deg, green 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, green 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
}


select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.alert {
  padding: 20px;
  background-color: #f44336; /* Red */
  color: white;
  margin-bottom: 15px;
}

.alert2 {
  padding: 20px;
  background-color:#00C504; 
  color: white;
  margin-bottom: 15px;
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}


.float {
position:absolute;
top:0px;
right: 0px;
z-index:1000;
padding:0px;
margin:auto;
text-align:center;
float:none;
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0 10px 0;
    font-size: 0.8em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #00BD68;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tr:hover{
    border-bottom: 1px solid #000000;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #E6C15C;
}


.styled-table tbody tr.active-row {
    color: BLACK;
}

.styled-table tbody tr.acctive-row {
    font-weight: bold;
    color: white;
	background: #00BD68;;
}


input[type=date]{
  background:#3D9BF2;
  padding: 7px;
  font-family: Calibri;
  color: #ffffff;
  font-size: 15px;
  border: none;
  outline: none;
  border-radius: 5px;
  ;
}

::-webkit-calendar-picker-indicator{
  background-color: #ffffff;
  padding: 5px;
  cursor: pointer;
  border-radius: 3px;
}

.st2 {
    border-collapse: collapse;
    font-size: 1em;
    font-family: sans-serif;
    min-width: 400px;

}

.st2 thead tr {
    background-color: #00BD68;
    color: #ffffff;
    text-align: left;
	padding: 20px; 	
}

.st2 th,
.st2 td {
    padding: 25px 10px 25px 10px;
	
}

.st2 tbody tr {
    border-bottom: 1px solid #dddddd;
}

.st2 tbody tr:nth-of-type(even) {
    background-color:antiquewhite;
}

.st2 tbody tr.acctive-row {
    color: BLACK;
	
}

.st2 tbody tr.acctive-row {
    font-weight: bold;
    color: white;
	background: #008CFF;
}