.quote_carousel{
    width:100%;
    position: relative;
}
.quote_carousel_top {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    /* max-width: 100%; */
    height: 148px;
    margin-bottom: 24px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    padding-left:24px;
    padding-right:24px;
}
@media screen and (max-width: 600px) {
    .quote_carousel_top {
        justify-content: flex-start;
    }
    
}

.quote_carousel_top_item {
    text-align: center;
    height: 80px;
    width: 80px;
    margin: 10px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.quote_carousel_top_item.selected {
    opacity: 1.0;
    transform: scale(1.5);
}
.quote_carousel_top_item img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.quote_carousel_bottom{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    height: max-content;
    margin-bottom: 10px;
}
.quote_carousel_bottom_item {
    text-align: center;
    height: max-content;
}