* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #242429;
}

::-webkit-scrollbar-thumb {
  background-color: #4d4d4f;
  border-radius: 10px;
  border: 2px solid #4d4d4f;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #4d4d4f #242429;
}

body {
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

body {
  background-color: #242429;
  margin: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.dash {
  height: clamp(2000px, 4800px, 250vw);
  width: 100vw;
}

.map {
  border: 0;
  width: 70vw;
  height: 600px;
  padding: 0 20px;
  left: 50%;
  transform: translateX(-50%);
  top: clamp(1000px, 4000px, 204vw);
  position: absolute;
}
