{#===============================#}
{#        SLIDER WRAPPERS        #}
{#===============================#}

.c-slider-container,
.c-slider {
  width: 100%;
}

{#===============================#}
{#       LOTTIE SLIDE STYLE      #}
{#===============================#}

.c-lottie-slide {
  display: flex;
  justify-content: center;
  align-items: baseline; {# aligns lottie content on smaller screens #}
}

@media (min-width: 992px) {
  .c-lottie-slide {
    display: block; {# revert to block layout on larger screens #}
  }
}

{#===============================#}
{#         SLIDE VISIBILITY      #}
{#===============================#}

.slick-slide.hidden {
  display: none !important;
}

{#===============================#}
{#      SLICK SLIDER DOTS        #}
{#===============================#}

.c-slider .slick-dots {
  position: static;
  margin-top: 25px;
}

.c-slider .slick-dots li {
  width: 30px;
  height: 3px;
  border-radius: 0;
}

.c-slider .slick-dots li.is-selected {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

{#===============================#}
{#         ARROW BUTTONS         #}
{#===============================#}

.c-slider .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -31px;
  border-radius: 0;
  background: transparent;
  outline: none; {# removes browser focus ring #}
}

.c-slider .slick-arrow:hover {
  opacity: 0.4;
}

.c-slider button.slick-prev {
  left: -60px;
  transform: rotate(45deg);
}

.c-slider button.slick-next {
  right: -60px;
  transform: rotate(-135deg);
}

.c-slider button.slick-prev svg,
.c-slider button.slick-next svg {
  display: none; {# hides built-in arrow SVGs if not needed #}
}