.text-center {
    text-align: center;
}

.text-error {
    color: red;
}

.anchomaximo {
    width: 100%;
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../../assets/images/loader.svg') 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
}

#toast_message_dev {
    visibility: hidden;
    min-width: 250px;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    right: 2%;
    top: 30px;
    font-size: 15px;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.75);
}

    #toast_message_dev.show {
        visibility: visible;
        -webkit-animation: mostrarmitoast 0.5s, ocultarmitoast 0.5s 2.5s;
        animation: mostrarmitoast 0.5s, ocultarmitoast 0.5s 2.5s;
    }

@-webkit-keyframes mostrarmitoast {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes mostrarmitoast {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes ocultarmitoast {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes ocultarmitoast {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

.btn-aux {
    background: #00b7ff;
    border: medium none;
    border-radius: 0 !important;
    color: #FFFFFF;
    display: block;
    font-family: 'Roboto', sans-serif;
    padding: 6px 25px !important;
    margin-top: 15px;
}

    .btn-aux:hover {
        color: #333;
        background-color: #ebebeb;
        border-color: #adadad;
    }

.show_password {
    padding: 7px 5px;
    background: #f6f7f6;
    margin-bottom: 10px;
    display: inline-block;
}
