/**
 * alertifyjs 1.11.0 http://alertifyjs.com
 * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
 * Copyright 2017 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com) 
 * Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/
:root {
    --opacity: 0.9;
    --opacity_hover: 1;
    --boton : #167dde;
    --boton_hover : #167dde;
    --azul: #00205b;
    --fondo-menu_hover : rgb(46, 58, 69);
    --tam_w : 30px;
    --tam_h : 30px;
    --b_position : 4px 3px;
    --b_position2 : 3px 3px;
    --letra : #8a8a8a;
    --border : #167dde;
    --color-v1 : rgba(70, 149, 44, 0.9);
}

.alertify .ajs-dialog {
    background-color: #fff;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0,0,0,.25);
    box-shadow: 0 15px 20px 0 rgba(0,0,0,.25);
    border-radius: 2px
}

.alertify .ajs-header {
    color: #000;
    font-weight: 700;
    background: var(--azul);
    border-bottom: #eee 1px solid;
    border-radius: 2px 2px 0 0
}

.alertify .ajs-body {
    color: #000
}

.alertify .ajs-body .ajs-content .ajs-input {
    display: block;
    width: 100%;
    padding: 8px;
    margin: 4px;
    border-radius: 2px;
    border: 1px solid #ccc
}

.alertify .ajs-body .ajs-content p {
    margin: 0
}

.alertify .ajs-footer {
    background: #fbfbfb;
    border-top: #eee 1px solid;
    border-radius: 0 0 2px 2px
}

.alertify .ajs-footer .ajs-buttons .ajs-button {
    background-color: var(--boton);
    color: white;
    border: 0;
    font-size: 14px;
    font-weight: n;
    text-transform: uppercase;
    border-radius: 4px;
}

.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
    color: #fff;
}

.alertify-notifier .ajs-message {
    background: rgba(255,255,255,.95);
    color: #000;
    text-align: center;
    border: solid 1px #ddd;
    border-radius: 2px
}

.alertify-notifier .ajs-message.ajs-success {
    color: #fff;
    background: rgba(91,189,114,.95);
    text-shadow: -1px -1px 0 rgba(0,0,0,.5)
}

.alertify-notifier .ajs-message.ajs-error {
    color: #fff;
    background: rgba(217,92,92,.95);
    text-shadow: -1px -1px 0 rgba(0,0,0,.5)
}

.alertify-notifier .ajs-message.ajs-warning {
    background: rgba(252,248,215,.95);
    border-color: #999
}
