:root {
    --primario: #ff9601;
    --secundario: #f9574e;
    --terciario: #ff0088;
    --transparencia: #fff5ea;
    --familia_fuente: 'Roboto', sans-serif;
}



/*********************************
*        MENU DESPLEGABLE        *
*********************************/
.dropdown-menu>li>a {
    color: var(--blue);
    font-size: 15px;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 20px;
    width: 100%;
}

/* -- circulos -- */
.wrapper-flex,
.wrapper-flex-mobile {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-box;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;

    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}


/* -- row -- */
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.row-eq-height.container:before,
.row-eq-height.container:after,
.row-eq-height.row:before,
.row-eq-height.row:after {
    content: normal;
}



.separa-5 {
    height: 5px;
}

.separa-10 {
    height: 10px;
}

.separa-20 {
    height: 20px;
}

.separa-40 {
    height: 40px;
}

.separa-30 {
    height: 30px;
}

.separa-50 {
    height: 50px;
}


.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.centrado {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.centrado.izquierda {
    justify-content: flex-start;
}

.centrado.derecha {
    justify-content: flex-end;
}

.animacion {
    transition: all 300ms linear !important;
    -webkit-transition: all 300ms linear !important;
    -moz-transition: all 300ms linear !important;
    -ms-transition: all 300ms linear !important;
    -o-transition: all 300ms linear !important;
}

.limitar {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.limitar_1 {
    -webkit-line-clamp: 1;
    /* number of lines to show */
}

.limitar_2 {
    -webkit-line-clamp: 2;
    /* number of lines to show */
}

.limitar_3 {
    -webkit-line-clamp: 3;
    /* number of lines to show */
}

.limitar_4 {
    -webkit-line-clamp: 4;
    /* number of lines to show */
}

.limitar_5 {
    -webkit-line-clamp: 5;
    /* number of lines to show */
}

.limitar_6 {
    -webkit-line-clamp: 6;
    /* number of lines to show */
}

.limitar_7 {
    -webkit-line-clamp: 7;
    /* number of lines to show */
}

.limitar_8 {
    -webkit-line-clamp: 8;
    /* number of lines to show */
}

.limitar_9 {
    -webkit-line-clamp: 9;
    /* number of lines to show */
}

.limitar_10 {
    -webkit-line-clamp: 10;
    /* number of lines to show */
}

.caja {
    overflow: hidden;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.btn-corporativo {
    color: #ffffff;
    background-color: #F9574E;
    border-color: #F9574E;
}

.btn-corporativo:hover,
.btn-corporativo:focus,
.btn-corporativo:active,
.btn-corporativo.active,
.open .dropdown-toggle.btn-corporativo {
    color: #ffffff;
    background-color: #FF9601;
    border-color: #F9574E;
}

.btn-corporativo:active,
.btn-corporativo.active,
.open .dropdown-toggle.btn-corporativo {
    background-image: none;
}

.btn-corporativo.disabled,
.btn-corporativo[disabled],
fieldset[disabled] .btn-corporativo,
.btn-corporativo.disabled:hover,
.btn-corporativo[disabled]:hover,
fieldset[disabled] .btn-corporativo:hover,
.btn-corporativo.disabled:focus,
.btn-corporativo[disabled]:focus,
fieldset[disabled] .btn-corporativo:focus,
.btn-corporativo.disabled:active,
.btn-corporativo[disabled]:active,
fieldset[disabled] .btn-corporativo:active,
.btn-corporativo.disabled.active,
.btn-corporativo[disabled].active,
fieldset[disabled] .btn-corporativo.active {
    background-color: #F9574E;
    border-color: #F9574E;
}

.btn-corporativo .badge {
    color: #F9574E;
    background-color: #ffffff;
}

/************************************
*           SELECT BONITO           *
************************************/

.selectbonito {
    position: relative;
}

.selectbonito:after {
    content: '\f078';
    font: normal normal normal 10px/1 FontAwesome;
    color: #ffffff;
    right: 0;
    position: absolute;
    pointer-events: none;

    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 7px;
}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
    display: none;
}

.selectbonito select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Add some styling */

    display: block;
    width: 100%;
    float: right;
    background-image: none;
    -ms-word-break: normal;
    word-break: normal;
}

/* whatsapp */
.floating-icons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 99;
}

.floating-icons a {
    display: inline-block;
    transition: all .2s ease-in-out;
}

a:hover,
a:visited,
a:link,
a:active {
    text-decoration: none;
}

.floating-icons img {
    max-width: 48px;
    height: auto;
}

.floating-icons a:hover {
    transform: scale(0.9);
}

/* sidebar */
.left-toggle {
    left: 0;
}

.right-toggle {
    right: 0;
}

.navbar-toggle {
    margin: 0;
    padding: 15px;
    border-radius: 0;
    border: unset;
    height: 52px;
    width: 52px;
}

.navbar-toggle,
.navbar-toggle:focus,
.navbar-toggle:hover {
    background-color: var(--secundario);
}

.toggle-left .left-toggle.navbar-toggle,
.toggle-left .left-toggle.navbar-toggle:focus,
.toggle-left .left-toggle.navbar-toggle:hover,
.toggle-right .right-toggle.navbar-toggle,
.toggle-right .right-toggle.navbar-toggle:focus,
.toggle-right .right-toggle.navbar-toggle:hover {
    background-color: var(--secundario);
}

.navbar-toggle .icon-bar,
.toggled .navbar-toggle .icon-bar {
    background-color: var(--transparencia);
}

/* PORTADA */

.cajas-rrhh .row>div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.caja-rrhh {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent ;
    color: #FFFFFF;
    border: 2px solid #fff;
    /*
    height: 400px;
    width: 400px;
    font-size: 40px;
    font-weight: bold;
    max-width: 100%;
    max-height: calc((100vw / 2) - 60px);
    */
    width: 100%;
    height: 140px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 300;
}

.caja-rrhh a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    flex-direction: column;
    gap: 3px;
}

.caja-rrhh a .fa {
    font-size: 46px;
    margin-bottom: 10px;
    ;
}

.caja-rrhh.caja-larga {
    /* height: 200px; */
    /* width: calc(100% - ((100% - 800px - 30px) / 2)); */
}



.titulo-in-filtro {
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
}

.detalles .form-control,
.detalles .form-group {
    width: 100%;
}

/*DOCUMENTOS*/

.caja-filtros {
    background: rgb(211, 211, 211, 0.3);
    height: 80px;
    width: 100%;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    font-size: 40px;
}

.caja-filtros select,
.caja-filtros .input-group {
    width: 100%;
}

.caja-documentos .row {
    width: 100%;
}

.caja-documentos>div {
    position: relative;
    padding: 20px;

    display: flex;
    justify-content: space-between;
}

.caja-documentos>div .fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.caja-documentos>div:nth-child(2n) .fondo {
    background: #ffffff;
}

.caja-documentos>div:nth-child(2n+1) .fondo {
    background: #fff4e6;
}

.nombre-documento {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
}

/* .caja-documentos>div:nth-child(3n+2) .fondo {
    background: var(--secundario);
} */

/*VACACIONES*/

.zona-firma {
    width: 100%;
}

.caja-firma,
.caja-firma canvas {
    width: 100% !important;
}

.zona-botones {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/*PERFIL*/

.formularios_de_contacto {
    background-color: var(--transparencia);
    padding: 30px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.formularios_de_contacto input {
    height: 45px;
}

.noestavisibleparapersonas {
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
}

/*ESTILOS GESTOR*/
.contenedor-busqueda {
    background-color: #f2f2f2;
}

.table.resultado tbody tr:nth-of-type(2n) {
    background-color: #fff4e6;
}

.table.resultado tfoot,
.table.resultado tfoot b {
    color: #000;
    background-color: #e4ecf0;
}

.table.resultado tfoot .beneficios,
.table.resultado tfoot .beneficios b {
    color: #1b7903;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    border-top: 1px solid #fde6c9;
    vertical-align: middle;
}

.swal2-popup {
    font-size: 1.6rem !important;
}



/*//ESTILOS GENERALES//*/

.custom-container {
    padding: 0 45px;
}

.custom-button-nav {
    margin-left: auto;
    width: 220px;
    border-color: var(--transparencia);
    font-size: 13px;
}

.barra_ampliada .navbar-fixed-top,
.barra_reducida .navbar-fixed-top {
    height: 52px;
    background-color: #FFFFFF;
    filter: drop-shadow(0px 5px 7.5px rgba(0, 0, 0, 0.1));
}

.barra_ampliada .forma_logo,
.barra_reducida .forma_logo {
    height: auto;
    width: 230px;
    left: 0;
}

.navbar-brand {
    left: 20px;
}

.barra_ampliada .navbar-brand,
.barra_reducida .navbar-brand {
    width: auto;
    height: 55px;
}

.navbar-brand>img {
    width: auto;
    left: auto;
}

.barra_ampliada .navbar-brand>img,
.barra_reducida .navbar-brand>img {
    height: 45px;
}

.navbar-collapse.collapse {
    display: none !important;
}

.navbar-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-toggle .fa {
    font-size: 20px;
    color: #FFFFFF;
}

.navbar-header {
    float: left;
}

.caja_novedad-titulo {
    font-size: 20px;
    letter-spacing: 0;
}

.footer-info {
    width: 100%;
    justify-content: center;
}

.footer-logo {
    justify-content: center;
}

.footer-contactos li {
    column-gap: 10px;
}

.footer-redes a img {
    width: 25px;
}

.dropdown-backdrop {
    display: none;
}


.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    /*color: var(--primario) !important;*/
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    background-color: var(--primario)
}

.navbar-brand {
    width: 100% !important;
    height: 52px !important;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

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

.caja-logo img {
    height: 100px;
    max-width: calc(100% - 30px);
}

.logo_movil {
    height: 26px;
    position: absolute;
    top: 13px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.titulo_explicativo {
    text-align: center;
    font-size: 22px;
}

.zona_telefono {
    position: fixed;
    bottom: 0px;
    width: 100%;
    display: flex;
}

.zona_telefono .btn {
    width: 50%;
    color: #fff;
    font-size: 30px;
}

.btn-phone {
    background-color: var(--primario);
    border-radius: 0px;
}

.btn-whatsapp {
    background-color: var(--terciario);
    border-radius: 0px;
}

.caja_portada {
    position: relative;
    height: 100vh;
}

.caja_portada .cristal_templado {
    width: 100%;
    height: 100%;
    position: absolute;
    background: -moz-linear-gradient(left, rgba(255, 156, 0, 0.8) 0%, rgba(243, 11, 159, 0.8) 82%, rgba(243, 11, 159, 0.8) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 156, 0, 0.8) 0%, rgba(243, 11, 159, 0.8) 82%, rgba(243, 11, 159, 0.8) 100%);
    background: linear-gradient(to right, rgba(255, 156, 0, 0.9) 0%, rgba(243, 11, 159, 0.9) 82%, rgba(243, 11, 159, 0.9) 100%);
    top: 0px;
    z-index: -1;
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
    .caja-rrhh {}
}

@media (max-width: 767px) {

    .caja-filtros {
        display: inherit;
        height: auto;
        padding: 5px 0px;
    }

    .caja-filtros>div {
        margin: 15px 0px;
    }
}