.feedbackSlide {
    background: var(--greyPageBackground);
    display: flex;
    flex-direction: column;
}

.feedbackTextBox {
    -webkit-backdrop-filter: blur(var(--blurRadius));
    backdrop-filter: blur(var(--blurRadius));
    color: gray;
    @media (min-width: 1000px) {
        margin: 200px 200px 50px auto;
        font-size: 64px;
    }
    @media (max-width: 999px) {
        margin: 200px 10px 50px auto;
        font-size: 32px;
    }
    padding: 10px 20px;
}

.feedbackCarousel {
    display: flex;
    flex-direction: row;
    scrollbar-width: thin;
}

.feedbackCarouseButton {
    background: none;
    border: none;
    color: black;
    cursor: pointer;
    font-size: 72px;
    margin: 0;
    padding: 0;
    text-shadow: white 0 0 5px;
    z-index: 100;
}

.feedbackCarouseButtonLeft {
    margin-left: -30px; /* arrow char has a lot of empty space, so we move it out of screen */
    margin-right: -50px; /* floating over the content */
}

.feedbackCarouseButtonRight {
    margin-left: -50px; /* floating over the content */
    margin-right: -30px; /* arrow char has a lot of empty space, so we move it out of screen */
}


.feedbackCarouselInner::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.feedbackCarouselInner {
    align-content: space-evenly;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    margin: 25px;
    overflow-x: scroll;
    scroll-behavior: smooth;
}

.feedbackItem {
    -webkit-backdrop-filter: blur(var(--blurRadius));
    backdrop-filter: blur(var(--blurRadius));
    background: rgba(255, 255, 255, 50%);
    color: black;
    display: inline-block;
    flex-basis: 280px;
    flex-grow: 1;
    flex-shrink: 0;
    margin: 25px;
    max-height: 90%;
    overflow: hidden;
    padding: 10px;
}

.feedbackItemDummy {
    flex-basis: 1px;
    flex-grow: 0;
    flex-shrink: 0;
}

.feedbackAuthor {
    font-size: 24px;
}

.feedbackPhoto {
    border-radius: 50%;
    display: inline-block;
    height: 70px;
    margin: auto;
    width: 70px;
}

.feedbackText {
    font-size: 1.1rem;
}
