@media (max-width: 900px) {

} /* END max-width 900px */

@media (max-width: 750px) {

} /* END max-width 750px */

@media (max-width: 802px),
@media (max-width: 502px), (display-mode: standalone) {

.header {
        height: 35px;
        background-color: rgb(240,240,240);
	z-index: 100;
	position: fixed;
        margin: 0;
        padding: 0;
	top: 0;
	left: 0;
	width: 100%;
}

.body {
	margin-top: 35px;
}

.header .row img.logo {
	height: 30px;
}

.header .row .hamburger {
	display: block;
	position: relative;
	float: left;
	width: 35px;
	height: 35px;
	margin: 0;
	padding: 0;
}
.hamburger_icon {
  height: 25px;
  width: 30px;
  left: 5px;
  margin: 3%;
  position: absolute;
  top: 5px;
  right: 3%;
  display: inline-block;
  vertical-align: middle;
  z-index: 20;
}

.hamburger_icon span {
  display: block;
  background: black;
  width: 100%;
  height: 4px;
  margin-top: -2px;
  position: absolute;
  left: 0;
  top: 50%;
}        
.hamburger_icon:before,
.hamburger_icon:after {
  content: "";
  display: block;
  background: black;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  transform-origin: center center;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.hamburger_icon:before {
  top: 2px;
  margin-top: -2px;
}

.hamburger_icon:after {
  bottom: 2px;
  margin-bottom: -2px;
}
.menu_shown .hamburger_icon span {
  background: transparent;
}

.menu_shown .hamburger_icon:before {
  top: 50%;
  transform: rotate(45deg);
}

.menu_shown .hamburger_icon:after {
  bottom: 50%;
  transform: rotate(-45deg);
}

.header ul {
	height: 35px;
	margin: 0px;
	margin-top: 3px;
	padding: 0;
}

li.button a {
        font-family: "Work Sans", sans-serif;
        font-size: 10px;
        font-weight: 600;
        text-decoration: none;
        padding-left: 12px;
        padding-right: 12px;
}

li.button a span {
        background-color: var(--color-green);
        padding: 7px 14px;
        color: white;
        border-radius: 4px;
}

li.button a:hover span {
        background-color: var(--color-yellow);
        color: var(--color-green);
        border-radius: 4px;
        transition-duration: 500ms;
        transition-property: background-color, color;
}


.page {
	position: relative;
	display: block;
}

.page>.tabs {
        height: 100%;
        width: 100%;
	overflow: hidden;
        background-color: rgb(240,240,240);
	position: fixed;
	top: 35px;
	left: 0;
	transition: all .4s ease-in-out;
	transform: translateX(-100%);
}

.menu_shown .page>.tabs {
	transform: translateX(0);
	z-index: 999;
}

.page>.tabs a {
        text-decoration: none;
        font-weight: bold;
}

.page>.tabs_content {
        width: calc(100%);
        float: none;
        background-color: rgba(255,255,255,0.6);
        min-height: 100%;
        padding-left: 5px;
        padding-top: 5px;
        padding-right: 5px;
}

.page>.tabs>.tab {
        padding: 10px;
}

.page>.tabs>.tab.complete {
        background-image: url('../img/check.gif');
        background-position: 95% center;
        background-repeat: no-repeat;

}

.page>.tabs>.tab:hover {
        background-color: rgba(0,0,0,0.1);
}

.righttable {
	display: none;
}

div.tab_header.ontop {
        top: 35;
        left: 0;
        width: 100%;
        background-color: rgb(240,240,240);
        font-size: 1em;
        padding-top: 4px;
        height: 20px;
        border-top: 1px solid var(--color-green);
        border-bottom: 1px solid var(--color-green);
}

div.tablewrap {
	max-width: calc(100% - 20px);
	width: calc(100% - 20px);
	overflow-x: scroll;
}


} /* END max-width 501px - mobile */

