.overlay-content {
  animation: myOverlay 1s ease-in-out 0s 1 normal forwards;
}

@keyframes myOverlay {
	0% {
		transform: scale(0);
		transform-origin: 50% 100%;
	}

	100% {
		transform: scale(1);
		transform-origin: 50% 100%;
	}
}

.arrow-left {
  width: 70px;
  cursor: pointer;
}

.arrow-right {
  width: 70px;
  cursor: pointer;
}

.card-overlay {
  position: relative;
  display: flex;
  justify-content: center;
  width: 400px;
  height: 600px;
  background-color: #ffe659;
  border-radius: 8px;
  z-index: 2;
  margin: 0 !important;
  box-shadow: 0px 0px 18px white;
}

.card-content-overlay {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin: 9px;
  gap: 10px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 1px black);
}

.card-head-overlay {
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  font-size: larger;
}

.card-image-overlay {
  border: 6px groove #c9c9ca;
  border-radius: 9px;
  filter: drop-shadow(9px 4px 7px black);
  margin-top: 18px;
  width: 80%;
  height: 36%;
}

.card-image-overlay img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.card-weight-height {
  padding-top: 10px;
  font-size: 16px;
}

.card-info-overlay {
  width: 90%;
  padding-top: 29px;
  overflow: auto;
}

.info-menu {
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.info-content {
  padding-top: 23px;
}