.seller-def-list {
  list-style: none;
  padding-left: 0;
}

.seller-def-list li {
  position: relative;
  padding-left: 24px; /* отступ под иконку */
}

.seller-def-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url('/resources/beautery/images/landing/for-sellers/checkmark.svg')
    no-repeat center / contain;
}

.video-block {
  width: 160px;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.video-block.expanded {
  width: 204px;
  height: 360px;
}

@media (min-width: 744px) {
  .video-block.expanded {
    width: 160px;
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .video-block.expanded {
    width: 136px;
    height: 238px;
  }
}

@media (min-width: 1440px) {
  .video-block.expanded {
    width: 204px;
    height: 360px;
  }
}
.clients-ticker__container {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.clients-ticker__wrapper {
  position: relative;
  overflow: hidden;
}

.clients-ticker__row {
  width: 530vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  transform: translate3d(0%, 0, 0);
  white-space: nowrap;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 20s;
}

@media (min-width: 744px) {
  .clients-ticker__row {
    animation-duration: 75s;
  }
}

@keyframes ticker {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* .div1 {
        animation: marquee1 20s infinite linear;
        animation-delay: -20s;
    }

    .div2 {
        animation: marquee2 20s infinite linear;
        animation-delay: -10s;
    } */

/* @keyframes marquee1 {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    @keyframes marquee2 {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-200%);
        }
    } */
