@charset "UTF-8";
.standy-slider {
  margin: 1em 0;
}
.standy-item {
  position: relative;
  width: 100%;
}

.standy-item video {
    width: 100%;
    text-align: center;
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

.standy-slider .slick-track {
  display: flex;
  align-items: center;
  background: var(--white);
}

.standy-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.standy-dots li {
    position: relative;
    width: 1.2em;
    height: 1.2em;
    background: var(--brown);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px transparent;
    margin: 1em .5em 0;
    border-radius: 100%;
    transition: all .5s;
    cursor: pointer;
    opacity: .4;
}
.standy-dots li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.standy-dots li.slick-active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--brown);
}