.dialogs-background {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba( 25, 25, 25, 0.4);
    display: none;
    z-index: 100000;
}

.dialogs-alert {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 200px;
    margin-left: -150px;
    margin-top: -75px;
    padding: 20px;
    background-color: #FFF;
    z-index: 2000;
    text-align: justify;
    font-size: 18px;
    padding-bottom: 60px;
}

.dialogs-alert-message {}

.dialogs-alert-button {
    text-transform: uppercase;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #000;
}

.dialogs-alert-button:hover, .dialogs-alert-button:active, .dialogs-alert-button:focus {
    background-color: #555;
}

.dialogs-confirm {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 400px;
    margin-left: -150px;
    margin-top: -75px;
    padding: 30px;
    background-color: #FFF;
    z-index: 2000;
    text-align: justify;
    font-size: 18px;
    padding-bottom: 60px;
}

.dialogs-confirm-message {}

.dialogs-confirm-button-cancel {
    text-transform: uppercase;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #000;
}

.dialogs-confirm-button-cancel:hover, .dialogs-confirm-button-cancel:active, .dialogs-confirm-button-cancel:focus {
    background-color: #555;
}

.dialogs-confirm-button-confirm {
    text-transform: uppercase;
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #ef5350;
}

.dialogs-confirm-button-confirm:hover, .dialogs-confirm-button-confirm:focus, .dialogs-confirm-button-confirm:active {
    background-color: #C72323;
}