<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* carousel { */
.carousel {
  width: 1100px;
  height: 500px;
  z-index: 10;
  position: relative;
  margin: auto;
  
  overflow: hidden;
}

.carousel-container {
 
  list-style: none;
  padding: 0;
  margin: 0;
  
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 99999px;
}

.carousel-items {
  float: left;
}

.carousel-next,
.carousel-prev {
  background: #01a3a4;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  
  border: 1px solid #fff;
  color: #fff;
  
  border-radius: 50%;
  padding: 10px;
}

.carousel-next:active,
.carousel-prev:active {
  -webkit-box-shadow: inset 0 1px 1px 1px rgba(0, 0, 0, .3);
  -moz-box-shadow: inset 0 1px 1px 1px rgba(0, 0, 0, .3);
  box-shadow: inset 0 1px 1px 1px rgba(0, 0, 0, .3);
}

.carousel-next:focus,
.carousel-prev:focus {
  outline: 0;
  outline-offset: 0;
  
}

.carousel-next:hover,
.carousel-prev:hover {
   background-color: rgba(0,223,252,1);
  outline: 0;
  outline-offset: 0;
  
}

.carousel-next {
  position: absolute;
  top: 45%;
  right: 10px;
  z-index: 10;
}

.carousel-prev {
  position: absolute;
  top: 45%;
  left: 10px;
}

.carousel-items {
  position: relative;
}

/* carousel } */</pre></body></html>