/*** START Responsive Menu ***/
.topnav {
  overflow: hidden; float: right
}
.topnav a {
  float: left;
  color: #C0C0C0;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 15px; text-transform: uppercase;
	cursor: pointer
}
.topnav a button {
  float: left;
  color: #C0C0C0;
  text-align: center;
  padding: 5px 0px; border: none;
  text-decoration: none;
  font-size: 15px; text-transform: uppercase;
	cursor: pointer;
	background:none
}
.topnav a button:hover {
  color: #000000;
}
.mright-space{margin-right:20px}
.active {
  color: #60d2a6!important;
}
.topnav .icon {
  display: none;
}
.dropdown {
  float: left;
  overflow: hidden;
}
.dropdown .dropbtn {
  font-size: 15px;    
  border: none;
  outline: none;
  color: #C0C0C0;
  padding: 16px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0; text-transform: uppercase;  font-weight: 400
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  float: none;
  color: #777;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left; font-size: 14px
}
.topnav a:hover, .dropdown:hover .dropbtn {
  color: #00d2ff;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 1024px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block; font-size: 28px!important; padding: 5px 0 0!important;
  }
}

@media screen and (max-width: 1024px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0; 
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left; background-color: white
  }
  .topnav.responsive .dropdown {float: none}
  .topnav.responsive .dropdown-content {position: relative}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;background-color: white
  }
  .dropdown .dropbtn {
  padding: 16px 20px;
  }
  .mright-space{margin-right:0px}
}
/*** END Responsive Menu ***/



.overlay-updates {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 9999
}
.overlay-updates:target {
  visibility: visible;
  opacity: 1;
}

.popup-updates {
  margin: 70px auto;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  width: 40%; height:650px;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup-updates h2 {
  margin-top: 15px; margin-bottom: 30px;
  color: #333;
}
.popup-updates .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 36px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup-updates .close:hover {
  color: #06D85F;
}
.popup-updates .updates-content {
  max-height: 100%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .popup-updates{
    width: 100%;
  }
}