.feedback-popup
{
    transition: all .2s ease;
    background: #1f425df5;
    color: #FFFFFF;
    text-align: center;
    z-index: 9999;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    opacity: 0;
}


.feedback-popup-show
{
    transition: all 1s;
    opacity: 1;
    bottom: 0;
}

.feedback-popup-close
{
    float: right;
    font-size: 20px;
    cursor: pointer;
    line-height: 20px;
    padding: 0 3px;
}

.feedback-popup-close:hover
{
    color: #e21f2f;
    transition: all .2s;
    
}