#quotes {
    padding-top: 40px;
    flex: 0 0 240px;
    position: relative;
    font-size: .9em;
}

#quotes #quotes_loadingbar {
    position: absolute;
    height: 5px;
    width: 0%;
    bottom: 5px;
    left: 0;
    margin: 0;
    background-color: white;
    opacity: 1;
}

#quotes #quotes_indicatorbars {
    position: absolute;
    height: 5px;
    width: 100%;
    bottom: 0px;
    left: 0;
    margin: 0;
    display: flex;
}
#quotes #quotes_indicatorbars div {
    flex: 1 1;
    height: 100%;
    opacity: .5;
    background-color: white;
    transition: 1s ease-out;
}
#quotes #quotes_indicatorbars div.active {
    opacity: 1;
    transition: .5s ease-in;
}


#quotes .left, #quotes .right {
    color: white;
    position: absolute;
    font-size: 3em;
    padding: 10px 20px;
    box-sizing: border-box;
    text-shadow: 0 0 5px gray;

    cursor: pointer;

    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

#quotes .left:hover, 
#quotes .right:hover {
    text-shadow: 0 0 10px black;
}

#quotes section, #quotes section p  {
    cursor: none;
    pointer-events: none;
}

#quotes .left {
    left: 0;
    top: 0;
}

#quotes .right {
    right: 0;
    bottom: 10px;
}

#quotes section {
    position: absolute;
    width: 80%;
    left: 10%;
    right: 10%;
    opacity: 0;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#quotes section.hidden {
    position: absolute;
    width: 80%;
    right: -100%;
    opacity: 0;
    transition: right 1.5s, opacity 1.5s;
}

#quotes section.active {
    opacity: 1;
    left: 10%;
    right: 10%;
    transition: opacity 1.5s 0.5s;
}

#quotes section p:first-child {
    font-size: 1.6em;
    line-height: 1.5em;
    font-weight: 300;
    text-align: center;
}

#quotes section p:last-child {
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
}

@media(max-width: 600px){
    #quotes {
        color: white;
        box-shadow: 0 0 5px black;
    }
}


@media(min-width: 600px){
    #quotes {
        background-color: rgba(255,255,255,.4);
    }
}