.slideup-note {
    transition: all .5s ease-in-out;
    margin: -41px auto 0;
    height: 42px;
}

.slideup-note h4 {
    background-color: #f67c7d;
    color: #fff;
    margin: 0;
    font-size: 18px;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 10px 10px 0 0;
}

.slideup-note h4:after {
    font-family: 'WnFontAwesome';
    content: "\f077";
    float: right;
    font-size: 16px;
}

.slideup-note p {
    font-size: 17px;
    padding: 0 20px;
    height: 0;
    background-color: #fff;
    transition: all .5s ease-in-out;
    overflow: hidden;
}

.slideup-note:hover {
    margin-top: -200px;
}

.slideup-note:hover h4:after {
    content: "\f078";
}

.slideup-note:hover p {
    padding: 20px;
    height: 159px;
}