.elementor-widget-ninetenowtoo-image-carousel-widget {
  overflow: visible;
}
.image-carousel {
  width: calc(100% - 40px);
  height: 50px;
  overflow: hidden;
  position: relative;
  margin-left: 45px;
}
.image-carousel:before,
.image-carousel:after {
  position: absolute;
  top: 0;
  width: 6rem;
  height: 100%;
  content: "";
  z-index: 1;
  pointer-events: none;
}
.image-carousel:before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
  display: none;
}
.image-carousel:after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.image-carousel-content {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  width: max-content;
  animation: image-carousel-scrolling var(--image-carousel-animation-duration) linear infinite;
  will-change: transform;
}
.image-carousel-content:hover {
  animation-play-state: paused;
}

@keyframes image-carousel-scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--image-carousel-scroll-width, 0px))); }
}

.image-carousel-content li {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  white-space: nowrap;
  padding: 6px 8px;
  border: 1px solid #d9d9d9;
  margin: 0 2.5px;
  position: relative;
}

.image-carousel-link,
.image-carousel-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.image-carousel-floating-tooltip {
  position: fixed;
  z-index: 99999;
  transform: translate(-50%, calc(-100% - 8px));
  min-width: 6px;
  max-width: 200px;
  padding: 10px 14px;
  border-radius: 0;
  background: #1C1C1E;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.image-carousel-floating-tooltip::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1C1C1E;
}

ul.image-carousel-content li img,
ul.image-carousel-content li svg,
ul.image-carousel-content li i {
  filter: grayscale(100%);
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  font-size: 20px;
  line-height: 1;
}

ul.image-carousel-content li svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .image-carousel:before,
  .image-carousel:after {
    width: 3rem;
  }
}
