﻿/*@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,700;1,900&display=swap');*/

/*
* Webs Mincotur V1.0
* Copyright 2020, SGTIC Mincotur
*22/04/2020
*/


/* Índice de contenidos
––––––––––––––––––––––––––––––––––––––––––––––––––
- Básico
- Tipografía
- Estructura
- Navegación (Slimmenu)
- Links
- Listas
- Imágenes
- Botones
- Tablas
- Formularios
- Misceláneo - Funcionalidad JQuery
- Media Queries
*/


/*Variables*/
:root {
/*-- Fonts ------*/
--primary-font-family: 'Merriweather', serif;
--FontAwesome: 'Font Awesome';

/*-- Font size ------*/
--base-font-size: 1em;
--sm-font-size: 0.85em;
--md-font-size: 1.125em;
--lg-font-size: 1.25em;
--xlg-font-size: 1.5em;
	
--base-line-height: 1.7;
--heading-line-height: 1.2;
--min-line-height: 1.3;
--max-line-height: 2;
	
/*-- Font weight ------*/
--font-weight-light: 300;
--font-weight-regular: 400;
--font-weight-semibold: 600;
--font-weight-bold: 700;
--font-weight-extrabold: 800;
	
/*-- Colores ------*/

--primary-color: #195f41;
--text-color: #333;
--background-primary-color: #e6f7f0;

--white-color: #fff;
--black-color: #1d1d1b;
--gray-color: #e3e3e3;
--background-gray-color: #f9f8f6;
--text-gray-color: #555;
--line-form-color: #9e9e9e;

--neutral-color-5: #f9f9f9;
--neutral-color-10: #f1f1f1;
--neutral-color-30: #ccc;
--neutral-color-80: #666;
--neutral-color-90: #50555c;

--line-gray-color: #9e9e9e;
	
--error-color: #a81616;
--valido-color: #1a5f02;
--alerta-color: #cc6705;
--aviso-color: #1d1d1b;
	
/*-- Spacing ------*/
--spacing: 1rem;
--xsm-spacing: 0.25rem;
--sm-spacing: 0.5rem;
--md-spacing: 1.5rem;
--lg-spacing: 2rem;
--xlg-spacing: 2.5rem;
--xxlg-spacing: 3rem;
	
/*-- Border radius ------*/
--border-radius: 10px;

/*-- Box Shadow ------*/
--box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;

}


/* Estilos Base
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
    font-size: 100%;
    height: 100%;
}

body {
    font-size: 1em;
    line-height: var(--base-line-height);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main {
    flex: 1;
    min-height: 69vh;
}

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}

blockquote, q {
    quotes: '"' '"' "'" "'"
}

blockquote:before, q:before {
        content: open-quote;
    }

    blockquote:after, q:after {
        content: close-quote;
    }

q {
    display: inline;
}

strong {
    font-weight: var(--font-weight-semibold);
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

abbr[title], acronym[title] {
    text-decoration: none;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

a {
    color: var(--primary-color);
}

a:hover, a:focus {
  text-decoration: none;
}

a:visited {
  color: currentColor;
  opacity: 0.9;
}

main p a, 
main li a, 
main li a, 
main dd a,
main td a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 6px;
	font-weight: var(--font-weight-semibold);
}

main p a:hover, 
main p a:focus,
main li a:hover, 
main li a:focus,
main li a:hover,
main li a:focus,
main dd a:hover,
main dd a:focus,
main td a:hover,
main td a:focus {text-decoration: none;}

:focus {outline: thin dotted;}
:focus:not(:focus-visible)  {
	outline: 1px dotted transparent;
}
:focus-visible {
outline: 3px dotted var(--primary-color)!important;
outline-offset: 2px;
}

.skip-to-content-link {
  	background: var(--primary-color);
   	color: var(--white-color);
 	left: 50%;
  	padding: 0.25em 0.55em;
  	position: absolute;
  	transform: translateY(-150%);
  	transition: transform 0.3s;
}

.skip-to-content-link:focus {
  	transform: translateY(0%);
	z-index: 1;
}

.not-active {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}

.clear { /* Use this class between rows of content when you use columns */
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

*, *:after, *:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

audio, canvas, img, video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.customWidth .section-container {
    overflow: visible !important;
}

/*Clases del RadEditor*/
img.right, .imagen_derecha {
    margin-left: var(--xlg-font-size);
    float: right;
}

img.left, .imagen_izquierda {
    margin-right: var(--xlg-font-size);
    float: left;
}

img.center, img.imagen_centrada, .center {
    margin: 0 auto;
    display: block;
}

p.right {
    text-align: right;
}

p.left {
    text-align: left;
}

p.center {
    text-align: center;
}

.big {
    font-size: var(--xlg-font-size);
}

.small {
    font-size: var(--sm-font-size);
}

.highlight, .destacado {
	font-size: var(--md-font-size);
    font-style: italic;
    color: var(--black-color);
    margin: var(--md-spacing) 0;
	border: 0;
	padding: 0;
}

.obligatorio, .error {
    color: var(--error-color);
}

.valido {
    color: var(--valido-color);
}

.alerta {
    color: var(--alerta-color);
}

.aviso {
    color: var(--aviso-color);
}

p.valido, p.alerta {
    text-align: center;
    font-size: 1.45em;
    border: 1px solid;
}

p.valido {
    border-color: var(--valido-color);
}

p.alerta {
    border-color: var(--alerta-color);
}


/*Clases para ocultar contenido*/
.hidden { /*Se oculta en ambos: lectores de pantalla y navegador*/
    display: none !important;
    visibility: hidden;
}

.visuallyhidden { /*se oculta visualmente, pero está disponible para los lectores de pantalla*/
    clip: rect(0 0 0 0); 
	clip-path: inset(50%);
	width: 1px;
	height: 1px; 
	overflow: hidden; 
	position: absolute; 
	white-space: nowrap;
	padding: 0;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { /*permite que el elemento sea enfocable cuando navegas con el teclado*/
        clip: auto;
		clip-path: none;
        height: auto;
        overflow: visible;
        position: static;
        width: auto;
    }

.invisible { /*Se oculta visual y lectores de pantalla, pero se mantiene en el layout*/
    visibility: hidden;
}

.skip-to-content-link {
  	background: var(--primary-color);
   	color: var(--white-color);
 	left: 50%;
	top: 12px;
  	padding: 0.25em 0.55em;
  	position: absolute;
  	transform: translateY(-800%);
  	transition: transform 0.3s;
}

.skip-to-content-link:focus {
  	transform: translateY(0%);
	}

/*Flexbox grid*/
.row {
    display: flex;
    flex-flow: row wrap;
}

footer  ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
	gap: var(--spacing);
	margin-bottom: var(--spacing);
}

 footer ul li {
        flex-grow: 0;
}

.opciones-footer li {
    font-size: 0.95em;
}

@font-face {
    font-family: 'Font Awesome';
    font-style: normal;
    font-weight: 900;
    font-display: auto;
    src: url("fonts/fa-solid-900.eot");
    src: url("fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("fonts/fa-solid-900.woff2") format("woff2"), url("fonts/fa-solid-900.woff") format("woff"), url("fonts/fa-solid-900.ttf") format("truetype"), url("fonts/fa-solid-900.svg#fontawesome") format("svg");
}

@font-face {
    font-family: 'Font Awesome Brands';
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url("fonts/fa-brands-400.eot");
    src: url("/onts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fonts/fa-brands-400.woff2") format("woff2"), url("fonts/fa-brands-400.woff") format("woff"), url("fonts/fa-brands-400.ttf") format("truetype"), url("fonts/fa-brands-400.svg#fontawesome") format("svg");
}



/* Tipografía
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body, body.ms-backgroundImage {
    font-family: var(--primary-font-family);
    font-style: normal;
    font-weight: var(--font-weight-regular);
    background: var(--white-color);
    color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
	margin-top: var(--sm-spacing); 
    margin-bottom: var(--sm-spacing);
	font-family: var(--primary-font-family);
    line-height: var(--heading-line-height);
    font-weight: var(--font-weight-bold);
}

h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}
h1 {
	margin-top: 1.25rem;
    color: var(--black-color);
    margin-bottom: var(--md-spacing);
}
h1 {font-size: 2.25rem;}
h2 {font-size: 1.65rem;}
h3 {font-size: 1.35rem;}
h4 {font-size: 1.125rem;}
h5 {font-size: 1rem;}

h6 {
    font-size: 1rem;
}

.header-container .tagline {
    margin: 0;
    line-height: 1;
    color: var(--primary-color);
    padding: 0;
    font-weight: var(--font-weight-light);
    font-size: 2em;
}

.header-container .tagline a {
    color: var(--primary-color);
	text-decoration: none;
    }

.header-container h2, 
.nav-container h2, 
footer h2, .offscreen {
    clip: rect(0 0 0 0); 
	clip-path: inset(50%);
	width: 1px;
	height: 1px; 
	overflow: hidden; 
	position: absolute; 
	white-space: nowrap;
	padding: 0;
}

p {
    margin-bottom: 2em;
}


/* Estructura
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
	position: relative;
	padding-top: 0.65em;

}
.header-container, 
.nav-container, 
.main-container, 
.footer-container {
    width: 100%;
    margin: 0 auto;
}

.header-container, .nav-container {
    position: relative;
}

.header-container {
    box-shadow: rgba(8, 35, 48, 0.2) 0px 1px 20px;
    background: var(--neutral-color-5);
    padding-left: 3%;
    padding-right: 3%;
}

.header-container:after {
    content: " ";
    display: block;
    clear: both;
}

.footer-container {
    overflow: hidden;
    clear: both;
}

header, footer, .breadcrumb {
    clear: both;
}

.home-container, .section-container {
    background: var(--white-color);
    max-width: 1600px;
    margin: 1em auto;
}

.gris {
    background: var(--neutral-color-5);
}

.blanco {
    background: var(--white-color);
}

/*Cabecera*/
.nombre-app {
    padding: 1em 0;
	display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

header .logo {
    margin-right: 1em;
}

.logo img {
    height: 65px;
}

.menu-idiomas {
    padding-right: 0.5em;
	padding-top: 0.5em;
}


.opciones {
    position: absolute;
    top: 1em;
    right: 0;
	display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 1em;
}
.opciones li, .menu-idiomas li {
       display: inline-block;
        font-size: 0.8em;
    }

  .opciones li {
        padding-left: 1.25em;
       
    }
 .menu-idiomas li {
        padding-right: 1.25em;
 
    }
        .opciones li a, .menu-idiomas li a {
            color: #000;
			text-decoration: none;
        }

.opciones li a:hover, 
.menu-idiomas li a:hover,
.opciones li a:focus, 
.menu-idiomas li a:focus {
                text-decoration: underline;
    			text-decoration-thickness: 1px;
    			text-underline-offset: 6px;
            }

        .opciones li.activo {
            text-decoration: underline;
    		text-decoration-thickness: 1px;
    		text-underline-offset: 4px;
        }

/* Buscador */
.fondo-buscar {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
	 width: 250px;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
	border: 1px solid var(--line-form-color);
}
.menu-bt-lupa {display: none;}
.menu-bt-lupa,
input[type=submit].menu-boton-buscar {
    cursor: pointer;
    text-indent: -1000px;
    float: right;
    color: #000;
    background: url(imagenes/bt-lupa.png) no-repeat center 6px;
    background-size: 22px;
    min-width: 30px;
    height: 35px;
    border: 0;
    margin-right: 0.25em;
	margin-left: 0.5em;
}
header input[type=text].menu-texto-buscar {
    border: 0;
    font-size: 0.9em;
    background-color: transparent;
    color: #000;
    width: calc(100% - 40px);
    font-weight: 400;
    padding-left: 0.7rem;
    border-radius: 0;
	min-height: 35px;
	padding-top: 0.25em;
}

header input[type=text].menu-texto-buscar:focus,
header input[type=text].menu-texto-buscar:focus-visible {
    background: #fff;
    background-color: transparent;
    border: none;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	
	box-shadow: 0px 0px 0px 4px rgba(7,175,103,0.5);
	outline-color: transparent !important;
}

/*Footer*/
footer {
    color: var(--black-color);
    padding: var(--lg-spacing) var(--spacing);
    background: var(--neutral-color-5);
    border-top: 7px solid var(--primary-color);
}

footer nav {
     padding-bottom: var(--spacing);
}

footer nav ul li {
     font-size: var(--base-font-size);
}

footer nav ul ul {
       display: block;
}

footer a {
    color: var(--black-color);
	text-decoration: none;
}

footer a:hover,
footer a:focus {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

.navegacion-footer > ul > li > span,
.navegacion-footer > ul > li > a {
    margin: 0.65em 0;
    font-family: var(--primary-font-family);
    font-weight: var(--font-weight-bold);
}

.navegacion-footer > ul > li > span {
    opacity: 0.7;
}

p.direccion {
    font-size: var(--sm-font-size);
    text-align: center;
    margin-bottom: 0;
}

p.direccion span {
    padding-left: 0.125em;
}

p.direccion span a {
    color: var(--black-color);
}

footer p.rss {
    text-align: center;
}

    footer p.rss a {
        background: url(imagenes/icono-rss.png) no-repeat left center;
        padding: 0.55em;
        padding-left: 2.85em;
    }

footer .logo {
    margin: 0.55em;
    text-align: center;
    clear: both;
}

footer .logo img { 
     padding: 0;
}


/*layout - 12 Columnas*/
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    float: left;
}

.col-1 {
    width: 8.33333333%;
}

.col-2 {
    width: 16.66666667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33333333%;
}

.col-5 {
    width: 41.66666667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33333333%;
}

.col-8 {
    width: 66.66666667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33333333%;
}

.col-11 {
    width: 91.66666667%;
}

.col-12 {
    width: 100%;
}

aside {
    width: 305px;
}

.section-container {
	display: flex;
	flex-flow: row wrap;
}
.section-container.margen {display: block;}

.margen {
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 2em;
}

.col-contenido {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 2em;
	
}

.submenu, .sidebar, .col-contenido {
   /* display: table-cell;
    vertical-align: top;*/
}

.col-contenido.col-centro {
     width: 50%;
}

.sidebar {
    padding-top: 2em;
}

aside.submenu {
}


/* Slimmenu (navegación Responsive)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.nav-container {
    position: relative;
}

nav#menu-principal {
    position: absolute;
    z-index: 33;
    right: 2%;
    top: -4em;
}

nav#menu-principal ul {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
    
}
nav#menu-principal ul li {
    position: relative;
    font-size: 0.9rem;
    font-family: var(--primary-font-family);
    font-weight: var(--font-weight-bold);
    line-height: var(--base-line-height);
}

nav#menu-principal ul li > a,
nav#menu-principal ul li > span {
	color: var(--black-color);
	text-decoration: none;
	padding: 0.4em 1em;
    padding-top: 0.6em;
	display: inline-block;
}

nav#menu-principal ul li > a:hover,
nav#menu-principal ul > li:hover a {
      color: var(--primary-color);
}

nav#menu-principal ul > li::after {
    content: "";
    position: absolute;
    bottom: -0.5em;
    background: var(--primary-color);
    height: 6px;
    width: 49px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    cursor: pointer;
}

nav#menu-principal ul > li:hover::after, 
nav#menu-principal ul > li:focus::before {
    visibility: visible;
    opacity: 1;
}

nav#menu-principal ul > li.activo::after {
    content: none;
}



/*
.menu-collapser {
    position: absolute;
    z-index: 99;
    left: -2.5em;
    top: -0.5em;
}

.collapse-button {
    width: 45px;
    height: 45px;
    cursor: pointer;
    text-align: center;
}

.collapse-button:hover, 
.collapse-button:focus {
        opacity: 0.7;
    }

.collapse-button button {
	width: 45px;
    height: 45px;
	border: 0;
	background: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
}

.open ul.slimmenu.collapsed {
    -webkit-transform: translateX(280px);
    -webkit-transition: transform 0.4s ease; /* Safari */
   /* transform: translateX(280px);
    transition: transform 0.4s ease;
}
.close ul.slimmenu.collapsed {
    -webkit-transform: translateX(0px);
    -webkit-transition: transform 0.4s ease; /* Safari */
   /* transform: translateX(0px);
    transition: transform 0.4s ease;
}


.close nav#menu-principal .collapse-button:hover .icon-bar:before {
    top: 10px;
}

.close nav#menu-principal .collapse-button:hover .icon-bar:after {
    bottom: 10px;
}

.open nav#menu-principal .icon-bar {
    background-color: transparent;
}

.open nav#menu-principal .icon-bar:before, 
nav#menu-principal .open .icon-bar:after {
        background: var(--black-color);
        top: 0;
}

 .open nav#menu-principal .icon-bar:before {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        content: "";
}

.open nav#menu-principal .icon-bar:after {
        top: 10px;
        -ms-transform: translatey(-10px) rotate(-45deg);
        -webkit-transform: translatey(-10px) rotate(-45deg);
        transform: translatey(-10px) rotate(-45deg);
        content: "";
    }*/


/*nav#menu-principal .icon-bar,
nav#menu-principal .icon-bar:before,
nav#menu-principal .icon-bar:after {
    content: "";
    position: absolute;
    display: block;
    width: 35px;
    height: 4px;
    background: var(--black-color);
    cursor: pointer;
    font-size: .85em;
    color: #000;
    line-height: 5;
}

nav#menu-principal .icon-bar {
    top: 20px;
    left: 5px;
}

nav#menu-principal .icon-bar:before {
        top: 10px;
}

nav#menu-principal .icon-bar:after {
        bottom: 10px;
}


nav#menu-principal .icon-bar, 
nav#menu-principal .icon-bar::before, 
nav#menu-principal .icon-bar::after {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
}


*/
/* Nivel 1*/
nav#menu-principal ul > li.activo span {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
}

nav#menu-principal ul > li.activo span, 
nav#menu-principal ul > li.activo a {
        color: var(--white-color);
    }

/* Nivel 2*/
nav#menu-principal ul li > ul {
    position: absolute;
    top: 100%;
    background: var(--white-color);
    padding: 1em 0.65em;
    display: none;
    z-index: 99;
    box-shadow: 0 1px 8px 0 rgba(0,0,0,.2);
    width: 200px;
    margin: 0 auto;
    left: 1em;
    right: 1em;
}

nav#menu-principal ul ul li {
    display: block;
}
nav#menu-principal ul ul li::after {
    content: none;
}

nav#menu-principal ul li ul li a {
        font-weight: var(--font-weight-regular);
    }
nav#menu-principal ul li ul li a:hover,
nav#menu-principal ul li ul li a:focus {
	text-decoration: underline;
	text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}
nav#menu-principal ul li ul li.activo span {
            color: var(--black-color);
        }


/*Responsive Hamburguesa*/

@media only screen and (min-width: 1281px) {
nav#menu-principal button {display: none; }
nav#menu-principal ul li:hover ul,
nav#menu-principal ul li:focus-within ul{display: block; }
	
nav#menu-principal ul li.open ul {display: block; } 
}
@media (max-width: 1280px) {
  .menu-container {
   position: fixed;
    width: 100vw;
    height: 100vh;
    padding: 1em 0;;
    top: 0;
    left: 100%;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    overscroll-behavior-block: contain;
    background: var(--neutral-color-10);
    z-index: 9;
    transition: all .5s ease-in-out;
    /*align-items: center;
	justify-content: space-evenly;*/
}

  nav#menu-principal button {
    color: var(--black-color);
    display: block;
    position: absolute;
	 width: 45px;
    height: 45px;
    border: 0;
    background: none;
    cursor: pointer;
    z-index: 99;
    top: 0;
    right: 1em;
    transition: 0.2s 0.5s color ease-in-out; 
}

nav#menu-principal button .icon-bar {
      width: 35px;
      height: 3px;
      margin-bottom: 6px;
      background: var(--black-color);
      display: block;
      margin-left: auto;
      margin-right: auto;
      transition: 0.5s; 
}
 
nav#menu-principal button .texto-menu {
      clip: rect(0 0 0 0);
      clip-path: inset(50%);
      width: 1px;
      height: 1px;
      overflow: hidden;
      position: absolute;
      white-space: nowrap;
      padding: 0; 
}

nav#menu-principal button[aria-expanded=true] {
	position: fixed;
	top:3em;
}

nav#menu-principal button[aria-expanded=true] .icon-bar:nth-child(1) {
      transform: translateY(0) rotate(45deg);
      margin-top: 10px; 
}

nav#menu-principal button[aria-expanded=true] .icon-bar:nth-child(2) {opacity: 0; }
nav#menu-principal button[aria-expanded=true] .icon-bar:nth-child(3) {transform: translateY(-17px) rotate(-45deg); }

nav#menu-principal ul {
	flex-direction: column;
	padding-top: 5em;
}
nav#menu-principal ul li {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 0.5em 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
	flex-grow: 1;
}
nav#menu-principal ul li.activo {
	display: inline-flex;
    align-items: center;
}
nav#menu-principal ul li.activo::before {
	content: "";
	width: 5px;
	height: 100%;
	background: var(--primary-color);
}	
	
nav#menu-principal ul li span, 
nav#menu-principal ul li.activo span {
    color: var(--primary-color);
	background: none;
	padding-left: 2em;
}
	
nav#menu-principal ul li:hover::after, 
nav#menu-principal ul li:focus::before {
    content: none;
}

nav#menu-principal ul li a, 
nav#menu-principal ul li a span {
    color: var(--black-color);
    border: 0;
	padding-left: 2em;
}

nav#menu-principal ul li a:hover,
nav#menu-principal ul li a:focus {
        color: var(--primary-color);
}

nav#menu-principal ul li li a:hover,
nav#menu-principal ul li li a:focus {
       text-decoration: underline;
}
	
nav#menu-principal ul li a span {
        padding-left: 0;
    }

nav#menu-principal .is-active {
    display: flex;
    left: 0;
}

nav#menu-principal .is-active button {
      position: absolute;
      top: 0;
      right: 0.55em; 
	  
}
nav#menu-principal .is-active button::before {
	content: "\f078";
    font-family: 'Font Awesome';
    color: var(--primary-color);
    display: inline-block;
    font-size: 1.125em;
    margin-left: 0.5em;
    margin-top: 3px;
	}
nav#menu-principal .is-active ul ul {
      display: none;
      position: static;
      width: 100%;
      background: none;
	 box-shadow: none;
      transform: none;
      height: auto;
      padding: 1em 0; 
}
 
nav#menu-principal .is-active ul ul li {
        width: 100%;
        margin-right: 0;
        font-size: 0.9rem;
		padding: 0;
        border: 0;
}

nav#menu-principal .is-active ul ul li a:hover, 
nav#menu-principal .is-active ul ul li a:focus {
            /*text-decoration: underline;*/
            opacity: 1; 
}
nav#menu-principal .is-active li.open ul {display: block; } 

}

@media (max-width: 640px) {
nav#menu-principal button {
    top: 0.6em;
    right: 0;

}

nav#menu-principal button .icon-bar {
      width: 30px;
      height: 3px;
      margin-bottom: 6px;
      
}
}




/*Home*/

.home-container {
    padding-bottom: 2em;
}

.introduccion,
.enlaces-destacados ul,
.otros-enlaces ul {
    width: 100%;
    padding: 2em 0;
    display: flex;
    flex-flow: row wrap;
	gap: 2em;
	justify-content: center;
}

.introduccion {
    align-items: center;
}

.introduccion h2 {
        color: var(--black-color);
        font-weight: 900;
        font-size: 2rem;
        margin-top: 0;
}

.introduccion img {width: 80%;}
.introduccion .foto {
	text-align: center;
	width: 40%;
}
.introduccion .texto {width: 55%;}

.destacados .columna-una,
.destacados .columna-dos {
    width: 50%;
}

.enlaces-destacados {
    margin: 0 10%;
}

.enlaces-destacados ul li {
	text-align: center;
	padding: 2em;
	width: calc(50% - 2em);
	background: var(--background-gray-color);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-self: normal;
	border-radius: 0.5em;
}

.enlaces-destacados h2 {
	color: var(--black-color);
	font-size: 1.65em;
}

section.enlaces {
    width: 90%;
    margin: 1.5rem auto 0;
}

.otros-enlaces h2 {
    font-size: 2.55rem;
    color: var(--black-color);
    text-align: center;
}

.otros-enlaces ul li {
    width: 33%;
    margin: 1em;
    padding: 1em;
    padding-bottom: 4em;
    border-right: 1px solid var(--neutral-color-30);
    text-align: center;
    position: relative;
}

.otros-enlaces ul li:last-child {
        border-right: 0;
    }

.otros-enlaces h3 {
    color: var(--black-color);
}

.otros-enlaces ul li a.bt-enlace {
    position: absolute;
    bottom: 0;
    right: 33%;
    left: 33%;
}
.home-container .highlight {
	margin-left: 12%;
	margin-right: 12%;
}

/*Páginas Interiores*/
.registro-fitosanitario h2 {
    border-bottom: 1px solid var(--neutral-color-30);
    padding-bottom: 0.25em;
	padding-top: 0.25em;
}

.section-container .ui-enlaces {
    padding: 1em 0;
}

ul.ui-enlaces {
    columns: 4 auto;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
  
    ul.ui-enlaces .foto {
        display: inline-block;
        margin-right: 0.65em;
        width: 38px;
        height: 22px;
        line-height: 10px;
        vertical-align: top;
    }

        ul.ui-enlaces .foto img {
            width: 100%;
            border-radius: 3px;
        }

    ul.ui-enlaces a {
        font-weight: 700;
        color: var(--black-color);
		text-decoration: none;
    }

        ul.ui-enlaces a:hover,
		ul.ui-enlaces a:focus
{
            color: var(--primary-color);
			text-decoration: underline;
    		text-decoration-thickness: 1px;
    		text-underline-offset: 6px;
        }

        
.residuos label {
    display: block;
}

main .residuos select {
    width: 60%;
}

.tabs .row {
    flex-flow: row nowrap;
    justify-content: space-between;
}

.columnas {
    width: 48%;
    padding: 0;
	
}

main .columnas label {
    border-bottom: 3px solid var(--primary-color);
    width: 100%;
    padding-top: 1.55em;
    display: block;
}

#divBoton {
    text-align: center;
	padding: 1em 0;
}


/*Dropdown áreas geográficas*/

.wrapper-dropdown {
    margin: 1em auto;
    position: relative;
}

.mobile-dropdown {display: none;}

.wrapper-dropdown > span  {
        font-size: 1em;
        margin: 0.5em 0;
        color: var(--black-color);
	    font-weight: var(--font-weight-semibold);
	display: block;
}
.content-dropdown {
	margin-top: 1em;
	padding-bottom: 1em;
   
}
.wrapper-dropdown .ui-dropdown { 
	width: 100%;
	padding: 0;
    border-top: 1px solid var(--neutral-color-30);
	border-bottom: 1px solid var(--neutral-color-30);
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}

/*.open-dropdown {display: block;}
.close-dropdown {display: none;}*/

.wrapper-dropdown .ui-dropdown button {
    border: 0;
    background: transparent;
    cursor: pointer;
    width: 100%;
    text-wrap: nowrap;
	font-size: var(--base-font-size);
	color: var(--black-color);
	font-family: var(--primary-font-family);
	text-align: left;
	
}
.wrapper-dropdown .ui-dropdown button.bt-paises {
    color: var(--primary-color);
	font-weight: var(--font-weight-bold);
    padding: 0;
	padding-top: 0.5em;
	padding-bottom: 0.3em;
	display: flex;
	justify-content: space-between;
}
.wrapper-dropdown .ui-dropdown button.bt-paises:hover {
    text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	
}

button.bt-paises.chevron:after {
        content: "\f078";
        font-family: 'Font Awesome';
	     color: var(--primary-color);
        display: inline-block;
        font-size: 0.8em;
        float: right;
        margin-left: 0.5em;
	    margin-top: 3px;
}

button.bt-paises.chevron[aria-expanded="true"]:after {transform: rotate(0.5turn);}



.wrapper-dropdown .ui-dropdown a,
.wrapper-dropdown .ui-dropdown span,
.wrapper-dropdown .ui-dropdown button {
    border: 0;
	display: flex;
}
.wrapper-dropdown .ui-dropdown li {
    margin-bottom: 0;
	position: relative;
	padding: 0.35em 1em;
	border-left: 1px solid var(--neutral-color-10);
}
.wrapper-dropdown .ui-dropdown li:first-child {border-left: 0;}

.wrapper-dropdown .ui-dropdown li ul {
        display: none;
        position: absolute;
	    min-width: 150px;
        width: auto;
        background: #fff;
        top: 3.6em;
    	z-index: 999;
    	left: 0;
    	box-shadow: 0px 15px 22px -5px rgba(0,0,0,0.3);
    	margin: 0;
	    padding: 1em 0.5em;
}
.wrapper-dropdown .ui-dropdown li li {
	border: 0;
	padding: 0 1em;
}
.wrapper-dropdown .ui-dropdown li li button.bt-paises {
    padding-top: 0.25em;
	padding-bottom: 0.25em;
	font-weight: var(--font-weight-regular);
	
}

.wrapper-dropdown .ui-dropdown > li > ul li a:hover,
.wrapper-dropdown .ui-dropdown > li > ul li button:hover {
   text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

@media only screen and (max-width: 1280px) {
.wrapper-dropdown .ui-dropdown li {padding: 0.35em 0.5em;}
}

@media only screen and (max-width: 940px) {

.wrapper-dropdown {
margin-top: 0;
}
.wrapper-dropdown > span  {
	margin: 0;
	padding-bottom: 1em;

}
.content-dropdown {
    margin-top: 0; 
    padding-bottom: 0;
}
.wrapper-dropdown .ui-dropdown {
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
border: 0;
border: 1px solid var(--neutral-color-10);
padding: 0.5em;
border-radius: 10px;
}
.wrapper-dropdown .ui-dropdown li {
	border-left: 0;
	border-top: 1px solid var(--neutral-color-10);
	width: 100%;
	padding: 0.5em 1em;
}
.wrapper-dropdown .ui-dropdown li:first-child {border: 0;}
.wrapper-dropdown .ui-dropdown button.bt-paises {
    color: var(--primary-color);
	font-weight: var(--font-weight-bold);
	padding-top: 0;
	padding-bottom: 0;
}
	
.wrapper-dropdown .ui-dropdown li ul {
		position: static;
		width: 100%;
		box-shadow: none;
	    padding: 0;
}
.wrapper-dropdown .ui-dropdown li ul li {
border: 0;
padding: 0.5em 0;
		
}
::-webkit-scrollbar { width:0; height:0 }
::-webkit-scrollbar-thumb { background: transparent}
::-webkit-scrollbar-track { background-color: transparent}

main [role="tablist"] {
	overflow-y: inherit;
	overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch; /* apply iOS momentum scrolling effect to this element */
	white-space: nowrap;

}

	
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.breadcrumb {
    font-size: var(--base-font-size);
   padding-top: 1.25em;
}

.breadcrumb span, .breadcrumb ul {
        padding: 0.25em;
        margin: 0;
        display: inline-block;
    }

.breadcrumb span {
        font-weight: 800;
    }

.breadcrumb li {
        display: inline;
        color: var(--black-color);
    }

.breadcrumb li a {
    font-weight: var(--font-weight-bold);
    color: var(--black-color);
	text-decoration: none;
}
.breadcrumb li a:hover,
.breadcrumb li a:focus {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

.breadcrumb li:after {
    content: ">";
    padding: 0 0.35em;
    font-weight: 600;
}

.breadcrumb li:last-child:after {
    content: none;
}

/*Botones*/
a.bt-enlace, 
a.bt-descargar {
    padding: 0.55em 1.35em;
    font-size: 1em;
    color: #fff;
    background: var(--primary-color);
	/*border: 1px solid var(--primary-color);*/
    margin: 0 auto;
    text-align: center;
    line-height: 1.15;
    display: inline-block;
    border-radius: 5px;
    font-weight: var(--font-weight-bold);
	text-decoration: none;
}
a.bt-enlace:hover, 
a.bt-descargar:hover {
    box-shadow: 0 0 15px rgba(33,33,33,.5);
    border: 1px solid var(--primary-color);
}
.bt-descargar {
    background: var(--white-color);
    color: var(--black-color);
}
.botones {text-align: center;}

.botones a.bt-enlace, 
.botones a.bt-descargar {
    display: inline-block;
    margin: 1em;
}

a#btnExportar {
	padding: 0.4em 1.35em;
    font-size: 1em;
    color: var(--primary-color);
    background: var(--white-color);
	border: 2px solid var(--primary-color);
    margin: 0 auto;
    text-align: center;
    line-height: 1.15;
    display: inline-block;
    border-radius: 5px;
    font-weight: var(--font-weight-bold);
	text-decoration: none;
	margin-right: 0.5em;
    margin-bottom: 1em;
	float: right;
}
a#btnExportar:hover {
	background: var(--background-primary-color);
}
a#btnExportar::before {
	content: "";
	width: 20px;
    height: 22px;
    padding-left: 24px;
    border-bottom: 3px solid #fff;
    background: #fff url(imagenes/sprite-file.png) -75px 0 no-repeat;
}
/*Iconos*/

/*iconos por cada formato*/
.listado-enlaces a:before,
.listado-documentos a:before,
.grupo-enlaces p a:before {
    content: "";
    background: #fff url(imagenes/sprite-file.png) 2px 0 no-repeat;
    width: 20px;
    height: 22px;
    padding-left: 24px;
    border-bottom: 3px solid #fff;
}

.listado-enlaces a:before,
.listado-documentos a:before,
.grupo-enlaces a:before {
    background-position: -48px 0;
}

.grupo-enlaces a.doc:before,
.grupo-enlaces a.docx:before,
.grupo-enlaces a.rtf:before,
doc:before, .docx:before,
.rtf:before,
.grupo-enlaces a.doc:before,
.grupo-enlaces a.docx:before,
.grupo-enlaces a.rtf:before {
    background-position: -23px 0;
}

a.pdf:before,
.listado-enlaces a.pdf:before,
.grupo-enlaces a.pdf:before {
    background-position: -49px 0;
}

.xls:before, .xlsx:before,
.xml:before, .csv:before,
.listado-enlaces a.xls:before,
.listado-enlaces a.xlsx:before,
.listado-enlaces a.xml:before,
.listado-enlaces a.csv:before,
.grupo-enlaces a.xls:before,
.grupo-enlaces a.xlsx:before,
.grupo-enlaces a.xml:before,
.grupo-enlaces a.csv:before {
    background-position: -75px 0;
}

a.ppt:before, a.pps:before,
.listado-enlaces a.ppt:before,
.listado-enlaces a.pps:before,
.grupo-enlaces a.ppt:before,
.grupo-enlaces a.pps:before {
    background-position: -101px 0;
}

.aac:before, .aif:before, .iff:before, .m3u:before, .mid:before, .midi:before, .mp3:before, .mpa:before, .ra:before, .ram:before, .wav:before, .wma:before {
    background-position: -152px 0;
}
/*audio*/
.asf:before, .asx:before, .avi:before, .mov:before, .mp4:before, .mpg:before, .qt:before, .rm:before, .wmv img {
    background-position: -127px 0;
}
/*video*/
.gif:before, .jpg:before, .tif:before, .tiff:before, .png:before, .jpeg:before {
    background-position: -177px 0;
}

.zip:before, .rar:before .exe:before, .bat:before {
    background: none;
    width: 0;
    height: 0;
    padding: 0;
}

.htm:before .html:before, .php:before, .asp:before, .aspx:before, .xhtml:before, .es:before, .com:before, .net:before {
    background-position: -274px 0;
}

main .tabs a[href$=".pdf"],
main .tabs .tabs a[href$=".doc"],
main .tabs a[href$=".docx"],
main .tabs a[href$=".xlsx"],
main .tabs a[href$=".csv"] {
    position: relative;
    display: inline-block;
}

main .tabs a[href$=".pdf"]:before,
main .tabs a[href$=".doc"]:before,
main .tabs a[href$=".docx"]:before,
main .tabs a[href$=".xlsx"]:before,
main .tabs a[href$=".csv"]:before {
	content: "";
	background: #fff url(imagenes/sprite-file.png) 2px 0 no-repeat;
	width: 20px;
	height: 22px;
	border-bottom: 3px solid #fff;
	display: block;
	margin-top: 4px;
	float: left;
	margin-right: 0.25em;
}

main .tabs ul.listado-documentos a:before {
    background-position: -49px 0;
}

main .tabs a[href$=".pdf"]:before {
    background-position: -49px 0;
}

main .tabs a[href$=".doc"]:before, a[href$=".docx"]:before {
    background-position: -23px 0;
}

main .tabs a[href$=".xlsx"]:before {
    background-position: -348px 0;
}

main .tabs a[href$=".csv"]:before {
    background-position: -295px 0;
}


/* Listas
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section-container ul,
.section-container ol {
    margin: 1em 2.35em;
    padding-bottom: 0.35em;
}

.section-container ul li:before {
	content: "";
	width: 8px;
	height: 8px;
	margin-right: 8px;
	background: var(--primary-color);
	display: inline-block;
 	margin-left: -20px;
}

.section-container ul li {
   margin-bottom: 1em;
}

.section-container ul li li:before {
    border-radius: 50%;
}

.section-container ol, 
.section-container ol.decimal {
     list-style-type: decimal;
}

.section-container ol.alphanum {
     list-style-type: lower-alpha;
}

.section-container ol.roman {
     list-style-type: lower-roman;
}

.section-container ol li {margin-bottom: 0.65em;}

.section-container nav li:before,
.section-container .breadcrumb li:before,
.section-container .pagination li:before,
.section-container .menu-faq li:before,
.section-container .resultados-busqueda li:before,
.section-container .listado-enlaces li:before,
.section-container .listado-documentos li:before,
.section-container .RadEditor li:before,
.section-container .novedades li:before,
.section-container ul[class^="ui-"] li:before,
.section-container ol li:before,
.section-container .tabs ul > li:before {
	width: 0;
	height: 0;
	background: none;
	margin: 0;
	display: inline;
    content: none;
}

    nav ul,
    .home main ul,
    .resultados-busqueda ul,
    .home-container ul,
    .submenu ul,
    .novedades ul,
    .breadcrumb ul,
    .section-container ul[class^="ui-"],
    .tabs ul {
        list-style: none;
        margin: 0;
    }

/*Listado de noticias*/
.buscador-novedades {
    width: calc(100% - 60px)
}

.buscador-novedades .col {
        width: 40%;
        margin-right: 2%;
}

.buscador-novedades input[type=submit].boton-buscar {
        background: url(imagenes/bt-lupa.png) no-repeat center 5px;
        margin-top: 2em;
}

p.resultados {
    font-size: 1em;
}

p.resultados strong {
        font-weight: 700;
}

.novedades ul {
    margin-top: 1em;
}

.novedades > ul > li {
    padding: 1em 2em;
    border: 3px solid #f0f0f0;
    margin: 1em 0;
}

.tag, .titulo, .fecha {
    display: block;
}

.tag {
    font-size: 0.85em;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 1em;
}

.tag:before {
        content: "";
        width: 13px;
        height: 13px;
        display: inline-block;
        margin-right: 10px;
        background: var(--primary-color);
}

.titulo, .descripcion, .fecha {
    color: var(--black-color);
}

.titulo {
    font-size: 1.35rem;
    font-family: var(--primary-font-family);
    font-weight: var(--font-weight-bold);
}

.tag a, .titulo a {
        color: var(--black-color);
    }


/*Resultados Buscar*/

main .buscador {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
main .buscador form {width: 100%;}

main .buscador input[type=text] {
    width: calc(100% - 200px);
	margin: 0;
	min-height: 3rem;
}
main .buscador .boton-buscar {margin-left: 1em;}

.resultados-busqueda ul {
    border-top: 1px solid var(--neutral-color-30);
    border-bottom: 1px solid var(--neutral-color-30);
}

.resultados-busqueda h2 {
    font-size: 1.35rem;
    margin-bottom: 0;
}

.resultados-busqueda a {
    border: 0;
}

.resultados-busqueda li {
    padding: 0.25em 0;
    margin: 0.25em 0;
    border-top: 1px dotted var(--neutral-color-30);
}

    .resultados-busqueda li:first-child {
        border-top: 0;
    }

.resultados-busqueda p.resultados {
    font-size: 1.55em;
    margin: 1em 0;
}


/*Paginación  de resultados*/
ul.pagination {
    
    text-align: center;
    list-style: none;
    padding: 1.55em 0;
    border: 0;
    margin: 0;
}

ul.pagination li {
		font-size: 1em;
        margin: 0;
        background-image: none;
        display: inline-block;
        border: 0;
    }

ul.pagination li a {
        display: inline-block;
        min-width: 1.5em;
        padding: 0.25em 0.85em;
        margin: 0 1px;
        text-align: center;
        text-decoration: none !important;
        cursor: pointer;
        color: var(--primary-color) !important;
        border: 1px solid transparent;
        border-radius: 5px;
        font-weight: var(--font-weight-bold);
        }

ul.pagination li.next a, 
ul.pagination li.prev a {
            display: none;
}

ul.pagination li a:hover {
    color: #fff !important;
    background: var(--primary-color);
    border-color: var(--primary-color);
	opacity: o.7;
}

ul.pagination li.active span, 
ul.pagination li.active a {
   color: #fff !important;
   background: var(--primary-color);
   border-color: var(--primary-color);
  cursor: default;
 }

ul.pagination li.active a:hover {
    text-decoration: none;
    opacity: 1;
}

ul.pagination li.disabled a, 
ul.pagination li.disabled a:hover {
   opacity: 0;
   cursor: default;
}


/*Pestañas*/
.tabs {
    margin: 2em 0
}
/*.divHidden{display: none;}*/

.section-container .tabs ul {
    list-style-type: none;
    padding-bottom: 0;
}

 .section-container .tabs ul.listado-documentos {
        padding-top: 1.55em;
    }

.tabs > ul > li {
    display: inline-block;
    cursor: pointer;
    margin: 0;
}

.nota-wrapper {
    padding: 1em;
    margin: 1em 0;
    border: 1px solid var(--neutral-color-30);
}

.nota {
    max-height: 250px;
    overflow-x: auto;
    font-size: 0.85em;
}

    .nota p {
        margin: 0.35em 0;
    }

    .nota h4 {
        color: var(--black-color);
        margin-top: 0;
        display: inline;
        padding-bottom: 0.25em;
        font-size: 1rem;
    }


main [role="tablist"] {
    margin: 0 0 -0.1em;
   /* overflow: visible;*/
}

main [role="tab"] {
    position: relative;
    margin: 0;
    padding: 0.5em 1.5em 0.5em 1.5em;
    border: 1px solid #ddd;
    border-radius: 0.2em 0.2em 0 0;
    overflow: visible;
    font-family: inherit;
    font-size: inherit;
    background: rgba(249, 248, 246, 1);
	cursor: pointer;
	vertical-align: baseline;
}


main [role="tab"]:hover::before,
main [role="tab"]:focus::before,
main[role="tab"][aria-selected="true"]::before {
        position: absolute;
        bottom: 100%;
        right: -1px;
        left: -1px;
        border-radius: 0.2em 0.2em 0 0;
        border-top: 3px solid #dd694d;
        content: '';
    }

main [role="tab"][aria-selected="true"] {
        border-radius: 0.2em 0.2em 0 0;
        background: #fff; 
        font-weight: 700;
        border-top: 5px solid var(--primary-color);
    }

main [role="tab"][aria-selected="true"]:not(:focus):not(:hover)::before {
            border-top: 5px solid var(--primary-color);
        }

main [role="tab"][aria-selected="true"]::after {
            position: absolute;
            z-index: 3;
            bottom: -1px;
            right: 0;
            left: 0;
            height: 0.3em;
            background: #fff;
            box-shadow: none;
            content: '';
        }

main [role="tab"]:hover,
main [role="tab"]:focus,
main [role="tab"]:active {
        
        color: inherit;
    }

main [role="tab"]:hover::before,
main [role="tab"]:focus::before {
            border-color: var(--primary-color);
        }

main [role="tabpanel"] {
    position: relative;
    z-index: 2;
    padding: 2em;
    border: 1px solid var(--neutral-color-30);
    border-radius: 0 0.2em 0.2em 0.2em;
    background: var(--white-color);
    overflow: hidden;
    min-height: 300px;
}

main [role="tabpanel"]:focus {
    }

main [role="tabpanel"]:focus::after {
        }

main [role="tabpanel"] p {
        margin: 0;
		padding: 0.65em 0;
    }


/*Lista de Faqs*/
.menu-faq .tt-categorias {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.35em;
}

.menu-faq ul {
    margin: 1.55em 0 2.55em 0;
    list-style: none;
}

.menu-faq li {
    display: inline-block;
    font-size: 1.25em;
    margin: 0;
    margin-right: 0.55em;
    margin-bottom: 0.55em;
}

.menu-faq a {
    display: inline-block;
    padding: 0.55em 0.75em;
    vertical-align: middle;
    font-style: normal;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
}

.menu-faq a:before {
        content: "";
        position: absolute; 
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border-color: var(--primary-color);
        border-style: solid;
        border-width: 0;
        -webkit-transition-property: border-width;
        transition-property: border-width;
        -webkit-transition-duration: 0.1s;
        transition-duration: 0.1s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .menu-faq a:hover:before, .menu-faq a:focus:before, .menu-faq .activo a:before {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        border-width: 3px;
    }

.menu-faq ul li a, .menu-faq ul li a:hover {
    color: var(--black-color);
    border-bottom: none;
}

.menu-faq li.activo {
    position: relative;
}

    .menu-faq li.activo a {
        background: var(--primary-color);
        color: var(--white-color);
    }

        .menu-faq li.activo a:hover {
            opacity: 0.9;
        }

    .menu-faq li.activo:after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 10px 0 10px;
        border-color: var(--primary-color) transparent transparent transparent;
        position: absolute;
        bottom: -10px;
        left: calc(50% - 0.55em);
        z-index: 99;
    }

div.preguntas-frecuentes {
    margin: 2em 0;
}

.preguntas-frecuentes h2 {
    margin-top: 1em;
    color: var(--black-color);
    font-size: 1.35rem;
}

    .preguntas-frecuentes h2 strong {
        font-style: italic;
    }


/*Enlaces Acordeón*/

.accordion dt, .accordion dd {
}

.accordion dt {
    color: var(--black-color);
    font-size: 1.25em;
    cursor: pointer;
    font-family: var(--primary-font-family);
    font-weight: var(--font-weight-bold);
    border-top: 1px solid var(--neutral-color-10);
    padding: 1em 2em;
}

.accordion dd {
    background: var(--neutral-color-5);
    padding: 0.65em 2em;
}

.accordion dt:hover {
    transition: color .1s;
    color: var(--black-color);
}

.accordion dt.open {
    color: var(--black-color);
    border-top: 3px solid var(--primary-color);
    background: var(--neutral-color-5);
}

.accordion dt:before {
    font-family: 'FontAwesome';
    padding-right: 1em;
    content: "\f078";
    color: var(--black-color);
    float: right;
}

.accordion dt.open:before {
    content: "\f077";
    color: var(--black-color);
}


/*Listado de documentos y enlaces*/
.section-container > .grupo-enlaces {
    width: 85%;
}

.sidebar .grupo-enlaces {
    margin-top: 6em;
    margin-left: 1em;
}

.listado-documentos {padding: 0;}

ul.listado-enlaces, .listado-documentos ul {
        padding: 1em 0;
        margin: 1.55em 0;
}

.listado-documentos li, ul.listado-enlaces li {
            list-style: none;
            padding: 0.65em 0;
            position: relative;
        }

ul.listado-enlaces > li, .listado-documentos li {
            border-bottom: 1px solid var(--neutral-color-30);
            margin-bottom: 0 !important;
        }

            ul.listado-enlaces > li:last-child, .listado-documentos li:last-child {
                border-bottom: 0;
            }

ul.listado-enlaces > li {
            margin-bottom: 0.55em;
        }

.listado-documentos > ul > li {
        margin-bottom: 0;
    }

    .listado-enlaces li a,
    .listado-documentos li a {
        color: var(--black-color);
        font-style: normal;
        font-weight: var(--font-weight-bold);
        border: 0;
        padding-left: 1.55em;
		text-decoration: none;
    }

        .listado-enlaces li a:hover,
        .listado-documentos li a:hover {
            color: var(--primary-color);
			text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 4px;
        }

        .listado-enlaces a:before, .listado-documentos li a:before {
            position: absolute;
            left: 0;
            top: 0.85em;
        }

    .listado-documentos ul ul {
        border: 0;
        padding: 0;
        padding-top: 1em;
        margin: 0;
    }


/* Tablas
–––––––––––––––––––––––––––––––––––––––––––––––––– */

table.datos,
table.datos.dataTable {
    border: 0;
    margin: 2em 0;
    padding: 0.25em;
    width: 100% !important;
    border-collapse: collapse;
	table-layout: auto;
    border-bottom: 4px solid var(--primary-color);
}

    table.datos caption {
        display: none;
    }
table.dataTable.no-footer,
    table.datos.dataTable.no-footer {
        border-color: 4px solid var(--primary-color);
    }

    table.datos th,
    table.datos.dataTable thead th {
        color: var(--black-color);
        font-weight: var(--font-weight-bold);
        line-height: 1.15em;
        background: var(--white-color);
        border: 0;
        border-bottom: 4px solid var(--primary-color);
        font-size: 1.25em;
        text-transform: uppercase;
        text-align: left;
        position: sticky;
        top: 0;
    }

table.datos th,
table.datos td,
table.datos.dataTable tbody th,
table.datos.dataTable tbody td,
table.datos.dataTable thead th,
table.datos.dataTable thead td {
        padding: 1rem 1.55rem;
        width: 50%;
    }

    table.datos tbody td,
    table.datos.dataTable tbody td {
        border: 0;
        text-align: left;
        background: var(--white-color);
        vertical-align: top;
        empty-cells: show;
    }

    table.datos tbody tr:nth-child(even) td {
        background-color: var(--background-gray-color);
    }

    table.datos.dataTable thead .sorting,
    table.datos.dataTable thead .sorting_asc,
    table.datos.dataTable thead .sorting_desc,
    table.datos.dataTable thead .sorting_asc_disabled,
    table.datos.dataTable thead .sorting_desc_disabled {
        cursor: pointer;
        background-repeat: no-repeat;
        background-position: center right;
    }

    table.datos.dataTable thead .sorting {
        background-image: url("imagenes/sort_both.png")
    }

    table.datos.dataTable thead .sorting_asc {
        background-image: url("imagenes/sort_asc.png")
    }

    table.datos.dataTable thead .sorting_desc {
        background-image: url("imagenes/sort_desc.png")
    }

    table.datos.dataTable thead .sorting_asc_disabled {
        background-image: url("imagenes/sort_asc_disabled.png")
    }

    table.datos.dataTable thead .sorting_desc_disabled {
        background-image: url("imagenes/sort_desc_disabled.png");
    }

main .top {
    background: #fff;
    box-shadow: 1px 1px 30px -10px rgba(0,0,0,0.2);
    margin-top: 1em;
    padding: 1em;
    border-radius: 5px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between; /*flex-direction: row-reverse;*/
    align-items: center;
}

    main .top .clear {
        display: none;
    }

main .dataTables_wrapper .dataTables_filter {
    width: 40%;
	float: none;
    text-align: left;
}

    main .dataTables_wrapper .dataTables_filter label {
        padding: 0;
        margin: 0;
        font-weight: var(--font-weight-semibold);
		font-size: 0.9em;
    }

main .dataTables_wrapper .dataTables_filter label span {display: none;}

main .dataTables_wrapper .dataTables_filter input[type=search] {
	padding-left: 1em;
	margin: 0 1em;
	width: calc(100% - 140px);
	display: inline;
	min-height: 2rem;
	font-weight: var(--font-weight-regular);
}

main .dataTables_filter input::-webkit-input-placeholder,
main .dataTables_filter input::-moz-placeholder,
main .dataTables_filter input:-ms-input-placeholder,
main .dataTables_filter input:-moz-placeholder,
main .dataTables_filter input::placeholder {
    color: #999;
    font-weight: 300;
}

main .dataTables_wrapper .dataTables_paginate {
    padding-top: 0.25em;
    float: right;
}

main .dataTables_wrapper .dataTables_paginate .paginate_button {
        display: inline-block;
        min-width: 1.5em;
        padding: 0.25em 0.85em;
        margin: 0 1px;
        text-align: center;
        text-decoration: none !important;
        cursor: pointer;
        color: var(--primary-color) !important;
        border: 1px solid transparent;
        border-radius: 5px;
        font-weight: var(--font-weight-bold);
    }

main .dataTables_wrapper .dataTables_paginate .paginate_button.current,
main .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
main .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
            color: #fff !important;
            background: var(--primary-color);
            border-color: var(--primary-color);
        }

        main .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            opacity: 0.7;
        }

    main .dataTables_wrapper .dataTables_paginate .ellipsis {
        padding: 0 1em;
    }


/* Formularios
–––––––––––––––––––––––––––––––––––––––––––––––––– */

main fieldset {
    border: 0;
}

main legend {
    font-size: 1em;
    font-weight: 300;
    padding: 1em 0;
}

main label {
    color: var(--black-color);
    font-weight: var(--font-weight-bold);
    padding: 1em 0;
}

main input[type=text],
main input[type=date],
main input[type=tel],
main input[type=email],
main input[type=password],
main input[type=number],
main input[type=search],
main input[type=mail],
main textarea,
main select {
    border: 1px solid var(--line-form-color);
    padding: 0.25em 0.5em;
    font-size: 1em;
    margin: 0.55em 0;
    width: calc(100% - 0.5em);
    color: var(--black-color);
    background: #fff;
    border-radius: 5px;
    transition: all .3s ease;
	min-height: 2.375rem;
}
main input[type=text]:hover,
main input[type=text]:focus,
main input[type=text]:focus-visible,
main input[type=date]:hover,
main input[type=date]:focus,
main input[type=date]:focus-visible,
main input[type=tel]:hover,
main input[type=tel]:focus,
main input[type=tel]:focus-visible,
main input[type=email]:hover,
main input[type=email]:focus,
main input[type=email]:focus-visible,
main input[type=password]:hover,
main input[type=password]:focus,
main input[type=password]:focus-visible,
main input[type=number]:hover,
main input[type=number]:focus,
main input[type=number]:focus-visible,
main input[type=search]:hover,
main input[type=search]:focus,
main input[type=search]:focus-visible,
main input[type=mail]:hover,
main input[type=mail]:focus,
main input[type=mail]:focus-visible,
main textarea:hover,
main textarea:focus,
main textarea:focus-visible,
main select:hover,
main select:focus,
main select:focus-visible {
	box-shadow: 0px 0px 0px 4px rgba(7,175,103,0.5);
	outline-color: transparent !important;
	}
input:-internal-autofill-selected {background-color: var(white-color);}
main input[type=checkbox],
main input[type=radio] {
    border: 0;
    box-shadow: none;
    width: auto;
    margin: 0.55em 1em;
}

main input[type=submit],
main input[type=reset],
main input[type=button] {
    font-size: 0.95rem;
    font-family: var(--primary-font-family);
    font-weight: var(--font-weight-bold);
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.55em 3em;
    margin: 0;
    border: 0;
    width: auto;
    border-radius: 5px;
}

main input[type=submit]:hover,
main input[type=button]:hover {
        background: var(--primary-color);
        box-shadow: 0 0 15px rgba(33,33,33,.5);
        cursor: pointer;
}

main input[type=button]#btn {
    }

main input[type=button]#btnLimpiar {
	padding: 0.55em 0;
	background: #fff;
	color: var(--primary-color);
	border: 0;
	border-radius: 0;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	margin-left: 2em;
}

main input[type=button]#btnLimpiar:hover {
	border-bottom: 0;
	box-shadow: none;
	text-decoration: none;
}
.formulario {max-width: 700px;}

.section-container .formulario ul {margin: 0;}
.section-container .formulario ul li:before {content: none;}

.item-seleccion {
    padding-bottom: 2em;
}


/* Misceláneo - Funcionalidad JQuery
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/*Compartir Redes Sociales*/
.section-container .compartir ul li {
    margin: 0;
}

.section-container .compartir ul li:before {
	width: 0;
	height: 0;
	background: none;
	margin: 0;
	display: inline;
	content: none;
}

.compartir {
    position: fixed;
    left: -15px;
    top: 45%;
    width: 70px;
    z-index: 9;
    overflow: hidden;
    animation: slideIn 0.5s ease-in;
    animation-delay: .4s;
}

    .compartir ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .compartir .compartir-label {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .compartir a span {
    clip: rect(0 0 0 0); 
	clip-path: inset(50%);
	width: 1px;
	height: 1px; 
	overflow: hidden; 
	position: absolute; 
	white-space: nowrap;
	padding: 0;
    }

    .compartir ul {
        margin: 0;
    }

        .compartir ul li:before {
            content: "";
            display: inline-block;
            background: #4ca5e0;
            padding-right: 5px;
            width: 0;
            height: 0;
        }

    .compartir a.social {
        margin-right: 1em;
        font-size: 0.80em;
        border-radius: 0 10px 10px 0;
        cursor: pointer;
        font-style: normal;
        color: var(black-color);
        font-weight: 600;
        padding: 10px 12px 10px 35px;
		text-decoration: none;
		margin-top: 2px;
    }

        .compartir a.social:hover {
            color: #444;
        }

a.social.facebook,
a.social.twitter,
a.social.correo {
    display: inline-block;
    width: 10%;
    ms-transition: .3s all ease-in;
    transition: .3s all ease-in;
}

a.social.facebook {
    background-color: #3b5998;
}

    a.social.facebook:hover {
        background-color: #2d4373;
        transform: scaleX(1.2);
        transform: translateX(8px);
        -webkit-box-shadow: 10px 0px 5px -5px rgba(0,0,0,0.4);
        -moz-box-shadow: 10px 0px 5px -5px rgba(0,0,0,0.4);
        box-shadow: 10px 0px 5px -5px rgba(0,0,0,0.4);
    }

a.social.twitter {
    background-color: #0099d4;
}

    a.social.twitter:hover {
        background-color: #0087ba;
        transform: scaleX(1.2);
        transform: translateX(8px);
        -webkit-box-shadow: 10px 0px 5px -5px rgba(0,0,0,0.4);
        -moz-box-shadow: 10px 0px 5px -5px rgba(0,0,0,0.4);
        box-shadow: 10px 0px 5px -5px rgba(0,0,0,0.4);
    }

a.social.correo {
    background-color: #497293;
}

    a.social.correo:hover {
        background-color: #406582;
        transform: scaleX(1.2);
        transform: translateX(8px);
        -webkit-box-shadow: 10px 0px 5px -5px rgba(0,0,0,0.4);
        -moz-box-shadow: 10px 0px 5px -5px rgba(0,0,0,0.4);
        box-shadow: 10px 0px 5px -5px rgba(0,0,0,0.4);
    }

    a.social.facebook:before,
    a.social.twitter:before,
    a.social.correo:before {
        font-family: 'Font Awesome Brands';
        font-size: 1.7rem;
        line-height: 1.7;
        padding-right: 2rem;
        margin-left: -20px;
        margin-right: 30px;
        color: #FFFFFF;
    }

    a.social.correo:before {
        font-family: 'Font Awesome';
    }

a.social.facebook:before {
    content: "\f39e";
}

a.social.twitter:before {
    content: "\f099";
}

a.social.correo:before {
    content: "\f0e0";
}

@keyframes slideIn {
    from {
        left: -50px;
    }

    to {
        left: 0;
    }
}


@media only screen and (max-width: 1024px) {
    .compartir {
        width: 100%;
        bottom: 0; /*410px*/
        left: 0;
        animation: none;
        top: auto;
    }

        .compartir ul {
            display: flex;
            flex-direction: row;
            justify-content: center;
			padding-bottom: 0;
        }

        .compartir a.social {
            font-size: 0.80em;
            border-radius: 10px 10px 0 0;
            cursor: pointer;
            font-style: normal;
            color: #000;
            font-weight: 600;
            /*border: 1px solid #ddd;*/
            padding: 10px 12px 10px 35px;
			margin-right: 2px;
			
        }

    a.social.facebook,
    a.social.twitter,
    a.social.correo {
        width: auto;
        height: 50px;
        transition: none;
    }

        a.social.facebook:hover,
        a.social.twitter:hover,
        a.social.correo:hover {
            transform: none;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

        a.social.facebook:before,
        a.social.twitter:before,
        a.social.correo:before {
            line-height: 1.3;
            padding-right: 0;
            margin-left: 0;
        }
}


@media only screen and (max-width: 480px) {
    .compartir ul {
        padding-left: 25px;
    }

    .compartir a.social {
        border: none;
        padding: 14px 0 5px 25px;
    }

    a.social.facebook,
    a.social.twitter,
    a.social.correo {
        display: inline;
    }
}


/*Página de error*/
.error-404 {
    width: 75%;
    margin: 0 auto;
}

    .error-404 img {
        float: right;
        margin-left: 2em;
    }

    .error-404 .titulo, .error-404 .subtitulo {
        font-size: 2rem;
        text-align: center;
        line-height: 1;
        padding: 0 20%;
        font-family: var(--primary-font-family);
        font-weight: 700;
    }

        .error-404 .titulo span {
            font-size: 12rem;
            display: block;
           
        }

    .error-404 .subtitulo {
        line-height: 1.25;
        margin: 0.35em 0
    }

/*Contacto*/
.direccion div {
    float: left;
    width: 43%;
    margin-right: 5%;
}

    .direccion div h2 {
        font-size: 1.55rem;
        padding-right: 2em;
    }

/*Mapa del Sitio*/
ul.mapa-web, ul.mapa-web ul {
    list-style: none;
    margin: 1em;
}

ul.mapa-web > li {
	font-family: var(--primary-font-family);
	font-size: 1rem;
	padding: 0;
 	margin: 0;
	padding-bottom: 0.55em;
}

ul.mapa-web > li a {
	border-bottom: 0;
	color: #000;
	text-decoration: none;
	font-weight: var(--font-weight-bold);
 }

 ul.mapa-web > li::before {
    content: "\f105";
    font-family: 'Font Awesome';
    padding-right: 0.25em;
    color: var(--primary-color);
	background: none;
	margin-left: 0;
}

ul.mapa-web > li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
 }

 ul.mapa-web > li a:before:hover {
    text-decoration: none;
}

ul.mapa-web ul {
	font-size: 0.75em;
	margin-left: 1em;
}

.section-container ul.mapa-web ul li:before {
    content: "\f0da";
    font-family: 'FontAwesome';
    padding-right: 0.25em;
    background: none;
    border: 0;
}

.col-contenido .mapa-web li li a {
    color: #000;
}

/*Cookies*/
#cookieChoiceInfo {
    position: fixed;
    width: 100%;
    margin: 0px;
    left: 0px;
    bottom: 0px;
    color: rgb(255, 255, 255);
    z-index: 1000;
    text-align: center;
    padding: 1.5em 1em;
	padding-bottom: 2em;
    background-color: rgba(0, 0, 0, 0.755);
    font-size: 0.875em;
}
#cookieChoiceInfo p {
   padding-bottom: 1em;
}
#cookieChoiceInfo span {
   display: block;
   padding-bottom: 1.25em;
}

#cookieChoiceInfo a {
	margin-left: 8px;
	color: rgb(255, 255, 255);
	padding: 0.55em;
	padding-top: 0.25em;
	text-decoration: underline;
	margin: 0 1em;
}

#cookieChoiceInfo a:hover {
	text-decoration: none;
	opacity: 0.7;
}

#cookieChoiceInfo a#cookieChoiceDismiss {
	font-weight: var(--font-weight-bold);
	border: 1px solid #fff;
    text-decoration: none;
	padding-top: 0.35em;
}


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media print {
* {
	background: transparent !important;
	color: #000 !important;
	box-shadow: none !important;
	text-shadow: none !important;
}
a, a:visited {
    text-decoration: underline;
}
a[href]:after {
   content: " (" attr(href) ")";
}
abbr[title]:after {
   content: " (" attr(title) ")";
}
a[href^="javascript:"]:after, a[href^="#"]:after {
   content: "";
}
pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
}

thead {
        display: table-header-group;
    }

tr, img {
        page-break-inside: avoid;
    }

img {
        max-width: 100% !important;
    }

p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

h2, h3 {
        page-break-after: avoid;
    }
}

@media only screen {
.container img, .container embed, .container object {
	min-width: auto;
	height: auto;
}
.container video {
 	width: 100%;
	height: auto;
}
.container {
    transition: width 0.3s ease-out 0s;
}
.footer img {
    min-width: auto;
}
}

@media only screen and (min-width: 1680px) {
    .header-container .tagline {
        font-size: 2.5rem;
    }

}
@media only screen and (max-width: 1680px) {
.margen,
.home-container {
	padding-left: 3em;
	padding-right: 3em;
}

}

@media only screen and (max-width: 1280px) {
.col-contenido,
.buscar-datos {margin: 2em -5%;}
.buscar-datos input[type=search] {width: 90%;}
aside.submenu {display: none;}
.section-container {
	flex-direction: column;
}

}

@media only screen and (max-width: 1240px) {
.buscar-datos {
	margin: 2em 0;
	border: 1px solid #ddd;
	height: 210px;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
	float: none;
	width: 100%;
}

main [role="tab"] {padding: 0.5em 1em;}	
}


@media only screen and (max-width: 1024px) {

.margen,
.home-container {
	padding-left: 2em;
	padding-right: 2em;
}
.menu-bt-lupa {
position: absolute;
z-index: 99;
right: 0;
top: 0;
}

.opciones {
 float: none; /*width: 55%;*/
 margin-right: 0;

}
.opciones ul { 
  	display: none;
}

.introduccion h1 {font-size: 2em;}
.home-container .highlight {
	font-size: 1em;
	margin-left: 5%;
	margin-right: 5%;
}

.enlaces-destacados {margin: 0 5%;}

.introduccion .foto {
	text-align: center;
	width: 30%;
}
.introduccion .texto {width: 65%;}
.introduccion img {width: 100%;}
	
}


@media only screen and (max-width: 850px) {
.margen, .home-container {
    padding-left: 1.5em;
    padding-right: 1.5em;
}
.logo img {height: 60px;}
p.resultados {
	font-size: 1em;
	/*margin-top: 6em;*/
}
.resultados-busqueda p.resultados {font-size: 1.125em;}
.enlaces-destacados {margin: 0;}
.home-container .highlight {
	margin-left: 0;
	margin-right: 0;
}
.enlaces-destacados h2 {font-size: 1.25em;}
	
footer ul {row-gap: normal;}
}

@media only screen and (max-width: 768px) {
.introduccion h1 {font-size: 1.25em;}
.introduccion {flex-direction: column;}	

.introduccion .texto,
.introduccion .foto {
	width: 100%;
}
.introduccion .foto img {width: 60%;}
.enlaces-destacados ul li {width: calc(50% - 1em);}
.enlaces-destacados ul, .otros-enlaces ul {padding: 0;}

.registro-fitosanitario ul.ui-enlaces {columns: 3;}
	
main .top {
	flex-direction: column;
	gap: 1em;
		
	}
main .dataTables_wrapper .dataTables_filter {width: 100%;}
table.datos th, table.datos.dataTable thead th {font-size: 1em;}	
}
@media only screen and (max-width: 680px) {
h1 {font-size: 1.5rem;}
h2 {font-size: 1.25rem;}
h3 {font-size: 1.125rem;}
h4 {font-size: 1rem;}
h5 {font-size: 1rem;}	

	
.nombre-app {padding-top: 1.5em;}
.logo img {height: 50px;}

.tag {font-size: 0.75em;}
.breadcrumb {display: none;}
h1 {
	margin-top: var(--lg-spacing);
	margin-bottom: var(--spacing);	
}

.enlaces-destacados ul {flex-direction: column;}
.enlaces-destacados ul li {width: 100%;}

footer ul {flex-direction: column;}
footer ul li {padding: 0.25em 0;}

.opciones-footer {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1em;
	margin-bottom: 1em;
}
.registro-fitosanitario ul.ui-enlaces {
        columns: 1;
    }
#cookieChoiceInfo a#cookieChoiceDismiss {
    display: block;
    margin-top: 1em;
}
	
main .dataTables_wrapper .dataTables_filter {text-align: left;}
main .dataTables_wrapper .dataTables_filter input[type=search] {
	width: calc(100% - 2em);
    margin: 0;
}
main .dataTables_wrapper .dataTables_filter label {font-size: 0.8em;}
table.datos th, table.datos td, 
table.datos.dataTable tbody th, 
table.datos.dataTable tbody td, 
table.datos.dataTable thead th, 
table.datos.dataTable thead td,
table.datos tbody td, table.datos.dataTable tbody td {
	padding: 1rem;
	font-size: 0.8rem;
}

main [role="tabpanel"] {padding: 1em;}
main [role="tab"] {font-size: 0.8em;}
	
.tabs .row {flex-direction: column;}
.columnas {width: 100%;}
}

@media only screen and (max-width: 480px) {

.menu-idiomas {margin-left: 0;}
.menu-idiomas li {
	padding: 0 0.35em;
	font-size: 0.7em;
}
.logo img {height: 35px;}
.header-container .tagline {
    font-size: 1.25em;
}
.menu-collapser {
    left: -2.5rem;
    top: 0.5em;
}

.fondo-buscar {width: 190px;}
.menu-bt-lupa, input[type=submit].menu-boton-buscar {
	background-position: center 3px;
    background-size: 18px;
    min-width: 24px;
	height: 24px;
}
header .buscador input[type=text] {width: calc(100% - 30px);}
.buscar-datos input[type=submit] {
        display: block;
        margin: 0 auto;
        width: 200px;
    }
.margen, .home-container {
    padding-left: 1em;
    padding-right: 1em;
}

.resultado-datos ul {
        margin-top: 4em;
        border: 0;
    }

.buscar-datos input[type=search], .buscar-datos input[type=submit] {
        border-radius: 0;
        box-shadow: none;
    }

.texto-alertas:after, 
.panel-avisos:after, 
.aviso-encuesta:after, 
.opinion:after, 
.form-participa:after {
        width: 85%;
    }

}


@media only screen and (max-width: 390px) {
	.fondo-buscar {width: 150px;}
	
	nav#menu-principal .icon-bar, 
	nav#menu-principal .icon-bar:before, 
	nav#menu-principal .icon-bar:after {
    width: 30px;
    height: 3px;
}
	nav#menu-principal .icon-bar:before {
    top: 8px;
   }
	nav#menu-principal .icon-bar:after {
    bottom: 8px;
}
	
	.header-container .tagline {font-size: 1em;}
	header .logo {margin-right: 0.5em;}

}

@media only screen and (max-width: 330px) {
	
 .fondo-buscar {width: 100px;}
  header .buscador input[type=text] {font-size: 0.7em;}
	
header .logo a:last-child {display: none;}
	
}



/*Ventana Modal*/
#basic-modal-content {
    display: none;
}

#simplemodal-overlay {
    background-color: #fff;
}

.simplemodal-container {
    color: #666;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 1.55em;
    box-shadow: 0px 0px 8px #ccc;
}

    .simplemodal-container.extendido {
        width: 950px !important;
    }

#simplemodal-container .simplemodal-data {
    padding: 0 2em;
}

#simplemodal-container code {
    background: #141414;
    border-left: 3px solid #65B43D;
    color: #bbb;
    display: block;
    font-size: 12px;
    margin-bottom: 12px;
    padding: 4px 6px 6px;
}

#simplemodal-container a.modalCloseImg {
    background: #000 url(imagenes/icons.svg) no-repeat 8px 4px;
    width: 35px;
    height: 35px;
    display: inline;
    z-index: 3200;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    border-radius: 50%;
}

#simplemodal-container h3 {
    color: #c00c33;
}

.simplemodal-container {
    width: 500px;
    height: 380px;
}

    .simplemodal-container.medium {
        width: 800px !important;
    }

    .simplemodal-container.large {
        width: 960px !important;
    }

    .simplemodal-container.medium, .simplemodal-container.large {
        height: 620px !important;
    }
