@media (max-width: 575px) {
	html {
		font-size: 0.3rem;
	}
}

@media (min-width: 575px) and (max-width: 768px) {
	html {
		font-size: 0.4rem;
	}
}

@media (min-width: 768px) and (max-width: 992px) {
	html {
		font-size: 0.6rem;
	}
}

@media (min-width: 992px) and (max-width: 1200px) {
	html {
		font-size: 0.7rem;
	}
}

@media (min-width: 1200px) and (max-width: 1699px) {
	html {
		font-size: 0.9rem;
	}
}

@media (min-width: 1699px) {
	html {
		font-size: 0.9rem;
	}
}

#main {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 6%;
	transition: margin-left .5s;
	padding: 1rem;
}

.topnav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #111;
}

.topnav a {
  padding: 0.6rem 0.6rem 0.6rem 0.6rem;
  text-decoration: none;
  color: #FFFFFF;
  display: block;
  transition: 0.3s;
}

#dashboard_button:hover {
  background-color: #009900 !important;
}

#tools_button:hover {
  background-color: #009900 !important;
}

.sidenav {
  height: 100%;
  width: 12%;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  padding: 4rem 2rem 2rem 2rem;
  border-right: 3px solid #EEEEEE;
}

.sidenav a {
  text-decoration: none;
  color: #000000;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

#dashboard_button a {
  font-weight: bold;
}

#tools_button a {
  font-weight: bold;
}

.streamer_serial_link:hover {
	font-weight: bold;
}

.dropdown button {
  font-weight: bold !important;
}

a.dropdown-item {
	color: black;
}

.table-row{
	cursor:pointer;
}

.uiModalContent {
    background-color: rgba(0,0,0,0.6);
    position: fixed;
    top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    width: 25%;
    border-radius: 10px 10px 10px 10px;
}

.rotate-20 {
	transform: rotate(-20deg);
}

.rotate10 {
	transform: rotate(10deg);
}

.sr-only {
	display: none;
}