@import url('https://fonts.googleapis.com/css2?family=Yusei+Magic&display=swap');

[v-cloak] {
    display: none;
}

.swal-button {
    padding: 7px 19px;
    border-radius: 2px;
    background-color: #4962B3;
    font-size: 12px;
    border: 1px solid #3e549a;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
}  

body[data-sidebar="dark"] .vertical-menu { /* BARRA LATERAL */
    background: #000;
    border-left: none;
}

body[data-sidebar=dark] .navbar-brand-box {       /* BARRA SUPERIOR */
    background: #000;
    border-bottom: 1px solid #192a3f
}

#sidebar-menu ul.metismenu > li.mm-active > a { /* SELECCION EN BARRA LATERAL */
    background-color: #2b2a2a !important;
    color: #fff !important
}


body[data-sidebar=dark][data-sidebar-size=sm] .vertical-menu #sidebar-menu > ul ul {    /*COLOR DE BARRA FLOTANTE FONDO*/
    background-color: #000
}

body[data-sidebar=dark][data-sidebar-size=sm] .vertical-menu #sidebar-menu > ul > li:hover > a { /*COLOR DE BARRA FLOTANTE SELECCIONADO*/
    background: #2b2a2a;
    color: #fff
}

:root {
    --bs-dark: #0576b9;
    --bs-success: #0576b9;
}

.btn-success {
    margin-left: 10px;
    margin-right: 10px;
}

.btn-danger {
    background-color:#ff5353;
    margin-left: 10px;
    margin-right: 10px;
}


.btn-dark {                         /*COLOR PLANO*/
    color: #fff;
    background-color: #2b2a2a;
    border-color: #000;
}

.btn-dark:hover {                   /*CUANDO TENGO EL MOUSE SOBRE EL BOTON*/
    color: #fff;
    background-color: #1a1a1a;
    border-color: #2a2e33;
}

.btn-dark:focus {                   /*CUANDO PRESIONAS*/
    color: #fff;
    background-color: #2b2a2a;
    border-color: #000;
    outline: none;
    box-shadow: none;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: black;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: black;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.button-grow {
    cursor: pointer;
    vertical-align: top;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.button-grow:hover {
    transform: scale(1.1);
}

.button-reduce {
    cursor: pointer;
    vertical-align: top;
    transition: all 0.3s ease-in-out;
}

.button-reduce:hover {
    transform: scale(0.9);
}

.filter-delete {
    font-size: 24px;
    color: rgb(149, 153, 173);
    transition: all 0.4s ease 0s;
    vertical-align: bottom;
    height: 38px;
}

.filter-delete:hover{
    transition: all 0.4s ease 0s;
    color:#ff5353
}

.filter-delete:active{
    transform: scale(0.7);
    
}


.icon-animation {
    font-size: 24px;
    margin-right: 10px;
    color: rgb(149, 153, 173);
    transition: all 0.4s ease 0s;
    vertical-align: bottom;
    height:28px;
}

.icon-animation:hover{
    transform: scale(1.1);
    color:#0576b9
}

table {
    width: 100%;
}

.ten {
    width: 10%
}

.fifteen {
    width: 15%
}

.twenty {
    width: 20%;
}

.twentyfive{
    width: 25%;
}

.fourty {
    width: 40%;
}

.thirty {
    width: 30%;
}

.thirtythree {
    width: 33%;
}

.thirteen{
    width: 13%
}

.hundred{
    width: 100%
}

.fixedWidth{
    width: 95px
}


select:invalid {
    color: gray;
}

option {
    color: black;
}


@-webkit-keyframes bounceInLeft { /*TRANSICION IZQUIERDA A DERECHA PARA TABLAS*/
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.checkbox-symbol {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
}

.checkbox-container {
    box-sizing: border-box;
    background: #ffffff;
    color: #222;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
}

    .checkbox-container * {
        box-sizing: border-box;
    }

.checkbox-input {
    position: absolute;
    visibility: hidden;
}

.checkbox {
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    width:min-content;
}

    .checkbox:not(:last-child) {
        margin-right: 6px;
    }

    .checkbox:hover {
        background: rgba(0, 119, 255, 0.06);
    }

    .checkbox span {
        vertical-align: middle;
        transform: translate3d(0, 0, 0);
    }

        .checkbox span:first-child {
            position: relative;
            flex: 0 0 18px;
            width: 18px;
            height: 18px;
            border-radius: 4px;
            transform: scale(1);
            border: 1px solid #cccfdb;
            transition: all 0.3s ease;
        }

            .checkbox span:first-child svg {
                position: absolute;
                top: 3px;
                left: 2px;
                fill: none;
                stroke: #fff;
                stroke-dasharray: 16px;
                stroke-dashoffset: 16px;
                transition: all 0.3s ease;
                transform: translate3d(0, 0, 0);
            }

        .checkbox span:last-child {
            padding-left: 8px;
            line-height: 18px;
        }

    .checkbox:hover span:first-child {
        border-color: #0077ff;
    }

.checkbox-input:checked + .checkbox span:first-child {
    background: #0077ff;
    border-color: #0077ff;
    animation: zoom-in-out 0.3s ease;
}

    .checkbox-input:checked + .checkbox span:first-child svg {
        stroke-dashoffset: 0;
    }

@keyframes zoom-in-out {
    50% {
        transform: scale(0.9);
    }
}

/*/BounceInDown/*//*
.animated {
    background-image: url(/css/images/logo.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 5px;
    margin-bottom: 5px;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        transform: translateY(30px);
    }

    80% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}*/

.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

    .modalDialog:target {
        opacity: 1;
        pointer-events: auto;
    }

    .modalDialog > div {
        width: 400px;
        position: relative;
        margin: 10% auto;
        padding: 5px 20px 13px 20px;
        border-radius: 4px;
        background: white;
        background: -o-linear-gradient(#fff, #999);
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
    }
