@charset "UTF-8";

.paragraph--type--slider {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  cursor: -webkit-grab;
  cursor: grab;
}

.paragraph--type--slider:focus-within {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.slick-dots {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

.slick-dots li {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 0 0 auto;
  display: inline-block;
  padding-right: 5px;
  font-size: 0;
  line-height: 0;
}

.slick-dots button {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  font-size: 0;
  line-height: 0;
  padding: 0;
  margin: 0;
}

.slick-dots .slick-active button {
  background-color: #000;
}

.slick-prev {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev::before {
  font-family: sans-serif;
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #000;
}

.slick-prev::before {
  content: "\2190";
}

.slick-next {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-next::before {
  font-family: sans-serif;
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #000;
}

.slick-next::before {
  content: "\2192";
}

.slick-slider__actions-wrapper {
  margin-top: 10px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

.slick-slider__actions-wrapper .slick-arrow {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  margin: 0 10px;
}

.slick-slider__actions-wrapper .slick-dots {
  flex: 1 0 90%;
}

