

.animated-border-quote {
    display: inline-block;
    margin: 1em;
    max-width: 20em;
    overflow: hidden;
}
.animated-border-quote blockquote {
    background-color: #fff;
    border: solid 2px #757575;
    display: inline-block;
    margin: 0;
    padding: 1em;
    position: relative;
}
.animated-border-quote blockquote:before {
    animation: clockwise 30s infinite linear;
    background-color: #fff;
    bottom: 10%;
    content: "";
    left: 0;
    opacity: 0.5;
    position: absolute;
    right: 0;
    top: 10%;
}
.animated-border-quote blockquote:after {
    animation: counter 30s infinite linear;
    background-color: #fff;
    bottom: 10%;
    content: "";
    left: 0;
    opacity: 0.5;
    position: absolute;
    right: 0;
    top: 10%;
}
.animated-border-quote blockquote cite {
    display: block;
    font-style: italic;
    text-align: right;
}
.animated-border-quote blockquote cite:before {
    content: "- ";
}
.animated-border-quote blockquote > * {
    position: relative;
    z-index: 1;
}
@keyframes clockwise {
    0% {
        transform: rotate(0);
   }
    100% {
        transform: rotate(360deg);
   }
}
@keyframes counter {
    0% {
        transform: rotate(0);
   }
    100% {
        transform: rotate(-360deg);
   }
}


.blockquote-container
{
    width: 90%;
    margin: auto;
}


