html {
    font-family: "Lato", sans-serif;
  }

  /* custom scroll bar */
 ::-webkit-scrollbar {width: 0px !important}
 ::-webkit-scrollbar-track {background: #242526;}
 ::-webkit-scrollbar-thumb {background: #3A3B3C;}
  
  main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  /* Login Modal */
.login_container {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow:scroll;
  z-index: 99;
  background: rgba(0, 0, 0, 0.8);
}
.login_form {
  padding: 30px 20px 40px 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  background: #000;
  position: absolute;
  margin-top: 50px;
  left: 50%;
  transform: translateX(-50%);
  border: none;
}
.login_form div {
  position: relative;
  width: 100%;
  height: 60px;
  background: white;
  border-radius: 8px;
  margin-top: 15px;
  padding: 0;
  border:0;
  overflow: hidden;
}
.login_form div input {
  width: 80%;
  height: 100%;
  outline: none;
  font-size: 20px;
  padding: 5px;
  border: none;
  border-radius: 8px 0 0 8px;
}
.login_form div button {
  width: fit-content;
  background: transparent;
  height: 100%;
  border: none;
  border-radius: 0 8px 8px 0;
  margin: 0;
  color: black;
  font-size: 35px;
}
.pass i.hide-btn::before{
  content: "\f070";
}
.login_form button#login {
  width: 100%;
  height: 60px;
  outline: none;
  font-size: 20px;
  font-weight: 700;
  padding: 15px;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
  color:white;
  cursor: pointer;
}
.login_form button#login:hover {
  opacity: 0.7;
}

.login_form p {
  color: white;
  margin-top: 10px;
  font-size: 18px;
  line-height: 20px;
  font-family: sans-serif;
}
.login_form a {
  color: yellow;
  text-decoration: none;
}
  
/* Side Menu drop button */
  input.hamburger {
    display: none;
  }
  input.hamburger:checked ~ label > i {
    background-color: transparent;
    transform: rotate(90deg);
  }
  input.hamburger:checked ~ label > i:before {
    transform: translate(-50%, 0%) rotate(45deg);
  }
  input.hamburger:checked ~ label > i:after {
    transform: translate(-50%, 0%) rotate(-45deg);
  }
  input.hamburger:checked ~ label > div::after {
    width: 100%;
  }
  input.hamburger:checked ~ label > div::before {
    width: 0;
  }
  
  label.hamburger {
    z-index: 9999;
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
  }
  label.hamburger:hover {
    cursor: pointer;
  }
  label.hamburger > div {
    font-size: 0.8em;
  }
  label.hamburger > div::after, label.hamburger > div::before {
    top: 100%;
    width: 100%;
    text-align: center;
    position: absolute;
    overflow: hidden;
    transition: width 0.25s 0.35s, color 0.45s 0.35s;
  }
  label.hamburger > div::after {
    content: "CLOSE";
    right: 0;
    width: 0;
  }
  label.hamburger > div::before {
    content: "MENU";
    left: 0;
  }
  label.hamburger > i {
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    top: 50%;
    background-color: #222;
    pointer-events: auto;
    transition-duration: 0.35s;
    transition-delay: 0.35s;
  }
  label.hamburger > i:before, label.hamburger > i:after {
    position: absolute;
    border-radius: 2px;
    display: block;
    width: 100%;
    height: 2px;
    left: 50%;
    background-color: #222;
    content: "";
    transition: transform 0.35s;
    transform-origin: 50% 50%;
  }
  label.hamburger > i:before {
    transform: translate(-50%, -14px);
  }
  label.hamburger > i:after {
    transform: translate(-50%, 14px);
  }
  
  html {
    font-family: "Roboto", sans-serif;
  }
  
  body {
    margin: 0;
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
    background: white url("/logos/logo_trans_white1.png") no-repeat fixed center;
    background-size: contain;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .primnav expand:hover, .primnav li:hover {
    background-color: #000;
    color: #fff
  }
  .secnav li:hover {background: #111;}
  .primnav .active {
    background-image:linear-gradient(135deg, #0250c5, #110555);

  }
  .secnav .active {
    background-image:linear-gradient(135deg, #0250c5, #110555)
  }
  .primnav {
    position: fixed;
    height: 58px;
    width: 100vw;
    font-size: 0.8em;
    text-transform: uppercase;
    background-color: #111;
    display: flex;
    flex-direction: column;
    transition: height 246ms 0.5s ease;
    padding-top: 58px;
    overflow-x: hidden;
    overflow-y: hidden;
    box-sizing: border-box;
    z-index: 200;
  }
  @media (min-width: 650px) {
    .primnav {
      height: 100vh;
      width: 58px;
      transition: width 246ms 0.5s ease;
    }
  }
  .primnav > ul {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .primnav li {
    font-weight: 400;
    position: relative;
  }
  .primnav li .tag {
    background-color: #000;
    color: rgba(255, 255, 255, 0.8);
    color: #e6e6e6;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 0.5em;
    border-radius: 2em;
    margin-left: auto;
    margin-right: 0.75em;
  }
  
  .primnav li a {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: white !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
  }
  .primnav .svg {
    height: 60px;
    flex-shrink: 0;
    width: 60px;
    font-size: 20px;
    padding: 19px;
    margin-right: 5px;
    padding-bottom: 15px;
    color: #e6e6e6;
    color: rgba(255, 255, 255, 0.9) !important;
  }
  .secnav {
    margin-left: 63px;
    border-left: 1px solid black;
    border-left-color: #0065b8;
    border-left-color: rgba(0, 112, 204, 0.9);
    overflow: hidden;
  }
  .secnav li {
    color: #e6e6e6;
    color: rgba(255, 255, 255, 0.9);
    max-height: 100px;
    transition: max-height 0.1s;
  }
  @media (min-width: 650px) {
    .secnav li {
      max-height: 0px;
      transition: max-height 0.5s 0.5s;
    }
  }
  .secnav li a {
    text-transform: initial;
    display: block;
    color: inherit;
    padding: 0.75em 10px;
  }
  
  user {
    padding: 5px;
    padding-left: 35px;
    padding-bottom: 3px;
    flex-shrink: 0;
    position: fixed;
    font-weight: 400;
    right: 0;
    color: white;
    color: rgba(255, 255, 255, 0.9);
    background: #111;
    z-index: 999;
  }
  user > section {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  user > section > section {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
  }
  user img {
    height: 51px;
    width: 48px;
    -webkit-clip-path: circle(50% at 50% 50%);
            clip-path: circle(50% at 50% 50%);
    margin-left: 10px;
    min-height: 51px;
    min-width: 48px;
    align-items: flex-end;
  }
  user name {
    font-weight: 400;
  }
  user .online {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    position: absolute;
    top: 15px;
    right: 180px;
  }
  user actions {
    padding: 0.1em 0;
    font-size: 0.8em;
    display: flex;
    justify-content: flex-end;
  }
  user actions a {
    padding: 0 0.5em;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }
  user actions a:last-child {
    padding-right: 0;
  }
  .main {
    width: 100vw;
    overflow-x: hidden;
    padding: 15px;
    padding-left: 15px;
    padding-top: 80px;
  }
  @media (min-width: 650px) {
    .main {
      padding-left: 80px;
    }
  }
  .header {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #222;
    z-index: 100;
    padding-top: 58px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
  }
  @media (min-width: 650px) {
    content {
      padding-left: 58px;
      padding-top: 0;
    }
  }
  
  .features {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
  }
  .features li {
    position: fixed;
    bottom: 0;
    right: 0;
    width: fit-content;
    text-align: left;
    padding: 1em;
    z-index: 10;
  }
  .features li img {
    width: 40px;
    height: 40px;
  }
  .features .icon {
    display: none;
  }
  
  /**
      SCROLLBAR STYLE FOR IE
  */
  body {
    scrollbar-base-color: #0070cc;
    scrollbar-3dlight-color: #fff;
    scrollbar-highlight-color: #0070cc;
    scrollbar-track-color: #0070cc;
    scrollbar-arrow-color: #0070cc;
    scrollbar-shadow-color: #0070cc;
    scrollbar-dark-shadow-color: #0070cc;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  
  .icon {
    display: inline-block;
    width: 5vw;
    height: 4vw;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
  }
  
  /** hamburger */
  input.hamburger {
    display: none;
  }
  input.hamburger:checked ~ nav.primnav {
    height: 100vh;
  }
  @media (min-width: 650px) {
    input.hamburger:checked ~ nav.primnav {
      width: 275px;
    }
  }
  @media (min-width: 650px) {
    input.hamburger:checked ~ nav.primnav .secnav > li {
      max-height: 100px;
    }
    input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(1) {
      transition: max-height 0.5s 0.67s ease-in;
    }
    input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(2) {
      transition: max-height 0.5s 0.69s ease-in;
    }
    input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(3) {
      transition: max-height 0.5s 0.71s ease-in;
    }
    input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(4) {
      transition: max-height 0.5s 0.73s ease-in;
    }
    input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(5) {
      transition: max-height 0.5s 0.75s ease-in;
    }
    input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(6) {
      transition: max-height 0.5s 0.77s ease-in;
    }
    input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(7) {
      transition: max-height 0.5s 0.79s ease-in;
    }
    input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(8) {
      transition: max-height 0.5s 0.81s ease-in;
    }
    input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(9) {
      transition: max-height 0.5s 0.83s ease-in;
    }
    input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(10) {
      transition: max-height 0.5s 0.85s ease-in;
    }
  }
  input.hamburger:checked ~ label > i {
    background-color: transparent;
    transform: rotate(90deg);
  }
  input.hamburger:checked ~ label > i:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  input.hamburger:checked ~ label > i:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  input.hamburger:checked ~ label close {
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
  }
  input.hamburger:checked ~ label open {
    color: rgba(0, 0, 0, 0);
    width: 0;
  }
  
  label.hamburger {
    z-index: 9999;
    position: relative;
    display: block;
    height: 24px;
    width: 24px;
  }
  label.hamburger:hover {
    cursor: pointer;
  }
  label.hamburger text close,
  label.hamburger text open {
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    transform: translateY(24px);
    text-align: center;
    overflow: hidden;
    transition: width 0.25s 0.35s, color 0.45s 0.35s;
    font-size: 6px;
  }
  label.hamburger text close {
    color: rgba(255, 255, 255, 0.8);
    right: 0;
    width: 0;
  }
  label.hamburger text open {
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
  }
  label.hamburger > i {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    pointer-events: auto;
    transition-duration: 0.35s;
    transition-delay: 0.35s;
  }
  label.hamburger > i:before, label.hamburger > i:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    content: "";
    transition: transform 0.35s;
    transform-origin: 50% 50%;
  }
  label.hamburger > i:before {
    transform: translate(-50%, -7px);
  }
  label.hamburger > i:after {
    transform: translate(-50%, 7px);
  }
  
  label.hamburger {
    position: fixed;
    top: 14px;
    left: 17px;
  }
  
  .header .tabs {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    position: fixed;
    top: 58px;
    display: none;
    left: 0;
    background-color: #111;
    border-bottom: 1px solid #000;
    width: 100vw;
    padding-top: 8px;
    box-sizing: border-box;
    z-index: 100;
  }
  @media (min-width: 650px) {
    .header .tabs {
      padding-left: calc(58px + .5rem);
      top: calc(58px - 4em);
      background-color: #111;
      height: 50px;
      border: 0;
      display: flex;
      align-items: center;
      gap: 20px;
    }
  }
  .header .tabs > ul {
    display: flex;
    justify-content: space-around;
    overflow-x: auto;
    flex-wrap: wrap;
  }
  @media (min-width: 650px) {
    .header .tabs > ul {
      justify-content: flex-start;
    }
  }
  .header .tabs .tab {
    font-weight: 300;
    font-size: 0.7em;
    padding: 1em 1em;
    white-space: nowrap;
    flex-shrink: 0;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }
  .header .tabs .active {background:orange}
  .header .tabs .tab:hover {
    background-color: orange;
    cursor: pointer;
  }

  span.tagged {
    padding: 5px 8px;
    width: fit-content;
    height: fit-content;
    border-radius: 12px;
  }