/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 #supanot-notification-popup {
    position: fixed;
    bottom: 100px;
    right: 10px;
    background-color: #fff;
    border: 1px solid #000;
    padding: 10px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 100000;
}

.popup-title {
    display: block;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    margin-bottom: 0px;
}

.popup-description {
    font-size: 15px;

}

.popup-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.popup-actions button { 
    margin: 0 10px;
    padding: 8px 15px;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.popup-actions button:hover {
    background-color: #000;
    color: #fff;
}

#supanot-accept-notifications {
    background-color: #007cba;
    color: #fff;
}

#supanot-decline-notifications {
    background-color: white;  
    color: #000;
}