body.quote-animate {
    overflow: hidden;
}

.famous-quotes {
    width: 100%;
    height: 100%;
    background-color: #181828;
    color: #edeffe;
    position: absolute;
    z-index: 9999;
    overflow: hidden;
    padding: 0 80px;
    display: none;
}

.famous-quotes.shown {
    display: block;
}

.famous-quotes .quote-animation {
    height: 100%;
}

.famous-quotes .quote .quote-wrap {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.famous-quotes .quote .quote-wrap .mark-icon {
    width: 50px;
    vertical-align: top;
}

.famous-quotes .quote .quote-wrap .mark-icon span {
    display: block;
    font-size: 100px;
    font-family: sans-serif;
    line-height: 0.8;
    font-weight: 200;
    height: 60px;
}

.famous-quotes .quote .quote-wrap .separator {
    background-color: #edeffe;
    width: 3px;
}

.famous-quotes .quote .quote-wrap .text {
    padding-left: 20px;
    width: calc(100% - 53px);
    font-size: 24px;
    line-height: 1.8;
    font-style: italic;
}

.famous-quotes .quote .quote-wrap .name {
    text-align: right;
    padding-top: 40px;
    padding-right: 50px;
    font-size: 22px;
}

@media (max-width: 919px) and (min-width: 650px) {
    .famous-quotes {
        padding: 0 20px
    }
}

@media (max-width: 649px) {
    .famous-quotes {
        padding: 0 10px
    }

    .famous-quotes .quote .quote-wrap .mark-icon {
        width: 35px;
    }

    .famous-quotes .quote .quote-wrap .mark-icon span {
        font-size: 74px;
        height: 40px;
    }

    .famous-quotes .quote .quote-wrap .text {
        font-size: 20px;
        line-height: 1.6;
        width: calc(100% - 38px);
    }

    .famous-quotes .quote .quote-wrap .name {
        padding-right: 0;
    }
}