body {
  padding: 0;
  margin: 0;
  background-color: black;
  height: 100vh;
  overflow: hidden;
  font-family: "Gilroy", sans-serif;
}
#main {
  width: 100%;
  display: flex;
  gap: 0;
  justify-items: start;
  align-items: start;
  overflow: hidden;
}

#map {
  width: 1590px;
}

#image {
  width: 1920px;
  height: 1080px;
}
#map_img {
  width: 100%;
  height: 100%;
}

#routes {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 50;
  width: 100%;
  height: 100%;
}

#tag {
  position: absolute;
  color: black;
  bottom: 0px;
  left: 12px;
  font-size: 35px;
  font-weight: bold;
  padding: 3px;
  padding-left: 10px;
  z-index: 200000000;
}

.lepLogo {
  /* position: absolute; */
  top: 0;
  right: 0;
  margin-top: 2px;
  z-index: 100000000;
  padding: 10px;
  padding-left: 10px;
  z-index: 200000000;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#animated {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 50;
  width: 100%;
  height: 100%;
}

#container {
  position: absolute;
  background-color: white;
  width: 700px;
  height: 95%;
  padding-top: 32px;
  padding-bottom: 32px;
  top: 0;
  right: 0;
  border-top-left-radius: 40px !important;
  border-bottom-left-radius: 40px !important;
  z-index: 100;
  color: black;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 0px;
}

.powered {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}

#panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  padding-bottom: 10px;
  margin-top: -10px;
}

.panelChild {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 0px;
}

.points {
  z-index: 5000;
  display: flex;
  justify-items: center;
  align-items: center;
  flex-direction: column;
}

.item {
  width: 100%;
  opacity: 0.7;
  padding-left: 6px;
  padding-right: 6px;
}

.logo_times {
  width: 50%;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin-top: 25px;
}

#label {
  position: absolute;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  font-weight: 900;
}

@keyframes moveCar {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 65px);
  }
}

.car-animation {
  animation: moveCar 5s linear;
}
