.maincontainer {
  min-height: 100vh;
}
#container {
  width: 100vw;
  position: relative;
}
#footer {
  border-top: 1px solid black;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
#footer > div {
  padding: 2em;
  width: 300px;
  border-right: 1px solid black;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'victor';
}
a {
  text-decoration: underline;
  color: unset;
}
a:hover {
  color: unset;
}
.icon {
  height: 2em;
}
.sessions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.sessions a {
  display: block;
}
.sessions .session_box {
  width: 20rem;
  height: 20rem;
  border: 1px solid black;
}
#menu {
  margin-bottom: 4rem;
}
#content {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  width: 100%;
  margin-left: 0;
  z-index: 10;
  position: relative;
  min-height: 60vh;
  border-left: 1px solid black;
}
#menu.open {
  margin-left: 18rem;
}
#content.open {
  overflow: hidden;
  margin-left: 18rem;
}
#contentoverlay {
  background-color: unset;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem;
  overflow-y: scroll;
  opacity: 1;
}
#contentoverlay.open {
  opacity: 0.5;
  overflow: unset;
}
#menubars {
  width: 2rem;
  height: 2rem;
  opacity: 1;
  cursor: pointer;
}
#menubars.open {
  opacity: 0;
}
#menuitems {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  position: absolute;
  top: 0;
  left: -18rem;
  z-index: 0;
  width: 18rem;
  overflow-y: auto;
  height: 100vh;
}
#menuitems .close {
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
}
#menuitems.open {
  left: 0;
}
.content-open,
.menu-open {
  margin-left: 18rem;
}
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.agenda {
  display: flex;
  flex-flow: column;
}
.agenda .agenda_nav span {
  cursor: pointer;
}
.evt {
  padding: 1rem;
  width: 400px;
  height: 600px;
  background-color: #888;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  flex-flow: column;
}
.evt .tools {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.evt .checkbox {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}
.evt .calendars {
  display: flex;
  flex-flow: row;
}
.evt .calendars p {
  margin: 0;
  padding: 0;
}
.evt input,
.evt textarea,
.evt .label {
  border-color: transparent!important;
  background-color: transparent!important;
  padding: 0;
  -webkit-box-shadow: none!important;
  box-shadow: none!important;
  border-radius: 0!important;
}
.evt textarea {
  width: 100%;
  min-height: 2em;
  border-color: 1px solid black!important;
  border-radius: 1!important;
}
.evt .agenda_tags ul {
  margin: 1em;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}
.evt .agenda_tags ul li {
  padding: 0.3em;
  margin-right: 0.3em;
  display: inline-block;
  background-color: black;
  color: white;
}
.evt .agenda_tags ul .tag.tagged {
  background-color: pink;
}
.evt .upcomp {
  margin: 1em;
  width: 100px;
  height: 100px;
}
.evt .upcomp img {
  width: 100%;
}
#leafmap {
  background-color: black;
  width: 100% !important;
  position: relative !important;
}
.evt.new {
  background-color: #333;
}
.evt.new .tools {
  color: white;
}
.vide {
  height: 100%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, #888 10px, #888 20px);
}
