#test-canvas {
  background: red;
}

body {
  margin: 0px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  background: #f7f7f7;
  cursor: default;
}

container {
  display: block;
}

header {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  padding: 40px 20px 20px 20px;
  opacity: 0.7;
}

main {
  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

iframe {
  height: 90vh !important;
}

.empty {
  text-align: center;
  opacity: 0.3;
  font-size: 25px;
  font-weight: 800;
  margin: 60px;
}

.flex {
  display: flex;
  align-items: center;
}

.sidenav {
  position: fixed;
  top:0;
  left: 0;
  width: 200px;
  height: 100vh;
  margin: 0px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  z-index: 3;
  background: white;
}

.menu-buttons > a, .session-status-btn {
  padding: 18px;
  color: black;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.menu-buttons > a:hover, .session-status-btn:hover {
  background: #f0f0f0;
}

.logo {
  font-size: 24px;
  padding: 25px 0px;
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid grey;
}

.logo-link {
  text-decoration: none;
  color: black;
}

.menu-icon {
  margin-right: 16px;
}

.menu-icon-small {
  margin-right: 8px;
  font-size: 12px;
}

.link {
  color: black;
  text-decoration: none;
}

.nav-item {
  outline: none;
  border: none;
  background: white;
  text-align: center;
  padding: 26px;
  font-size: 1.2vw;
  font-weight: 600;
}

.nav-item:hover {
  background: #f0f0f0;
}

.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 4
}

.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 5px 20px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.logo-link {
  font-weight: 700;
  font-size: 22px;
}


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

  container {
    margin-left: 0px;
  }

  .topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }

  .logo-link {
    font-weight: 700;
    font-size: 22px;
  }


}

@media screen and (max-width: 550px) {
  .menu-buttons {
    display: flex;
    flex-direction: column;
  }

  .topnav {
    align-items: center;
    width: 90%;
    padding: 20px;
    padding-right: 40px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }

  main {
    padding: 0px;
  }

  body {

    height: 100%;
  }

  header {
    padding: 20px;
  }

  .burger-menu {
    font-size: 28px;
    cursor: pointer;
  }

  .close-menu {
    font-size: 32px;
    text-align: left;
    cursor: pointer;
  }

  .resp-zindex {
    z-index: 5 !important;
  }

  .modal-bg.lower {
    z-index: 1 !important;
  }


  .close {
    animation-name: close-sidebar;
    animation-duration: 0.4s;
    transform: translateX(-100%)
  }

  .open {
    animation-name: open-sidebar;
    animation-duration: 0.4s;
    transform: translateX(0%)
  }

  @keyframes open-sidebar {
    from {transform: translateX(-100%)}
    to {transform: translateX(0%)}
  }

  @keyframes close-sidebar {
    from {transform: translateX(0%)}
    to {transform: translateX(-100%)}
  }

}
