/* RESET CSS */
/* http://meyerweb.com/eric/tools/css/reset/

   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1rem;
    font-weight: normal;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/** FIN ** RESET CSS **/

/* VARIABLES ENTORNO SEDE */

:root {
    /* fuente, tamaño */
    --font-family: 'Open Sans', sans-serif;
    --font-size: 1rem;

    /* body */
    --body-bg: #dedede;
    --body-color: #212529;

    /* header, colores corporativos */
    --header-bg: #5b7189;
    --header-bg2: #4e5d6f;
    --header-color:  #455567;
    --header-color2: #455567; /*titulo especifico sobre blanco*/
    --header-border-color: #9ca0ab;
    --footer-bg: #5b7189;
    --footer-bg2: #4e5d6f;
    --footer-color: #fff;

    /* botones */
    --boton-color: white;
    --boton-bg: #5b7189;
    --boton-icono-color: #5b7189;
    --boton-border: #5b7189;
    --boton-color-hover: white ;
    --boton-bg-hover: #455567;

    /* otros botones */
    --boton-secundary-bg: #b6e9ff;
    --boton-secundary-color: #047db2;
    --boton-success-bg: #83d701;;
    --boton-success-color: #034d6d;
    --boton-danger-bg: #ff4d4d;
    --boton-danger-color: #070223;
    --boton-disabled-bg: #e0e0e0;
    --boton-disabled-color: #848484;
    --boton-dark-bg: #047db2;
    --boton-dark-color: #fff;

    /* titulos, texto, links */
    --titulo-color: #455567;
    --link-color: #047db2;
    --texto-color: #2c2c2c;

    /* form */
    --form-bg: #f5f8ff;

    /* input, select, textarea */
    --campo-border:  #DBDBDB;
    --campo-bg: #fdfdfd;
    --campo-color: #504F4F;
    --campo-placeholder: #b3b3b3 ;
    --campo-blocked-bg: #efebeb;
}

/** FIN ** VARIABLES ENTORNO SEDE **/

/* VARIABLES GENERICAS */

:root{
    --fontawesome: "Font Awesome 6 Free";
    --bs-breadcrumb-divider: '>';
}

/** FIN ** VARIABLES GENERICAS **/

/* HTML - BODY - HEADER - FOOTER - LINKS */

body {
    font-family: var(--font-family);
    background-color: var(--body-bg);
}

p {
    line-height: 1.3rem;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header{
    color: #ffffff;
    background-color: #ffffff;
}

header .top-header{
    background-color: var(--header-bg);
    color: #fff;
}

header .top-header a{
    color: #ffffff;
}

header a {
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: block;
    width: fit-content;
}

header a:hover{
    text-decoration: underline;
}

header .lang img, .menuIdioma img{
    height: 1rem;
    margin: 0 0.3rem -0.1rem 0;
    display: inline-flex;
    border: 1px solid #e8e8e8;
}

header .lang-menu {
    background-color: #566980;
    display: none;
    position: absolute;
    margin-top: .3rem;
    z-index: 2000;
}

header .lang-menu li {
    width: 100%;
    padding: 0.5rem;
    border-top: solid 1px var(--header-bg);
    border-bottom: solid 1px var(--header-border-color);
    background-color: var(--header-bg);
}

header .lang:hover .lang-menu {
    display: block;
}

header .logo-justicia{
    border: 0;
    padding: 0;
    margin: 1rem 0;
}

/* main Menu */

.main-menu a {
    padding: 1.2rem 2rem;
    color:  #ffffff;
    text-decoration: none;
    display: block;
}

.main-menu a:hover {
    background-color: var(--header-bg);
    text-decoration: underline;
}

.main-menu li{
    display: inline-block;
}

/* breadcrumb */

.breadcrumbs{
    --bs-breadcrumb-divider: '>';
}

.breadcrumb{
    margin: 1rem 0 1rem;
    font-size: .9rem;
}

.breadcrumb a{
    text-decoration: none;
    color: var(--header-color);
}

.breadcrumb a:hover{
    text-decoration: underline;
}

/* footer */

.footer-top {
    background-color: var(--footer-bg);
    padding: 2.2rem 0;
    color: #ffffff;
}

.footer-bottom{
    background-color: var(--footer-bg2);
    padding: .5rem 0 2rem;
    color: #ffffff;
}

footer a{
    font-size: .8rem;
    text-decoration: none;
    color: #fff;
    margin: 0 .3rem;
}

footer a:hover{
    text-decoration: underline;
    color: #fff;
}

footer h6{
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

/** FIN ** HTML - BODY - HEADER - FOOTER **/

/* CONTENEDORES FORMULARIOS Y ELEMENTOS DE FROMULARIO*/

.form-contenido {
    padding-top: 2rem;
}

.form-contenido h4{
    font-weight: 700;
    font-size: 1.5rem;
    margin: 1rem 0 0;
}

.form-contenido .filtros h4{
    margin: 0;
}

.form-contenido h5{
    font-weight: 600;
    font-size: 1.2rem;
}

.form-contenido hr{
    margin: 1rem 0;
}

.form-comun {
    border: 1px dotted #dddddd;
    margin-bottom: 1rem;
}

.form-comun .solicitante{
    position: absolute;
    margin-top: -1.7rem;
}

.form-comun .filtros{
    background-color: #edecec;
    padding: 1rem 1rem 1rem 1.5rem;
}

.form-comun .texto-anotacion {
    margin: .5rem 1rem;
    font-size: small;
}

.form-comun .ciudadano-block{
    margin-left: 1rem;
}

.label-elemento, .label-input{ /* sustituira a label-input o Imput-label en versiones anteriores */
    display: inline-block;
    width: 250px;
    padding: 1rem 1rem 1rem 0;
    position: relative;
}

.label-elemento label {
    margin-bottom: 5px;
    line-height: 1.3rem;
}

.label-elemento .sin-label
{
    margin-top: 1.5rem;
}

.elementos {
    display: block;
    width: 100%;
}

.sin-label{
    margin-top: 2.5rem;
}

.sin-border {
    border: none;
    border-radius: 0;
}

.label-elemento.fecha {
    width: 160px;
    min-width: unset;
}

.label-elemento.hora{
    width: 120px;
    min-width: unset;
}

.label-elemento.fecha-hora{
    width: 190px;
    min-width: unset;
}

.label-elemento.min{ /* minimo tamaño del contenedor justo para Codigo Postal*/
    width: 120px;
    min-width: unset;
}

/** FIN ** CONTENEDORES DE ELEMENTOS **/

/* ELEMENTOS FORMULARIOS */

/* p.elemento, input, textarea, select, icono-input, radiocheck  */

.elemento{
    padding: 10px 0;
}

p.elemento{
    outline: none;
    padding: 5px 10px 6px;
    border: 1px solid var(--campo-border);
    color: var(--campo-color);
    border-radius: 3px;
    background: var(--campo-blocked-bg);
    line-height: 22px;
    width: 100%;
}

input,
textarea,
select
{
    outline: none;
    padding: 5px 10px 6px;
    border: 1px solid var(--campo-border);
    color: var(--campo-color);
    border-radius: 3px;
    background: var(--campo-bg);
    margin: 0;
    font-family: inherit;
    line-height: 1rem;
    width: 100%;
    display: block;
}

textarea {
    min-height: 5rem;
}

select
{
    padding: 4px 10px 5px;
}

.icono-input{
    position: relative;
}

.icono-input input{
    padding: 5px 10px 6px 44px;
}

.icono-input::before{
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 0;
    content: "\f059";
    font-size: 24px;
    font-weight: 700;
    width: 48px;
    text-align: center;
    color: var(--boton-border);
}

.radiocheck {
    /* radiocheck contenedor generico para radio y checkboc .checkbox-box, .checkbox, .radiobox*/
    margin: 1rem;
    padding-left: 2.4rem;
}

.radiocheck label {  /*checkbox-box tiene que desaparecer*/
    display: inline-block;
    margin-left: .3rem;
}

.check, .radio{
    margin: 0 0 .8rem 0;
}

.chckBox_alone label{
    max-width: none;
}

input[type='checkbox'], input[type='radio']  {
    appearance: none;
    background-color: #b9babc;
    border-radius: 72px;
    border-style: none;
    flex-shrink: 0;
    height: 20px;
    margin: -2px 0 0 -2.3rem;
    position: relative;
    width: 30px;
    cursor: default;
    display: inline-block;
    float: left;
}

.error input, .error select, .error textarea {
    border: solid 1px #ae1518;
    color: #ae1518;
    -webkit-box-shadow: 0px 0px 5px 0px #e19d9f;
    box-shadow: 0px 0px 5px 0px #e19d9f;
}

.error_list {
    color: #ae1518;
    font-size: small;
    margin-top: 8px;
}

.error input[type='checkbox'], .error input[type='radio'] {
    background-color: #ae1518;
}

input[type='checkbox']::before, input[type='radio']::before{
    bottom: -6px;
    content: "";
    left: -6px;
    position: absolute;
    right: -6px;
    top: -6px;
}

input[type='checkbox'], input[type='checkbox']::after, input[type='radio'], input[type='radio']::after {
    transition: all 100ms ease-out;
}

input[type='checkbox']::after, input[type='radio']::after{
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 14px;
    left: 3px;
    position: absolute;
    top: 3px;
    width: 14px;
}

input[type='checkbox']:hover, form input[type='radio']:hover{
    background-color: #c9cbcd;
    transition-duration: 0s;
}

input[type='checkbox']:checked, input[type='radio']:checked{
    background-color: #00c809;
}

input[type='checkbox']:checked::after,  input[type='radio']:checked::after{
    background-color: #fff;
    left: 13px;
}

input[type='checkbox']:checked:hover,  input[type='radio']:checked:hover{
    background-color: #027b08;
}

input[type="file"] {
    outline: none;
    border: 1px solid var(--boton-disabled-bg);
    color: var(--boton-bg);
    border-radius: 3px;
    padding: 0;
    margin: 10px 0;
    font-family: inherit;
    line-height: 1rem;
    background-color: var(--boton-color);
    cursor: pointer;
}

input[type="file"]::file-selector-button {
    outline: none;
    padding: 10px;
    background: var(--campo-bg);
    color: var(--boton-bg);
    border: none;
    border-right: 1px solid var(--boton-disabled-bg);
    margin: 0;
    margin-right: 10px ;
    font-family: inherit;
    line-height: 1rem;
    transition: .15s;
}

input[type="file"]:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: var(--boton-disabled-bg) !important;
    text-decoration: none;
    transition: .15s;
}

.input-file::-webkit-file-upload-button {
    visibility: hidden;
}

.input-file::before {
    content: 'Selecciona archivo';
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

::placeholder{
    color: var(--campo-placeholder);
}

/** FIN **  ELEMENTOS FORMULARIOS */

/* ESTILOS BOTONES EXCLUSIVOS FRONT*/

.carousel-control-next:hover{
    background-color: unset !important;
}

.carousel-control-prev:hover{
    background-color: unset !important;
}

/** FIN **  ESTILOS BOTONES EXCLUSIVOS FRONT */

/* ESTILOS BOTONES GENERICOS OSCF */

.boton, button, input[type=button], input[type=submit] {
    color: var(--boton-color);
    background: var(--boton-bg);
    border: 1px solid var(--boton-border);
    line-height: 1rem;
    font-size: 1rem;
    padding: 8px 20px 9px;
    border-radius: 3px;
    position: relative;
    margin: auto;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.boton.icono, button.icono, input[type=button].icono, input[type=submit].icono {
    padding:8px 20px 9px 48px;
}

.boton.icono::before, button.icono::before, input[type=button].icono::before, input[type=submit].icono::before, .icon-panel.icono::before, .boton-icono::before {
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 9px;
    left: 0;
    content: "\f059";
    font-size: 24px;
    font-weight: 700;
    width: 48px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.boton-icono::before {
    top: 9px !important;
    width: 32px !important;
    font-size: 23px;
}

button.boton-icono::before {
    font-size: 27px;
}

.boton.small, button.small, input[type=button].small, input[type=submit].small {
    line-height: 15px;
    font-size: .9rem;
    padding: 6px 20px 7px;
}

.boton.icono.small, button.icono.small, input[type=button].icono.small, input[type=submit].icono.small {
    padding: 6px 20px 7px 40px;
}

.boton.icono.small::before, button.icono.small::before, input[type=button].icono.small::before, input[type=submit].icono.small::before {
    font-size: 18px;
    width: 42px;
    top: 7px;
}

.boton:hover, button:hover, input[type=button]:hover, input[type=submit]:hover {
    background-color: var(--boton-bg-hover) !important;
    color: var(--boton-color-hover) !important;
    text-decoration: none;
}

[disabled].boton, input[disabled][type=submit], input[disabled][type=button], button[disabled],
[disabled].boton:hover, input[disabled][type=submit]:hover, input[disabled][type=button]:hover, button[disabled]:hover {
    color:  var(--boton-disabled-color);
    cursor: default;
    background-color: var(--boton-disabled-bg);
    border: var(--boton-disabled-color) 1px solid;
}

button.secundary, a.boton.secundary {
    background-color: var(--boton-secundary-bg);
    color: var(--boton-secundary-color);
}

button.success, a.boton.success {
    background-color: var(--boton-success-bg);
    color: var(--boton-success-color);
}

button.danger, a.boton.danger {
    background-color: var(--boton-danger-bg);
    color: var(--boton-danger-color);
}

.boton.dark {
    color: white;
    background: #047db2;
    text-transform: unset ;
}

.boton-icono {
    color: var(--boton-icono-color);
    background: transparent;
    border: 1px solid var(--boton-border);
    line-height: 1rem;
    font-size: 1rem;
    padding: 8px 14px 9px;
    border-radius: 3px;
    position: relative;
    margin: auto;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    height: 22px;
    width: 32px;
}

button.boton-icono{
    padding: 16px 16px;
    border: 0;
    top: -6px;
}

label button.boton-icono {
    position: relative;
    padding: 5px;
    top: -7px;
}

.boton-icono:hover{
    background-color: transparent !important;
    color:var(--boton-bg-hover) !important;
}

/* botones filtros */

.filtro-botones {
    text-align: center;
}

/*       Colors      */
.blue {
    color: #047db2;
}
.green {
    color: #37a936;
}
.red {
    color: #9c2715;
}

.btn-success {
    background-color: var(--boton-success-bg);
    color: var(--boton-success-color);
    border: var(--boton-success-color) 1px solid;
}

.btn-success::before {
    content: "\f00c" !important;
}

.btn-success i {
    color: #ffffff !important;
}

.btn-success:hover {
    color: #ffffff !important;
}

.btn-danger {
    background-color: var(--boton-danger-bg);
    color: var(--boton-danger-color);;
}

.btn-danger::before {
    content: "\f00d" !important;
}

.btn-danger i {
    color: #ffffff !important;
}


/* fin botones filtros */

/* FIN ESTILOS BOTONES GENERICOS OSCF */

/* ICONOS ORDEN ALFABETICO */

.icono.aceptar::before{
    content: "\f00c" ;
}

.icono.add-doc::before{
    content: "\e494" ;
}

.icono.at::before{
    content: "\40" ;
}

.icono.ayuda::before{
    content: "\f05a" ;
}

.icono.back::before{
    content: "\f060" ;
}

.icono.backward::before{
    content: "\f2ea" ;
}

.icono.busca::before{
    content: "\f002" ;
}

.icono.busca-avanzada::before{
    content: "\f1e5";
}

.icono.calculator::before{
    content: "\f1ec";
}

.icono.calendar::before{
    content: "\f133";
    font-weight: 400 !important;
}

.icono.cancel::before{
    content: "\f00d";
}

.icono.cerrar::before{
    content: "\f00d";
}

.icono.chequeo::before{
    content: "\f0ae";
}

.icono.code::before{
    content: "\f121";
}

.icono.configurar::before{
    content: "\f013";
}

.icono.danger::before, .alerta.danger::before{
    content: "\f071";
}

.icono.desplegable::before{
    content: "\f03a";
}

.icono.download::before{
    content: "\f019";
}

.icono.download-file::before{
    content: "\f56d";
}

.icono.duplica::before{
    content: "\f24d";
}

.icono.editar::before{
    content: "\f304";
}

.icono.eliminar::before{
    content: "\f1f8";
}

.icono.eliminar-logico::before{
    content: "\f1f8";
}

.icono.entrar::before{
    content: "\f2f6";
}

.icono.enviar::before{
    content: "\f1d8";
}

.icono.enviar-doc::before{
    content: "\f14d";
}

.icono.excel::before{
    content: "\f1c3";
}

.icono.exclamacion::before{
    content: "\f06a";
}

.icono.export::before{
    content: "\f56e";
}

.icono.file::before{
    content: "\f15b";
}

.icono.file-csv::before{
    content: "\f6dd";
}

.icono.file-firmado::before{
    content: "\f56c";
}

.icono.file-import::before{
    content: "\f574";
}

.icono.file-ok::before{
    content: "\e5a0";
}

.icono.file-perfil::before{
    content: "\f15b";
    font-weight: 400 !important;
}

.icono.filtro::before{
    content: "\f0b0";
}

.icono.firma::before{
    content: "\f5b7";
}

.icono.firmar::before{
    content: "\f573";
}

.icono.folder::before{
    content: "\f07b";
}

.icono.folder-perfil::before {
    content: "\f07b";
    font-weight: 400 !important;
}

.icono.form::before{
    content: "\f00b";
}

.icono.gear::before{
    content: "\f013";
}

.icono.gears::before{
    content: "\f085";
}

.icono.guardar::before{
    content: "\f0c7";
}

.icono.home::before{
    content: "\f015";
}

.icono.info::before, .alerta.info::before{
    content: "\f05a";
}

.icono.import::before{
    content: "\f56f";
}

.icono.limpia::before{
    content: "\f1f8";
}

.icono.link::before{
    content: "\f0c1";
}

.icono.lock::before{
    content: "\f023";
}

.icono.mail::before{
    content: "\f0e0";
}

.icono.mostrar::before{
    content: "\f06e";
}

.icono.net::before{
    content: "\f6ff";
}

.icono.nuevo::before,
.icono.new::before{
    content: "\f067";
}

.icono.next::before{
    content: "\f35a";
}

.icono.nube::before{
    content: "\f0c2";
}

.icono.ocultar::before{
    content: "\f070";
}

.icono.pdf::before{
    content: "\f1c1";
}

.icono.play::before{
    content: "\f04b";
}

.icono.plus::before{
    content: "\f067";
}

.icono.plus-circular::before{
    content: "\f055";
}

.icono.plus-cuadrado::before{
    content: "\f0fe";
}

.icono.plus-perfil::before{
    content: "\f0fe";
    font-weight: 400 !important;
}

.icono.redo::before{
    content: "\f363";
}

.icono.restaurar::before{
    content: "\f829";
}

.icono.restaurar-logico::before{
    content: "\f829";
}

.icono.right::before{
    content: "\f061";
}

.icono.salvar::before{
    content: "\f0a0";
}

.icono.send::before{
    content: "\f1d8";
}

.icono.success::before, .alerta.success::before{
    content: "\f13a";
}

.icono.okok::before{
    content: "\f00c";
}

.icono.unlock::before{
    content: "\f3c1";
}

.icono.user::before{
    content: "\f007";
}

.icono.user-tag::before{
    content: "\f507";
}

.icono.users::before{
    content: "\f500";
}

.icono.warning::before, .alerta.warning::before{
    content: "\f06a";
}

.icono.www::before{
    content: "\f0ac" ;
}

/* FIN ICONOS ORDEN ALFABETICO */

/* TAMAÑOS DE CAMPOS, ESPACIADORES */

.w-unset{
    min-width: unset;
    width: unset;
}

.w-20 {
    width: 20%;
}

.w-25 {
    width: 24.6% !important;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 49%;
}

.w-75 {
    width: 74%;
}

.w-100{
    width: 100%;
}

/** FIN ** TAMAÑOS DE CAMPOS, ESPACIADORES **/

















/* Tamaño de fuentes */

.font-small{
    font-size: .8rem;
    margin-bottom: 0.2rem;
}

h1 {
    font-size: 2rem;
    color: var(--header-color);
}

h2 {
    font-size: 1.8rem;
    color: var(--header-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

main h2.titulo{
    margin: 0.5rem 1rem 0;

}

h3 {
    font-size: 1.6rem;
    color: var(--header-color);
    font-weight: 700;
}

main h3.subtitulo{
    margin: 2rem 1rem 0;
    font-weight: 700;
    font-size: 1.5rem;
}

h4 {
    font-size: 1.4rem;
    color: var(--header-color);
    margin-top: 1rem;
}

h5 {
    font-size: 1.2rem;
    color: var(--header-color);
}

h6 {
    font-size: 1rem;
    color: var(--header-color);
    line-height: 1rem;
}

header h1{
    margin: 2rem;
}

main .subtitulo{
    margin: 0.5rem 1rem 0;
}



/* Destacados */

.grupo{
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.destacado-titulo{
    background-color: #F7D21B;
    padding: 0.7rem 2rem;
    border-top-left-radius: 0.5rem ;
    border-top-right-radius: 0.5rem ;
}

.solicitud-titulo{
    background-color: var(--header-bg);
    padding: 0.7rem 2rem;
    border-top-left-radius: 0.5rem ;
    border-top-right-radius: 0.5rem ;
}

.solicitud-titulo h3{
    color: #ffffff;
}

.grupo-cards{
    margin:0;
    padding-bottom: 1.5rem;
    background-color: #fff;
}

.procedimientos .grupo-cards{
    background-color: unset;
}

.banners .grupo-cards{
    background-color: unset;
}

.grupo-cards span {
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    margin: -21px -29px;
    color: #c33400;
    border: solid 1px #F7D21B;
    position: absolute;
    font-weight: bold;
    -webkit-box-shadow: 0px 1px 4px 1px #e0e0e0;
    box-shadow: 0px 1px 4px 1px #e0e0e0;
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
}

.grupo-cards .carpeta span, .grupo-cards .solicitud span {
    margin: -21px -78px;
}

.grupo-cards a:not(.help){
    display: inline-flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.grupo-cards a .card .card-body h4{
    font-weight: 700;
    color: var(--header-color);
    font-size: 1.3rem;
    margin-top: .3rem;
    line-height: 1.2;
}

a .card-body p{
    margin-top: .3rem;
    line-height: 1.5rem;
}

.grupo-cards a.help{
    position: absolute;
    display: block;
    background-color: var(--header-bg);
    color: #ffffff;
    text-decoration: none;
    border: 0;
    top: 1rem;
    right: 3px;
    border-radius: 2rem;
    padding: .4rem;
    font-size: .8rem;
    z-index: 1000;
    width: 4rem;
    height: 4rem;
    text-align: center;
}

.grupo-cards a.help span, .grupo-cards a.help i{
    font-size: 2rem;
}

.grupo-cards .card {
    width: 100%;
}

.grupo-cards .card .card-body{
    min-height: 5.5rem;
}

.card{
    margin: 2.5rem 1rem 1rem 2rem;
}

.col-principal .card {
    margin: 2.5rem 0rem 0rem 0rem;
}

a .card:hover{
    border: 1px solid var(--header-bg);
}

.card.solicitud, .card.carpeta{
    padding-left: 3rem;
}

.procedimientos .solicitud::before, .carpeta::before {
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 1rem;
    font-size: 2rem;
    left: 1rem;
    color: var(--header-color);
}

.procedimientos  .carpeta::before {
    content: "\f07b";
}

.procedimientos  .solicitud::before {
    content: "\f044";
}


/* menu navegacion movil */

.menu-movil, .header-movil {
    display: none;
}

.sticky-top {

    background-color: var(--header-bg);
}

.menu-movil {
    justify-content: space-between;
    background-color: var(--header-bg);
    padding: 1rem;
    width: auto;
}

.menu-movil a{
    color: #ffffff;
    text-decoration: none;
}

.menu-movil a span {
    font-size: 1.5rem;

}

.menu-movil nav {
    position: absolute;
    background-color: var(--header-bg);
    width: 50%;
    right: 100%;
    margin-top: 2.5em;
    border-top: solid 1px #fff;
}

.menu-movil nav ul li{
    border-bottom: solid 1px var(--header-border-color);
    border-right: solid 1px  var(--header-border-color);
}

.menu-movil nav ul li a{
    padding: 0.8rem;
    display: block;
}

.menu-movil p{
    color: #f7ece8;
    font-size: 1em;
    padding: 0.3em 0 0 0.7em;
}

.menu-movil img{
    height: 32px;
    width: 32px;
    margin-left: 10px;
}

.header-movil nav {
    position: absolute;
    background-color: var(--header-bg);
    margin-top: 1.1rem;
    left: 100%;
    width: 100%;
    top: 2.4em;
    display: none;
}

.header-movil a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5em 0 0;
}

.header-movil a p {
    display: none;
}

/* GRID */

.grid-main{
    display: grid;
    grid-template-areas: "vacio header" "lateral contenido";
    grid-template-columns: 1fr 4fr;
    grid-template-rows: auto 1fr;
}

.grid-main .filter-solic{
    background-color: #ECEEEE;
}

.grid-main .cont-filter{
    margin: 0;
}

.grid-vacio{
    grid-area: vacio;
}

.grid-lateral{
    grid-area: lateral;
}

.grid-header{
    grid-area: header;
    background: white;
}

.grid-header .pagina-titulo{
    display: inline-block;
}

.grid-contenido{
    grid-area: contenido;
    background: white;
    border-top: 1px solid #cbcbcb;
}

.menu-categoria li {
    margin-bottom: 1px;
    background: white;
    padding: 0.1rem 0;

}

.menu-categoria li:has(a) {
    border-right: 1px solid var(--header-bg);
}

.menu-categoria li span{
    font-weight:bold;
    margin: 0.5rem 1rem;
    display: block;
}

.menu-categoria li a {
    margin: 0.5rem 1rem;
    display: block;
    text-decoration: none;
    color: var(--header-color);
}

.menu-categoria li a:hover {
    text-decoration: underline;
}

.cat_generico{
    background: #cbc9c9;
    padding: 0.5rem;
    color: var(--header-color);
    display: block;
    font-size: .9rem;
    text-decoration: none;
    position: relative;
    margin-bottom: 2px;
}

.cat_generico:hover{
    text-decoration: underline;
    color: var(--header-color);
}

.submenu-item a{
    padding: .5rem 2rem .5rem .5rem;
    display: block;
    font-size: .9rem;
    text-decoration: none;
    position: relative;
    background: #ededed;
    margin-bottom: 1px;
    color: var(--header-color);
}

.submenu-item a:hover{
    text-decoration: underline;
}

.submenu-itemis-selected a {
    padding: .5rem 2rem .5rem .5rem;
    display: block;
    font-size: .9rem;
    text-decoration: none;
    position: relative;
    background: #fdfdfd;
    margin-bottom: 1px;
    color: var(--header-color);
    font-weight: bold;
}

.submenu-itemis-selected a:hover {
    text-decoration: underline;
}

.badge{
    background: white;
    color: var(--header-color);
    /* width: 1.3rem; */
    /* height: 1.3rem; */
    border-radius: .3rem;
    text-align: center;
    font-weight: bold;
    float: right;
    position: absolute;
    top: 0.3em;
    right: 0.3rem;
    padding: 0.2rem 0.4rem;
    font-size: .9rem;
}

li.is-selected a{
    background: var(--header-bg);
    color: white;
}

li.is-selected a:hover{
    color: white;
}

/* formulario elementos */

.linea-separacion{
    border-bottom: 1px dotted var(--header-bg);
    padding-top: 1.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.cont-filter {
    background: #eceeee;
    padding: 0 1rem;
    margin: 1.5rem 0 0;
}

.subform-plus{
    padding: 1rem;
}

.subform-plus .target-plus{
    padding-top: 1rem;
    padding-left: 3rem;
    position: relative;
}

.subform-plus .subform_nro{
    position: absolute;
    padding: .5rem;
    color: #677b92;
    left: .5rem;
    font-size: 2rem;
}

.subform-plus .subform_elements{
    border-left: 1px solid #677b92;
    padding-left: 1rem;
}

.boton_eliminar_subform{
    border-left: 1px solid #677b92;
    padding: .5rem 1rem;
}

.boton_anadir_subform{
    padding: 1rem 0;
}

.boton_anadir_subform .buttonplus{
    padding: 0.5rem 1rem;
}



.list-requests{
    display: block;
}

/* mis solicitudes */

.mis-solicitudes .titles{
    width: 100%;
    display: flex;
    align-items: baseline;
    height: auto;
    padding: 0.6rem 0;
    margin-bottom: 1rem;
    background-color: #F2F2F2;
}

.mis-solicitudes .user{
    text-transform: uppercase;
    font-weight: 600;
    font-size: .9rem;
    padding: .3rem .5rem .3rem 2rem;
    margin-left: .5rem !important;
    position: relative;
    border: 1px dotted var(--header-border-color);
}

.mis-solicitudes .user:before{
    font-family: var(--fontawesome);
    left: .5rem;
    position: absolute;
    font-weight: bold;
}

.mis-solicitudes .Solicitante .titles{
    background-color: #cdefc2;
}

.mis-solicitudes .Solicitante .user:before{
    content: "\f4ff";
}

.mis-solicitudes .Interesado .titles{
    background-color: #ffffaa;
}

.mis-solicitudes .Interesado .user:before{
    content: "\f007";
}

.mis-solicitudes .Representado .titles{
    background-color: #ffffaa;
}

.mis-solicitudes .Representado .user:before{
    content: "\f007";
    font-weight: normal;
}

.mis-solicitudes .Representante .titles{
    background-color: #ffffaa;
}

.mis-solicitudes .Representante .user:before{
    content: "\f508";
}

.mis-solicitudes .title-date {
    font-size: .9rem;
    padding-right: 0.5rem;
    margin-left: auto;
    text-align: right;
    width: 200px;
}

.cont-my-solic {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: auto;
}

.cont-my-solic ul {
    display: block;
}

.cont-my-solic ul li {
    display: block;
    margin-bottom: .5rem;
}

.cont-my-solic ul li a {
    background-color: transparent;
}

.cont-my-solic ul .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cont-my-solic ul .nav .nav-tabs .nav-link {
    color: #c33400;
    font-size: 15px;
    margin-bottom: -2px;
    width: auto;
    padding: .7rem 1.2rem;
    border: 1px solid transparent;
}

.cont-my-solic ul .nav .nav-tabs .nav-link a {
    background-color: transparent;
}

.cont-my-solic ul .nav .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.cont-my-solic ul .nav .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.cont-my-solic ul .nav .nav-tabs .nav-link:focus, .cont-my-solic ul .nav .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #ffffff;
    isolation: isolate;
}

.cont-my-solic ul .nav .card {
    border-radius: initial;
    padding-top: 1.5rem;
}

.cont-my-solic ul .nav .tab-content > .active {
    padding: 1rem 0;
    min-height: 8rem;
}

.cont-my-solic ul .nav .tab-content > .active li {
    background-color: #ffffff;
    color: #c33400;
    margin-left: 10px;
    font-size: 16px;
}

.cont-my-solic ul .nav .tab-content > .active a {
    background-color: #ffffff;
    color: #c33400;
    margin-left: 10px;
    font-size: 16px;
}

.cont-my-solic ul .nav .tab-content > .active a:hover {
    color: #c33400;
    -webkit-text-decoration: revert;
    text-decoration: revert;
}

.cont-my-solic ul .nav .tab-content > .active img {
    width: 18px;
    margin-right: 5px;
    margin-bottom: -2px;
}

.cont-my-solic ul .target {
    margin-bottom: .7rem;
    display: block;
    border-radius: 5px;
    padding: 0px;
    border: 1px solid #bfe1b4;
    overflow: hidden;
}

.cont-my-solic ul .target a, .cont-my-solic ul .target .listExpedientes {
    text-decoration: none;
    border-radius: 5px;
    padding: 0;
    border: 0;
}

.cont-my-solic ul .target a .titles .title, .cont-my-solic ul .target .listExpedientes .titles .title {
    color: #504F4F;
    font-size: 16px;
    font-weight: 700;
    padding: 0 1rem;
    line-height: 1.2rem;
    width: 80%;
}

.cont-my-solic p{
    color: #504F4F;
}

.cont-my-solic ul .target a .codes-status, .cont-my-solic ul .target .listExpedientes .codes-status {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1rem 1rem;
}

.cont-my-solic ul .target a .codes-status p, .cont-my-solic ul .target .listExpedientes .codes-status p {
    font-weight: 600;
    padding: 0;
}

.cont-my-solic ul .target a .codes-status img, .cont-my-solic ul .target .listExpedientes .codes-status img {
    width: 110px;
}

.cont-my-solic ul .target a .codes-status .status, .cont-my-solic ul .target .listExpedientes .codes-status .status {
    background-repeat: no-repeat;
    background-position: 13px;
    padding: .5rem 1rem;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    margin-left: .8rem;
    position: relative;
}

.status-ok {
    color: #228921;
    border: solid 2px #bce0bc;
}
.status-ok::before {
    margin: 0 3px 0 0;
    font-size: 1rem;
    font-family: "Font Awesome 6 Free";
    content: "\f00c";
}

.status-ko {
    color: #ae1518;
    border: solid 2px #eacfcf;
}
.status-ko::before {
    margin: 0 3px 0 0;
    font-size: 1rem;
    font-family: "Font Awesome 6 Free";
    content: "\f00d";
}

.status-okgo {
    color: #5b7189;
    border: solid 2px #dadada;
}
.status-okgo::before {
    margin: 0 3px 0 0;
    font-size: 1rem;
    font-family: "Font Awesome 6 Free";
    content: "\f061";
}
.status-alert {
    border: solid 2px #F7D21B;
    color: #8b7508;
}
.status-alert::before {
    margin: 0 3px 0 0;
    font-size: 1rem;
    font-family: "Font Awesome 6 Free";
    content: "\f071";
}

.status-nostyle {
    color: #974f0c;
    border: solid 2px #efccaa;
}
.status-nostyle::before {
    margin: 0 3px 0 0;
    font-size: 1rem;
    font-family: "Font Awesome 6 Free";
    content: "\f550";
}

.cont-my-solic ul .target a .subtitle, .cont-my-solic ul .target .listExpedientes .subtitle {
    font-weight: 600;
}

.cont-my-solic ul .target a .dates-person, .cont-my-solic ul .target .listExpedientes .dates-person {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1rem 1rem;
}

.cont-my-solic ul .target a .dates-person p, .cont-my-solic ul .target .listExpedientes .dates-person p {
    padding: 0px 4rem 0 0;
}

.cont-my-solic ul .target a .dates-person p span, .cont-my-solic ul .target .listExpedientes .dates-person p span {
    font-weight: 800;
    color: #838383;
}

.cont-my-solic ul .target a .collapse-exp, .cont-my-solic ul .target .listRequest .collapse-exp {
    display: none;
}

.cont-my-solic ul .target a .collapse-exp div ul .nav li, .cont-my-solic ul .target .listRequest .collapse-exp div ul .nav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cont-my-solic ul .target a .collapse-exp div ul .nav li a, .cont-my-solic ul .target .listRequest .collapse-exp div ul .nav li a {
    background-color: transparent;
}

.cont-my-solic ul .target a .acept, .cont-my-solic ul .target .listRequest .acept {
    float: right;
    margin: -45px 10px 0;
}

.cont-my-solic ul .target a .acept a, .cont-my-solic ul .target .listRequest .acept a {
    color: #ffffff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-right: .5rem;
    font-size: 16px;
    font-weight: 600;
    background-color: #c33400;
    width: auto;
}

.cont-my-solic ul .target a .acept a i, .cont-my-solic ul .target .listRequest .acept a i {
    position: static;
    margin: 0 5px 0 0;
    font-size: 20px;
    color: #ffffff;
}

.cont-my-solic ul .target a .acept a img, .cont-my-solic ul .target .listRequest .acept a img {
    width: 16px;
}

.cont-my-solic ul .target a .acept a:hover, .cont-my-solic ul .target .listRequest .acept a:hover {
    background-color: #c33400;
}

.cont-my-solic ul .target .nav-tabs .nav-link {
    color: #c33400;
    font-size: 15px;
    margin-bottom: -2px;
    width: auto;
    padding: .7rem 1.2rem;
    border: 1px solid transparent;
}

.cont-my-solic ul .target .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.cont-my-solic ul .target .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.cont-my-solic ul .target .nav-tabs .nav-link:focus, .cont-my-solic ul .target .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #ffffff;
    isolation: isolate;
}

.cont-my-solic ul .target .tab-content > .active {
    padding: 1rem 0;
    min-height: 8rem;
}

.cont-my-solic ul .target .tab-content > .active li {
    background-color: #ffffff;
    color: #c33400;
    margin-left: 10px;
    font-size: 16px;
}

.cont-my-solic ul .target .tab-content > .active a {
    background-color: #ffffff;
    color: #c33400;
    margin-left: 10px;
    font-size: 16px;
}

.cont-my-solic ul .target .tab-content > .active a:hover {
    color: #c33400;
    -webkit-text-decoration: revert;
    text-decoration: revert;
}

.cont-my-solic ul .target .tab-content > .active img {
    width: 18px;
    margin-right: 5px;
    margin-bottom: -2px;
}

.cont-my-solic .pagination {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
}

.cont-my-solic .pagination .page-link {
    padding: .375rem .75rem;
    border-radius: 0;
    width: auto;
    position: relative;
    display: block;
    color: var(--header-bg);
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.cont-my-solic .pagination .page-link:hover {
    color: var(--header-bg);
    background-color: #e6ecf3;
    text-decoration: underline;
}

.cont-my-solic .pagination .disabled a {
    color: #838383;
}

.cont-my-solic .acceso-doc {
    text-align: center;
    padding: 0.6rem;
    border-top: 1px dashed #dfdfdf;
    color: var(--header-bg);
}

/* Acceso Sede */

.acceso-sede {
    padding: 2rem;
    background: #f5f5f5;
    text-align: center;
}

.required-login, .required-tecnic{
    margin-top: 1rem;
    padding: 2rem;
    background-color: #e5e5e5;
}

.required-tecnic{
    margin-bottom: 1rem;
}

.certificado-sede h5, .certificado-sede span{
    color: var(--header-color);
    font-weight: 600;
}

.certificado-sede p{
    margin-top: .8rem;
    line-height: 1.3rem;
}

.bloque-info{
    margin-top: 1rem;
    padding: 2rem 2rem 2rem 6rem;
    background: #d1d0d0;
    position: relative;
}

.bloque-info span{
    position: absolute;
    left: 2rem;
    font-size: 2rem;
}

/* alertas - avisos */

.aviso {
    font-size: 1.6rem;
    color: var(--header-color);
    font-weight: 700;
}

.alerta-amarilla{
    position: relative;
    background-color: #F7D21B;
    border-radius: 0.2rem;
    box-shadow: 0px 0px 6px 5px #b7b7b7;
    margin-top: 1rem;
    padding: 1rem 1rem 1rem 5rem;
}

.alert-error {
    background-color: #f7e2e3;
    border: solid 2px #ebcdcf;
    border-radius: 5px;
    margin: 1rem 0;
    color: #ae1518 !important;
    padding: 1.2rem 1.5rem !important;
}

.alert-warning{
    background-color: #f3e59e;
    border: solid 2px #f7d21b;
    color: #9f8508 !important;
    border-radius: 5px;
    padding: 1.2rem 1.5rem !important;
}

.warning {
    background-color: #f5eeca;
    padding: 1.5rem 1.5rem 1.5rem 7rem;
    margin: 1rem;
    border-bottom: solid 2px #DBDBDB;
    border-radius: 7px;
    border: solid 2px #F7D21B;
}

.warning img {
    position: absolute;
    margin: -.7rem -4.5rem;
    width: 3rem;
}

.warning p {
    line-height: 20px;
}

/* MENSAJES DE ALERTA */

.alerta {
    padding: 1rem 1rem 1rem 4rem;
    margin: 1rem;
    border: 1px solid #c4c8cb;
    background: #e2e3e5;
    display: block;
    position: relative;
    text-align: left;
}

.alerta::before{
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 10px;
    left: 9px;
    content: "\f059";
    font-size: 24px;
    font-weight: 700;
    width: 48px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #959799;
}

.alerta.danger{
    border: 1px solid #f1aeb5;
    background: #f8d7da;
}

.alerta.danger::before{
    color: #d90017;
}

.alerta.info{
    border: 1px solid #71c4d1;
    background: #d1ecf1;
}

.alerta.info::before{
    color: #39b4c7;
}

.alerta.success{
    border: 1px solid #a3cfbb;
    background: #d1e7dd;
}

.alerta.success::before{
    color: #00c169;
}

.alerta.warning{
    border: 1px solid #ffe69c;
    background: #fff3cd;
}

.alerta.warning::before{
    color: #ffcf41;
}


/* FIN MENSAJES DE ALERTA */


/* clases directas genericas */

.display-flex{
    display: flex !important;
}

.color-negro{
    color: #000000;
}

.display-inline{
    display: inline-block;
}

.display-inline-flex{
    display: inline-flex;
}

.hidden, .is-hidden {
    display: none !important;
}

.form-hidden {
    display: none;
}

.mb-1{
    margin-bottom: 1rem;
}

.link{
    color: var(--header-bg);
    font-weight: 600;
}

.link span{
    padding-right: .5rem;
    font-size: 2rem;
}

/* formulario generico*/

.resultado:empty:before{
    content: ' ';
    white-space: pre;
}

.pag-form { /*contenedor exterior de todo el formulario*/
    padding: .8rem 1.2rem;
}

.pagina { /*contenedor exterior todas las paginas*/
    padding: 1.7rem 1.4rem;
}

.form .fld{
    margin-top: 1rem;
}

.pagina .fld {
    margin: 0 10px 18px 0;
    border-radius: 3px;
    width: fit-content;
    min-width: 12rem;
}

.pagina #etiquetascsv{
    width: 100%;
}

.pagina .flds {
    margin: 0 10px 18px 0;
}

.pagina .fld p {
    margin: .2rem 0;
    padding: 10px;
}

.pagina .fld h6 {
    background: #dfe4e9;
    padding: 7px 10px;
}

.fld-content {
    margin-left: 12px ;
}

.fld-content .fld {
    margin: 0 8px 12px 0;
}

.form-titulo{
    margin: 1rem 0 3rem;
}

.form-titulo h6{
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}


.form-titulo p{
    margin-top: .4rem;
    line-height: 1.3rem;
}

.pagina p{
    line-height: 1.3rem;
    margin: .3rem 0 1.5rem;
}



/* Estilos páginas */

.procedimientos .pagina-titulo {
    margin: 2rem 1rem;
}


.pagina h6{
    font-weight: 700;
    font-size: .9rem;
}

.grupo-titulo{
    margin: 2rem 0;
    font-weight: normal;
    font-size: 1.2rem;
    color: var(--header-color);
}

.archivo-titulo h6 {
    font-weight: normal;
    font-size: .9rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0rem;
}

.archivo-titulo span{
    padding-right: .3rem;
    font-size: 2rem;
    margin-top: .3rem;
}

.pagina-titulo h4{
    margin: 0 0 .4rem;
}

.pagina-titulo h2{
    margin: 0 0 .5rem;
    font-weight: 600;
}

.pagina-contenido{
    margin-top: 2rem;
}

label b{
    font-weight: 600;
}

.mensaje-titulo{
    padding: 2rem;
    background-color: #e2fbe2;
    width: fit-content;
    margin: 2rem 0;
    border-radius: 5px;
    border: 2px solid #7bd37b;
}

.mensaje-titulo h6{
    margin: .5rem 0 0;
    color: #228921;
}
.mensaje-titulo h3{
    color: #228921;
}
.mensaje-titulo div {
    display: inline-block;
}
.mensaje-titulo .check-ok {
    color: #228921;
    font-size: 55px;
    margin-right: 20px;
}
/* ESTILOS SHOW - confirmacion de formularios*/



.borradores {
    padding: 1rem 0;
    border-bottom: 1px dotted var(--header-bg);
    font-weight: 700;
    color: var(--header-color);
}

.borradores .fa-caret-down {
    font-size: 1.2rem;
}

.borradores.collapsed .fa-caret-down {
    transform: rotate(270deg);
}

ul.list-borradores li a {
    border: none;
    background-color: transparent;
}

ul.list-borradores li a span {
    font-size: 18px;
    color: var(--header-bg);
}

.list-borradores {
    display: flex;
    padding: .5rem;
    background: #f8f7f7;
}

.list-borradores li {
    padding-left: .5rem;
}

.mensaje {
    font-size: 1.5rem;
    margin: 2rem;
    color: var(--header-color);
    padding: 1rem;
    text-align: center;
}

form .form-comun {

}

form .form-comun .fld{
    padding: 1rem 0rem 1rem 1rem;
    display: inline-block;
    vertical-align: top;
    margin-top: 0;
}

form .chckBox_alone.checkbox-box{
    margin: 1rem 0 0;
}

form .form-comun .fld.sin-grid{
    width: 100%;
}


form .form-comun .mf-form__stack .fld{
    width: auto;
}

.error input, .error select, .error textarea {
    border: solid 1px #ae1518;
    color: #ae1518;
    -webkit-box-shadow: 0px 0px 10px 0px #e19d9f;
    box-shadow: 0px 0px 10px 0px #e19d9f;
}

.error_list {
    background-color: #f7e2e3;
    border: solid 1px #ebcdcf;
    border-radius: 0;
    color: #ae1518;
    margin: .2rem 0;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-weight: 400;
    line-height: 18px;
    list-style: none;
}

.form .tab-content{
    border: 1px solid #dee2e6;
    border-top: 0;
    padding: 1rem;
}

p.alert{
    background-image: url(/assets/images/ico_alert.png);
    background-repeat: no-repeat;
    background-position: 15px;
    background-color: #F7D21B;
    background-size: 35px;
    padding: 1.4rem 2rem 1.4rem 4rem !important;
    color: #504F4F;
    border-radius: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px !important;
    text-align: center;
    font-weight: 700;
}

/* carrusel de imagenes*/

.carousel-item {
    height: 380px;
    background-size: cover;
}

.carousel-caption {
    position: absolute;
    top: 20%;
    left: 15%;
    padding: 1.25rem 20% 0 1%;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    width: 70%;
}

/* alert */

.alert, .margintb {
    margin: 1rem 0;
}

.alert-success {
    color: #296e1c;
    background-color: #d1e7d2;
    border-color: #c3dbba;
}

/* botones */


.boton.blanco, .boton.white, button.white {
    border:1px solid var(--header-bg);
    background-color: white;
    color: var(--header-bg);
}




.certificado-sede a.boton{
    margin:inherit;
}


button.boton-ayuda{
    background-color:  #ffffff;
    color: var(--header-color);
    padding: 0;
    border: 0;
}



a.link {
    color: var(--header-color);
}

.botonera{
    margin: 2rem auto;
    text-align: center;
}


/* popover bootrap */



.popover-header {
    background-color: var(--header-bg);
    color: rgba(255, 255, 255, 1);
}

.popover-header .btn-close {
    position: absolute;
    top: 0.4rem;
    right: 0.5rem;
    z-index: 2;
    background-color: #ffffff;
    padding: .4rem .4rem;
    cursor: pointer;
}


/* clases elementos id */

#userBoxes:empty{
    display: none;
}

/* tree */

.pagina .treeview {
    margin: 1rem 0;
}

.pagina .treeview a{
    color: var(--header-color);
    font-weight: 600;
    text-decoration: none;
}
.pagina .treeview a:hover{
    text-decoration: underline;
}

.pagina .treeview ul {
    margin-top: 5px;
    margin-bottom: 10px;
}

.pagina .treeview li{
    background-image: none;
    margin: 0;
}

.pagina .treeview .hitarea {
    background: none;
    height: 32px;
    width: 32px;
    margin-left: 0px;
    position: absolute;
}

.pagina .treeview  .collapsable .hitarea:after {
    position: absolute;
    font-family: var(--fontawesome);
    font-size: 1.5em;
    top: 2px;
    right: 10px;
    content: "\f07c ";
    color: var(--header-color);
    font-weight: 700;
}

.pagina .treeview .expandable .hitarea:after {
    position: absolute;
    font-family: var(--fontawesome);
    font-size: 1.5em;
    top: 2px;
    right: 15px;
    content: "\f07b ";
    color: var(--header-color);
    font-weight: 700;
}

.pagina .treeview  .expandable a, .pagina .treeview .collapsable a{
    padding: .5rem 0 .5rem 2rem ;
    display: block;
}

.pagina  .treeview li.lastCollapsable, .pagina  .treeview li.lastExpandable {
    background-image:unset;
}

/*      Targets     */

.targetComp{
    margin-top: 2rem;
}
.cont-targets{
    display: flex;
}
.targetPrinc{
    display: inline-block;
    width: 80%;
    margin: 0 .5rem 1rem 0;
    background-color: #ffffff;
    border: solid 1px #e0e0e0;
    border-radius: 5px;
}
.targetPrinc .titles, .targetSec .titles{
    background-color: #F2F2F2;
    border-radius: 5px 5px 0 0 ;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}
.targetPrinc .titles p.title, .targetSec .titles p.title{
    color: #504F4F;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    padding: 0.7rem;
}
.targetPrinc .dates-person, .targetSec .dates-person{
    display: flex;
    padding: 0 1rem 1rem;
}
.targetPrinc .dates-person p{
    padding: 0;
    width: 100%;
}
.targetPrinc .dates-person p span{
    font-weight: 800;
    color: #838383;
}
.targetSec{
    display: inline-block;
    width: 16%;
    vertical-align: top;
    margin: 0 0 1rem .5rem;
    border: solid 1px #e0e0e0;
    border-radius: 5px;

}

.container{
    max-width: none;
}

.mainContainer{
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: #ffffff;
}

.header-movil {
    float: right;
    margin-right: 0.10rem;
    margin-top: 1rem;
    color: #f5ddd5;
    z-index: 3000;
    align-items: end;
}




.header-movil .lang-menu{
    border-top: solid 1px #fff;
}

.header-movil nav ul li {
    padding: 15px;
    border-bottom: solid 1px var(--header-border-color);
    border-right: solid 1px var(--header-border-color);
}

.header-movil  a {
    color: #ffffff;
    text-decoration: none;
}

.header-movil .lang-selected {
    background-color: var(--header-border-color);
}


.header-movil a span {
    font-size: 1.5rem;
    margin: 0 0.3em 0 0;
}

.col-principal {
    background-color: #ffffff;
    margin-bottom: 2rem;
}

.col-principal.procedimientos{
    padding-bottom: 2rem;
    background-color: #ececec;
}

.col-principal.procedimientos .pagina-titulo{
    margin-bottom: 0;
}

.col-resto{
    padding-left: 1rem;
    padding-right: 0;
}

.col-sec {
    margin-bottom: 1rem;
    padding: 0 1rem;
}

a.acceso-link {
    text-decoration: none;
    color:inherit;
}

a.acceso-link p{
    margin-top: 1rem;
    line-height: 1.5rem;
}

a.acceso-link:hover .contenido-link{
    border: 1px solid var(--header-bg);
}

.contenido-link{
    background-color: #f3f3f3; /*#e5e5e5; /* #d5d5d5 */
    background-clip: border-box;
    border: 1px solid #b5b5b5;
    border-radius: 0.25rem;
    padding: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contenido-link span{
    color: var(--header-color);
    font-size: 2rem;
}

.accesLink-col {
    background-color: #e5e5e5;
    padding: 2rem 1.2rem;
    text-align: center;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 1rem;
}

.utilities {
    background-color: #ececec;
    background-clip: border-box;
    border-radius: 0.25rem;
    padding: .5rem .5rem 1rem;
    margin-bottom: 1rem;
    text-align: left;
    padding: 1.1rem;
}

.utilities h4{
    text-align: center;
    margin: 0 0 1rem;
    border-bottom: var(--header-border-color) 1px solid;
    padding-bottom: .3rem;
}

.utilities a {
    text-decoration: none;
    color: var(--header-color);
    display: block;
    margin: 1rem 0;
}

.utilities a:hover {
    text-decoration: underline;
}

/* BANNERS */

.banners{
    background-color: #efefef;
    padding: 2rem 0rem;
    border-top: solid 1px #DBDBDB;
}

.banners a{
    min-height: auto;
    background-color: #ffffff;
    padding: .3rem 0.7rem 0.3rem;
    display: inherit;
    margin: .7rem;
    padding: 1.2rem 0.7rem 1rem;
    border: solid 1px #e0e0e0;
    border-radius: 0.4rem;
    width: 100%;
    color: var(--header-color);
    text-decoration: none;
}

.banners a:hover {
    border: 1px solid var(--header-bg);
}

.banners .icon{
    font-size: 35px;
    color: #677B92;
    margin: 0 0.4rem;

}

.banners .icon img{
    height: auto;
    border: solid 1px #e0e0e0;
    border-radius: 3px;
}

.banners  .contenido{
    margin-left: .5rem;
}

.banners h5{
    font-weight: 700;
}

.banners p{
    line-height: 1.2rem;
    margin-top: .3rem;
}

/*    DETALLE DE LA SOLICITUD   */
.detalle-solicitud  {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 4rem;
}
.detalle-solicitud .pagina-titulo h2 {
    margin: 1rem 1rem 2rem;
}
.detalle-solicitud .cont-my-solic {
    margin-top: 0;
}
.detalle-solicitud .cont-my-solic ul .target .listExpedientes .dates-person {
    width: inherit ;
    display: inherit ;
}
.detalle-solicitud .cont-my-solic ul .target .listExpedientes .dates-person span {
    font-weight: 800;
    color: #838383;
}
.detalle-solicitud .cont-my-solic ul .target .listExpedientes .dates-person p{
    display: inline-block ;
    padding: 0 6% 0 0;
}
.detalle-solicitud .cont-my-solic .target .listExpedientes .titles .title{
    font-size: 22px;
    font-weight: 600;
    padding: .5rem 1rem;
}
.detalle-solicitud .cont-my-solic .target .listExpedientes .titles {
    padding: .5rem 0;
    display: block;
    margin-bottom: 1.5rem;
}
.detalle-solicitud .cont-my-solic .target .listExpedientes .title-date {
    padding: 0 1rem;
    width: auto;
    text-align: inherit;
}
.detalle-solicitud ul .target {
    border: none;
}
.detalle-solicitud ul li {
    margin: .2rem 0;
}
.detalle-solicitud ul li a i{
    font-size: 22px;
    position: relative;
    margin: 0 1rem 0 0;
    color: inherit;
}
.detalle-solicitud .listRequest {
    padding: 1rem;
}
.detalle-solicitud .titulo {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #838383;
}
.detalle-solicitud .exp_notif_tabs {
    margin: .5rem 0 1.8rem;
}
.detalle-solicitud .note, .note {
    padding: .8rem;
    background-color: #fffdec;
    margin-bottom: 12px;
    border: solid 1px #f1e88e;
}
.detalle-solicitud .note h6 ,.note h6{
    padding: 0 0 5px;
    background-color: inherit;
    border-bottom: solid 1px #e1d02c;
    font-weight: 600;
    margin: 0;
}
.detalle-solicitud .note p, .note p  {
    padding: 1rem 0;
    line-height: normal;
}

/*    FIN DETALLE DE LA SOLICITUD   */

.spiner {
    font-size: 2rem;
    color: #677b92;
    margin: 0 auto;
    text-align: center;
    position: relative;
    margin-left: 50%;
}


/* MODAL */

.modal-body {
    padding: 1rem 1.5rem;
}

.modal-body p {
    padding: .1rem 0 1rem;
}

.modal-body h3 {
    padding: 10px 0;
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-body h6{
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .4rem;
}

.modal-body .consent-box {
    padding: 2rem 1rem;
}

.modal-content {
    border: none;
    border-radius: 6px;
}

.modal-header {
    background-color: var(--header-color);
    border-radius: 6px 6px 0 0;
}

.modal-header h5 {
    color: var(--sede-bg-form);
}

.modal-header .btn-close{
    background: unset;
    font-weight: 900;
    font-size: 3rem;
    padding: 0;
    color: white;
    opacity: .5;
}

.modal-header .btn-close:before {
    content: "\f00d";
    font-family: var(--fontawesome);
}

.modal-header .btn-close:hover {
    background-color: unset !important;
    opacity: 1;
}


.modal-dialog {
    max-width: 650px;
}

.modal-title{
    color: #f1f1f1;
    font-size: 1.5rem;
    margin: 0;
}







.btn-ver:before{
    content: "\f06e";
}

.btn-back:before{
    content: "\f060";
}

.btn-entrar:before{
    content: "\f090";
}

.btn-blanco{
    color: var(--header-color);
    background-color: #ffffff;
    border: solid 1px var(--header-color);
}

.btn-blanco:hover{
    color: #ffffff;
}

@media (max-width: 779.98px){

    header, .main-menu{
        display: none !important;
    }
    .header-movil{
        display: flex;
    }
    .menu-movil {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .menu-movil h1 {
        font-size: 1.4rem;
        color: #ffffff;
        margin-left: 0.5rem;
    }

    .breadcrumb{
        display: none;
    }

    .grid-main{
        display: grid;
        grid-template-areas: "header" "lateral" "contenido";
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

}

@media (min-width: 1679.98px) {
    .container{
        max-width: 1600px;
    }
}

@media (max-width:498.98px){
    .pagina .fld {
        margin: 14px 0 0;
        min-width: 100%;
    }
    .fld-content {
        margin: 0 8px ;
    }
    .fld-content .fld {
        margin: 0 0 10px 0;
    }
    .mensaje-titulo .check-ok {
        display: none;
    }
}


@media (max-width:439.98px){
    .sticky-top {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
        z-index: 1000;
    }
    .header-movil {
        display: contents;
        align-items: flex-start;
        margin-left: 10px;
        padding-top: 2px
    }

    .menu-movil {
        padding:0.5rem;
    }

    .menu-movil nav{
         width: 100%;
    }

    .header-movil nav {
        width: 100%;
    }

    .header-movil a span{
        font-size: 1.2rem;
    }

    .menu-movil h1 {
        font-size: 1rem;
        margin: auto .5rem
    }

    h2{
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
        font-weight: 700;
    }

    h4 {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .grupo-cards a .card .card-body h4 {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    a .card-body p {
        line-height: 1.3;
        font-size: 1rem;
    }

    .carousel-caption {
        padding: 2rem;
    }

    .grupo-cards{
        padding-bottom: 2rem;
    }

    .card {
        margin: 2.5rem .5rem 0rem .5rem;
    }

    .banners {
        background-color: #efefef;
        padding: 1rem 0rem;
    }

    .banners h5{
        font-size: 1rem;
    }

    .banners p{
        font-size: .8rem;
    }

    .pag-form {
        padding: 0rem 0rem;
    }

    .pagina {
        padding: 1rem 0rem;
    }

    .pagina-titulo h4 {
        margin-top: .2rem;
    }

    .pagina-top {
        margin-top: 1rem;
    }

    .pagina-contenido {
        margin-top: 1rem;
    }

    .cont-filter {
        padding: 0 0 1rem 0;
        margin: .5rem 0 0;
    }

    .required-login, .required-tecnic {
        padding: .5rem;
    }

    .bloque-info {
        padding: 1.3rem .5rem 1rem .5rem;
    }

    .certificado-sede h5{
        padding-left: 2.8rem;
        min-height: 2rem;
    }

    .certificado-sede span {
        left: .5rem;
        top: 1.5rem;
    }

    .certificado-sede p {
        font-size: .9rem;
    }

    /*formulario responsive*/

    form .form-comun .fld {
        padding: .5rem .5rem .5rem .5rem;
        width: 100%;
    }

    form .checkbox-box, form .radiobox, .pagina .checkbox-box {
        margin: .5rem;
    }

    .element {
        padding: .5rem 0;
    }

    .element.s, .element.m {
        width: 100%;
    }

    .form-titulo {
        margin: 1rem 0 2rem;
    }

}

@keyframes pop {
    0% {border:solid 0px #FF9800;}
    100% {border:solid 5px #ffeaca;
    }
}

.acceso-doc {
    padding: 0.6rem;
    border-top: 1px dashed #dfdfdf;
    position: relative;
    color: var(--header-bg);
}

.acceso-doc div:hover {
    text-decoration: underline;
}

.acceso-doc a{
    color: #00a900;
}

.alert-box {
    position:absolute;
    padding: 0px;
    height: 2rem;
    left: 8px;
    top: 2px;
    display: inline-block;
    vertical-align: middle;
}
.alert-box:hover {
    text-decoration: none !important;
}

.acceso-doc .newdoc {
    color: #677b92;
    left: 24px;
    display: inline-block;
    vertical-align: -webkit-baseline-middle;
}

.acceso-doc .newdoc:hover {
    text-decoration: underline;
}

.acceso-doc .alert-iconb {
    position: relative;
    left: 0px;
    top: 5px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    vertical-align: middle;
}

.acceso-doc .iconb{

    padding: 5px;
    background-color: #FF9800;
    margin: auto;
    border-radius: 8px;
    animation: infinite;
    animation-name: pop;
    animation-duration: .7s;
    animation-timing-function: linear;
}

.documentos .titulo {
    border-bottom: 2px solid #f7f7f7;
    margin-bottom: 0.5rem;
    color: #838383;
    font-size: 21px;
}

.documentos .card{
    border: none;
    margin: unset;
}

.con-documentos{
    padding-bottom: 1.8rem;
}

.con-documentos.solicitud:before{
    content: none;
}

.con-documentos a{
    line-height: 2;
    color: var(--header-bg);
    text-decoration: none;
}

.con-documentos a:hover{
    text-decoration: underline !important;
}

.con-documentos a span{
    padding-right: .5rem;
    font-size: 1.4rem;
}

.con-documentos a:hover{
    text-decoration: underline;
}

.con-documentos code{
    font-family: monospace;
    color: #00a900;
    padding-left: 0.8rem;
    font-size: .8rem;
    display: inline-block;
}

.codigo{
    font-family: monospace;
    font-size: .9rem;
}

.con-documentos code span{
    font-size: 1rem;
}

.con-documentos .file_size{
    font-family: monospace;
    padding-left: .5rem;
    font-size: .9rem;
    display: inline-block;
}

.con-documentos .visto{
    color: #838383;
}

.reload-captcha {
    color: #ffffff;
    font-size: 25px;
    padding: 7px;
    position: absolute;
    background-color: #7fb2e5;
    border-radius: 5px;
    margin-left: 0.5rem;
    cursor: pointer;
}

/* ESTILOS PAGINACIÓN OSCF */

.paginador{
    text-align: center;
}

.label-paginacion{
    display:inline-block;
    margin: 0 0.5rem;
    vertical-align: top;
}

.label-paginacion label{
    display: block;
    font-size: .9rem;
    margin-bottom: .4rem;
}

.paginacion {
    line-height: 35px;
}

.paginacion li:first-of-type {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.paginacion li:last-of-type {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-right: 1px solid #047db2;
}

.paginacion .pagina {
    display: inline;
    border: 1px solid var(--boton-border);
    padding: 5px 12px 6px;
    background: white;
    border-right: none;
}

.paginacion .page-link{
    display: inline-block;
}

.paginacion .pagina.actual {
    background: #dfdfdf;
}

.paginacion .pagina.vacia {
    border-top: none;
    border-bottom: none;
    padding: 5px 10px 7px;
}

.paginador .gotopage{
    display: inline-flex;
}

.paginador .page-goto {
    width: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.paginador .goto-goto {
    color:white;
    height: 35px;
    width: 36px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding: 7px !important;
    border: 1px solid var(--boton-border);
    background-color: var(--boton-border);
}

.paginador .total{
    display: block;
    margin-top: 1rem;
    font-size: .9rem;
}

/** FIN ** ESTILOS PAGINACIÓN **/



.custom-file-progress {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 24px;
    padding: 0;
    border: 1px solid lightblue;
    text-align: center;
    opacity: 0;
    filter: alpha(opacity=0);
    margin-top: 6px;
}
.custom-file-progress.in {
    opacity: 1;
    filter: alpha(opacity=100);
}
.custom-file-progress .percentage {
    position: relative;
    z-index: 3;
    line-height: 24px;
    padding: 0;
    text-align: center;
}
.custom-file-progress .bar {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 0;
    height: 24px;
    background: lightblue;
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
}

.list-download a {
    display: block;
    color: #7fb2e5;
    margin-left: 10px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    padding: .5rem 0;
    border: 0;
}

.list-download a img {
    width: 16px;
    margin-right: .5rem;
}

.mostrar-responsive {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding: 0;
    }

    .grupo{
        margin: 1rem 0;
    }

    .procedimientos .pagina-titulo {
        margin: 1rem;
    }

    .grupo-titulo {
        margin: 0 0 1rem 0;
    }

    .mis-solicitudes .titles {
        flex-direction: column;
    }

    .cont-my-solic {
        padding: 0;
    }

    .cont-my-solic ul .target a .titles .title, .cont-my-solic ul .target .listExpedientes .titles .title {
        width: 100%;
    }
    .cont-my-solic ul .target a .dates-person, .cont-my-solic ul .target .listExpedientes .dates-person {
        flex-direction: column;
        align-items: start;
    }
    .acceso-doc .newdoc {
        display: none;
    }

    .cont-filter {
        padding: 1rem;
    }

    .mostrar-responsive{
        display: block;
    }

    .ocultar-responsive{
        display: none !important;
    }

    .form-comun .filtros {
        padding: .5rem;
    }

    .label-elemento {
        min-width: 250px;
    }

    .label-elemento.w-50, .label-elemento.w-75  {
        width: 100% !important;
    }

}

@media (max-width: 480px) {
    .label-elemento {
        width: 100% !important;
        padding: .5rem;
    }

    .container{
        max-width: 380px;
    }

    .form-comun .ciudadano-block{
        margin-left: unset;
    }
}

@media (max-width: 360px) {
    .container{
        max-width: 340px;
    }
}

input.dateicon {
    background-image: url(../images/cal_oscf.gif);
    background-position: right 4px center;
    background-repeat: no-repeat;
    color: #809499;
    cursor: pointer;
}

.template-container strong {
    font-weight: 600;
}
.template-container p {
    line-height: 1.5;
    padding-top: 0;
    padding-bottom: .5rem;
}
.template-container table {
    margin: 0 1rem;
}
.template-container table tr td {
    padding: .5rem 0;
}
.template-container ul {
    padding-left: 2rem;
    list-style-type: disc;
}
.template-container ul li {
    margin: 0 0 0 1rem !important;
    padding: 0.25rem 0 0.25rem 0.3rem !important;
    line-height: 1.5;
}
.template-container ul li a {
    background: none;
    padding: 0;
    border: none !important;
}