.quote_slider  span.author {
    padding-left: 90px;
    color: #999691;
    font-family: 'Cormorant Garamond';
}

.quote_slider .container {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    max-width: 62.5rem;
    height: 250px;
    line-height: 0;
}

.quote_slider .container:before {
    content: "”";
    font-size: 4.6875rem;
    height: 150px;
    width: 150px;
    display: block;
    position: absolute;
    left: 60px;
    top: 85px;
}

.quote_slider .container:after {
    content: '';
    display: block;
    height: 150px;
    width: 150px;
    border: solid 1px var(--kmnd-body-color);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    opacity: 0.5;
    top: 0;
    left: 0;
    position: absolute;
}

.quote_slider .slideDiv,
.quote_slider .controls {
    position: absolute;
}

.quote_slider .slideDiv,
.quote_slider .slide {
    width: 100%;
    height: 100%;
}

.quote_slider .slide {
    background-size: cover;
}

.quote_slider .controls {
    top: 40%;
    right: 0;
    padding: 0 0.63rem;
    z-index: 5;
    text-align: center;
}

.quote_slider .button {
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
    border-radius: 50%;
    transition: all ease .2s;
    background: transparent;
    font-size: 20px;
    color: #fff;
    line-height: 38px;
    border: 0;
    position: relative;
}

.quote_slider .button:not(:last-child) {
    margin-bottom: 0.63rem;
}

.quote_slider .slider-quote {
    max-width: 85%;
    display: block;
    font-family: var(--kmnd-body-tertiary-font-family);
    margin: 30px 0 10px 0;
    font-size: 2.375rem;
    line-height: 1.105em;
    letter-spacing: -.01em;
    font-style: italic;
    padding-left: 89px;
    color: var(--kmnd-body-color);
    position: relative;
}

.quote_slider button::before,
.quote_slider button::after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.quote_slider .spin {
    height: 20px;
    width: 20px;
}

.quote_slider .spin::before,
.quote_slider .spin::after {
    top: 0;
    left: 0;
}

.quote_slider .spin::before {
    border: 1px solid transparent;
    content: "\2022";
}

.quote_slider .spin.selected::before, .quote_slider .spin:hover::before {
    border-top-color: #fff;
    border-right-color: #fff;
    border-bottom-color: #fff;
    transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.10s, border-bottom-color 0.15s linear 0.20s;
}

.quote_slider .spin::after {
    border: 0 solid transparent;
}

.quote_slider .spin.selected::after, .quote_slider .spin:hover::after {
    border-top: 1px solid #fff;
    border-left-width: 1px;
    border-right-width: 1px;
    transform: rotate(270deg);
    transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
}

.quote_slider .circle {
    border-radius: 100%;
    box-shadow: none;
}

.quote_slider .circle::before,
.circle::after {
    border-radius: 100%;
}


@media (max-width: 992px) {
    .quote_slider .slider-quote {
        padding-left: 0;
        padding-top: 0;
        font-size: 2rem;
    }

    .quote_slider .slider-quote:before, .quote_slider .slider-quote:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .quote_slider .container:before,
    .quote_slider .container:after {
        display: none;
    }
    .quote_slider span.author {
        padding-left: 10px;
    }
}