* Custom App CSS Below --------------------------------- */
/*Fonts ––––––––––––––––––––––––––––––––––––––––––––––––––*/

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.base_container {
  margin: 0;
  position: relative;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.graph_container {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  overflow: hidden;
  /* margin-sequence: 2values: top/bottom, left/right */
  margin: 5px 20px;
}


.graph_wrapper {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  height: auto;
  /* margin-sequence: 2values: top/bottom, left/right */
  margin: 10px 0px;
  border: 0.5px solid lightgray;
  height: 100%;
  position: relative;
  border-radius: 5px;
}

.search_wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: space-between;
}

.search_container {
  display: flex;
  width: auto;
  margin: 5px 0px;
  padding: 0;
  gap: 10px;
}

.suggestions-container {
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
  border-radius: 5px;
  border: 0.5px solid lightgray;
}
.suggestions-wrap {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.suggestions-wrap > p {
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #5e5e5e;
}
.suggestions-list {
  list-style: none;
  padding: 0;
}
.suggestions-list > li {
  font-weight: 500;
  display: flex;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  color: #808080;
  justify-content: space-between;
  max-width: 800px;
  word-wrap: break-word;
  padding: 1px 4px;
  transition: all 0.25s ease-out;
}

.suggestions-list > li:hover {
  cursor: pointer;
  background: rgba(128, 34, 223, 0.2);
  color: #000000;
  border-radius: 5px;
}

.search_container > input {
  background-color: white;
  font-weight: 500;
  font-size: 12px !important;
  color: #1e1e1e;
  width: 100%;
  border-bottom: 1px solid #9b9b9b !important;
  border-radius: 5px 0px 0px 0px !important;
  border-top: 0px !important;
  border-right: none !important;
  border-left: 0px !important;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-self: start;
}
.search_container > input:focus {
  transition: all 0.2s ease-in-out;
}

.search_options {
  display: flex;
  justify-content: space-between;
  gap: 3px;
}

.search_options > button {
  display: flex;
  width: auto;
  gap: 3px;
  justify-content: center;
  align-items: center;
}

ol {
  list-style: decimal outside !important;
  padding: 5px;
  margin: 0;
}
.sidebar_wrapper {
  height: 120vh;
  display: flex;
  flex-direction: column;
  transition: 0.5s;
  border: 0.5px solid #dbdbdb44;
  background: linear-gradient(
    120deg,
    rgba(131, 89, 159, 1) 0%,
    rgba(46, 45, 118, 1) 100%
  );
  flex: 2.5;
  overflow: hidden;
}

.tour_mask {
  opacity: 50px !important;
}
.tour_container {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 400px;
  height: auto;
  margin: 10px 0px;
}
.end_tour {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: auto;
  border: none;
  padding: 10px;
  width: 30px;
  margin: 5px 5px;
  font-size: 15px !important;
  height: 30px;
  justify-content: center;
  border-radius: 50px;
  color: white;
  background-color: orangered;
}
.end_tour:hover {
  background-color: crimson;
}
.reactour__close {
  display: none !important;
}
.banner {
  display: flex;
  width: 100%;
  margin: 20px 0px;
  align-items: center;
  justify-content: end;
}

.sidebar_logo {
  height: 50px;
  margin: 10px 0px;
  background: transparent;
  transition: 0.5s;
}

.output-container {
  background-color: transparent;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  overflow: block;
  justify-content: flex-end;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.copy-button {
  color: black;
  background: white;
  opacity: 0.9;
  border: none;
  padding: 5px 10px;
  font-weight: bolder;
  margin: 0px 10px;
  font-size: 15px;
  position: absolute;
  top: 0;
  right: 0;
}
.infolayer {
  z-index: 10000 !important;
}

.copy-button > i {
  background: white;
  opacity: 0.9;
  box-shadow: rgba(9, 30, 66, 0.2) 0px 1px 1px,
    rgba(9, 30, 66, 0.1) 0px 0px 1px 1px;
  width: auto;
  padding: 10px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}

.fas {
  font-size: 10px;
  padding: 5px 10px;
  color: black;
  background: white;
}

.output-content {
  background-color: white;
  width: 100%;
  height: auto;
  color: black;
  padding: 20px 20px;
  margin: 0px 0px;
  cursor: pointer;
  font-family: 'Noto Sans',sans-serif;
  font-size: 14px;
  overflow-y: scroll;
  display: flex;
  text-align: left;
  flex-direction: column;
}

.annotation {
  background-color: rgba(255, 255, 255, 0.1) !important;
  opacity: 0.75 !important;
  cursor: pointer;
  font-weight: normal !important;
  position: relative !important;
  display: flex !important;
  transition: 0.3s;
}
.annotation:hover {
  background-color: #ffff !important;
  font-weight: bolder !important;
  opacity: 1 !important;
  position: relative !important;
  display: inline-flexbox !important;
  transform: translate(0px, -15px);
}
.search_container > input:focus {
  outline: none;
  border-bottom: 1px solid #1e1e1e !important;
  background-color: #f5f5f5;
}

.start_tour {
  position: fixed;
  z-index: 100;
  /* Place this on the right bottom */
  bottom: 0;
  right: 0;
  /* Place this on the right top */  
  margin: 10px;
  background-color: #1e1e1e;
  color: white;
  display: flex;
  gap: 10px;
  font-size: 10px;
  align-items: center;
  border-radius: 5px;
  border: none;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

@media only screen and (max-width: 767px) {
  .base_container {
    flex-direction: column-reverse;
  }
  .search_container {
    flex-direction: column;
    gap: 10px;
  }

  .search_container > input {
    width: 100%;
  }
  .search_options {
    flex-direction: row-reverse;
  }
  .graph_container {
    width: auto;
  }
  .sidebar_wrapper {
    height: auto;
    position: relative;
    width: 100%;
  }
  .banner {
    justify-content: center;
  }
  .output-container {
    margin-left: 10px;
    margin-right: 10px;
    width: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .base_container {
    flex-direction: column-reverse;
  }
  .search_container {
    flex-direction: column;
    gap: 10px;
  }

  .search_container > input {
    width: 100%;
  }
  .search_options {
    flex-direction: row-reverse;
  }
  .graph_container {
    width: auto;
  }
  .sidebar_wrapper {
    height: auto;
    width: 100%;
  }
  .banner {
    justify-content: center;
  }
}
