@charset "UTF-8";
.splide__otherbox {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
  margin-inline: auto;
  padding-inline: 20px;
}

.splide__other {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.splide__arrows {
  display: flex;
  gap: 1rem;
  position: relative;
  top: 0;
  height: 40px;
  transform: translateY(0);
}

.splide__arrow {
  position: relative;
  top: 0;
  width: 40px;
  height: 40px;
  transform: translateY(0);
}

.splide__arrow--prev {
  left: 0;
}

.splide__arrow--next {
  right: 0;
}

.splide__toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-main);
  border-radius: 50%;
  border: none;
}

.splide__toggle .splide__toggle__play {
  width: 10px;
}

.splide__toggle .splide__toggle__pause {
  width: 10px;
}

@media only screen and (max-width: 959px) {

  .splide__toggle {
    width: 35px;
    height: 35px;
  }

}