   html {
        -webkit-box-sizing: border-box ! important;
        -moz-box-sizing: border-box ! important;
        box-sizing: border-box ! important;
      }
            *,
      *:before,
      *:after {
        -webkit-box-sizing: inherit ! important;
        -moz-box-sizing: inherit ! important;
        box-sizing: inherit ! important;
      }

      * {
        -webkit-font-smoothing: antialiased ! important;
        -moz-osx-font-smoothing: grayscale ! important;
      }

:root {
  --haloCarousel-item-width: 60vw;
  --haloCarousel-gap: 22px;
 --halo-carousel-item-gradient : linear-gradient(123deg, #ad5cff 0%, #0099ff 50%, #00a4bd 100%);
  --halo-carousel-nav-gradient : linear-gradient(123deg, #ad5cff 0%, #0099ff 50%, #00a4bd 100%);
}
    
.haloCarousel {
  display: grid;
  grid-template-rows: 1fr max-content;
  grid-gap: 0.4em;
  position: relative;
  line-height: 1;
}
.haloCarousel__counter {

  font-family: sans-serif;
    font-size: 0.8rem;

}
.haloCarousel_wrapper {
  position: relative;
  overflow-x: clip;
  width: 100vw;
}
.haloCarousel__item {
  position: absolute;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  top: 0;
  box-shadow:
    0px 0px 6px #d5cbca,
    0px 0px 6px #ffffff;
  transition: all 0.8s cubic-bezier(0.4, 2.3, 0.3, 1);
  transform-style: preserve-3d;
  background: #fff;
  left: 50% !important;
  transform: translateX(0) scaleY(0.8); 
    will-change: transform;

}
.haloCarousel__item--opacity {
  opacity: 0;
}





.haloCarousel__item--active,
.haloCarousel__item,
.haloCarousel__item--side,
.haloCarousel__item--prev,
.haloCarousel__item--next {
  transition: all 0.8s cubic-bezier(0.23, 1.24, 0.32, 1);

  cursor: pointer;
}

.haloCarousel__item:is(.haloCarousel__item--prev) {
  transform: translateX(calc(-50% - var(--haloCarousel-gap) - var(--haloCarousel-item-width))) scaleY(0.8) !important;
}

.haloCarousel__item:is(.haloCarousel__item--next) {
  transform: translateX(calc(-50% + var(--haloCarousel-gap) + var(--haloCarousel-item-width))) scaleY(0.8) !important;
}

.haloCarousel__item--active {
  background: #fff;
  z-index: 2;
  transform: translateX(-50%) scaleY(1) !important
}

.haloCarousel__item--side {
  z-index: 1;
}
.haloCarousel__nav {
  width: max-content;
  margin: 0 auto;
}
.haloCarousel__controls {
  position: relative;
  transform-style: preserve-3d;
  overflow: unset !important;
  margin: auto;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  border-radius: 40px;
  background-color: #1b232d;
  height: 44px;
  width: fit-content;
  min-width: 168px;
}

.haloCarousel__controls:before,
.haloCarousel__item--glow:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: translateZ(-1px);
  pointer-events: none;
  transition-property: filter, inset;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  background-clip: content-box !important;
  padding: 1px;
}

.haloCarousel__nav-button--left,
.haloCarousel__nav-button--right {
  cursor: pointer;

  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 40px 0 0 40px;
  background-color: unset;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none !important;
}
.haloCarousel__nav-button--left {
  padding-inline-start: 24px;
}
.haloCarousel__nav-button--right {
  padding-inline-end: 24px;
}

.haloCarousel__nav-icon {
  height: 16px;
  width: 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.haloCarousel__nav-icon svg {
  fill: none;
  stroke: none;
}
.haloCarousel__nav-icon path {
  fill: currentColor;
}
.haloCarousel__counter {

  line-height: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  margin-right: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: transparent;
  border: none;
  margin: 0;
  color: #fff;
  font-weight: 500;
}

.haloCarousel__controls:hover {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
}

.haloCarousel__controls:hover:before{
  filter: blur(15px);
  background: var(--halo-carousel-nav-gradient)
}

.haloCarousel__item--glow:hover:before  {
  filter: blur(15px);
  background: var(--halo-carousel-item-gradient)
}

.haloCarousel_wrapper,
.haloCarousel__controls {
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.23, 1.24, 0.32, 1);
}

@media (max-width: 285px) {
  .haloCarousel_wrapper {
    width:auto;
  }

  
}

@media (max-width: 170px) {
  .haloCarousel__controls {
    min-width: auto;
  }

  
}
@media (max-width: 140px) {
  .haloCarousel__controls {
    height: auto;
    flex-direction: column;
    min-width: auto;
    padding-inline: 10px;
  }
  .haloCarousel__nav-button--right {
    padding-inline-end: 0px;
    padding-left: 0px;
  }
  .haloCarousel__nav-button--left {
    padding-inline-start: 0px;
    padding-right: 0px;
  }

}
