@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../webfonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: bold;
    font-weight: 700;
    src: url('../webfonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../webfonts/Roboto/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../webfonts/Roboto/Roboto-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: bold;
    font-weight: 700;
    src: url('../webfonts/Roboto/Roboto-Bold.ttf') format('truetype');
}

:root {
    --grisClaro: #f0f0f0;
    --grisMedio: #b7b7b7;
    --grisNeutro: #999999;
    --grisTor: #8d8d8d;
    --grisOscuro: #4b4b4b;


    /* OPCION VERDE */
    /*--primario: #008000;
    --primarioSec: #0ea50e;
    --primarioOscuroShinny: #6cb96c;
    --primarioShinny: #8ed68e;
    --primarioLight: #9cde9c;
    --primarioLighter: #d9ffd9;
    --primarioLighterTransparente: #f7fff7e8;
    --primarioOscuroTransparente: #008000a3;
    --primarioTransparente: #00800024;
    --primarioTransparenteLight: #00800021;
    --greenRedHueRotate: hue-rotate(237deg);*/

    /* OPCION AZUL */
    --primario: #1971c2;
    --primarioSec: #1e87d9;
    --primarioOscuroShinny: #4a9fe0;
    --primarioShinny: #6cb6e8;
    --primarioLight: #8ccdf0;
    --primarioLighter: #d0ebff;
    --primarioLighterTransparente: #d0ebffe8;
    --primarioOscuroTransparente: #1971c2a3;
    --primarioTransparente: #1971c224;
    --primarioTransparenteLight: #1971c221;
    --greenRedHueRotate: hue-rotate(150deg);

    --azulOscuro: #135fa5;
    --green: #008000;
    --orange: #DC6200;
    --fairOrange: #F38A08;
    --purple: #6141E0;
    --fairPurple: #7957ff;
    --greenHueRotate: hue-rotate(237deg);
    --rojo: #FF0033;
    --rojoOscuro: #c60042;
    --negro: #181818;
    --fuente: 'Roboto', sans-serif;
    --fuenteSec: 'Montserrat', sans-serif;

    --overlayTransp: rgb(0 0 0 / 50%);
}

* {
    box-sizing: border-box;
    font-family: var(--fuente);
    font-weight: 400;
}

body {
    justify-content: flex-start;
    margin: 0;
    font-size: 1em;
    overflow-x: hidden;
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    color: var(--negro);
    position: relative;
}

/* Capa de overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-in-out;
}

/* Spinner animado */
#loading-overlay .spinner {
    border: 8px solid var(--grisClaro);
    /* Borde gris claro */
    border-top: 8px solid var(--primario);
    /* Borde superior con color primario */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    /* Animación de giro */
}

/* Animación del spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body.full {
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    font-family: var(--fuenteSec);
}

h1,
.one-column h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #e2e2e2;
}

.none {
    display: none;
}

.one-column h2 {
    font-size: 2em;
}

.pdf-reader h1 {
    text-align: left;
}

h2 {
    width: 100%;
}

h2.small {
    font-size: 1.1em;
}

.frame form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bolsas {
    display: flex;
    width: 100%;
    margin-bottom: 1em;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: wrap;
}

.bolsas.full {
    width: 80%;
}

.bolsas-header {
    display: none;
    font-size: 0.8em;
    font-weight: bold;
    background: var(--primarioOscuroTransparente);
    width: 100%;
    border-radius: 6px 6px 0 0;
    padding: 0.5em;
    font-family: var(--fuenteSec);
    color: #ffffff;
    text-transform: uppercase;
}

.puesto.bolsa h2 {
    padding: 0 0.75em;
    display: flex;
    flex-direction: row;
}

.puesto.bolsa h2 svg {
    width: 25px;
    margin-right: 0.25em;
}

.save-icon {
    fill: #9b9b9b;
    width: 19px;
}

#reclamaciones h1,
#ofertas h1 {
    text-align: left;
}

.bolsas .bolsa {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    justify-content: flex-start;
    margin-bottom: 2em;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    width: 49%;
    align-self: flex-start;
    /* align-self: stretch; */
}

.bolsas .buscador {
    display: flex;
    width: 750px;
    margin-bottom: 1em;
    flex-direction: row;
    position: absolute;
    top: 1em;
    right: 0;
    align-items: center;
}

.bolsas .buscador a {
    margin-top: 0.5em;
    cursor: pointer;
}

.bolsas .buscador .form-element {
    margin-right: 0.5em;
    display: flex;
    flex-direction: column;
    width: calc(100% - 1.5em - 445px);
}

.bolsas .buscador .form-element.fecha {
    width: 210px;
}

.bolsas .buscador .form-element.fecha svg {
    width: 20px;
    fill: #808080;
    top: 1.5em;
    right: 5px;
    position: absolute;
    pointer-events: none;
}

.bolsas .buscador #btn_bOfertas,
.bolsas .buscador #clear_bOfertas,
.bolsas .buscador #clear_bReclamaciones {
    display: flex;
    height: 3em;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}

.bolsas .buscador #clear_bOfertas,
.bolsas .buscador #clear_bReclamaciones {
    all: unset;
    border: none;
    background: none;
    padding: 0;
    margin: 0.75em 0 0 0.25em;
    width: 25px;
}


.bolsas .buscador svg {
    width: 25px;
}

.bolsas .buscador #btn_bOfertas:hover .icon-filled__glyph {
    fill: var(--primarioSec);
}

.bolsas .buscador #clear_bOfertas:hover svg,
.bolsas .buscador #clear_bReclamaciones:hover svg {
    fill: var(--rojo);
    cursor: pointer;
}

#ofertas .bolsas .bolsa,
#reclamaciones .bolsas .bolsa {
    width: 100%;
    margin-bottom: 0;
    border-bottom: none;
    border-radius: 0;
}

#ofertas .bolsas .bolsa:first-child,
#reclamaciones .bolsas .bolsa:first-child {
    border-top: 1px solid #e2e2e2;
    border-radius: 6px 6px 0 0;
}

#ofertas .bolsas .bolsa:last-child,
#reclamaciones .bolsas .bolsa:last-child {
    border-bottom: 1px solid #e2e2e2;
    border-radius: 0 0 6px 6px;
}

#ofertas .bolsas .bolsa:only-child,
#reclamaciones .bolsas .bolsa:only-child {
    border-radius: 6px;
}

.bolsas .bolsa.penalizacion {
    border: 1px solid #00800021;
    background-color: #00800024;
    filter: var(--greenHueRotate);
}

.bolsas .bolsa.penalizacion .switch-area svg {
    width: 27px;
    margin-left: 0.25em;
}

.switch-disabled {
    background: #c5c5c5;
    width: 60px;
    display: flex;
    height: 34px;
    flex-direction: row;
    margin-right: 0.25em;
    border-radius: 30px;
    justify-content: flex-start;
}

svg.forbidden .g3028 {
    stroke: var(--green);
    stroke-width: 2.23000002;
}

svg.forbidden .path3818 {
    fill: var(--green);
}

svg.forbidden .circle3030 {
    fill: none;
    stroke-width: 44.59999847;
}

svg.close .red {
    stroke-width: 0;
    stroke-dasharray: none;
    stroke-linecap: butt;
    stroke-dashoffset: 0;
    stroke-linejoin: miter;
    stroke-miterlimit: 4;
    fill-rule: nonzero;
}

svg.close .second {
    stroke: none;
    stroke-width: 1;
    stroke-dasharray: none;
    stroke-linecap: butt;
    stroke-dashoffset: 0;
    stroke-linejoin: miter;
    stroke-miterlimit: 4;
    fill: rgb(255, 255, 255);
    fill-rule: nonzero;
}

svg.select-arrow {
    pointer-events: none;
    width: 12px;
    height: 12px;
    fill: #999999;
}

.buscador svg.select-arrow {
    top: 1.75em;
}

.shrink {
    width: 80%;
}

.shrink .small {
    margin-top: 2em;
}

.bolsas .bolsa.penalizacion .info-oferta {
    background: transparent;
    border: 1px solid var(--primarioTransparenteLight);
}

.bolsas .bolsa.penalizacion .info-oferta.not-open {
    background: transparent;
}

.icon-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 56px;
}

#index .icon-group {
    width: 95px;
}

.icon-group a {
    margin-right: 1em;
}

.icon-group a:last-child {
    margin-right: 0;
}

#ofertas .bolsas,
#reclamaciones .bolsas {
    justify-content: center;
}

#ofertas .bolsas .bolsa .info-bolsa .title.simple,
#reclamaciones .bolsas .bolsa .info-bolsa .title.simple {
    display: flex;
    align-items: center;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#comentarioLabel {
    display: block;
    margin-top: 0.5em;
    border-radius: 6px;
    color: #5e5e5e;
    font-size: 12px;
    width: 100%;
    font-family: var(--fuente);
}

#comentarioLabel p {
    font-weight: 500;
    font-size: 11px;
}

.icon-group a svg {
    /* fill: var(--green); */
    fill: #808080;
}

.icon-group a:hover svg {
    fill: #0ea50e;
}

.icon-group a.tiny svg {
    width: 23px;
}

.bolsas .bolsa.penalizacion .info-bolsa .title,
.bolsas .bolsa.penalizacion .info-oferta .title {
    border-bottom: 1px solid var(--primarioTransparenteLight);
}

.bolsas .bolsa .info-bolsa .title .txt-part {
    font-weight: bold;
    display: inline-block;
    font-family: var(--fuenteSec);
    width: calc(100% - 105px);
}

svg.suitcase_icon,
.bolsas .bolsa .info-bolsa .title .txt-part svg,
.bolsas.otras-bolsas .mi-bolsa svg.suitcase_icon,
#reclamacion-detalle .mi-bolsa .suitcase_icon {
    margin-right: 0.5em;
    fill: var(--green);
}

/* .bolsas.otras-bolsas .mi-bolsa.no-disponible svg.suitcase_icon,
#reclamacion-detalle .mi-bolsa.no-disponible .suitcase_icon  {
    fill: #5a5a5a;
} */

.bolsas.otras-bolsas svg.suitcase_icon,
#reclamacion-detalle svg.suitcase_icon {
    fill: var(--primario);
}

.bolsas .bolsa .info-bolsa .title .title-group {
    display: inline-block;
    font-family: var(--fuenteSec);
    font-weight: bold;
    width: calc(100% - 30px);
}

.bolsas.otras-bolsas .bolsa .info-bolsa .title {
    justify-content: flex-start;
}

.bolsas .bolsa h3 {
    font-size: 1em;
    border-bottom: 1px solid #e2e2e2;
    margin: 1em 0;
    padding-bottom: 0.5em;
}

.bolsas .bolsa.no-disponible {
    filter: grayscale(1);
    background: #f8f8f8;
    border: 1px solid #d3d3d3;
}

/* .bolsas .bolsa.no-disponible .info-oferta {
    border-left: 1px solid #d3d3d3;
}*/

.bolsas .bolsa.no-disponible .info-bolsa .title,
.bolsas .bolsa.no-disponible .info-oferta .title {
    border-bottom: 1px solid #d3d3d3;
}

.bolsas.full .bolsa {
    margin-bottom: 0;
    border-top: none;
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    border-radius: 0;
    width: 100%;
}


.bolsas.full .bolsa:last-child {
    border-radius: 0 0 6px 6px;
}

.overflow-elem,
#dv_lanpoltsa .candidatos,
.candidatos {
    background: #ffffff;
    width: calc(400px + 2em);
    font-size: 0.8em;
    padding: 1em;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.overflow-elem.modificar,
.overflow-elem.anexar {
    width: calc(700px + 2em);
}

.overflow-elem.eximente {
    width: 750px;
}

#dv_lanpoltsa .overflow,
.bolsas .overflow {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

#dv_lanpoltsa .overflow.visible,
#dv_lanpoltsa .candidatos,
.bolsas .overflow.visible,
.bolsas .candidatos.visible {
    display: inline-block;
}

#dv_lanpoltsa .candidatos.penalizacion,
.bolsas .candidatos.penalizacion {
    filter: var(--greenRedHueRotate);
}

a.open-tab,
a.close {
    cursor: pointer;
}

.candidatos .table-view {
    display: flex;
    flex-direction: column;
}

.candidatos .table-view .table-view-header,
.candidatos .table-view .table-view-content .candidato {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}

.candidatos .table-view .table-view-content .candidato.current-user:nth-child(odd),
.candidatos .table-view .table-view-content .candidato.current-user {
    background: var(--green);
    color: #ffffff;
}

.candidatos .table-view .table-view-content .candidato.current-user.gray {
    filter: grayscale(1);
}

.candidatos .table-view .table-view-content .candidato.current-user.red {
    filter: var(--greenHueRotate);
}

.candidatos .table-view .table-view-content .candidato.current-user .data-elem {
    font-weight: 500;
}

.candidatos .table-view .table-view-content .candidato .data-elem b {
    display: none;
    font-weight: bold;
    font-family: var(--fuenteSec);
}

.candidatos .table-view .table-view-content .candidato:nth-child(odd) {
    background: #f0f0f0;
}

.candidatos .table-view .table-view-header {
    background: var(--primarioLight);
}

.candidatos.has-overflow .table-view .table-view-header {
    padding-right: 10px;
}

.candidatos .table-view .table-view-header .data-elem,
.candidatos .table-view .table-view-content .candidato .data-elem {
    width: 17%;
    padding: 0.2em;
}

/*.candidatos .table-view .table-view-header .data-elem:first-child,
.candidatos .table-view .table-view-content .candidato .data-elem:first-child {
    width: 15%;
}
*/
.candidatos .table-view .table-view-header .data-elem.puesto,
.candidatos .table-view .table-view-content .candidato .data-elem.puesto {
    width: 120px;
}

.candidatos .table-view .table-view-header .data-elem.dni,
.candidatos .table-view .table-view-content .candidato .data-elem.dni {
    width: 200px;
}

.candidatos .table-view .table-view-header .data-elem.nombre,
.candidatos .table-view .table-view-content .candidato .data-elem.nombre {
    width: 150px;
}

.candidatos .table-view .table-view-header .data-elem.apellido,
.candidatos .table-view .table-view-content .candidato .data-elem.apellido {
    width: 175px;
}

.candidatos .table-view .table-view-header .data-elem.dispo,
.candidatos .table-view .table-view-content .candidato .data-elem.dispo {
    min-height: 28px;
    width: 170px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.candidatos .table-view .table-view-header .data-elem.fecha,
.candidatos .table-view .table-view-content .candidato .data-elem.fecha {
    /*width: 160px;*/
    width: 240px;
}

.candidatos .table-view .table-view-header .data-elem.orden,
.candidatos .table-view .table-view-content .candidato .data-elem.orden {
    width: 75px;
    text-align: center;
}

.overflow-title h3,
.historico h3,
.candidatos h3 {
    font-size: 16px;
    margin-block-start: 0;
    display: flex;
    justify-content: space-between;
    border-bottom: none;
    padding-bottom: 0;
    margin-block-end: 0;
}

.historico .puesto {
    margin-bottom: 0.5em;
    color: #808080;
    text-transform: uppercase;
}

#dv_dispo div.no-data:first-child,
.historico .no-data {
    border-bottom: none;
    font-family: 'Roboto';
    font-weight: 500;
    display: flex;
    color: #808080;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

.historico .no-data svg {
    width: 25px;
    margin-right: 0.25em;
}

.historico .no-data svg path {
    stroke: #808080;
}

.historico .no-data svg path#fill {
    fill: #808080;
}

.candidatos .table-view .table-view-header .data-elem {
    font-family: var(--fuenteSec);
    font-weight: bold;
}

.candidatos .table-view .table-view-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 350px;
    overflow-y: auto;
}

.form-element.margin {
    margin-top: 1em;
}

.bolsas .bolsa .form-element label {
    font-size: 0.7em;
}

.datos-bolsa .form-element {
    margin-bottom: 0.25em;
}

.bolsas .bolsa .form-element span,
.datos-bolsa .form-element span {
    font-size: 0.85em;
}

.bolsas .bolsa .form-element span.slider {
    margin-left: 0;
}

.bolsas .bolsa .info-oferta .datos-bolsa .form-element {
    width: 49%;
}

#ofertas .bolsas .bolsa .info-oferta .datos-bolsa .form-element,
#reclamaciones .bolsas .bolsa .info-oferta .datos-bolsa .form-element {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 30px;
}

#ofertas .bolsas .bolsa .info-oferta .datos-bolsa .form-element.full,
#reclamaciones .bolsas .bolsa .info-oferta .datos-bolsa .form-element.full {
    width: 100%;
}

#reclamaciones .bolsas .bolsa .info-oferta .datos-bolsa .form-element.full.result,
.form-element.full.result {
    margin-top: 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: auto;
}

#reclamaciones .bolsas .bolsa .info-oferta .datos-bolsa .form-element.full.result span,
.form-element.full.result span {
    margin-left: 0.5em;
    font-weight: bold;
    font-family: var(--fuenteSec);
    color: white;
    background: gray;
    padding: 0.5em;
    font-size: 0.55em;
    text-transform: uppercase;
    border-radius: 6px;
}

#reclamaciones .bolsas .bolsa .info-oferta.rec-aceptada .datos-bolsa .form-element.full.result span,
.rec-aceptada .form-element.full.result span {
    background-color: var(--green);
}

#reclamaciones .bolsas .bolsa .info-oferta.rec-rechazada .datos-bolsa .form-element.full.result span,
.rec-rechazada .form-element.full.result span {
    background-color: var(--rojoOscuro);
}

.bolsas .bolsa .datos-bolsa .form-element:last-child {
    margin-bottom: 0;
}

.datos-bolsa .form-element label {
    font-size: 0.75em;
}

/* .bolsas .bolsa .info-oferta.rechazada {
    background: #ffffff;
    border: 1px solid #e2e2e2;
} */

.bolsas .bolsa .info-oferta.aceptada {
    background: #d5f1d5b5;
    border: 1px solid #b6e0b6db;
}

.bolsas .bolsa .info-oferta.rechazada {
    background: #f9f9f9;
}

.bolsas .bolsa .info-oferta .title {
    border-bottom: 1px solid #e2e2e2;
}

.bolsas .bolsa .info-oferta .title .title-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--primario);
}

/*.bolsas .bolsa .info-oferta .title .title-content .estado {
    margin-right: 0.5em;
}

 .bolsas .bolsa .info-oferta {
    border-left: 1px solid #e2e2e2;
} */

.bolsas .bolsa .info-bolsa,
.bolsas .bolsa .info-oferta {
    padding: 1em;
}

.bolsas .bolsa .info-bolsa {
    width: 100%;
}

.bolsas .bolsa .info-bolsa .datos-bolsa {
    display: flex;
    flex-direction: row;
}

.bolsas.full .bolsa .info-bolsa {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.bolsas.full .bolsa .info-bolsa .list {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* color: var(--green); */
    color: var(--negro);
}

.bolsas.full .bolsa .info-bolsa .list span {
    font-weight: 500;
    text-transform: uppercase;
}

.bolsas.full .bolsa .info-bolsa .list span.dispo {
    text-transform: inherit;
    margin-left: 1em;
    font-size: 13px;
    display: flex;
    color: #078607;
    align-items: center;
    background: #9cde9c;
    padding: 0.3em;
}

.bolsas.full .bolsa.red {
    background: #00800024;
    filter: var(--greenHueRotate);
}

.bolsas.full .bolsa:first-child {
    border-radius: 6px 6px 0 0;
    border-top: 1px solid #e2e2e2;
}

.bolsas.full .bolsa:only-child {
    border-radius: 6px;
}

.bolsas.full .bolsa.gray {
    background: #f3f3f3;
    filter: grayscale(1);
}

/*.bolsas.full .bolsa .info-bolsa .list span.dispo.red {
    filter: var(--greenRedHueRotate);
}

.bolsas.full .bolsa .info-bolsa .list span.dispo.gray {
    background-color: #f0f0f0;
    color: #5c5c5c;
}*/

.bolsas.full .bolsa .info-bolsa .list .open-tab {
    height: 20px;
    margin-right: 0.5em;
}

.bolsas.full .bolsa .info-bolsa .list .open-tab svg {
    fill: var(--green);
    transition: 0.2s;
}

.bolsas.full .bolsa .info-bolsa .list .open-tab:hover svg {
    fill: #0ea50e;
    transition: 0.2s;
}

select,
select:focus,
select:focus-visible {
    box-shadow: none;
    border-radius: 6px;
    margin: 0;
    height: 3em;
    width: 100%;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #FFFFFF;
    border: 1px solid #e2e2e2;
    color: var(--negro);
}

select {
    padding: 0 0 0 0.5em;
}

svg.select-arrow {
    position: absolute;
    transform: rotate(180deg);
    top: 1.5em;
    right: 0.5em;
}

.pop-up .form-element.margin svg.select-arrow {
    top: 2.5em;
}

.pop-up svg.select-arrow {
    top: 2em;
}

.pop-up .form-element.no-title {
    margin-bottom: 1em;
}

.pop-up .form-element.no-title .select-arrow {
    top: 1.35em;
}

.overflow-elem .form-element label,
.pop-up .form-element label {
    width: 100%;
    display: inline-block;
    font-size: 0.8em;
}

.overflow-elem svg.select-arrow {
    top: 2.25em;
}

.pop-up .form-element input[type="text"] {
    width: 100%;
}

.bolsas .bolsa .title,
.bolsas .bolsa .title .title-content b {
    font-family: var(--fuenteSec);
    font-weight: bold;
}

/*.bolsas .bolsa .title,
.bolsas .bolsa .title .title-content,
.bolsas .bolsa.penalizacion .title,
.bolsas .bolsa.penalizacion .title .title-content .bolsas .bolsa .info-oferta.aceptada .title .title-content,
.bolsas .bolsa .info-oferta.aceptada .title .title-content b {
    color: var(--green);
}

.bolsas.otras-bolsas .bolsa .title .title-content,
.bolsas.otras-bolsas .bolsa .title {
    color: var(--primario);
}*/

.bolsas .bolsa .title,
.bolsas .bolsa .title .title-content,
.bolsas .bolsa.penalizacion .title,
.bolsas .bolsa.penalizacion .title .title-content .bolsas .bolsa .info-oferta.aceptada .title .title-content,
.bolsas .bolsa .info-oferta.aceptada .title .title-content b,
.bolsas.otras-bolsas .bolsa .title .title-content,
.bolsas.otras-bolsas .bolsa .title {
    color: var(--negro);
}

.bolsas .bolsa.penalizacion .title .title-content .bolsas .bolsa .info-oferta.aceptada .title .title-content,
.bolsas .bolsa .info-oferta.aceptada .title .title-content b {
    color: var(--green);
}

.bolsas.otras-bolsas .bolsa .info-oferta .title .title-content,
.bolsas.otras-bolsas .bolsa .info-oferta .title {
    color: var(--primario);
}

.bolsas.otras-bolsas .bolsa .info-oferta .title svg {
    fill: #808080;
    transition: 0.2s;
}

.bolsas .bolsa .info-oferta.aceptada .title:hover svg.icon-tabler-award,
.bolsas.otras-bolsas .bolsa .info-oferta .title svg.icon-tabler-award {
    fill: var(--green);
    width: 30px;
    position: absolute;
    right: 1em;
}

.bolsas.otras-bolsas .bolsa .info-oferta .title:hover {
    color: var(--primarioSec);
}

.bolsas.otras-bolsas .bolsa .info-oferta .title:hover svg {
    fill: var(--primarioSec);
}

.bolsas.otras-bolsas .info-bolsa .notificaciones a .prioridad {
    filter: hue-rotate(90deg);
}

.bolsas .bolsa .title a {
    cursor: pointer;
}

.bolsas .bolsa .title .title-group a {
    margin-right: 0.25em;
    display: inline-block;
    vertical-align: sub;
}

.bolsas .info-oferta.rechazada .title .title-content b,
.bolsas .info-oferta.rechazada .title svg {
    filter: grayscale(1);
}

.bolsas .info-oferta.urgente .title .title-content b span {
    margin-right: 0.5em;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--fuenteSec);
    font-size: 12px;
}

.bolsas .info-oferta.rechazada .title svg {
    fill: #808080;
}

.bolsas .bolsa .info-oferta {
    margin: 0 1em 1em 1em;
    /* background: #d5f1d5b5; */
    border: 1px solid #e2e2e2;
    background: #ffffff;
    width: calc(100% - 2em);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bolsas .bolsa .info-oferta .datos-bolsa {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bolsas .bolsa .info-oferta.not-open {
    height: 100%;
    align-items: center;
    background: #ececec;
    justify-content: center;
}

.bolsas .bolsa .info-oferta.not-open svg {
    width: 40px;
}

.bolsas .bolsa .info-oferta.not-open svg path {
    stroke: #808080;
}

.bolsas .bolsa .info-oferta.not-open svg path#fill {
    fill: #808080;
}

.bolsas .bolsa .info-oferta.not-open p {
    color: #808080;
    margin-block-end: 0;
}

.not-found {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 50vh;
}

.not-found h2 {
    color: #b3b3b3;
    font-size: 1.2em;
    text-align: center;
}

.not-found svg {
    fill: #d3d3d3;
}

.pdf-reader .not-found {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pdf-reader a.button.center {
    align-self: center;
    margin-top: 2em;
}

.bolsas .bolsa .info-bolsa .title,
.bolsas .bolsa .info-oferta .title {
    margin-block-start: 0;
    margin-bottom: 1em;
    display: flex;
    padding-bottom: 0.5em;
    justify-content: space-between;
    width: 100%;
    transition: 0.2s;
}

.bolsas .bolsa .info-bolsa .title {
    text-transform: uppercase;
    border-bottom: 1px solid #e2e2e2;
}

.bolsas .bolsa .info-oferta.aceptada .title {
    border-bottom: 1px solid #b6e0b6db;
}

.bolsas.full .bolsa .info-bolsa .title {
    width: auto;
    border-bottom: none;
    margin-bottom: 0;
    display: flex;
}

.bolsas .bolsa .info-bolsa .title a:last-child svg,
.bolsas .bolsa .info-oferta .title a:last-child svg,
.bolsas.full .bolsa .info-bolsa .title svg {
    fill: #808080;
    transition: 0.2s;
}

.bolsas .bolsa .info-bolsa .title .title-group a svg,
.bolsas .bolsa .info-oferta .title .title-group a svg {
    fill: var(--green);
    transition: 0.2s;
}

.bolsas .bolsa .info-bolsa .title a:hover svg,
.bolsas .bolsa .info-oferta .title:hover svg {
    fill: #0ea50e;
    transition: 0.2s;
}

/* .bolsas .bolsa.penalizacion .info-bolsa .title .title-group a svg,
.bolsas .bolsa.penalizacion .info-oferta .title .title-group a svg {
    fill: var(--primario);
    transition: 0.2s;
}

.bolsas .bolsa.penalizacion .info-bolsa .title a:hover svg,
.bolsas .bolsa.penalizacion .info-oferta .title:hover svg {
    fill: var(--primarioSec);
    transition: 0.2s;
} */

.bolsas .bolsa .info-oferta.aceptada .title:hover svg {
    fill: #0ea50e;
}

/*.bolsas .bolsa .info-bolsa .title:hover, */
.bolsas .bolsa .info-oferta .title:hover {
    color: var(--primarioSec);
    transition: 0.2s;
}

header {
    display: flex;
    width: 100%;
    display: -ms-flexbox;
    justify-content: center;
    background-color: var(--primario);
    padding: 0.5em 0;
    margin-bottom: 1em;
    color: #FFFFFF;
    align-items: center;
}

main {
    min-height: 41.5vh;
    display: flex;
    flex-direction: column;
    width: 80%;
}

.frame.space-between {
    justify-content: space-between;
}

.frame {
    justify-content: center;
    position: relative;
}

.frame.lateral {
    justify-content: flex-start;
}

.frame.lateral .docu-container {
    display: flex;
    flex-direction: column;
}

.frame div {
    align-self: center;
}

.docu-container,
.docu-container form {
    width: 100%;
}

.docu-container form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2em;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
}

.docu-container .docu-elem {
    width: 49%;
    /*min-height: 195px;*/
    min-height: 150px;
    display: flex;
    flex-direction: column;
    background: #efefef;
    border-radius: 6px;
    padding: 0.5em;
    align-self: stretch;
    margin-bottom: 1.5em;
    position: relative;
}

.docu-container.info-oferta .docu-elem {
    width: 100%;
    min-height: auto;
    margin-bottom: 0;
}

.docu-container.info-oferta .docu-elem label {
    color: #181818;
    font-size: 12px;
}

.docu-container.info-oferta svg.select-arrow {
    top: 2.1em;
}

.docu-container.info-oferta a.title,
.frame .ofertas-container.oferta-detalle a.title {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #181818;
    margin-bottom: 1em;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #e2e2e2;
    align-items: baseline;
    justify-content: flex-start;
    padding-bottom: 1em;
}

.docu-container.info-oferta .docu-elem {
    padding: 0;
    background-color: transparent;
}

.docu-container.info-oferta select {
    margin-top: 0.25em;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 25px;
}

.docu-container.info-oferta.inactiva select {
    pointer-events: none;
    color: #4e4e4e;
}

.docu-container.info-oferta .docu-elem .lista_ficheros.margin {
    border-top: 1px solid #e2e2e2;
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
}

.docu-container.info-oferta.inactiva .docu-elem .lista_ficheros.margin {
    border-bottom: 1px solid #e2e2e2;
    border-radius: 6px;
}

.docu-container.info-oferta .docu-elem.empty .lista_ficheros.margin {
    border-top: none;
    border-left: none;
    border-right: none;
}

.bolsas .docu-elem .lista_ficheros.margin {
    border: 1px solid #e2e2e2;
    border-radius: 6px;
}

.bolsas .docu-elem {
    width: 100%;
}

.docu-container .docu-elem label {
    font-weight: 500;
    color: #484848;
    font-family: var(--fuente);
}

.docu-container .docu-elem label.new-add ul li,
.docu-container .docu-elem label.new-add ul li:first-child,
.docu-elem .lista_ficheros.margin label.new-add li:first-child {
    border-top: 1px solid #f0f0f0;
}

.docu-elem .lista_ficheros.margin i {
    font-style: normal;
}

.docu-container .docu-elem div,
.docu-container .docu-elem ul {
    width: 100%;
}

.docu-container .docu-elem.empty .mostrar_doc {
    display: flex;
    align-self: stretch;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.docu-container .docu-elem.empty .mostrar_doc.none {
    display: none;
}

.docu-container .docu-elem.empty .adjuntar {
    height: 100%;
    display: flex;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    border: 1px solid #008000a3;
    background: transparent;
    align-self: stretch;
}

.docu-container .docu-elem.empty .adjuntar .add {
    display: none;
}

.docu-container .docu-elem.empty .adjuntar .new {
    display: flex;
    color: #008000a3;
    font-weight: 500;
    transition: 0.2s;
}

.docu-container .docu-elem.empty .adjuntar svg.new {
    fill: #008000a3;
    margin: 0 0.25em 0.25em 0;
}

.docu-container .docu-elem.empty .adjuntar:hover .new {
    color: #ffffff;
    transition: 0.2s;
}

.docu-container .docu-elem.empty .adjuntar:hover svg.new {
    fill: #ffffff;
    transition: 0.2s;
}

.docu-elem .lista_ficheros.margin {
    -webkit-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-radius: 6px 6px 0 0;
    max-height: 202px;
    overflow-y: auto;
}

#dv_cargando_anexo img {
    width: 2.5em;
}

.docu-elem .lista_ficheros.margin li {
    display: flex;
    padding: 0.5em;
    flex-direction: row;
    /* align-items: center; */
    align-items: stretch;
    border-top: 1px solid #f0f0f0;
    justify-content: space-between;
    background: #ffffff;
    transition: 0.3s;
}

.docu-elem .lista_ficheros.margin li.rechazado {
    filter: var(--greenHueRotate);
}

.docu-elem .lista_ficheros.margin li.rechazado {
    background: #f3fdf3;
}

.docu-elem .lista_ficheros.margin li.validado {
    background: #f7fff7e8;
}

.docu-elem .lista_ficheros.margin li:hover {
    transition: 0.3s;
    background: var(--primarioLighter);
}

.docu-elem .lista_ficheros.margin li.rechazado:hover,
.docu-elem .lista_ficheros.margin li.validado:hover {
    background: #d9ffd9;
}

.docu-elem .lista_ficheros.margin li:first-child {
    border-top: none;
}

.docu-elem .lista_ficheros.margin li a {
    color: var(--primario);
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
    font-family: var(--fuente);
    font-size: 0.9em;
    width: calc(100% - 112px);
}


.docu-elem .lista_ficheros.margin li.rechazado a,
.docu-elem .lista_ficheros.margin li.validado a {
    color: var(--green);
    width: calc(100% - 49px);
}

.adjuntar .new,
.docu-container.info-oferta .docu-elem span.new {
    display: none;
}

.docu-elem .lista_ficheros.margin li a svg {
    width: 17px;
    fill: #9b9b9b;
    /* margin-top: 2px; */
    transition: 0.2s;
}

.docu-elem .lista_ficheros.margin li .edit-buttons a:hover svg.delete {
    fill: #c04c4c;
    transition: 0.2s;
}

.docu-elem .lista_ficheros.margin li .edit-buttons a:hover svg.edit {
    fill: var(--azulOscuro);
    transition: 0.2s;
}

.docu-container .docu-elem .adjuntar {
    width: 100%;
    padding: 0.5em;
    display: flex;
    background: #008000a3;
    justify-content: center;
    transition: 0.2s;
    border-radius: 0 0 6px 6px;
    cursor: pointer;
}

.docu-container .docu-elem.empty .adjuntar:hover {
    transition: 0.2s;
    background: #008000a3;
}

.eximente .docu-container .docu-elem.empty .adjuntar {
    margin: 0.5em 0 1em 0;
}

.eximente .docu-container .docu-elem .adjuntar {
    margin: 0 0 1em 0;
}

.docu-container .docu-elem .adjuntar span.add {
    align-self: flex-end;
    font-family: var(--fuenteSec);
    font-weight: bold;
    color: white;
    margin-left: 0.5em;
    font-size: 0.9em;
    transform: translateX(80px);
    transition: 0.2s;
    opacity: 0;
}

.docu-container .docu-elem .adjuntar svg.add {
    width: 16px;
    transform: translateX(80px);
    transition: 0.2s;
    fill: #ffffff;
}

.docu-container .docu-elem .adjuntar:hover span.add {
    transform: translateX(0px);
    transition: 0.2s;
    opacity: 1;
}

.docu-container .docu-elem .adjuntar:hover svg.add {
    transform: translateX(0px);
    transition: 0.2s;
}

.docu-container .docu-elem-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 0 0.5em 0;
}


.docu-container .docu-elem-header input[type="text"] {
    background-color: #ffffff;
    border-radius: 0;
    border: 1px solid #e2e2e2;
    height: 25px;
    min-height: 25px;
    width: 110px;
}

.docu-container .docu-elem-header a {
    position: absolute;
    right: 3px;
    top: 3px;
    cursor: pointer;
}

.docu-container .docu-elem .docu-elem-header .form-element {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}

.docu-container .docu-elem .docu-elem-header .form-element label {
    font-size: 12px;
    margin-right: 0.5em;
}

.docu-container .docu-elem-header a:hover svg.save-icon {
    fill: var(--azulOscuro);
    transition: 0.2s;
}

/* TOGGLE */

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #ffffff;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--green);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primarioSec);
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* THUMBNAIL */

.thumbnail {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.docu-container .docu-elem div.thumbnail-img,
.thumbnail .thumbnail-img {
    width: 3.5em;
    height: 3.5em;
    overflow: hidden;
    margin-right: 0.5em;
    position: relative;
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
}

.thumbnail .thumbnail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail span {
    font-weight: 500;
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* SCROLLBAR */
.docu-elem .lista_ficheros.margin {
    position: relative;
    overflow: overlay;
}

.docu-elem .lista_ficheros.margin::-webkit-scrollbar-thumb,
.candidatos .table-view .table-view-content::-webkit-scrollbar-thumb,
#dv_dispo .dispo::-webkit-scrollbar-thumb {
    background-color: var(--grisNeutro);
    border: 2px solid transparent;
    border-radius: 8px;
    background-clip: padding-box;
}

.docu-elem .lista_ficheros.margin::-webkit-scrollbar-track,
.candidatos .table-view .table-view-content::-webkit-scrollbar-track,
#dv_dispo .dispo::-webkit-scrollbar-track {
    background: transparent !important;
}

.docu-elem .lista_ficheros.margin::-webkit-scrollbar,
.candidatos .table-view .table-view-content::-webkit-scrollbar,
#dv_dispo .dispo::-webkit-scrollbar {
    width: 10px;
}

.frame.center {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header h2 {
    font-size: 1em;
    color: #FFFFFF;
    font-weight: bold;
    margin: 0;
    width: auto;
}

header p {
    margin-block-start: 0;
    font-size: 0.9em;
    margin-block-end: 0;
}

nav {
    display: flex;
    width: 100%;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    padding-top: 0.4em;
}

a {
    text-decoration: none;
}

ul {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

ul li {
    list-style: none;
}

.frame,
.one-column {
    width: 1350px;
    display: flex;
    flex-wrap: wrap;
    display: -ms-flexbox;
}

.one-column {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1em;
    position: relative;
}

.one-column svg {
    fill: var(--grisNeutro);
    width: 135px;
}

.one-column svg.smaller {
    width: 100px;
}

.one-column svg.stroke {
    stroke: var(--grisNeutro);
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}


#btn_bOfertas,
#clear_bOfertas,
#clear_bReclamaciones {
    margin-left: 0.25em;
}

#clear_bOfertas svg,
#clear_bReclamaciones svg,
.icon--filled__glyph,
.icon-filled__glyph {
    fill: var(--grisTor);
    fill: #8d8d8d;
}

.pestana_global {
    align-self: flex-start;
    margin: 1em 0;
    flex-direction: row;
    display: flex;
    align-items: baseline;
}

.pestana_global svg {
    margin-right: 2em;
    overflow: visible;
}

.pestana_global .close-menu svg {
    margin-right: 0;
}

.pestana_global a {
    transition: 0.2s;
    font-size: 1em;
    font-weight: 500;
    color: var(--grisTor);
    color: #8d8d8d;
    text-decoration: none;
    cursor: pointer;
}

.pestana_global a.active {
    text-decoration: underline;
}

.pestana_global li {
    list-style: none;
    margin-right: 1.25em;
    padding: 0;
    border-bottom: 2px solid #FFFFFF;
}

.menu_pub_list {
    display: flex;
    flex-direction: row;
}

.close-menu {
    display: none;
}

nav.lang {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    padding-top: 0;
}

div.lang {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu-responsive {
    margin-left: 1em;
    display: none;
    cursor: pointer;
}

.menu-responsive svg {
    width: 24px;
    height: 24px;
}

.ofertas-menu {
    align-self: flex-start;
}

.ofertas-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ofertas-container .datos-bolsa {
    margin: 1em 0;
    padding: 1em;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    width: 750px;
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ofertas-container .datos-bolsa.rechazada {
    background-color: #f9f9f9;
}

.ofertas-container .datos-bolsa .estado {
    position: absolute;
    right: 1em;
    top: 1em;
}

/*.bolsas .estado,
.datos-bolsa .estado,*/
.bolsas .estado span,
.datos-bolsa .estado span {
    color: #ffffff;
    font-family: var(--fuenteSec);
    font-weight: bold;
    font-size: 0.55em;
    text-transform: uppercase;
    padding: 0.5em;
    border-radius: 6px;
}

.bolsas .estado {
    position: absolute;
    top: -0.75em;
    padding: 0;
    margin: 0;
}

.rechazada .estado span {
    background: #d82727;
}

.berria .estado span.urgencia,
.rechazada .estado span.urgencia {
    background: var(--orange);
    margin-right: 1em;
}

.berria .estado span {
    background-color: var(--primarioShinny);
}

.bolsa.penalizacion .berria .estado span {
    background-color: #109b10;
}

.bolsas .bolsa.penalizacion .info-oferta .title .title-content {
    color: var(--green);
}

.aceptada .estado span {
    background: var(--green);
}

.ofertas-container .buttons {
    margin-top: 1em;
    padding-top: 1em;
    /* border-top: 1px solid #e2e2e2; */
}

.ofertas-container .buttons .button:first-child {
    margin-right: 1em;
}

.info-oferta {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.ofertas-container a.normal {
    text-align: right;
}

a.normal {
    font-weight: 500;
    color: var(--grisNeutro);
    transition: 0.2s;
}

a.normal svg {
    fill: var(--grisNeutro);
    transition: 0.2s;
}

a.normal:hover {
    color: var(--primario);
}

a.normal:hover svg {
    fill: var(--primario);
}

#current-lang {
    cursor: pointer;
}

#lang-nav {
    z-index: 10;
    box-shadow: 0 0 10px rgb(24 24 24 / 20%);
    margin-top: 1.5em;
    padding: 1em;
    transition: transform .32s cubic-bezier(.4, 0, .2, 1), opacity .32s cubic-bezier(.52, .16, .24, 1);
    border-radius: 6px;
    margin-left: -10px;
    position: absolute;
    background: #FFFFFF;
    flex-direction: column;
    display: none;
    pointer-events: none;
}

.second-part {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.second-part div.lang {
    margin-left: 1em;
}

.desconectar,
.border-button {
    padding: 0.25em 0.5em;
    border: 1px solid var(--primario);
    color: var(--primario);
    border-radius: 6px;
    font-family: var(--fuente);
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: 0.2s;
}

.desconectar svg,
.border-button svg {
    margin-right: 0.5em;
    fill: var(--primario);
}

.desconectar svg {
    stroke-width: 5px;
    stroke: var(--primario);
}

.desconectar span,
.border-button span {
    font-weight: 500;
}

.desconectar:hover,
.border-button:hover {
    background-color: var(--primario);
    color: #ffffff;
    transition: 0.2s;
}

.desconectar:hover svg,
.border-button:hover svg {
    fill: #ffffff;
    transition: 0.2s;
}

.desconectar {
    cursor: pointer;
}

.desconectar:hover svg {
    stroke: #ffffff;
}

.go-back {
    position: absolute;
    top: 2em;
    left: 0;
    font-family: var(--fuente);
    display: flex;
    display: -ms-flexbox;
    flex-direction: row;
    align-items: center;
    align-content: center;
    align-self: baseline;
    font-weight: 500;
    color: #8d8d8d;
    cursor: pointer;
}

.go-back svg {
    margin-right: 8px;
    transition: 0.2s;
    width: 24px;
}

.go-back:hover svg {
    transform: translateX(-5px);
}

.password-rev {
    font-size: 0.75em;
}

.password-rev ul {
    padding-left: 18px;
}

.password-rev ul li {
    color: var(--green);
    font-weight: 500;
    margin-bottom: 0.3em;
}

.password-rev ul li.unactive {
    color: #808080;
    font-weight: normal;
}

.password-rev ul li.error {
    color: #e90707;
    font-weight: 500;
}

.password-rev ul li {
    list-style: disc;
}

.desc_alert {
    display: flex;
    padding: 0.25em;
    background: #f9bfbf;
    color: var(--rojoOscuro);
    font-weight: bold;
    flex-direction: row;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}

.desc_alert svg {
    fill: var(--rojoOscuro);
    margin-right: 0.25em;
}

.lang span a,
ul#lang-nav li a {
    font-weight: 500;
    color: var(--grisTor);
    color: #8d8d8d;
}

#current-lang .icon-filled {
    width: 12px;
    height: 12px;
}

ul#lang-nav li {
    padding: 0;
}

.lang ul li:first-child {
    margin-bottom: 1em;
}

.button-area {
    display: flex;
    flex-direction: row;
}

.button-area #cerrar-datos-personales {
    width: 32px;
    height: 32px;
    margin-left: 0.5em;
}

.button-area #cerrar-datos-personales {
    cursor: pointer;
    display: none;
}

.info-container.active .button-area #cerrar-datos-personales {
    display: inline-block;
}

.info-container.active .button-area #editar-datos-personales {
    display: none;
}

.button-area #cerrar-datos-personales #red {
    fill: #d82727;
    transition: 0.2s;
}

.button-area #cerrar-datos-personales:hover #red {
    fill: #fa4d4d;
    transition: 0.2s;
}

.button.red {
    background: #d82727;
    transition: 0.2s;
}

.button.red:hover {
    background: #fa4d4d;
    transition: 0.2s;
}

.info-container {
    padding: 0.5em 1em;
    /* background: #f9f9f9; */
    background: #ffffff;
    border: 1px solid #dbd9d9;
    border-radius: 6px;
    transition: 0.2s;
    width: 100%;
    margin-bottom: 2em;
}

.info-container.active .form-element input[type="text"] {
    background-color: #ffffff;
}

.form-element {
    position: relative;
}

.form-element p,
.form-element ul,
.form-element .row-element {
    font-size: 0.85em;
}

.form-element .row-element {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 0.5em;
}

.bolsas .bolsa .form-element .row-element .container:first-child,
.bolsas .bolsa .form-element .row-element .container:first-child span {
    margin-left: 0;
}

.bolsas .bolsa .form-element .row-element .container {
    margin-left: 1em;
}

.bolsas .bolsa .form-element .row-element .container .txt {
    height: 20px;
    display: inline-block;
    vertical-align: sub;
    font-size: 1.25em;
    font-weight: 500;
}

.bolsa-detalle {
    width: 750px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e2e2;
    padding: 0.5em;
    border-radius: 6px;
    margin: 1em 0 2em 0;
}

.bolsa-detalle h2 {
    margin-block-start: 0;
    margin-block-end: 0;
    font-size: 17px;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 0.5em;
    display: none;
}

.datos-bolsa-detalle {
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 1em;
    margin: 0.5em 0 1em 0;
}

.datos-bolsa-detalle:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin: 0.5em 0 1em 0;
}

.datos-bolsa-detalle ul {
    padding-inline-start: 40px;
}

.datos-bolsa-detalle ul li {
    /* list-style: "\2013"; */
    list-style: disc;
    margin-right: 0.5em;
}

.bolsa-detalle label {
    margin-bottom: 0.5em;
}

.form-element a.tiny {
    color: #808080;
    font-weight: 500;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    /* margin-top: 1em; */
    cursor: pointer;
}

.form-element a.tiny svg {
    fill: #808080;
    margin-right: 0.25em;
    width: 14px;
}

/* .datos-bolsa .form-element {
    margin-bottom: 0.5em;
} */

.datos-bolsa .form-element.switch-area {
    display: flex;
    width: 150px;
    flex-direction: row;
    align-items: center;
    margin-right: 1em;
    margin-bottom: 0;
}

.datos-bolsa .form-element.switch-area .switch {
    margin-right: 0.5em;
}

.datos-bolsa .form-element:last-child {
    margin-bottom: 0;
}

.info-container .form-element input[type="text"] {
    background-color: #f9f9f9;
}

.info-container.active {
    -webkit-box-shadow: 5px 3px 5px -4px rgb(0 0 0 / 15%);
    -moz-box-shadow: 5px 3px 5px -4px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 3px 5px -4px rgb(0 0 0 / 15%);
    border: 1px solid #e2e2e2;
    transition: 0.2s;
    /* background: #ffffff; */
    background: #f6fff6;
}

.info-container form .info {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-container .title-part {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2em;
}

.info-container.active .title-part {
    border-bottom: 1px solid #e2e2e2;
}

.info-container .title-part {
    border-bottom: 1px solid #dbd9d9;
}

.info-container h2 {
    width: 90%;
    text-transform: uppercase;
    font-size: 1em;
}

.info-container .form-element {
    width: 19%;
    display: flex;
    flex-direction: column;
    font-size: 1.3em;
    margin-bottom: 1em;
    position: relative;
}

.info-container .form-element.double {
    width: 39%;
}

label,
.docu-container.info-oferta .docu-elem label {
    font-weight: bold;
    font-family: var(--fuenteSec);
}

.docu-container.info-oferta .docu-elem span {
    display: flex;
    flex-direction: column;
}

.eximente .docu-container.info-oferta select {
    margin-bottom: 0.5em;
}

.form-element label {
    font-size: 11px;
}

.form-element input[type="text"] {
    /*min-height: 2.5em;
    border-radius: 2px;*/
    min-height: 3em;
    border-radius: 6px;
    padding: 0.5em;
    background-color: #FFFFFF;
    border: 1px solid #e2e2e2;
}

.form-element input[type="text"]:focus-visible {
    border: 1px solid var(--primario);
    outline: none;
}

.form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.info-container #datos-personales {
    pointer-events: none;
}

.info-container.active #datos-personales {
    pointer-events: all;
}

.info-container .more-info {
    display: none;
}

.info-container.active .more-info {
    display: inline-block;
    width: 100%;
}

.form.margins .form-element {
    margin-right: 1.25%;
}

.form.margins .form-element:last-child {
    margin-right: 0;
}

.form.space-between {
    justify-content: space-between;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

.form hr {
    width: 100%;
    border-top: 1px solid #e2e2e2;
}

.form h3 {
    width: 100%;
    font-size: 0.9em;
    text-transform: uppercase;
}

.title-part span {
    right: 0;
    top: 0;
    position: absolute;
}

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.info-container .buttons {
    display: none;
}

.info-container.active .buttons {
    display: flex;
    margin-bottom: 1em;
}

.button {
    font-size: 1em;
    line-height: 1rem;
    padding: 0.75em 1.5em;
    font-family: var(--fuenteSec);
    font-weight: bold;
    background-color: var(--green);
    color: #FFFFFF;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}

.button:hover {
    background-color: #0ea50e;
}

.button.secondary {
    background-color: #1971c2;
}

.button.secondary:hover {
    background-color: #1e87d9;
}

.swal2-confirm.swal2-styled {
    background-color: var(--primario) !important;
}

.notificaciones {
    font-size: 0.9em;
    width: 100%;
    margin: 0.5em 0;
}

.notificaciones .prioridad {
    background-color: #bfebbf;
    margin-bottom: 1em;
    font-weight: 500;
    padding: 0.5em;
    border-radius: 6px;
}

.datos-bolsa .notificaciones,
.datos-bolsa .notificaciones .prioridad,
.info-bolsa .notificaciones .prioridad {
    margin-bottom: 0;
}

.info-bolsa .notificaciones {
    margin: 0;
}

.datos-bolsa .notificaciones a:hover .prioridad,
.info-bolsa .notificaciones a:hover .prioridad {
    background-color: #bfebbfb3;
    transition: 0.3s;
}

.datos-bolsa .notificaciones a .prioridad,
.info-bolsa .notificaciones a .prioridad,
.datos-bolsa .notificaciones.prioridad,
.info-bolsa .notificaciones .prioridad {
    color: #004e00;
}

.notificaciones .prioridad.alta {
    background-color: #ebbfbf;
    margin-bottom: 1em;
    padding: 0.5em;
    border-radius: 6px;
}

.rechazada .estado span.urgencia::before,
.notificaciones .prioridad::before {
    font-family: "Font Awesome 5 Free";
    content: "\f071";
    font-weight: 900;
    margin-right: 8px;
    color: inherit;
}

.info-bolsa .notificaciones .prioridad span {
    font-size: 12px;
    font-weight: 500;
    margin-top: 3px;
    display: inline-block;
    font-style: italic;
}

.info-bolsa .notificaciones .prioridad span::before {
    font-family: "Font Awesome 5 Free";
    content: "\f05a";
    font-size: 14px;
    font-style: normal;
    vertical-align: baseline;
    font-weight: 900;
    margin-right: 2px;
    color: inherit;
}

.penalizacion .notificaciones .prioridad::before {
    content: none;
    margin-right: 0;
}

.rechazada .estado span.urgencia::before {
    margin-right: 5px;
    vertical-align: text-top;
}

.leyenda::before {
    font-family: "Font Awesome 5 Free";
    content: "\f071";
    font-weight: 900;
    margin-right: 4px;
    color: inherit;
}

.button-border {
    width: 30px;
    padding: 0.2em;
    border-radius: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    cursor: pointer;
}

.docu-elem div.edit-buttons {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
}

.docu-elem div.edit-buttons a {
    cursor: pointer;
}

.docu-elem div.edit-buttons .valid path {
    fill: var(--green);
}

.docu-elem div.edit-buttons .clock {
    width: 15px;
    fill: #bebebe;
}

.docu-elem div.edit-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100px;
    justify-content: space-between;
}

.docu-container .docu-elem #lista_DNIdoc div.edit-buttons,
.eximente .docu-container .docu-elem div.edit-buttons {
    width: 67px;
}

.frame #reclamacion-detalle .docu-container .docu-elem div.edit-buttons {
    width: 70px;
}


.frame #reclamacion-detalle .docu-container .docu-elem div.edit-buttons.solo {
    width: 40px;
}

.frame #reclamacion-detalle .docu-container .docu-elem li.rechazado div.edit-buttons,
.docu-container .docu-elem li.rechazado div.edit-buttons,
.docu-container .docu-elem li.validado div.edit-buttons,
.docu-container .docu-elem #lista_DNIdoc li.validado div.edit-buttons,
.bolsas .info-oferta .docu-elem div.edit-buttons {
    width: 43px;
}

.docu-container .docu-elem div.edit-buttons a:nth-child(2) {
    margin-left: 10px;
}

.docu-elem div.valid-icon {
    border-left: 1px solid #f0f0f0;
    padding-left: 12px;
    margin-left: 10px;
    height: 100%;
    width: 33px;
    display: flex;
    align-items: center;
}

.docu-elem .rechazado div.valid-icon svg {
    fill: var(--green);
    width: 16px;
}

.button-border.green {
    background: var(--green);
}

.button-border.green:hover {
    background-color: #3ba83b;
}

#cerrar-datos-personales .close {
    transition: 0.2s;
    fill: #df0606;
}

#cerrar-datos-personales:hover .close {
    fill: #eb3939;
}

.button-border .icon--filled {
    fill: #ffffff;
    width: 18px;
}

form.login-form {
    display: flex;
    background: #f0f0f0;
    border-radius: 6px;
    flex-direction: column;
    align-items: center;
    width: 25em;
    padding: 1.5em 2em 2em 2em;
    margin: 0 0 2em 0;
}

form.login-form div {
    width: 100%;
    margin-bottom: 0.5em;
}

form.login-form input[type="text"],
form.login-form input[type="text"]:focus,
form.login-form input[type="password"],
form.login-form input[type="password"]:focus {
    width: 100%;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    font-size: 0.9rem;
    height: 3em;
    border-radius: 6px;
    height: 3em;
    padding-left: 0.5em;
}

form.login-form input[type="text"],
form.login-form input[type="password"] {
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
}

form.login-form input[type="password"]:focus,
form.login-form input[type="text"]:focus {
    background-color: #ffffff;
    border: 1px solid var(--primario);
}

form.login-form .button {
    margin: 1em 0;
}

form.login-form label {
    font-size: 0.8em;
}

form.login-form .options {
    display: flex;
    flex-direction: column;
}

form.login-form .options a {
    color: var(--negro);
    font-family: var(--fuenteSec);
    font-weight: bold;
    font-size: 0.8em;
    margin-bottom: 1em;
    text-decoration: underline;
}

form.login-form .options a:last-child {
    margin-bottom: 0;
}

.checkbox-aceptar-normativa {
    margin: 1em 0;
}

/* LISTA PDF */

.pdf-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 2em 0;
}

.aceptar-normativa .pdf-list {
    margin: 0;
}

.pdf-list a {
    position: relative;
    color: #181818;
    font-family: var(--fuenteSec);
    font-weight: bold;
    width: 100%;
    /* padding: 1em; */
    padding: 0.75em;
    border-radius: 6px;
    border: 1px solid #e2e2e2;
    margin-bottom: 1em;
}

.pdf-list a:hover {
    border: 1px solid #8d8d8d;
}

.pdf-list a:hover .view,
a.contenido-desplegable:hover .view {
    opacity: 1;
}

.contenido-desplegable .view,
.desplegable.transparencia .pdf-list .view,
.pdf-list .view {
    float: right;
    opacity: 0;
    transition: 0.2s;
}

.pdf-list .icon-filled,
.pdf-list .icon-filled__glyph {
    fill: var(--primario);
    width: 24px;
    height: 24px;
}

.pdf-list svg {
    vertical-align: text-bottom !important;
    margin-right: 0.5em;
}

.contenido-desplegable span,
.desplegable-text .contenido-desplegable span {
    background: none;
    border-radius: 0;
    border-top: none;
    color: var(--negro) !important;
    font-family: var(--fuenteSec);
    font-weight: bold;
    font-size: 1em !important;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.contenido-desplegable .view {
    margin-left: auto;
}

.pdf-list.extra-margin {
    margin: 2em 0;
}

.desplegable.transparencia .pdf-list.no-margin {
    margin: 0;
}

.pdf-list .desplegable.transparencia {
    width: 100%;
}

.pdf-list .desplegable.transparencia a .datatable_info_footer.paginacio_footer {
    font-weight: normal;
    font-family: var(--fuente);
    right: 2.5em;
    top: 0.25em;
}

.pdf-list .desplegable.transparencia .move .datatable_info_footer.paginacio_footer.middle {
    top: auto;
    right: 1em;
    transform: translateX(0);
    transition: 0.2s;
}

.pdf-list .desplegable.transparencia .move:hover .datatable_info_footer.paginacio_footer.middle {
    transform: translateX(-2.5em) !important;
    transition: 0.2s;
}

.pdf-list .desplegable.transparencia a:hover .datatable_info_footer.paginacio_footer {
    transform: translateX(0px);
}

.pdf-list.no-marg {
    margin: 0.5em 0 0 0;
}

footer {
    display: flex;
    width: 100%;
    background-color: var(--negro);
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
}


footer.absolute {
    position: absolute;
    bottom: 0;
}

footer .frame {
    margin: 1em 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

footer .logo-link {
    width: 6em;
}

footer ul {
    width: 85%;
    padding: 0;
    display: flex;
    display: -ms-flexbox;
    list-style: none;
    color: #FFFFFF;
    justify-content: center;
}

footer ul li,
footer ul li a {
    font-family: var(--fuente);
    font-weight: 500;
}

footer ul li {
    font-size: 0.85em;
    margin-right: 1.25em;
}

footer ul li::after {
    content: "|";
    margin-left: 1em;
    font-weight: normal;
}

footer ul li:last-child {
    margin-right: 0;
}

footer ul li:last-child::after {
    content: none;
}

footer img {
    width: 5%;
}

footer ul a {
    color: #FFFFFF;
}

footer a:first-child {
    color: #ffffff;
}

footer a:first-child b {
    font-weight: bold;
    font-family: 'Montserrat';
}

#dv_anexar {
    display: none;
}

/* #dv_anexar2,
#dv_modificar {
    padding: 1em;
    z-index: 1000;
    border: 1px solid #bdbdbd !important;
} */

.overlay-div,
.overflow-container,
#dv_dispo {
    z-index: 1000;
}

.absolute.dispo {
    /* position: absolute;
    right: 0;
    top: 2.5em; */
    background-color: #9cde9c;
    color: #078607;
    padding: 0.5em;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    margin-left: 1em;
    width: 265px;
}

.absolute.dispo.no-disponible {
    filter: grayscale(1);
    background: #e1e1e1;
}

.absolute.dispo.penalizacion {
    filter: var(--greenHueRotate);
    background: #e1e1e1;
}

.full-title {
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
    padding-bottom: 2.17em;
    border-bottom: 1px solid #e2e2e2;
    display: flex;
    margin-top: 1.5em;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.full-title h1 {
    width: calc(100% - 550px);
    font-size: 1.75em;
    border-bottom: none;
    padding-bottom: 0;
    margin: 0;
    text-transform: uppercase;
}

.full-title .go-back {
    position: static;
    align-self: center;
    width: 250px;
}

.overflow-elem {
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    border: 1px solid #e2e2e2;
}

.overlay-div div.overflow-title:first-child,
.overflow-title {
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 1em;
    padding-bottom: 0.75em;
    display: flex;
    justify-content: space-between;
}

.overflow-title h3 {
    display: inline;
}

#dv_dispo .historico {
    display: flex;
    flex-direction: column;
    background: white;
    width: 460px;
    padding: 1em;
}

.overflow-container::before,
/*#dv_anexar2::before,
#dv_modificar::before,
#dv_dispo::before, */
.overlay-div::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--overlayTransp);
    z-index: -1;
}

.pop-up select {
    margin-top: 1em;
}

.pop-up .form-element select {
    margin-top: 0.5em;
}

.pop-up .leyenda {
    font-weight: 500;
    /* padding: 0.5em; */
    margin: 0.5em 0 0.75em 0;
    color: #808080;
    /* background: #dddddd; */
    display: block;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Roboto';
}

/* #dv_modificar div:first-child,
#dv_anexar2 div:first-child,
#dv_dispo div:first-child {
    display: flex;
    justify-content: space-between;
} */

#dv_modificar_cierre,
#dv_anexar2_cierre,
#dv_dispo_cierre {
    display: inline-block;
    width: 20px;
}

#dv_modificar_cierre svg,
#dv_anexar2_cierre svg,
#dv_dispo_cierre svg {
    margin-top: 0 !important;
    cursor: pointer;
}

/* #dv_dispo div:first-child, 
#dv_modificar div:first-child,
#dv_anexar2 div:first-child {
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
    margin-right: 0px;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}*/

.overlay-div div:first-child {
    border-bottom: none;
}

.overlay-div div.overflow-elem:first-child {
    border-bottom: 1px solid #e2e2e2;
}

#dv_modificar div.form-element:first-child {
    border-bottom: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 1em;
}

#dv_dispo div.datos:first-child,
#dv_dispo div.datos {
    width: 100%;
    /* border-top: 1px dotted #808080;
    border-right: 1px dotted #808080;
    border-left: 1px dotted #808080; */
    margin-right: 0px;
    padding: 0.2em;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

/* #dv_dispo div.datos:last-child {
    border-bottom: 1px dotted #808080;
} */

#dv_dispo .first.dispo div.datos:first-child {
    margin-bottom: 1em;
    border: 1px solid;
    /* position: absolute; */
}

#dv_dispo .all.dispo div.datos:first-child {
    display: none;
}

#dv_dispo div div.puesto:first-child {
    border-bottom: none;
    margin-bottom: 0;
    display: flex;
    justify-content: flex-start;
    color: #4f4f4f;
    align-items: baseline;
}

#dv_dispo .puesto #suitcase_icon {
    fill: #4f4f4f;
    margin-right: 0.25em;
}

#dv_dispo .puesto b {
    font-weight: 500;
}

#dv_modificar div.up_eus:first-child,
#dv_anexar2 div.up_eus:first-child,
#dv_dispo div.up_eus:first-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

#dv_modificar_barra .NegritaBlanco13,
#dv_anexar2_barra .NegritaBlanco13,
#dv_dispo_barra .NegritaBlanco13 {
    font-weight: bold;
    width: 85%;
    font-family: var(--fuenteSec);
    margin-left: -0.5em;
    height: 15px;
    text-align: left;
}

#dv_modificar_barra,
#dv_anexar2_barra,
#dv_dispo_barra {
    width: 100% !important;
}

#dv_modificar_barra span,
#dv_anexar2_barra span,
#dv_dispo_barra span {
    width: calc(100% - 30px) !important;
}

#lbl_doc {
    display: none;
}

#dv_dispo .dispo {
    display: flex;
    flex-direction: row;
    max-height: 286px;
    overflow-y: auto;
    flex-wrap: wrap;
    position: relative;
}

#dv_dispo .dispo b {
    font-size: 0.9em;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#dv_dispo .dispo b:last-child {
    margin-bottom: 0;
}


#dv_dispo .dispo span {
    margin: 0 0.5em;
}

#dv_dispo .dispo .datos svg {
    margin-right: 0.5em;
}

.bolsas.full .bolsa .info-bolsa .list span.dispo::before,
#dv_dispo .dispo .datos::before,
.candidatos .table-view .table-view-content .candidato .data-elem.dispo::before,
.absolute.dispo::before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #078607;
    border-radius: 20px;
    margin-right: 0.5em;
}

.bolsas.full .bolsa .info-bolsa .list span.dispo.gray::before {
    background-color: #888888;
}

.candidatos .table-view .table-view-content .candidato.current-user .data-elem.dispo::before {
    background-color: #24d724;
}

.candidatos .table-view .table-view-content .candidato .data-elem.dispo::before {
    display: inline-block;
}

#dv_dispo .dispo .datos.gray::before {
    background-color: #888888;
}

.candidatos .table-view .table-view-content .candidato .data-elem.dispo.gray::before {
    background-color: var(--rojo);
}

#dv_dispo .dispo .datos svg.clock {
    width: 13px;
    height: 13px;
}

#dv_dispo .dispo .datos svg.calendar {
    width: 14px;
    height: 14px;
}

#dv_dispo .dispo .datos {
    background-color: #9cde9c;
    color: #078607;
    border-bottom: 1px solid #39c7396b;
}

#dv_dispo .dispo .datos:last-child {
    border-bottom: none;
}

#dv_dispo .dispo .datos svg {
    fill: #078607;
}

#dv_dispo .dispo .datos.red {
    filter: var(--greenHueRotate);
}

#dv_dispo .dispo .datos.gray {
    background-color: #f0f0f0;
    color: #5c5c5c;
    border-bottom: 1px solid #bbbbbb40;
}

#dv_dispo .dispo .datos.gray svg {
    fill: #5c5c5c;
}

/* POP-UP */

.pop-up .upload-file {
    margin-top: 0.5em;
}

.pop-up .two-buttons-pop {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 1em;
}

.container {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border-radius: 50%;
}

.container:hover input~.checkmark {
    background-color: #ccc;
}

.container input:checked~.checkmark {
    background-color: var(--primario);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked~.checkmark:after {
    display: block;
}

/* ZERO-PAPER */
.zero-paper .button-area,
.zero-paper .desconectar,
.zero-paper .docu-container .docu-elem .adjuntar,
.zero-paper .docu-container .docu-elem-header a,
.zero-paper .ofertas-container .buttons,
.zero-paper .borrar-docu,
.zero-paper .modificar-docu {
    display: none;
}

.zero-paper .info-container .more-info {
    display: inline-block;
    width: 100%;
}

.zero-paper .docu-container .docu-elem div.edit-buttons,
.zero-paper .edit-buttons,
.zero-paper .frame #reclamacion-detalle .docu-container .docu-elem div.edit-buttons {
    width: 49px;
}

.zero-paper .docu-container .docu-elem-header input[type="text"] {
    width: 90px;
}

.zero-paper .docu-container.info-oferta .docu-elem .lista_ficheros.margin {
    border-bottom: 1px solid #e2e2e2;
}

.zero-paper .docu-elem .lista_ficheros.margin {
    border-radius: 6px;
}

.docu-elem .lista_ficheros.margin {
    max-height: 203px;
}

.zero-paper .docu-container.info-oferta select,
.zero-paper .datos-bolsa .form-element.switch-area {
    pointer-events: none;
}

/* CALENDARIO */

.ui-widget.ui-widget-content {
    font-size: 11px !important;
    width: 208px !important;
    top: 183px !important;
}

.ui-datepicker .ui-datepicker-title select {
    height: 2em;
    border-radius: 5px;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    appearance: auto;
    -webkit-appearance: auto;
}

.ui-datepicker select.ui-datepicker-month {
    width: 60% !important;
}

.ui-datepicker select.ui-datepicker-year {
    width: 40% !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid var(--primario) !important;
    background: var(--primarioSec) !important;
    color: #ffffff !important;
}

/* CHECKBOX */

.container-check {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* font-size: 14px; */
    font-size: 15px;
    font-family: 'Roboto';
    font-weight: 500;
}

.checkbox-aceptar-normativa.unacepted .container-check {
    color: #808080;
}

.container-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark-check {
    position: absolute;
    top: -4px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.container-check:hover input~.checkmark-check {
    background-color: #ccc;
}

.container-check input:checked~.checkmark-check {
    background-color: #2196F3;
}

.checkmark-check:after {
    content: "";
    position: absolute;
    display: none;
}

.container-check input:checked~.checkmark-check:after {
    display: block;
}

.container-check .checkmark-check:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}