.testimonial-container {
    position: relative;
}

.testimonial {
    top:0;
    left:0;
    margin: 5px;
    padding: 5px;
    height: 120px;
    width: calc(100% - 20px);
    background-color: white;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;}

.testimonial.show {
    opacity: 70%;
}

.testimonial .message:before {
    content: "\201C";
}

.testimonial .message:after {
    content: "\201D";
}

.testimonial .author {
    margin-top: 2px;
    font-size: 0.8rem;
    font-style: italic;
}

.testimonial .author:before {
    content: "\2014";
}