#fPopUp {
    position: fixed;
    bottom: 2px;
    left: 0;
    width: 100vw!important;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 99999;
}
#fPopUp .content {
    font-size: 24px;
    width: 100%;
    background-clip: padding-box;
    background-color: #333;
    outline: 0 none;
    border-radius: 0;
    box-shadow: 0 0 15.5px 2.5px rgba(0, 0, 0, 0.76);
    cursor: pointer;
    padding:  25px 10px;
    min-height: 80px;
    font-family: 'Merriweather';
    display: flex;
    justify-content: center;
    align-items: center;
}
#fPopUp .content.success {
    background-color: #c4df9b;
}
#fPopUp .content.info {
    background-color: #d7e1eb;
}
#fPopUp .content.warning {
    background-color: #f1814c;
}
#fPopUp .content.danger {
    background-color: #f2dede;
}
#fPopUp .content:hover {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px){
    #fPopUp .content {
        font-size: 16px;
    }
}