﻿:root {
    --mostaza: #DFB021;
    --negro: #565656;
    --blanco: #ffffff;
    --gris-claro: #fafafa;
    --rojo-bordo: #C92B42;
    --azul: #316a6f;
    --azul-hover: #160549;
    --verde: #3c998f;
    --violeta: #875597;
    --transparent-blanco: rgba(255, 255, 255, 0.8);
    --transparent-mostaza: rgba(225, 163, 67, 0.4);
    --rosa-claro: #fef3e1;
    --azul: #063970;
    --gris: #B8B8B8;
    --gris-cancelar: #f1f1f1;
    --negro-full: #000000;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Montserrat';
    src: local("Montserrat"), url('../fonts/Montserrat/static/Montserrat-Regular.ttf') format('truetype'), url('../fonts/Montserrat/static/Montserrat-Italic.ttf') format('truetype'), url('../fonts/Montserrat/static/Montserrat-Light.ttf') format('truetype'), url('../fonts/Montserrat/static/Montserrat-LightItalic.ttf') format('truetype'), url('../fonts/Montserrat/static/Montserrat-Medium.ttf') format('truetype'), url('../fonts/Montserrat/static/Montserrat-MediumItalic.ttf') format('truetype'), url('../fonts/Montserrat/static/Montserrat-SemiBold.ttf') format('truetype'), url('../fonts/Montserrat/static/Montserrat-SemiBoldItalic.ttf') format('truetype'), url('../fonts/Montserrat/static/Montserrat-Bold.ttf') format('truetype'), url('../fonts/Montserrat/static/Montserrat-BoldItalic.ttf') format('truetype') !important;
    font-weight: normal;
}

@font-face {
    font-family: 'Montserrat-bold';
    src: url('../fonts/Montserrat/static/Montserrat-Bold.ttf') format('truetype'), url('../fonts/Montserrat/static/Montserrat-BoldItalic.ttf') format('truetype') !important;
    font-weight: bold;
}

body {
    font-size: 14px;
    font-family: Montserrat, 'Montserrat', sans-serif !important;
}

.font-weight-bold {
    font-family: Montserrat-bold, 'Montserrat', sans-serif !important;
}

a {
    cursor: pointer;
}

/* INDEC STYLES TOGGLER SLIDES */

.toggler-wrapper {
    display: block;
    width: 45px;
    height: 25px;
    cursor: pointer;
    position: relative;
    justify-content: end;
}

    .toggler-wrapper input[type="checkbox"] {
        display: none;
    }

        .toggler-wrapper input[type="checkbox"]:checked + .toggler-slider {
            background-color: var(--azul);
        }

    .toggler-wrapper .toggler-slider {
        background-color: #ccc;
        position: absolute;
        border-radius: 100px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .toggler-wrapper .toggler-knob {
        position: absolute;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }


    .toggler-wrapper.style-21 input[type="checkbox"]:checked + .toggler-slider .toggler-knob {
        left: calc(100% - 19px - 3px);
    }

    .toggler-wrapper.style-21 .toggler-slider {
        background-color: #ccc;
    }

    .toggler-wrapper.style-21 .toggler-knob {
        width: calc(25px - 6px);
        height: calc(25px - 6px);
        border-radius: 50%;
        left: 3px;
        top: 3px;
        background-color: #fff;
        background-repeat: no-repeat;
        background-position: center;
    }

/*Sobrecarga de icono defs FontAwesome 4.7*/
.fa-window-restore:before {
    content: "/f2d2";
    padding-right: 11px;
}

.fa-plug:before {
    content: "/f1e6";
    padding-right: 14px;
}

/* Para sacarle el brode en estado de focus a el boton */

.accordion-button.btn.btn-sm.botonSinFocus {
    color: var(--azul) !important;
}

.botonSinFocus:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* INDEC STYLES BOTONES */

.btn-indec-gris {
    border-radius: 15px;
    background-color: var(--gris-cancelar);
    color: var(--azul);
    box-shadow: 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important
}

    .btn-indec-gris:hover {
        background-color: var(--blanco);
        color: var(--azul) !important;
        box-shadow: 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important
    }

.btn-indec-gris-desabilitado {
    color: var(--blanco);
    border-radius: 15px;
    background-color: var(--gris);
    box-shadow: inset 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important;
}

    .btn-indec-gris-desabilitado:hover {
        color: var(--blanco);
        border-radius: 15px;
        background-color: var(--gris);
        box-shadow: inset 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important;
        cursor: no-drop;
    }


.a-desabilitado {
    color: var(--blanco) !important;
    background-color: var(--gris) !important;
    box-shadow: inset 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important;
    cursor: no-drop !important;
    pointer-events: none;
}

    .a-desabilitado:hover {
        color: var(--blanco);
        background-color: var(--gris);
        box-shadow: inset 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important;
        cursor: no-drop !important;
    }




.btn-indec-gris:active {
    box-shadow: inset 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important;
}


.btn-indec-verde {
    color: var(--blanco);
    border-radius: 15px;
    background-color: var(--azul);
    box-shadow: 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important;
}


.btn-indec-verde-desabilitado {
    color: var(--blanco);
    border-radius: 15px;
    background-color: var(--gris);
    box-shadow: inset 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important;
}

    .btn-indec-verde-desabilitado:hover {
        color: var(--blanco);
        border-radius: 15px;
        background-color: var(--gris);
        box-shadow: inset 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important;
        cursor: no-drop;
    }

.btn-indec-verde:hover {
    background-color: var(--azul-hover);
    color: var(--blanco) !important;
    box-shadow: 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important
}

.btn-indec-verde:active {
    color: var(--blanco) !important;
    box-shadow: inset 0px 4px 0.3rem rgba(0,0, 0, 0.2) !important;
}

.btn-indec-verde:disabled {
    background-color: var(--gris);
    box-shadow: inset 0 0 15px 10px maroon;
}

/*--------------------------------------------------------------*/
.verde-border-bottom {
    border-bottom: 1px solid #3c998f;
}

/*#region /MEDIA QUERY*/

/*------------------------RESPONSIVE BUTTONS---------------------------*/
@media (max-width: 768px) {
    .progress-num .step {
        font-size: 15px !important;
        border: 3px solid lightgray;
        border-radius: 100%;
        width: 30px !important;
        height: 30px !important;
        line-height: 25px !important;
        text-align: center;
        background-color: #fff;
        position: relative;
        z-index: 50;
        cursor: pointer;
        transition: all 0.5s ease;
        font-weight: 700;
        box-shadow: 0px 4px 0.3rem rgb(0 0 0 / 20%);
    }

    #tituloAMostrar {
        display: none !important;
    }

    #tituloAMostrarFormE {
        display: none !important;
    }
}

@media screen and (max-width: 400px) {
    #botonGuardar {
        width: 50% !important;
    }

    #botonCancelar {
        width: 50% !important;
    }

    #botonGuardarLocal {
        width: 50% !important;
    }

    #botonCancelarLocal {
        width: 50% !important;
    }
}


@media screen and (max-width: 1000px) {
    .stepDos {
        display: none;
    }

    .stepDosFormP {
        display: none;
    }
}
/*#endregion*/

.badge2 {
    display: inline-block;
    padding: 0.25em 0.7em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-color: var(--azul);
}
/*Background*/
.bg-rosa-claro {
    background-color: var(--rosa-claro);
}

.bg-azul {
    background-color: var(--azul);
}

/*.bg-gris-cian {
    background-color: var(--gris-cian);
}*/

.bg-gris-claro {
    background-color: var(--gris-claro);
}

.bg-gris {
    background-color: var(--gris);
}

.bg-mostaza {
    background-color: var(--mostaza);
}

.bg-negro {
    background-color: var(--negro);
}

.bg-blanco {
    background-color: var(--blanco);
}

.bg-crema {
    background-color: var(--crema);
}

.bg-bordo {
    background-color: var(--rojo-bordo);
}

.bg-azul {
    background-color: var(--azul);
}

.bg-verde {
    background-color: var(--verde);
}

.bg-gris-rosa {
    background-color: var(--gris-rosa);
}

.bg-violeta {
    background-color: var(--violeta);
}

.bg-blanco-transparente {
    background-color: var(--transparent-blanco);
}

.bg-mostaza-transparente {
    background-color: var(--transparent-mostaza);
}

.bg-fondo-img {
    background-image: url('../images/tramaENGE.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}


#fondoLogin {
    background-image: url('../images/trama ENGE-login.jpg');
    background-repeat: repeat;
    background-size: contain;
    border-radius: 10px;
    background-position: center;
    position: relative;
    text-align: center;
}

    #fondoLogin:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 10px;
        background-color: var(--transparent-blanco);
    }

    #fondoLogin i h4 label hr p {
        position: relative;
    }



/* BORDE */

.border {
    border-radius: 12px !important;
}


/*TEXT*/
.text-mostaza {
    color: var(--mostaza);
}

.text-rosa-claro {
    color: var(--rosa-claro);
}

.text-negro {
    color: var(--negro);
}

.text-blanco {
    color: var(--blanco);
}

.text-white {
    color: var(--crema);
}

.text-bordo {
    color: var(--rojo-bordo);
}

.text-azul {
    color: var(--azul);
}

.text-verde {
    color: var(--verde) !important;
}

.text-gris-rosa {
    color: var(--gris-rosa);
}

.text-violeta {
    color: var(--violeta);
}

/*.text-gris-cian {
    color: var(--gris-cian);
}*/

.text-gris-claro {
    color: var(--gris-claro);
}

.text-justificado {
    text-align: justify;
}

/*Tamaños de letras*/

.f5 {
    font-size: 5px;
}

.f8 {
    font-size: 8px;
}


.f10 {
    font-size: 10px;
}

.f12 {
    font-size: 12px;
}


.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f20 {
    font-size: 20px;
}

.f22 {
    font-size: 22px;
}

.f30 {
    font-size: 30px;
}

.f40 {
    font-size: 40px;
}

/* STEPS FORMULARIO */

.progress-num a {
    text-decoration: none;
    color: #bdbaba;
}

.progress-num .step.amarillo a {
    text-decoration: none;
    color: var(--blanco);
}

.progress-num .step:hover {
    border-color: #bdbaba;
    background-color: #bdbaba;
    color: #fff;
    transition: all 0.5s ease;
}

.progress-num .step.rojo:hover {
    box-shadow: 0 0 11px rgb(255 3 3);
}

.progress-num .step.active a {
    text-decoration: none;
    color: var(--blanco);
}

.progress-num .step.rojo a {
    text-decoration: none;
    color: var(--blanco);
}
/*TODO: Realizar lógica param cuando este completo un formulario*/
.progress-num .step.completed {
    border-color: var(--verde);
    background-color: var(--verde);
    color: #fff;
    transition: all 0.5s ease;
}

    .progress-num .step.completed:hover {
        border-color: var(--verde);
        background-color: #fff;
        color: var(--verde);
        transition: all 0.5s ease;
    }


.progress-num .step.active {
    border-color: var(--azul);
    background-color: var(--azul);
    color: #fff;
    transition: all 0.5s ease;
}

    .progress-num .step.active:hover {
        border-color: var(--azul);
        background-color: #fff;
        color: var(--azul);
        transition: all 0.5s ease;
    }

.progress-num .step.verdeAzulado {
    border-color: var(--verde);
    background-color: var(--verde);
    color: #fff;
    transition: all 0.5s ease;
}

    .progress-num .step.verdeAzulado:hover {
        border-color: var(--verde);
        background-color: #fff;
        color: var(--azul);
        transition: all 0.5s ease;
    }

.progress-num .step.amarillo {
    border-color: var(--mostaza);
    background-color: var(--mostaza);
    color: #fff;
    transition: all 0.5s ease;
}

    .progress-num .step.amarillo:hover {
        border-color: var(--mostaza);
        background-color: #fff;
        color: var(--mostaza);
        transition: all 0.5s ease;
    }


.progress-num .step.rojo {
    border-color: var(--rojo-bordo);
    background-color: var(--rojo-bordo);
    color: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 0 11px rgb(208 39 39);
}

    .progress-num .step.rojo:hover {
        border-color: var(--rojo-bordo);
        background-color: #fff;
        color: var(--rojo-bordo);
        transition: all 0.5s ease;
        box-shadow: 0 0 11px rgb(208 39 39);
    }

.progress-num .step.violeta {
    border-color: var(--violeta);
    background-color: var(--violeta);
    color: #fff;
    transition: all 0.5s ease;
}

    .progress-num .step.violeta:hover {
        border-color: var(--violeta);
        background-color: #fff;
        color: var(--violeta);
        transition: all 0.5s ease;
    }

.progress-num .step.editableRH {
    border-color: var(--mostaza);
    /*  background-color: var(--violeta);
   */ color: var(--mostaza);
    transition: all 0.5s ease;
}

    .progress-num .step.editableRH:hover {
        border-color: var(--mostaza);
        background-color: var(--mostaza);
        color: #fff;
        transition: all 0.5s ease;
    }

#progress {
    position: relative;
    margin-bottom: 30px;
}

#progress-E {
    position: relative;
    margin-bottom: 30px;
}

#progress-L {
    position: relative;
    margin-bottom: 30px;
}

#progress-P {
    position: relative;
    margin-bottom: 30px;
}

#progress-L-bar {
    position: absolute;
    background: var(--azul);
    height: 5px;
    width: 0%;
    top: 50%;
    left: 0;
    z-index: 2;
    transition: all 1s ease;
}

#progress-E-bar {
    position: absolute;
    background: var(--azul);
    height: 5px;
    width: 0%;
    top: 50%;
    left: 0;
    z-index: 2;
    transition: all 1s ease;
}

#progress-bar {
    position: absolute;
    background: var(--azul);
    height: 5px;
    width: 0%;
    top: 50%;
    left: 0;
    z-index: 2;
    transition: all 1s ease;
}

.progress-num {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.ul-botones {
    margin: 0;
    margin-left: 2rem;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}


.progress-num::before {
    content: "";
    background-color: lightgray;
    position: absolute;
    top: 50%;
    left: 0;
    height: 5px;
    width: 100%;
    z-index: 0;
}

.contenetore {
    /* Border */
    border: 1px solid rgba(0, 0, 0, 0.3);
    /* Used to position the arrow */
    position: relative;
    display: none;
}

    .contenetore:hover {
        display: block;
    }

.contenetore__arrow {
    /* Size */
    height: 16px;
    width: 16px;
    background-color: #fff;
    position: absolute;
}

.contenetore__arrow--tl {
    /* Position at the top left corner */
    left: 32px;
    top: 0px;
    /* Border */
    border-left: 1px solid rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    transform: translate(50%, -50%) rotate(45deg);
}


.progress-num .step {
    border: 3px solid lightgray;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    background-color: #fff;
    position: relative;
    z-index: 50;
    cursor: pointer;
    transition: all 0.5s ease;
    font-weight: 700;
    box-shadow: 0px 4px 0.3rem rgba(0,0, 0, 0.2);
}
/*
    .progress-num .step:hover {
        box-shadow: 0px 4px 0.3rem rgba(0,0, 0, 0.4) !important;
        background-color: white;
        color:var(--azul);
    }*/

.progress-num .stepDos {
    border: 3px solid lightgray;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    line-height: 25px;
    text-align: center;
    background-color: #fff;
    position: relative;
    z-index: 50;
    cursor: pointer;
    transition: all 0.5s ease;
    margin-left: -10%;
    margin-top: 5px;
}

.progress-num .stepDosFormP {
    border: 3px solid lightgray;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    line-height: 25px;
    text-align: center;
    background-color: #fff;
    position: relative;
    z-index: 50;
    cursor: pointer;
    transition: all 0.5s ease;
    margin-left: 10%;
    margin-top: 5px;
}

.popover.bottom > .arrow {
    margin-left: 50px;
}

.progress-num .stepDos:hover {
    transform: translateY(-7px);
}

.progress-num .stepDosFormP:hover {
    transform: translateY(-7px);
}

.ul-inline {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}

/*PROGRES BAR*/
#progress-bar-1 {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 40;
    transition: all 1s ease;
}

#progress-bar-2 {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 30;
    transition: all 1s ease;
}

#progress-bar-3 {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 20;
    transition: all 1s ease;
}

#progress-bar-4 {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 10;
    transition: all 1s ease;
}

#progress-bar-5 {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 9;
    transition: all 1s ease;
}

#progress-bar-6 {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 8;
    transition: all 1s ease;
}

#progress-bar-7 {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 7;
    transition: all 1s ease;
}

#progress-bar-8 {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 6;
    transition: all 1s ease;
}

/*PROGRES BAR E*/
#progress-bar-1-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 40;
    transition: all 1s ease;
}

#progress-bar-2-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 30;
    transition: all 1s ease;
}

#progress-bar-3-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 20;
    transition: all 1s ease;
}

#progress-bar-4-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 10;
    transition: all 1s ease;
}

#progress-bar-5-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 9;
    transition: all 1s ease;
}

#progress-bar-6-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 8;
    transition: all 1s ease;
}

#progress-bar-7-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 7;
    transition: all 1s ease;
}

#progress-bar-8-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 6;
    transition: all 1s ease;
}

#progress-bar-9-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 5;
    transition: all 1s ease;
}

#progress-bar-10-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 4;
    transition: all 1s ease;
}

#progress-bar-11-E {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 3;
    transition: all 1s ease;
}

/*PROGRES BAR L*/
#progress-bar-1-L {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 40;
    transition: all 1s ease;
}

#progress-bar-2-L {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 30;
    transition: all 1s ease;
}

#progress-bar-3-L {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 20;
    transition: all 1s ease;
}

#progress-bar-4-L {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 10;
    transition: all 1s ease;
}

#progress-bar-5-L {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 9;
    transition: all 1s ease;
}

#progress-bar-6-L {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 8;
    transition: all 1s ease;
}

#progress-bar-7-L {
    position: absolute;
    background: var(--azul);
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 7;
    transition: all 1s ease;
}

/**/
#progress-bar-1-P {
    position: absolute;
    background: var(--verde)!important;
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 40;
    transition: all 1s ease;
}

#progress-bar-2-P {
    position: absolute;
    background: var(--verde)!important;
    height: 5px;
    top: 50%;
    left: 0;
    z-index: 30;
    transition: all 1s ease;
}

/*Cambiar Contraseña */
#cambiarContrasenia:hover {
    color: var(--crema);
    background-color: var(--azul);
}
/*---------------------------------------------------------*/
.header-instructivo {
    border: 1px solid rgba(0,0,0,.25);
    border-radius: .25rem;
    padding: 5px;
}

.sombra-instructivo {
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}



/*REESCRITA LA CLASE DE BOOSTRAP*/
.nav-link {
    color: var(--azul);
}



/*Modal - Alertify*/
.ajs-modal > .ajs-dialog.ajs-sms {
    box-shadow: 3px 3px #000000;
}

    .ajs-modal > .ajs-dialog.ajs-sms > .ajs-header {
        /*  background-image: linear-gradient(#9BC67C,#AAD6F1);*/
        background-color: #00a087; /*Verde*/
        border-bottom: none;
        color: white;
        font-Weight: bold;
        font-Size: 18px;
        text-align: left;
    }

    .ajs-modal > .ajs-dialog.ajs-sms > .ajs-body > .ajs-content {
        top: 4.1rem;
        bottom: 4.1rem;
        right: 0;
        left: 0;
        padding: 15px;
        /*word-break:break-all;*/
    }


    .ajs-modal > .ajs-dialog.ajs-sms > .ajs-footer > .ajs-buttons.ajs-primary {
        text-align: center;
    }


.ajs-modal > .ajs-dialog.ajs-enge {
    background-color: #9BC67C; /*Verde*/
    border-radius: 12px;
    box-shadow: 3px 3px #000000;
}

    .ajs-modal > .ajs-dialog.ajs-enge > .ajs-header {
        background-color: #9BC67C; /*Verde*/
        border-bottom: none;
        color: #0b3d91;
        font-Weight: bold;
        font-Size: 18px;
        text-align: left;
        border-radius: 12px;
    }

    .ajs-modal > .ajs-dialog.ajs-enge > .ajs-body > .ajs-content {
        background-color: #f4f6e1; /*marron clarito*/
    }

    .ajs-modal > .ajs-dialog.ajs-enge > .ajs-footer {
        background-color: #9BC67C; /*Verde*/
        border-top: none;
        box-shadow: 3px 3px #000000;
        border-radius: 12px;
    }

        .ajs-modal > .ajs-dialog.ajs-enge > .ajs-footer > .ajs-buttons.ajs-primary {
            text-align: center;
        }

.alertify-notifier .ajs-message {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    text-align: center;
    border: solid 2px #ddd;
    border-radius: 2px;
    /*agregados*/
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 300px;
    width: 400px;
    /*width: fit-content;
    width: -moz-fit-content;
    width: -webkit-fit-content;*/
}

    .alertify-notifier .ajs-message.ajs-error {
        color: white;
        font-size: 1.0rem;
        font-weight: bold;
    }

    .alertify-notifier .ajs-message.ajs-success {
        color: white;
        font-size: 1.0rem;
        font-weight: bold;
    }

    .alertify-notifier .ajs-message.ajs-sms-message {
        /*background: #f44336;*/
        padding: 0px;
        background: transparent;
        height: 90px;
    }



.alertify-notifier.ajs-right .ajs-message.ajs-visible {
    right: 400px;
    /*width: 400px;*/
}



.ajs-sms-error {
    color: #fff;
    border-color: #fff;
    /*background: #f44336;*/
    background: #ca2121;
    /* Firefox */
    height: -moz-calc(100%);
    /* WebKit */
    height: -webkit-calc(100%);
    /* Opera */
    height: -o-calc(100%);
    /* Standard */
    height: calc(100%);
}

.ajs-sms-success {
    color: #fff;
    border-color: #fff;
    background: #29b87e;
    /*background: #4caf50;*/
    /* Firefox */
    height: -moz-calc(100%);
    /* WebKit */
    height: -webkit-calc(100%);
    /* Opera */
    height: -o-calc(100%);
    /* Standard */
    height: calc(100%);
}

.ajs-sms-warning {
    color: #fff;
    border-color: #fff;
    background: #ce812e;
    /* Firefox */
    height: -moz-calc(100%);
    /* WebKit */
    height: -webkit-calc(100%);
    /* Opera */
    height: -o-calc(100%);
    /* Standard */
    height: calc(100%);
}

.ajs-sms-info {
    color: #fff;
    border-color: #fff;
    background: #2e79b4;
    /* Firefox */
    height: -moz-calc(100%);
    /* WebKit */
    height: -webkit-calc(100%);
    /* Opera */
    height: -o-calc(100%);
    /* Standard */
    height: calc(100%);
}



.ajs-sms-message-icon {
    position: absolute;
    text-align: center;
    font-size: 50px;
    padding: 12px;
}

.ajs-sms-message-body {
    margin-left: 70px;
    min-height: 70px;
    height: inherit;
    overflow: auto;
    color: white;
    line-height: 1.5rem;
    font-size: 1.0rem;
    font-weight: bold;
    padding: 10px;
}


.tooltip-sin-truco {
    cursor: pointer;
    margin-left: 0.3rem;
}

.tooltip-truco {
    margin-left: 0.3rem;
    font-weight: 700;
    color: var(--azul);
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
}

    .tooltip-truco:hover {
        margin-left: 0.3rem;
        /*font-weight: 700;*/
        color: var(--azul);
        /*font-size: 18px;*/
        cursor: pointer;
    }

.tooltip-inner {
    text-align: justify;
    padding: 20px;
    margin-left: -50px;
}

.tooltip-msj {
    color: black;
    background-color: var(--rosa-claro);
    position: absolute;
    padding: 1rem;
    margin-top: 0.2rem;
    z-index: 1000;
    left: 0;
    display: none;
    border-radius: .5rem;
    transition: opacity .3s ease;
    box-shadow: 0 0 .3rem .1rem rgba(0,0, 0, 0.2);
}

    .tooltip-msj.show {
        display: block;
    }

.valorBruto::before {
    content: "VBP";
}


.porcentaje::before {
    content: "%";
}

@media screen and (min-width:760px) {

    .tooltip-inner {
        max-width: 400px;
        width: 400px;
    }

    .porcentaje::before {
        content: "Porcentaje";
    }

    .valorBruto::before {
        content: "Valor Bruto de Producción";
    }
}

@media screen and (max-width:760px) {

    .tooltip-inner {
        max-width: 100px;
        width: 100px;
    }

    .tooltip-truco {
        margin-left: 0.3rem;
        font-weight: 700;
        color: var(--azul);
        font-size: 1rem;
        transition: all 0.4s ease;
        position: relative;
    }

    .wrapper-tooltip {
        max-width: 100px;
        width: 100px;
    }

    .tooltip-truco:hover {
        margin-left: 0.3rem;
        /*font-weight: 700;*/
        color: var(--azul);
        /*font-size: 18px;*/
        cursor: pointer;
        max-width: 100px;
        width: 100px;
    }
}


label.Button-Upload > input[type="file"] {
    /*
    position: absolute;
    right: -9999px;
    visibility: hidden;
    opacity: 0;
        */
    display: none;
}

label.Button-Upload {
    overflow: hidden;
    margin-bottom: 0;
}

    label.Button-Upload:hover {
        cursor: pointer;
        transition: 0.2s all;
    }

div.files {
    background: #eee;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 10px;
}

    div.files ul {
        list-style: none;
        padding: 0;
        max-height: 150px;
        overflow: auto;
    }

        div.files ul li {
            padding: 0.6rem 0;
            padding-right: 2rem;
            position: relative;
        }

            div.files ul li i {
                cursor: pointer;
                position: absolute;
                top: 50%;
                right: 0;
                font-style: normal;
                transform: translateY(-50%);
            }


span.file-size {
    color: #999;
    padding-left: 0.5rem;
}

.page-item.active .page-link {
    background-color: var(--azul);
    border-color: var(--azul);
}

.page-item:hover .page-link:hover {
    background-color: #48a5a1;
    border-color: #48a5a1;
}

.text-blanco-hover {
    color: white;
}

    .text-blanco-hover :hover {
        color: black;
    }



@media screen and (max-width: 375px) {
    .tooltip-truco {
        font-size: 14px;
    }

    .w-xs-50 {
        width: 50%;
    }
}

.control-label {
    font-size: 11.6px;
}

.input-form {
    display: block;
    width: 105%;
    height: 30px !important;
    padding: .375rem .75rem;
    font-size: 11.4px;
    font-weight: 400;
    line-height: 1;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .input-form:disabled {
        background-color: #e9ecef;
        opacity: 1;
        height: 30px !important;
    }

/*SOCIAL MEDIA - REDES SOCIALES DISEÑO*/

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hide-text {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.ease-all {
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

/* Social Icons */
.social {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

    .social li {
        display: inline-block;
        margin-right: 0.5rem;
    }

        .social li:last-child {
            margin-right: 0;
        }

        .social li a {
            display: inline-block;
            width: 25px;
            height: 25px;
            text-align: center;
            justify-content: center;
            align-items: center;
            margin: 0;
            line-height: 25px;
            border-radius: 50%;
            background-color: var(--blanco); /* Color de fondo del círculo */
            color: var(--negro-full); /* Color del ícono */
            transition: background-color 0.4s ease-in-out;
        }

            .social li a:hover {
                background-color: var(--gris); /* Cambia el color de fondo a transparente */
                color: var(--blanco); /* Cambia el color del ícono a blanco */
            }

.social-svg {
    height: 12px;
}

/* Ajuste de posición hacia la derecha */
@media screen and (max-width: 768px) {
    .social {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }

        .social li {
            display: inline-block;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }

            .social li:last-child {
                margin-right: 0;
            }
}
