@import url("https://fonts.googleapis.com/css?family=Nunito|Roboto&display=swap");
* {
  padding: 0;
  margin: 0;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

nav {
  background-color: #c8c8c8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.modal-container {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}

.modal-overlay {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50rem;
  /*background-color: #fff;*/
  /*border-radius: 4px;*/
  /*border: 1px solid #fff;
    padding: 1.5rem;*/
  z-index: 100;
  background-color: white;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 2rem 0;
}

.modal-title {
  margin-bottom: 0;
}

.modal-close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  cursor: pointer;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tabs {
  width: 100%;
  height: 100%;
}

.tab-list {
  border-bottom: 1px solid #ccc;
  padding-left: 0;
  margin-bottom: 0px;
}

.tab-list-item {
  display: inline-block;
  list-style: none;
  margin-bottom: -1px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.tab-list-active {
  /*background-color: white;*/
  /*border: solid #ccc;
    border-width: 1px 1px 0 1px;*/
  border-bottom: 2px solid blue;
}

.tab-content {
  height: calc(100% - 50px);
  overflow-y: scroll;
  background-color: rgba(128, 128, 128, 0.1);
}

#map {
  height: 100%;
  width: 100%;
}

.calendar-header {
  width: calc(100% / 7);
}

.calendar-item {
  width: calc(100% / 7);
  height: 50px;
}

.calendar-item:hover {
  background: #b3b3b3;
  color: white;
}
/*# sourceMappingURL=main.css.map */