.mypandora-testimonials-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 300px;
    grid-column-gap: 40px;

    overflow-x: scroll;

    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */

    box-sizing: border-box;;
}

.mypandora-comment {
    border-radius: 10px;
    color: #fff;
    box-sizing: border-box;

    padding: 20px 30px;

    display: grid;
    grid-template-rows: 20% 40% auto;
    grid-row-gap: 20px;
    
    height: 100%;
    width: 100%;

    & p {
        color: #fff;
    }

    & .mypandora-comment-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-radius: 10px;

        height: 100%;

        box-sizing: border-box;

        & img {
            background-color: #fff;
            padding: 10px 20px;
            border-radius: 5px;

            height: 100%;
            width: 100%;
            object-fit: contain;;
        }
    }
}

.mypandora-comment-bg-orange {
    background-color: #F55B41;
}

.mypandora-comment-bg-blue {
    background-color: #242269;
}