.quote-carousel {
    max-width: 90vw;
    margin: auto auto 100px auto;

    &::before {
        background-repeat: no-repeat;
        background-size: 100% auto;
        color: var(--color-quote-block);
        content: '';
        display: inline-block;
        height: 55px;
        left: 50%;
        position: absolute;
        margin-top: -30px;
        transform: translateX(-50%);
        width: 55px;
        z-index: 1;
    }

    @media all and (min-width: 47em) {
        max-width: 70vw;
    }

    p {
        color: var(--color-neutral-gray-70);
    }

    .quote-carousel-container {
        &.row {
            margin: 0;
        }
    }

    .quote {
        display: block;
    }

    .quote-slide {
        min-height: 300px;
        padding: 3.75rem;
    }

    .quote-text {
        color: #4a4f54;
        font-size: 20px;
        font-weight: 400;
        font-style: italic;
        line-height: 1.4;
        text-align: center;
    }

    h3.quote-author {
        color: var(--color-quote-block-author);
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 0px;
    }

    h4.quote-author-title {
        color: var(--color-quote-block-author-title);
        font-size: 20px;
        font-weight: 400;
        font-style: italic;
        line-height: 1.4;
        text-align: center;
        margin-top: 0px;
    }

    /* Carousel specific styles*/
    .tns-outer {
        @media all and (max-width: 47em) {
            width: 80vw;
            margin: auto;
        }
    }

    .tns-horizontal.tns-subpixel > .tns-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #carousel-custom-quotes {
        display: flex;
        align-items: center;
    }

    #carousel-custom-quotes-ow {
        border-top: 1px solid #d7d7d8;
        border-bottom: 1px solid #d7d7d8;

        .row {
            margin: 0;
        }

        .tns-controls button[data-controls="next"] {
            margin-top: 120px;
            right: 10vw;

            @media all and (max-width: 47em) {
                /* margin-top: 261px; */
                right: 2vw;
            }

            &:before {
                content: '';
                color: #fff;
                background: rgba(255, 255, 255, 0);
                border-radius: 30px;
                font-size: 25px;
                padding: 10px 26px 15px 29px;
                color: #FE8F3F;
            }

            &:hover {
                &:before {
                
                }
            }
        }

        .tns-controls button[data-controls="prev"] {
            margin-top: 120px;
            left: 10vw;

            @media all and (max-width: 47em) {
                /* margin-top: 261px; */
                left: 2vw;
            }

            &:before {
                content: '';
                color: #fff;
                border-radius: 30px;
                background: rgba(255, 255, 255, 0);
                font-size: 25px;
                padding: 10px 26px 15px 29px;
                color: var(--color-quote-button-before);
            }

            &:hover {
                &:before {
                }
            }
        }
    }
}