body {
  background: black;
  padding-bottom: 100px;
}

.fixed {
  z-index: 99;
  position: fixed;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 1rem;
  justify-content: space-between;
  place-items: center;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  background: black;
  z-index: 99;
  padding: 0rem;
  padding-inline: 1rem;
  padding-bottom: 1rem;
}

.button {
  text-align: center;
  padding: 0.625rem;
  background: black;
  border: 1px solid #333333;
  border-radius: 100%;
  color: #ffca2b;
  line-height: 0;
  margin-top: -0.5rem;
}

.button-stops {
  background-color: black;
  border: 1px solid #333333;
  padding: 0.3rem 1.1rem;
  margin-top: 0.6rem;
  color: white;
  border-radius: 5px;
  position: relative;
}
.note {
  position: absolute;
  background: #b0870e;
  border-radius: 50%;
  padding: 0.2rem;
  top: -0.5rem;
  right: -0.5rem;
  min-width: 1rem;
  color: black;
  font-weight: 700;
  font-size: 0.8rem;
}

.actions {
  z-index: 98;
  position: fixed;

  bottom: 62px;
  left: 0;
  right: 0;
  color: white;
  background: rgb(33, 33, 33);
  z-index: 99;
  padding: 0rem;
  padding-inline: 1rem;
  padding-bottom: 0;
}
.action {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
}
.actions button {
  background-color: black;
  border: 1px solid #333333;
  padding: 0.6rem 0.8rem;
  margin-block: 0.3rem;
  color: white;
  border-radius: 5px;
  position: relative;
  display: flex;
  vertical-align: middle;
  gap: 0.3rem;
}

.content2 {
  color: white;
}

.content2 img {
  width: 100%;
}

.stops {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card2 {
  margin-inline: 1rem;
  border: 1px solid #333333;
}

.card2 {
  display: grid;
  grid-template-columns: 100px 1fr 48px;
  flex-direction: row;
  gap: 0.5rem;
}

.card2 img {
  width: 95px;
  height: 80px;
  object-fit: cover;
}

h1 {
  font-family: sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  padding-inline: 1rem;
}
h2 {
  font-family: sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0.5rem 0 0;
  padding: 0;
}

p {
  font-family: sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  /* margin: -150px; */
  float: left;
  width: 100%;
  height: calc(100svh - 100px);
  perspective: 100svw;
  background: rgba(0, 0, 0, 0.5);
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;

  transition: transform 1s;
  transform-style: preserve-3d;
}

.card.active .content {
  transform: rotateY(-180deg);
  transition: transform 0.5s;
}
.card img {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  max-height: calc(80svh - 100px);
  max-width: 80svw;
  margin-top: 6%;
}

.front,
.back {
  position: absolute;
  width: 100svw;
  height: calc(100svh - 100px);
  text-align: center;
  border-radius: 5px;
  backface-visibility: hidden;
}

.back {
  transform: rotateY(-180deg);
}
