<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.card-carousel {
  position: relative;
  margin: 0 auto 0 auto;
  padding: 0;
  max-width: 220px;
  max-width: 100%;
  height: 450px;
  perspective: 2000px;
  perspective-origin: top;
}

.card-carousel .button-spin {
  position: absolute;
  top: 50%;
  border: 0 none;
  background-color: rgba(0, 0, 0, .08);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 16px;
  text-shadow: 1px 1px 4px rgba(0, 54, 90, .5);
  z-index: 1;
}

.card-carousel .button-spin:hover {
  box-shadow: 0px 4px 4px 4px rgba(0, 54, 90, .15);
}

.card-carousel .button-spin:active {
  box-shadow: none;
}

.card-carousel .button-spin.counterclockwise {
  left: 0;
}

.card-carousel .button-spin.clockwise {
  right: 0;
}

.card-carousel .inner-carousel {
  position: relative;
  width: 225px;
  margin: 0 auto;
  top: 80px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
}

.card-carousel .inner-carousel&gt;div {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
  padding: 20px;
  width: 250px;
  height: 340px;
  opacity: 1;
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  transition: all 0.5s ease-out;
  z-index: 1;
  box-shadow: 0px 10px 10px 10px rgba(0, 54, 90, .15);
}

.card-carousel .inner-carousel&gt;div:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  opacity: 0.6;
  background-color: #ddd;
  z-index: 1;
}

.card-carousel .inner-carousel&gt;div.counterclockwise:after,
.card-carousel .inner-carousel&gt;div.clockwise:after {
  opacity: 0.4;
  cursor: pointer;
}

.card-carousel .inner-carousel&gt;div.front:after {
  content: none;
}

.card-carousel .inner-carousel&gt;div.front {
  background-color: #377767;
  background-image: radial-gradient(circle 250px at center right, rgb(255 255 255 / 40%), #000000);
  color: #fff;
}

.card-carousel .inner-carousel&gt;div img {
  border-radius: 5px;
  cursor: pointer;
  transition: 1s;
}

.card-carousel .inner-carousel&gt;div p {
  font-size: 0.8rem;
  line-height: 1.3em;
  margin-top: 10px;
}

.card-carousel .inner-carousel&gt;div h5 {
  margin-top: 10px;
}

.card-carousel .inner-carousel&gt;div.front h3,
.card-carousel .inner-carousel&gt;div.front h5 {
  color: white;
}

.card-carousel .inner-carousel&gt;div img:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 700px) {
  .card-carousel {
    overflow-x: hidden;
  }
}</pre></body></html>