* {
  margin: 0;
  padding: 0;
}

*::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

div[hidden] {
  visibility: hidden;
}

.button-icon {
  padding-right: 10px;
}

.depth-select {
  width: 10vw;
  background-color: #FFF;
}

.input-element {
  display: flex;
}

.instructions {
  padding-top: 5vh;
  background-color: #F8F8F8;
  width: 100%;
  height: 100%;
}

.instruction-cards {
  display: flex;
  width: 30vw;
  margin: auto;
}

.instruction-cards div {
  flex: 1;
  margin: 0.5vw;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.topology-map {
  position: relative;
  height: 100vh;
  width: 100vw;
}

#toggle-info {
  background-color: #F8F8F8;
  width: 30vw;
  height: 96vh;
  border: none;
}

@media (max-width: 800px) {
  .instructions {
    padding-top: 0;
  }
  
  .instruction-cards {
    width: 100vw;
  }

  .instruction-cards-bottom {
    padding-bottom: 15vh;
  }

  .input-element {
    width: 100vw;
  }

  .depth-select {
    width: 40vw;
    margin-right: 1vw;
  }

  
}