.dropdown-position {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  z-index: 1;
}

.dropdown {
  display: flex;
  flex-direction: column;
  background-color: white;
  z-index: 0;
  width: 50%;
  height: 55px;
  margin: 5px;
  border-radius: 8.82px;
  box-shadow: none;
  transition: all 200ms;
  cursor: pointer;
}

.dropdown-horizontal {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-left: 14.71px;
  margin-right: 26.97px;
}

.dropdown-items {
  position: relative;
  left: 0;
  top: 10px;
  display: flex;
  width: 100%;
  min-height: 45vh;
  max-height: 50vh;
  flex-direction: column;
  background-color: white;
  border: 0px transparent;
  border-radius: 8.82px;
  overflow: auto;
}

.drop-item {
  display: flex;
  max-width: calc(100% - 10px);
  margin-left: 5px;
  margin-right: 5px;
  height: 50px;
  margin-top: 2.5px;
  margin-bottom: 2.5px;
  background-color: rgb(220, 220, 220);
  border-radius: 8.82px;
  align-items: center;
  z-index: -1;
}

.dropdown:hover {
  box-shadow: 0px 0px 8px black;
  transition: all 200ms ease-in-out;
}

.dropdown__clicked {
  width: 100%;
  transition: all 300ms ease-in-out;
  box-shadow: 0px 0px 8px black;
}

.dropdown__unused {
  visibility: hidden;
  width: 0px;
  transition: all 300ms ease-in-out;
}

.placeholder {
  width: 100%;
  height: 55px;
  display: flex;
  font: 15px "Raleway";
  font-weight: 400;
  color: #969696;
  align-self: center;
  line-height: 55px;
  vertical-align: middle;
}

.dropdown-element {
  display: flex;
  max-width: calc(100% - 10px);
  margin-left: 5px;
  margin-right: 5px;
  height: 50px;
  margin-top: 2.5px;
  margin-bottom: 2.5px;
  background-color: rgb(220, 220, 220);
  border-radius: 8.82px;
  align-items: center;
}

.normal-text {
  width: 100%;
  height: 55px;
  display: inline-block;
  font: 15px "Raleway";
  font-weight: 600;
  color: #000000;
  align-self: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
  line-height: 50px;
  margin-left: 14.71px;
  margin-right: 26.97px;
}

.dropdown_arrow {
  width: 10px;
  transform-origin: center;
  transition: rotate 500ms ease-in-out;
}

.dropdown_arrow__rotated {
  transform-origin: center;
  rotate: 180deg;
  transition: all 500ms ease-in-out;
}

.navigation-position {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  background-color: #000000;
}

.tracking-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
}

.canvas-zoom-btns {
  display: flex;
  flex-direction: column;
  width: 45px;
  height: 110px;
  justify-content: space-between;
  margin-bottom: 65px;
  margin-right: 5px;
  position: absolute;
}

#zoom-in-btn {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: white;
  color: black;
  align-items: center;
  justify-content: center;
}

#zoom-out-btn {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: white;
  color: black;
  align-items: center;
  justify-content: center;
}

#close-navigation {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: white;
  color: black;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-top: 70px;
  margin-right: 5px;
  top: 0;
}

.bottom-buttons-position {
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}

.bottom-button {
  display: flex;
  background-color: #f98e3d;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin: 5px;
}

.bottom-button:hover {
  box-shadow: 0px 0px 8px black;
  transition: all 200ms ease-in-out;
}

.bottom-button:active {
  scale: 0.9;
  transition: all 200ms ease-in-out;
}

.help-popup {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  transition: background-color 300ms ease-in-out;
}

.popup-content {
  background-color: #f98e3d;
  margin-top: 8px;
  margin-bottom: 8px;
  width: 587px;
  height: 100%;
  border-radius: 9px;
  margin-left: 8px;
  margin-right: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.material-button {
  min-width: 45px;
  min-height: 45px;
  width: fit-content;
  margin-top: 8px;
  border: none;
  border-radius: 8px;
  font: bold 1.2em "Roboto";
}

#ok-button {
  width: 150px;
}

.material-button:hover {
  box-shadow: 0px 0px 8px black;
  transition: all 200ms ease-in-out;
}

.material-button:active {
  scale: 0.9;
  transition: all 100ms ease-in-out;
}

.tutorial-text {
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding: 27.5px;
  max-height: calc(100% - 66px);
  align-content: center;
  align-items: center;
}

.tutorial-paragraph {
  text-align: justify;
  font: 1.2em "Roboto";
  color: white;
}

.tutorial-gif {
  align-self: center;
  width: 100%;
  min-height: 302px;
  border-radius: 6px;
  background-color: white;
}

.loading-info {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  transition: background-color 300ms ease-in-out;
}

.info {
  text-align: center;
  font: 1.2em "Roboto";
  color: white;
  max-width: 80%;
  display: flex;
}

.loading {
  text-align: center;
  font: 1.2em "Roboto";
  color: white;
  max-width: 80%;
  display: flex;
  margin-top: 50px;
}
