<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.carousel-container {
  position: relative;
  margin: 48px 0px;
}
@media only screen and (min-width: 768px) {
  .carousel-container {
    margin: 0px;
  }
}
.carousel-container .scroll-left,
.carousel-container .scroll-right {
  position: absolute;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-container .scroll-left button,
.carousel-container .scroll-right button {
  background: rgba(255, 255, 255, 0.25);
  color: black;
  font-size: 32px;
  border: none;
  border-radius: 99px;
  padding: 20px 26px;
}
@media only screen and (min-width: 992px) {
  .carousel-container .scroll-left button,
  .carousel-container .scroll-right button {
    background: transparent;
    color: transparent;
  }
}
.carousel-container .scroll-left button:hover,
.carousel-container .scroll-right button:hover {
  color: black !important;
  background: rgba(255, 255, 255, 0.75) !important;
}
.carousel-container .scroll-left:hover button,
.carousel-container .scroll-right:hover button {
  background: rgba(255, 255, 255, 0.25);
  color: black;
}
.carousel-container .scroll-left {
  padding-left: 2rem;
}
.carousel-container .scroll-right {
  right: 0px;
  padding-right: 2rem;
}
.continuous-carousel {
  width: 100%;
  padding: 0;
  will-change: transform;
  user-select: none;
  cursor: grab;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  height: auto;
  scrollbar-width: none;
  /*
    .background {
        background-image: url("/themes/custom/u_pacific/images/continuous-carousel-background.jpg");
        background-size: auto 100%;
        width: fit-content;
        min-width: 100%;
        padding: 0px 20px 0px 20px;
        background-repeat: repeat-x;
    }
    */
}
.continuous-carousel.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.continuous-carousel::-webkit-scrollbar {
  display: none;
}
.continuous-carousel .background {
  background-color: #FFFFFF;
  padding: 0px 5px;
}
@media only screen and (min-width: 768px) {
  .continuous-carousel .background {
    padding: 0px 20px;
  }
}
.continuous-carousel .slide-contents {
  position: relative;
  margin: 10px;
  background-color: transparent;
  perspective: 1000px;
}
@media only screen and (min-width: 768px) {
  .continuous-carousel .slide-contents {
    margin: 40px 20px;
  }
}
.continuous-carousel .slide-contents .open-slide-details {
  position: absolute;
  border: 0px;
  padding: 0px;
  bottom: 0px;
  background-color: transparent;
  right: 0px;
  z-index: 2;
}
.continuous-carousel .slide-contents .fa-sharp.fa-solid {
  color: #F2F2F2;
  font-size: 3.75rem;
  padding: 0.75rem 0.625rem;
}
.continuous-carousel .slide-inner {
  position: relative;
  transition: transform 0.8s;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  box-shadow: 2px 4px 4px rgba(15, 15, 15, 0.5);
}
.continuous-carousel .slide-front,
.continuous-carousel .slide-back {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.continuous-carousel .slide-contents.open .slide-inner {
  transform: rotateY(180deg);
}
.continuous-carousel .slide-image {
  user-select: none;
  width: 316px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .continuous-carousel .slide-image {
    width: auto;
    height: 300px;
  }
}
@media only screen and (min-width: 992px) {
  .continuous-carousel .slide-image {
    height: 400px;
  }
}
.continuous-carousel .slide-back {
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  background: #000b17;
  color: #FFFFFF;
  justify-content: center;
  transform: rotateY(180deg);
}
.continuous-carousel .slide-back h3 {
  color: #FFFFFF;
  font-family: bely-display, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.75rem;
}
.continuous-carousel .slide-back p {
  white-space: break-spaces;
  margin-bottom: 0px;
}
.continuous-carousel .slide-back a {
  font-family: neuzeit-grotesk, sans-serif;
  color: #0F0F0F;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-top: 1rem;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.continuous-carousel .slide-back a:hover {
  text-decoration: none;
  color: #E65300;
}
.continuous-carousel .slide-back a .fass,
.continuous-carousel .slide-back a .fa-solid.fa-sharp {
  color: #E65300;
}
.continuous-carousel .slide-back a:hover {
  color: #FFFFFF;
}
.continuous-carousel .slide-back a .fa-arrow-right {
  color: #FF671D;
  margin-left: 0.5rem;
}
.continuous-carousel dialog {
  border: 1px solid #0F0F0F;
}
.continuous-carousel dialog::backdrop {
  background-color: rgba(15, 15, 15, 0.8);
}
.continuous-carousel dialog &gt; div {
  white-space: collapse;
}
.continuous-carousel dialog .dialog-details {
  max-height: 250px;
  overflow: scroll;
}
.continuous-carousel .btn-close {
  padding: 0.4rem 0.8rem;
  border: 0px;
  color: #FFFFFF;
  background: #011E41;
  position: absolute;
  top: 0px;
  right: 0px;
}
</pre></body></html>