﻿/**
 * alertifyjs 1.13.1 http://alertifyjs.com
 * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
 * Copyright 2019 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com) 
 * Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/
.alertify .ajs-dialog {
    background-color: white;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
}

.alertify .ajs-header {
    /* ORIGINAL
    color: black;
    font-weight: bold;
    background: #fafafa;
    border-bottom: #eee 1px solid;
    border-radius: 2px 2px 0 0;*/
    justify-content: flex-start;
}

.alertify .ajs-body {
    color: black;
}

    .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 {
    /* ORIGINAL 
    background: #fbfbfb;
    border-top: #eee 1px solid;
    border-radius: 0 0 2px 2px;*/
    background: var(--color-gris1) !important;
    height: 30px !important;
    padding: 0px 20px !important;
    color: var(--color-azulGTO) !important;
    font-family: Verdana, Arial, Helvetica;
    font-size: 14px !important;
    font-weight: bold !important;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-end;
}

    .alertify .ajs-footer .ajs-buttons .ajs-button {
        background-color: transparent;
        color: #000;
        border: 0;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
    }

        .alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
            color: #3593D2;
        }

        /* - EXTRA: Uriel Vargas Barajas [SEP/2020] */
.alertify-notifier.ajs-right .ajs-message.ajs-visible {
    /*+right: 0px;*/
    /*float: right;*/
}

/* - EXTRA: Uriel Vargas Barajas [SEP/2020] */
.alertify .ajs-commands {
    margin: -20px 5px 0 0;
}

/* - EXTRA: Uriel Vargas Barajas [SEP/2020] */
.ajs-content {
    /*display: inline-block;*/
    padding: 15px 0px;
}

/* - EXTRA: Uriel Vargas Barajas [SEP/2020] */
.alertify-notifier.ajs-top {
    top: 70px;
}

/* ESTILO GENERAL / AVISO 
    Uriel Vargas Barajas [SEP/2020] 
*/
.alertify-notifier .ajs-message {
    color: #FFF;
    background-color: rgba(0, 165, 226, 0.85);
    border: solid 2px #0088BB;
    border-radius: 2px;
    text-align: center;
    border: solid 1px #ddd;
    width: intrinsic; /* Safari/WebKit uses a non-standard name */
    width: -moz-max-content; /* Firefox/Gecko */
    width: -webkit-max-content; /* Chrome */
    min-width: 190px !important;
    max-width: 300px !important;
    min-height: 35px !important;
    /*max-height: 50px !important;*/
    font-size: 14px;
    font-family: Verdana,Arial,Helvetica;
    text-shadow: none !important;
    text-align: left;
    padding: 2px 5px !important;
    margin: 0px;
    transition-duration: 0.5s;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
}

    /* - EXTRA: Uriel Vargas Barajas [SEP/2020] */
    .alertify-notifier .ajs-message:before {
        font-family: 'Glyphicons Halflings';
        font-style: normal;
        font-weight: normal;
        text-decoration: inherit;
        /* Estos ajustes son opcionales, se aplican con la finalidad de dar diseño */
        display: inline-block;
        vertical-align: middle;
        font-size: 18px;
        color: #FFF;
        margin-right: 8px;
        content: "\e086";
    }

/* ESTILO LOG 
    Uriel Vargas Barajas [SEP/2020] 
*/
    .alertify-log {
        background: #D9EDF7;
        padding: 8px 14px;
        border-radius: 4px;
        color: #3A8ABF;
        text-shadow: 0 1px 0 rgba(255,255,255,.5);
        border: 1px solid #BCE8F1;
    }

/* ESTILO EXITO 
    Uriel Vargas Barajas [SEP/2020] 
*/

.alertify-log-success,
.alertify-notifier .ajs-message.ajs-success {
    color: #fff;
    background: rgba(150, 193, 31, 0.85) !important;
    border: 2px solid #769C0E !important;
    /*text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);*/
}

.alertify-log-success:before,
.alertify-notifier .ajs-message.ajs-success:before {
    content: "\e013"; 
}

/* ESTILO ERROR 
    Uriel Vargas Barajas [SEP/2020] 
*/

.alertify-log-error,
.alertify-notifier .ajs-message.ajs-error {
    color: #fff;
    background: rgba(247, 52, 62, 0.85) !important;
    border: 2px solid #E30512 !important;
    /*text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);*/
}

.alertify-log-error:before,
.alertify-notifier .ajs-message.ajs-error:before {
    content: "\e014"; /*"\f00d";*/ /* Valor unicode */
}

/* ESTILO ALERTA 
    Uriel Vargas Barajas [SEP/2020] 
*/
.alertify-log-warning,
.alertify-notifier .ajs-message.ajs-warning {
    color: #FFF; 
    background-color: rgba(242, 114, 33, 0.85); 
    border: solid 2px #E2630E; 
}

.alertify-log-warning:before,
.alertify-notifier .ajs-message.ajs-warning:before {
    content: "\e209";
}