@font-face {
  font-family: 'next';
  src: local('next'),
       url('./next.ttf') format("truetype");
}
@font-face {
  font-family: 'mont';
  src: local('mont'),
       url('./mont.otf') format("truetype");
}
@font-face {
  font-family: 'regularBold';
  src: local('regularBold'),
       url('./regularBold.ttf') format("truetype");
}

@media screen and (max-width: 1350px) {
    header{
        justify-content: space-between;
    }
    .headLogo{
        margin-right: 30px;
        position: relative;
        top:-.125em;
    }

}
@media not screen and (max-width: 1350px) {
    .headLogo{
        position: absolute;
        left: calc(50vw - 100px);
        top: 5px;
    }
}

@media screen and (max-width: 900px) {
    .desktop{
        display: none;
    }

}
@media not screen and (max-width: 900px) {
    .mobile{
        display: none;
    }
}




html, body{
    padding: 0;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
    font-family: regularBold, sans-serif;
}

button, input{
  font-family: regularBold, sans-serif;
}

header{
    font-family: next, 'sans-serif';
    padding: 10px 0 10px 0;
    margin: 0;
    display: flex;
    background-color: #00cbdf;
    z-index: 2;
    -webkit-box-shadow: 0px 7px 5px -1px rgba(0,0,0,0.15);
    box-shadow: 0px 7px 5px -1px rgba(0,0,0,0.15);
}

ul{
    padding: 0 0 0 30px;
    margin: 0;
}

li{
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    font-size: 25px;
}
a{
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.active1{
    background-color: #ffd000;
    border-radius: 7px;
    padding: 6px 10px 1px 10px;
    position: relative;
    top:-.08em;
}
#ordersH{
    position: relative;
    top: -.19em
}


header li img{
    height: 30px;
    position: relative;
    top: .175em;
}
.mobileHeadImg{
    width: 27px;
    position: relative;
    top:.175em;
}

.headLogo{
    width: 200px;
    height: 60px;
}

.topnav {
	width: 100vw;
	position: relative;
	overflow: hidden;
}

.topnav #myLinks {

	max-height: 0;
	margin-top: 5px;
	transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
	overflow: hidden;
}

.topnav a {
	color: white;
	padding: 14px 40px;
	text-decoration: none;
	font-size: 25px;
	display: block;
	text-align: center;
}

.topnav a.icon {
	background: rgba(255, 255, 255, 0);
	display: block;
	/*position: absolute;*/
	text-align: right;
	position: relative;
	color: white;
	right: 0;
	top: 0;
}

.topnav .nvstuff:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: white;
	cursor: pointer;
}

.active {
	background-color: #4CAF50;
	color: white;
}
.noclick:hover{
	cursor: auto;
}


.menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 28px 20px;
	position: relative;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.menu-icon .navicon {
  background: white;
  display: block;
  height: 6px;
  position: relative;
  transition: background .2s ease-out;
  width: 30px;
}

.menu-icon .navicon:before,
.menu-icon .navicon:after {
  background: white;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.menu-icon .navicon:after {
  top: 12px;
}

.menu-icon .navicon:before {
  top: -12px;
}

/* menu btn */

.menu-btn {
  display: none;
}

.menu-btn:checked ~ .menu {
  max-height: 240px;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}




.green{
    color: #00c100;
}
.red{
    color: #fc4747;
}

.hrv--small {
    display:inline-block;
    vertical-align:middle;
    -webkit-transform:perspective(1px) translateZ(0);
    transform:perspective(1px) translateZ(0);
    box-shadow:0 0 1px rgba(0,0,0,0);
    -webkit-transition-duration:.3s;
    transition-duration:.3s;
    -webkit-transition-property:transform;
    transition-property:transform;
    cursor: pointer;
}
.hrv--small:hover,
.hrv--small:focus,
.hrv--small:active {
    transform: scale(1.075)!important;
}




#ordersH.active1{
     top:-.11em!important;
    padding: 1px 10px 1px 10px!important;
}

#ordersH.active1 span{
    position: relative;
    top:-.1em;
}
.active1 img{
    top: .1em;
}