
#testimonials {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
}

.testimonial {
    height: 330px;
    width: 330px;
    background-image: url(https://www.bobex.be/wp-uploads/sites/5/Testimonial-empty1.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 100px 25px 70px 25px;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-stars {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    font-weight: bold;
}

#testimonials_modal_wrapper > span {
    background-color: #f2f2f2;
    border: 1px solid var(--bobex-blue);
    border-radius: 5px;
    padding: 20px;
    width: 330px;
    margin: auto;
    display: inline-block;
    position: relative;
}

#testimonials_modal_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999999;
}

.testimonials_modal_close {
    position: absolute;
    top: 5px;
    right: 5px;
    border: 1px solid var(--bobex-blue);
    border-radius: 999px;
    padding: 5px;
    width: 25px;
    height: 25px;
    display: block;
    line-height: 12px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.testimonials_modal_close:hover {
    background-color: var(--bobex-blue);
    color: white;
    transform: scale(1.1);
}

.testimonials_read_more {
    color: var(--orangered-bg-page);
    cursor: pointer;
    margin-left: 5px;
}