#qcdbanner {
    position: relative;
    overflow: hidden;
    height: 40px;
    text-align: center;
    z-index: 10
}

.qcdbanner-entry {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.qcdbanner-entry.active {
    opacity: 1;
    z-index: 2;
    transform: translateY(0);
}

.qcdbanner-entry.exit {
    transform: translateY(-100%);
    opacity: 0;
}

.qcdbanner-entry.enter {
    transform: translateY(100%);
    opacity: 0;
}


#qcdbanner .entry-content {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 1rem
}

#qcdbanner p {
    margin-bottom: 0;
}
