body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.fixed-position {
  position: fixed;
}

#overlay {
  content: " ";
  z-index: 3;
  width: 0%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: black;
  opacity: 0;
  transition: opacity 1s;
}

.topnav {
  overflow: hidden;
  background-color: #131313;
  position: sticky;
  top: 0;
  z-index: 1;
}

#comm-container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  float: left;
}

.communityLabel {
  color: #ffffff;
  font-size: 12px;
  padding: 0px 5px;
  width: 85px;
  text-align: center;
  border: 3px dotted #23a9d2;
}

.userlabel{
  text-align: right;
  color: #ffffff;
  float: right;
  font-size: 12px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
}

.logo-container{
  float: left;
  overflow: hidden;
  height: 60px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vm-logo{
  height: 40px;
}

.vm-logo2{
  height: 60px;
}

.topnav a.tabs {
  float: left;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  height: 60px;
  padding-right: 15px;
  padding-left: 15px;
  transition: background-color 0.35s ease-in-out;
}

.topnav a.tabs:hover {
  background-color: rgb(75, 75, 75);
  color: rgb(255, 255, 255);
}

.loggedintabs{
  display: flex;
  justify-content: center;
  align-items: center;
}

.outertabs{
  display: flex;
  justify-content: center;
  align-items: center;
}


.login-button-container {
  transform: translate(0%, 0%);
  float: right;
  text-align: center;
  height: 60px;
  width: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-btn, .logout-btn {
  display: block;
  height: 30px;
  width: 80px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  font-size: 13px;
  text-align: center;
  border-radius: 3px;
}

.login-btn::after{
    position: absolute;
    content:'';
    display: inline-block;
    background: rgba(59,173,227,1);
    background: linear-gradient(45deg, rgba(59,173,227,1) 0%, rgba(87,111,230,1) 25%, rgba(68, 183, 117,1) 65%, rgba(215, 225, 53,1) 100%);
    height: 50px;
    width: 372px;
    z-index: -1;
    transform: translateX(-280px);
    transition: transform 400ms ease-in;
}

.logout-btn::after{
  position: absolute;
  content:'';
  display: inline-block;
  background: rgb(227, 182, 59);
  background: linear-gradient(45deg, rgb(101, 31, 65) 0%, rgb(122, 30, 118) 25%, rgb(199, 17, 65) 65%, rgb(227, 221, 48) 100%);
  height: 50px;
  width: 372px;
  z-index: -1;
  transform: translateX(-280px);
  transition: transform 400ms ease-in;
}

.login-btn:hover::after, .logout-btn:hover::after{
  transform: translateX(-200px);
}

.login-btn span, .logout-btn span {
  position: relative;
  top: 9px;
}

.ease-effect {
    transition: color 0.2s ease-in-out;
}

#burgermenu{
  display:none;
  float: right;
  background: transparent;
  border: transparent;
  height: 60px;
  width: 55px;
}

.fa-bars{
  font-size: 2.5em;
  color: #BF2929;
}

.fa-bars:hover{
  color: #d73939;
}

#userbutton{
  display: none;
  float: right;
  background: transparent;
  border: transparent;
  height: 60px;
  width: 55px;
}

.fa-user{
  font-size: 2em;
  color: rgb(200, 200, 200);
}

.fa-user:hover{
  color: rgb(233, 233, 233);
}

#notifbell{
  float: right;
  background: transparent;
  border: transparent;
  height: 60px;
  width: 55px;
}

.fa-bell{
  font-size: 2em;
  color: rgb(200, 200, 200);
}

.fa-bell:hover{
  color: rgb(233, 233, 233);
}

#profilebox {
  display: none;
  position: fixed;
  top: 63px;
  right: 63px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  z-index: 2;
  background: #f9f9f9;
  height: 130px;
  grid-template-rows: 0.3fr 1fr;
  grid-template-areas:
    "profile-r1"
    "profile-r2";
}

#profilebox-row1 {
  grid-area: profile-r1;
  background: #406586;
  font-size: 0.8em;
  padding: 20px;
  border-radius: 3px 3px 0px 0px;
  color: white;
}

#profilebox-row2 {
  grid-area: profile-r2;
  font-size: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-logout {
  text-align: center;
  padding: 10px 25px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  text-decoration: none;
  color:rgb(75, 75, 75)
}

.profile-logout:hover {
  background-color: #ececec;
}

.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 105; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background-color: #eee;
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

.sidenav a {
  padding: 8px 8px 8px 8px;
  text-decoration: none;
  font-size: 25px;
  color: #787878;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #575757;
  background-color: rgb(199, 199, 199);
}

#xbutton {
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 36px;
  background: transparent;
  border: transparent;
  padding: 10px 15px;
}

#subscribe-button {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 11px;
  background: #8dca5173;
  border: transparent;
  padding: 5px 5px;
}

#subscribe-button:hover {
  background: #689a3773;
}

.fa-xmark{
  color: #787878;
}

.fa-xmark:hover{
  color: #575757;
}

@media only screen and (max-width: 875px) {

  #burgermenu {
    display:inline;
  }

  #userbutton {
    display:inline;
  }

  .userlabel {
    display: none;
  }

  .loggedintabs {
    display: none;
  }

  .logout-container {
    display: none;
  }

}
