/************* Basic *************/
html,
body {
  font-family: "Roboto", sans-serif;
  background-color: #27282c;
  color: #f4f5f7;
  margin: 0rem;
}
body {
  padding: 1rem;
}
/************* Header *************/
.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0rem 1rem;
}
.header .brand {
  font-size: 1.6rem;
  font-weight: 700;
}
.header .menu a {
  text-decoration: none;
  color: #fff;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
.header .menu a.active {
  color: #00c8ff;
}
/************* Main *************/
/* Layout */
#fallinfo {
  display: flex;
}
.column {
  width: 100%;
  padding: 1rem;
}
/* Close button */
#fallinfo.desc_visible {
  /* padding-right: calc(20% + 2rem); */
}
#fallinfo.desc_visible .close_desc {
  display: inline-block;
}
.close_desc {
  display: none;
  position: fixed;
  right: 0.8rem;
  bottom: 50%;
  background-color: transparent;
  z-index: 99;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  font-weight: 800;
  color: #fff;
}
.close_desc:active,
.close_desc:focus {
  outline: none;
}
/* Section */
.section .title {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
}
.section .content {
  padding: 1rem;
}
.section .divider {
  height: 0.6rem;
}
.section .item .label {
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
}
.section .item .label label {
  color: #00c8ff;
  cursor: pointer;
}
.section .item .label span {
  color: #a6a8a8;
}

.section .item .desc {
  display: none;
  padding: 2rem 1rem 1rem 1rem;
  color: #fff;
  background-color: #3a3c42;
  position: fixed;
  left: 0;
  bottom: 0;
  width: -webkit-fill-available;
  height: 50%;
  overflow-y: hidden;
  box-shadow: -5px 0px 30px 1px #1314141e;
}
.section .item.active .desc {
  display: inline-block;
}
.section .item .desc .name {
  font-weight: 500;
}
.section .item .desc .name label {
  color: #00c8ff;
}
.section .item .desc .name span {
  color: #a6a8a8;
}

.section .item .desc pre {
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  background-color: #27282c;
  padding: 0.5rem;
  margin-top: 1rem;
  height: -webkit-fill-available;
  overflow-y: auto;
  overscroll-behavior: contain ;
}
/* Section header colors */
.section .title {
  background: #485964;
}

/* .section .title {
  background: #2b9d61;
}
.section .title {
  background: #1791d1;
}

.section .title {
  background: #2b9d61;
}

.section .title {
  background: #0e6f6e;
} */

/* Highlight */
.hljs-comment,
.hljs-quote {
  font-style: unset !important;
  font-size: 0.9rem !important;
}
