* {
  margin: 0;
  font-family: "Cera pro", "Trebuchet MS", sans-serif;
}
body {
  height: calc(100vh - 58px);
}
#map {
  display: flex;
  width: 540px;
  height: 400px;
}
.buttons {
  width: 100%;
  height: 60px;
}
.cargando {
  animation: cargando 3s infinite;
}
@keyframes cargando {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#markers {
  margin: 10px 0 10px 0;
}
.buttons__btn {
  background-color: #4264fb;
  margin: 2px;
  padding: 5px;
  width: max-content;
  font-weight: bold;
  border-radius: 3px;
  color: #ffffff;
  border: none;
  cursor: pointer;
}
.marker * {
  color: #4264fb;
}
.marker,
.markerContenedor {
  font-weight: bold;
  background-color: transparent;
  border: 1px solid #4264fb;
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr 50px;
  width: 100%;
}
.marker {
  width: 100%;
  border-radius: 0;
  padding: 0;
  border: none;
  grid-template-columns: 33% 33% 33%;
}
.marker > div:first-child {
  border: none;
}
.markerContenedor > button {
  border: none;
  font-size: 16px;
  background-color: #4264fb;
  color: #ffffff;
  cursor: pointer;
}
.markerContenedor > button:hover {
  background-color: #ffffff;
  color: #4264fb;
  border-left: 1px solid #4264fb;
}
.marker > div {
  overflow: hidden;
  border-left: 1px solid #4264fb;
  padding: 10px;
  text-align: center;
}

.map__container {
  display: flex;
}
.app {
  display: flex;
  flex-direction: column;
  place-items: center;
  width: calc(100% - 100px);
  padding: 50px;
}
.app > main {
  display: flex;
  flex-direction: column;
  width: 540px;
}
.app > header > h1 {
  font-size: 50px;
  margin: 0;
  text-align: center;
}
