﻿
/*********************   botones *********************/
.MQbtnAzul {
    --MQBoton1: #2A69A2;
    --MQBoton2: #ffffff;
    --MQColor1: #ffffff;
    width: 200px;
    height: 35px;
    margin: 0.5em;
    background: var(--MQBoton2);
    color: var(--MQBoton1);
    border-radius: 7px;
    border: 1px solid var(--MQBoton1);
    border-radius: 0.625em;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Segoe UI';
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.MQbtnAzul:after {
        content: "";
        background: var(--MQBoton1);
        position: absolute;
        z-index: -1;
        left: -20%;
        right: -20%;
        top: 0;
        bottom: 0;
        transform: skewX(45deg) scale(0, 1);
        transition: all 0.5s;
    }
.MQbtnAzul:hover {
        transform: scale(1.05);
        box-shadow: 0px 0px 10px #000;
    }
.MQbtnAzul:hover:after {
        transform: skewX(45deg) scale(1, 1);
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
.MQbtnAzul:hover span {
        color: var(--MQColor1);
        transition: 0.3s;
    }
.MQbtnAzul span {
        color: var(--MQBoton1);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 2px;
        transition: all 0.3s ease-in;
    }


.MQbtnAma {
    --MQBoton1: #D9BD02;
    width: 200px;
    height: 35px;
    margin: 0.5em;
    background: transparent;
    color: var(--MQBoton1);
    border-radius: 7px;
    border: 1px solid var(--MQBoton1);
    border-radius: 0.625em;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Segoe UI';
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.MQbtnAma:after {
        content: "";
        background: var(--MQBoton1);
        position: absolute;
        z-index: -1;
        left: -20%;
        right: -20%;
        top: 0;
        bottom: 0;
        transform: skewX(45deg) scale(0, 1);
        transition: all 0.5s;
    }
.MQbtnAma:hover {
        transform: scale(1.05);
        box-shadow: 0px 0px 10px #000;
    }
.MQbtnAma:hover:after {
            transform: skewX(45deg) scale(1, 1);
            -webkit-transition: all 0.5s;
            transition: all 0.5s;
        }
.MQbtnAma:hover span {
            color: #fff;
            transition: 0.3s;
        }
.MQbtnAma span {
        color: var(--MQBoton1);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 2px;
        transition: all 0.3s ease-in;
    }


.MQbtnVerde {
    --MQBotonOK1: #1F8724;
    --MQBotonOK2: #3BFF44;
    --MQColor1: #ffffff;
    width: 200px;
    height: 35px;
    margin: 0.5em;
    background: var(--MQBotonOK2);
    color: var(--MQBotonOK1);
    border-radius: 7px;
    border: 1px solid var(--MQBotonOK1);
    border-radius: 0.625em;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Segoe UI';
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.MQbtnVerde:after {
        content: "";
        background: var(--MQBotonOK1);
        position: absolute;
        z-index: -1;
        left: -20%;
        right: -20%;
        top: 0;
        bottom: 0;
        transform: skewX(45deg) scale(0, 1);
        transition: all 0.5s;
    }
.MQbtnVerde:hover {
        transform: scale(1.05);
        box-shadow: 0px 0px 10px #000;
    }
.MQbtnVerde:hover:after {
            transform: skewX(45deg) scale(1, 1);
            -webkit-transition: all 0.5s;
            transition: all 0.5s;
        }
.MQbtnVerde:hover span {
        color: var(--MQColor1);
        transition: 0.3s;
    }
.MQbtnVerde span {
        color: var(--MQBotonOK1);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 2px;
        transition: all 0.3s ease-in;
    }


.MQbtnRojo {
    --MQBotonCan1: #EB3131;
    width: 200px;
    height: 35px;
    margin: 0.5em;
    background: transparent;
    color: var(--MQBotonCan1);
    border-radius: 7px;
    border: 1px solid var(--MQBotonCan1);
    border-radius: 0.625em;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Segoe UI';
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.MQbtnRojo:after {
        content: "";
        background: var(--MQBotonCan1);
        position: absolute;
        z-index: -1;
        left: -20%;
        right: -20%;
        top: 0;
        bottom: 0;
        transform: skewX(45deg) scale(0, 1);
        transition: all 0.5s;
    }
.MQbtnRojo:hover {
        transform: scale(1.05);
        box-shadow: 0px 0px 10px #000;
    }
.MQbtnRojo:hover:after {
            transform: skewX(45deg) scale(1, 1);
            -webkit-transition: all 0.5s;
            transition: all 0.5s;
        }
.MQbtnRojo:hover span {
            color: #fff;
            transition: 0.3s;
        }
.MQbtnRojo span {
        color: var(--MQBotonCan1);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 2px;
        transition: all 0.3s ease-in;
    }

/* boton descargar con imagen */
.MQbuttonIMG {
    position: relative;
    width: 250px;
    height: 35px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Segoe UI';
    border-radius: 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #1D5887;
    background-color: #2D86CF;
    overflow: hidden;
}
.MQbuttonIMG, .MQbuttonIMG__icon, .MQbuttonIMG__text {
    transition: all 0.3s;
}
.MQbuttonIMG .MQbuttonIMG__text {
        transform: translateX(22px);
        color: #fff;
        font-weight: 500;
    }
.MQbuttonIMG .MQbuttonIMG__icon {
        position: absolute;
        transform: translateX(209px);
        height: 100%;
        width: 39px;
        background-color: #1D5887;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
.MQbuttonIMG .svg {
        width: 20px;
        fill: #fff;
    }
.MQbuttonIMG:hover {
        background: #1D5887;
        transform: scale(1.05);
    }
.MQbuttonIMG:hover .MQbuttonIMG__text {
            color: transparent;
        }
.MQbuttonIMG:hover .MQbuttonIMG__icon {
            width: 248px;
            transform: translateX(0);
        }
.MQbuttonIMG:active .MQbuttonIMG__icon {
        background-color: #2D86CF;
        color: #fff;
    }
.MQbuttonIMG:active {
        border: 1px solid #2D86CF;
    }

/* boton retorno tope superior izq. pagina */
.MQBtnCan {
    --black: #000000;
    --ch-black: #141414;
    --eer-black: #1b1b1b;
    --night-rider: #1D5887;
    --white: #ffffff;
    --af-white: #f3f3f3;
    --ch-white: #e1e1e1;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Segoe UI';
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: var(--white);
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: var(--night-rider);
}
.MQBtnCansign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.MQBtnCansign svg {
        width: 17px;
    }
.MQBtnCansign svg path {
    fill: var(--af-white);
}
.MQBtnCantext {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: var(--af-white);
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: .3s;
}
.MQBtnCan:hover {
    width: 125px;
    border-radius: 5px;
    transition-duration: .3s;
}
.MQBtnCan:hover .MQBtnCansign {
        width: 30%;
        transition-duration: .3s;
        padding-left: 20px;
    }
.MQBtnCan:hover .MQBtnCantext {
        opacity: 1;
        width: 70%;
        transition-duration: .3s;
        padding-right: 10px;
    }
.MQBtnCan:active {
    transform: translate(2px,2px);
}


/*********************** estilos input *********************************/
/* FORMATO PARA INPUT FIELD CON LABEL INCLUIDA */
.MQform1_group {
    position: relative;
}
.MQform1_field {
    border: 1px solid #313a46 !important;
    border-radius: 50rem;
    box-sizing: border-box;
    color: #313a46;
    height: 40px;
    padding: 0rem 15px;
    transition: .5s linear;
}
.MQform1_field:placeholder {
        color: transparent;
    }
.MQform1_field:placeholder-shown ~ .MQform1_label {
        top: 10px;
        border-right: none;
        border-left: none;
    }
.MQform1_label {
    background-color: white;
    border-left: 1px solid #313a46;
    border-right: 1px solid #313a46;
    color: #313a46;
    display: block;
    font-size: .9em;
    margin-left: 10px;
    padding: 0 10px;
    pointer-events: none;
    position: absolute;
    top: -10px;
    transition: 0.2s;
}
.MQform1_field:focus {
    border: 1px solid #007bff !important;
    outline: none;
    box-shadow: 4px 4px 10px #070707;
}
.MQform1_field:focus ~ .MQform1_label {
        background-color: white;
        border-right: 1px solid #007bff;
        border-left: 1px solid #007bff;
        color: #007bff;
        font-size: .9em;
        margin-left: 10px;
        padding: 0 10px;
        position: absolute;
        top: -10px;
        transition: 0.2s;
    }

/* INPUT FIELD SIN LABEL */
.MQInput {
    height: 40px;
    border: 1px solid transparent;
    outline: none;
    border-radius: 50rem;
    border-bottom: 2px solid #3f3f3f;
    caret-color: #3f3f3f;
    background-color: #ffffff;
    padding: 5px;
    transition: .5s linear;
    font-family: monospace;
    letter-spacing: 1px;
}
.MQInput:focus {
        border: 1px solid #1160C6;
        caret-color: #1160C6;
        color: #1160C6;
        box-shadow: 4px 4px 10px #070707;
    }
.MQInput:focus::placeholder {
            color: #1160C6;
        }

.MQform1_field_error {
    border: 1px solid #313a46 !important;
    border-radius: 50rem;
    box-sizing: border-box;
    color: #313a46;
    height: 40px;
    padding: 0rem 15px;
    transition: .5s linear;
}

.MQform1_field_error::placeholder {
        color: transparent;
    }

.MQform1_field_error:placeholder-shown ~ .MQform1_field_error {
        top: 10px;
        border-right: none;
        border-left: none;
    }

.MQform1_field_error {
    background-color: white;
    border-left: 1px solid #313a46;
    border-right: 1px solid #313a46;
    color: #313a46;
    display: block;
    font-size: .9em;
    margin-left: 10px;
    padding: 0 10px;
    pointer-events: none;
    position: absolute;
    top: -10px;
    transition: 0.2s;
}

.MQform1_field_error:focus {
        border: 1px solid #007bff !important;
        outline: none;
        box-shadow: 4px 4px 10px #070707;
    }

.MQform1_field_error:focus ~ .MQform1_field_error {
            background-color: white;
            border-right: 1px solid #007bff;
            border-left: 1px solid #007bff;
            color: #007bff;
            font-size: .9em;
            margin-left: 10px;
            padding: 0 10px;
            position: absolute;
            top: -10px;
            transition: 0.2s;
        }

/* INPUT FIELD SIN LABEL */


/************************* loader para esperar carga *******************/
.MQloader1 {
    width: 120px;
    height: 50px;
    opacity: 1;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Segoe UI';
    border-width: 1px;
    position: relative;
    padding: 5px;
}    
.MQloader1-text {
    position: absolute;
    top: 0;
    padding: 0;
    margin: 0;
    width:max-content;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Segoe UI';
    animation: text_713 3.5s ease both infinite;
   letter-spacing: 1px;
}
.MQload1 {
    background-color: #DB9F1D;
    border-radius: 50px;
    display: block;
    height: 16px;
    width: 16px;
    bottom: 0;
    opacity: 1;
    position: absolute;
    transform: translateX(64px);
    animation: loading_713 3.5s ease both infinite;
}
.MQload1:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        opacity: 1;
        background-color: #236DBD;
        border-radius: inherit;
        animation: loading2_713 3.5s ease both infinite;
    }
@keyframes text_713 {
    0% {
        letter-spacing: 2px;
        transform: translateX(0px);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        font-family: 'Segoe UI';
    }

    40% {
        letter-spacing: 4px;
        transform: translateX(26px);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        font-family: 'Segoe UI';
    }

    80% {
        letter-spacing: 2px;
        transform: translateX(32px);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        font-family: 'Segoe UI';
    }

    90% {
        letter-spacing: 4px;
        transform: translateX(0px);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        font-family: 'Segoe UI';
    }

    100% {
        letter-spacing: 2px;
        transform: translateX(0px);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        font-family: 'Segoe UI';
    }
}
@keyframes loading_713 {
    0% {
        width: 16px;
        transform: translateX(0px);
    }

    40% {
        width: 100%;
        transform: translateX(0px);
    }

    80% {
        width: 16px;
        transform: translateX(64px);
    }

    90% {
        width: 100%;
        transform: translateX(0px);
    }

    100% {
        width: 16px;
        transform: translateX(0px);
    }
}
@keyframes loading2_713 {
    0% {
        transform: translateX(0px);
        width: 16px;
    }

    40% {
        transform: translateX(0%);
        width: 80%;
    }

    80% {
        width: 100%;
        transform: translateX(0px);
    }

    90% {
        width: 80%;
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0px);
        width: 16px;
    }
}

.Loadinput::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #1D5887;
    padding: 10px 20px;
    border-radius: 7px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}
.Loadinput::file-selector-button:hover {
        background: #0d45a5;
        transform: scale(1.05);
        box-shadow: 0px 0px 10px #000;
}
/**** waiting loader */

.MQloader2Circulos {
    width: 6em;
    height: 6em;
    font-size: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.MQloader2Circulos .face {
        position: absolute;
        border-radius: 50%;
        border-style: solid;
        animation: animate023845 3s linear infinite;
    }
.MQloader2Circulos .face:nth-child(1) {
            width: 100%;
            height: 100%;
            color: #236DBD;
            border-color: currentColor transparent transparent currentColor;
            border-width: 0.2em 0.2em 0em 0em;
            --deg: -45deg;
            animation-direction: normal;
        }
.MQloader2Circulos .face:nth-child(2) {
            width: 70%;
            height: 70%;
            color: #DEB703;
            border-color: currentColor currentColor transparent transparent;
            border-width: 0.2em 0em 0em 0.2em;
            --deg: -135deg;
            animation-direction: reverse;
        }
.MQloader2Circulos .face .circle {
            position: absolute;
            width: 50%;
            height: 0.1em;
            top: 50%;
            left: 50%;
            background-color: transparent;
            transform: rotate(var(--deg));
            transform-origin: left;
        }
.MQloader2Circulos .face .circle::before {
                position: absolute;
                top: -0.5em;
                right: -0.5em;
                content: '';
                width: 1em;
                height: 1em;
                background-color: currentColor;
                border-radius: 50%;
                box-shadow: 0 0 2em, 0 0 4em, 0 0 6em, 0 0 8em, 0 0 10em, 0 0 0 0.5em rgba(255, 255, 0, 0.1);
            }
@keyframes animate023845 {
    to {
        transform: rotate(1turn);
    }
}

.MQloader2 {
    height: 50px;
    width: 50px;
    position: relative;
}
.block {
    height: 10px;
    width: 10px;
    background-color: #236DBD;
    position: absolute;
    opacity: 0;
}
.b_1 {
    top: 0;
    left: 0;
    animation: load 2s infinite;
    animation-delay: 0;
}
.b_2 {
    top: 0;
    left: 20px;
    animation: load 2s infinite;
    animation-delay: 0.25s;
}
.b_3 {
    top: 0;
    right: 0;
    animation: load 2s infinite;
    animation-delay: 0.5s;
}
.b_4 {
    top: 20px;
    right: 0;
    animation: load 2s infinite;
    animation-delay: 0.75s;
}
.b_5 {
    bottom: 0;
    right: 0;
    animation: load 2s infinite;
    animation-delay: 1s;
}
.b_6 {
    bottom: 0;
    left: 20px;
    animation: load 2s infinite;
    animation-delay: 1.25s;
}
.b_7 {
    bottom: 0;
    left: 0;
    animation: load 2s infinite;
    animation-delay: 1.5s;
}
.b_8 {
    top: 20px;
    left: 0;
    animation: load 2s infinite;
    animation-delay: 1.75s;
}

@keyframes load {
    0% {
        opacity: 1;
    }

    85% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.MQspinner {
    width: 60px;
    height: 60px;
    position: relative;
}
.MQspinner .dot {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
}
.MQspinner .dot::after {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background-color: #1A518C;
    }
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.MQspinner .dot {
    animation: spin 2s infinite;
}
.MQspinner .dot:nth-child(2) {
        animation-delay: 100ms;
    }
.MQspinner .dot:nth-child(3) {
        animation-delay: 200ms;
    }
.MQspinner .dot:nth-child(4) {
        animation-delay: 300ms;
    }
.MQspinner .dot:nth-child(5) {
        animation-delay: 400ms;
    }


.MQloader3 {
    border: 10px solid #1A518C;
    border-top: 10px solid #D99D1D;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}
/* Agrega efectos */
.MQloader3::after {
        content: "";
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 50%;
        box-shadow: inset 0px 0px 15px #1A518C;
    }
/* Rotar el circulo */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.MQloader4 {
    position: relative;
}
.MQloader4 span {
        position: absolute;
        color: #E69A17;
        transform: translate(-50%, -50%);
        font-size: 38px;
        font-weight: 500;
        font-family: 'Segoe UI';
        letter-spacing: 5px;
    }
.MQloader4 span:nth-child(1) {
        color: #E69A17;
        -webkit-text-stroke: 0.3px rgb(0, 57, 244);
    }
.MQloader4 span:nth-child(2) {
            color: #234CB0;
            -webkit-text-stroke: 1px #234CB0;
            animation: uiverse723 3s ease-in-out infinite;
        }
@keyframes uiverse723 {
    0%, 100% {
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}


/******************** toggle **************************/

.MQcheckbox-1 {
    position: relative;
    width: 50px;
    height: 15px;
    margin: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.MQcheckbox-1 label {
        position: absolute;
        top: 0;
        left: 0;
        width: 50px;
        height: 15px;
        border-radius: 15px;
        background: linear-gradient(to bottom, #b3b3b3, #e6e6e6);
        cursor: pointer;
        transition: all 0.3s ease;
    }
.MQcheckbox-1 label:after {
            content: '';
            position: absolute;
            top: 1px;
            left: 1px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background-color: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
.MQcheckbox-1 input[type="checkbox"]:checked + label {
        background: linear-gradient(to bottom, #4D72E2, #4E8BE2);
    }
.MQcheckbox-1 input[type="checkbox"]:checked + label:after {
            transform: translateX(34px);
        }
.MQcheckbox-1 label:hover {
        background: linear-gradient(to bottom, #b3b3b3, #e6e6e6);
    }
.MQcheckbox-1 label:hover:after {
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
.MQcheck1-ON {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 15px;
}


.MQcontainer1 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.MQcontainer1 {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}
/* Create a custom checkbox */
.MQcheckmark1 {
    position: relative;
    top: 0;
    left: 0;
    height: 1.3em;
    width: 1.3em;
    border: 2px solid #0044BA;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.MQcontainer1 input:hover ~ .MQcheckmark1 {
    border: 2px solid #0044BA;
}

/* When the checkbox is checked */
.MQcontainer1 input:checked ~ .MQcheckmark1 {
    /* box-shadow: 0 0 20px rgba(9, 117, 241, 0.8);*/
    border: 2px solid #0044BA;
}

/* Create the MQcheckmark1/indicator (hidden when not checked) */
.MQcheckmark1:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the MQcheckmark1 when checked */
.MQcontainer1 input:checked ~ .MQcheckmark1:after {
    display: block;
}

/* Style the MQcheckmark1/indicator */
.MQcontainer1 .MQcheckmark1:after {
    left: 0.45em;
    top: -0.07em;
    width: 0.25em;
    height: 0.8em;
    border: solid #0044BA;
    border-width: 0 0.15em 0.15em 0;
    transform: rotate(45deg);
}



.MQcontainer2 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    border-radius: 5px;
    width: 0;
}
.MQcontainer2 {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    user-select: none;
}
.MQcheckmark2 {
    position: relative;
    top: 0;
    left: 0;
    height: 1.4em;
    width: 1.4em;
    background-color: #fff;
    transition: all 0.5s;
}
.MQcontainer2 input:checked ~ .MQcheckmark2 {
    border: 2px solid #0044BA;
}
.MQcheckmark2:after {
    content: "";
    position: absolute;
    display: none;
}
.MQcontainer2 input:checked ~ .MQcheckmark2:after {
    display: block;
}
.MQcontainer2 .MQcheckmark2:after {
    left: 0.75em;
    top: -0.15em;
    width: 0.45em;
    height: 1em;
    border: solid #0044BA;
    border-width: 0 0.25em 0.25em 0;
    transform: rotate(45deg);
    transition: all 0.5s;
}


.MQcheckbox-3 {
    box-sizing: border-box;
    --background-color: #fff;
    --checkbox-height: 20px;
}
@-moz-keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}
@-webkit-keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}
@keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}
@keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}
@-webkit-keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}
@-moz-keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}
.MQcheckbox-3 input[type=checkbox] {
    display: none;
}
.MQcheckbox-3 .MQcheck-box3 {
    height: var(--checkbox-height);
    width: var(--checkbox-height);
    background-color: transparent;
    border: calc(var(--checkbox-height) * .1) solid #000;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
}
.MQcheckbox-3 .MQcheck-box3::before,
.MQcheckbox-3 .MQcheck-box3::after {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        height: 0;
        width: calc(var(--checkbox-height) * .2);
        background-color: #0044BA;
        display: inline-block;
        -moz-transform-origin: left top;
        -ms-transform-origin: left top;
        -o-transform-origin: left top;
        -webkit-transform-origin: left top;
        transform-origin: left top;
        border-radius: 5px;
        content: " ";
        -webkit-transition: opacity ease 0.5;
        -moz-transition: opacity ease 0.5;
        transition: opacity ease 0.5;
    }
.MQcheckbox-3 .MQcheck-box3::before {
        top: calc(var(--checkbox-height) * .72);
        left: calc(var(--checkbox-height) * .41);
        box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color);
        -moz-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
.MQcheckbox-3 .MQcheck-box3::after {
        top: calc(var(--checkbox-height) * .37);
        left: calc(var(--checkbox-height) * .05);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .MQcheckbox-3 input[type=checkbox]:checked + .MQcheck-box3,
    .MQcheckbox-3 .MQcheck-box3.checked {
        border-color: #0044BA;
    }
.MQcheckbox-3 input[type=checkbox]:checked + .MQcheck-box3::after,
.MQcheckbox-3 .MQcheck-box3.checked::after {
            height: calc(var(--checkbox-height) / 2);
            -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
            -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
            -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
            animation: dothabottomcheck-19 0.2s ease 0s forwards;
        }
.MQcheckbox-3 input[type=checkbox]:checked + .MQcheck-box3::before,
.MQcheckbox-3 .MQcheck-box3.checked::before {
            height: calc(var(--checkbox-height) * 1.2);
            -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
            -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
            -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
            animation: dothatopcheck-19 0.4s ease 0s forwards;
        }

/***************** tooltip *******************/

.MQtooltip {
    --MQBotonTT1: #3BFF44;
    --MQBotonTT2: #000000;
    position: relative;
    display: inline-block;
    cursor: pointer;
}
    .MQtooltip button {
        background-color: var(--MQBotonTT2);
        color: var(--MQBotonTT1);
        border: solid 1px;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 2px;
        font-family: 'Segoe UI';
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.2s ease-out;
    }
        .MQtooltip button:hover {
            background-color: var(--MQBotonTT1);
            color: var(--MQBotonTT2);
            transform: scale(1.05);
        }
.MQtooltip:hover .MQtooltiptext {
        visibility: visible;
        opacity: 1;
    }
.MQtooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
    opacity: 0;
    transition: opacity 0.3s;
}
.MQtooltiptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

/*****************  FONT PARA LABELS ************/
.MQfont_MenuNEGRO {
    display: block;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Segoe UI';
}
.MQfont_BLANCO {
    display: block;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Segoe UI';
}
.MQfont_NEGRO {
    display: block;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Segoe UI';
}
.MQfont_AZUL{
    display: block;
    color: #236DBD;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Segoe UI';
}
.MQfont_VERDE {
    display: block;
    color: forestgreen;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Segoe UI';
}
.MQfont_ROJO {
    display: block;
    color: orangered;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Segoe UI';
}
/*.sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem !important;
    padding: 0.8125rem 0.5rem;
    overflow: hidden;
    font-size: 1.25rem;
    white-space: nowrap;
    border-bottom: 1px solid var(--bs-border-color);
    transition: width 0.3s ease-in-out;
}*/
.sidebar-brand .brand-link .brand-image {
        float: left;
        width: 300px !important;
        max-height: 70px !important;
        line-height: 0.8;
}

.dropdown-menu {
    --bs-dropdown-divider-bg: var(--bs-light-text-emphasis) !important;
    --bs-dropdown-link-active-color: var(--bs-highlight-color) !important;
    --bs-dropdown-link-active-bg: var(--bs-body-color) !important;
    --bs-dropdown-header-color: var(--bs-light-text-emphasis) !important;
}
/******* Cambia CSS en Validaciones */
.inputerror {
    border-color: red !important;
}

.labelerror {
    border-color: red !important;
    color: red !important;
}


.MQform1_group.has-textarea label {
    margin-top: -8px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #305e90;
    background-color: #f0faff;
    border-color: transparent transparent #f3f3f3;
    border-bottom: 6px solid !important;
    font-size: 18px;
    font-weight: bold;
}