ol, ul {
	list-style: none;
}
a {
    text-decoration: none;
}

.ver {
    display: none;
}

#bodyWrapper {
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
#bodyWrapper > nav {
    flex: 0 0 70px;
    z-index: 9;
}
#mapWrapper {
    flex: 1 0 auto;
    overflow: hidden;
}
#map {
    height: calc(100vh - 70px);
}

.fixd_nav {
    position: fixed;
    width: 100%;
    min-width: 320px;
    max-width: 100%;
    height: 60px;
    text-align: right;
    color: white;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0px 1px rgb(217, 217, 217);
}
.fixd_nav ul:not(#auto-search-results) {
    width: 100%;
    margin: 0 auto;
    padding: 0 3%;
    white-space: nowrap;
    -webkit-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}
.fixd_nav li:not(#auto-search-results) {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
    text-align: left;
    -webkit-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
}

.fixd_nav a {
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    position: relative;
    line-height:57.33px;
    font-size: 23px;
    color: #8e9394;
    padding: 1.5px;
    -webkit-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
}

.fixd_nav li:nth-of-type(1) a {
    font-size: 30px;
}
.fixd_nav li:nth-of-type(7) a:hover {
    box-shadow: none;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.fixd_nav a:hover, .fixd_nav img:not(:first-child):hover {
    -webkit-transform: translate(0, -3px);
    -ms-transform: translate(0, -3px);
    transform: translate(0, -3px);
}
.fixd_nav a:active {
    color: #228CD9;
    opacity: 1;
    text-shadow: 0 0 1px #228CD9;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
@media only screen and (min-width: 768px) {
    .fixd_nav {
        display: block;
    }
}

#map-containerDiv {
    position:absolute;
    top:0;left:0;
    right:0;
    bottom:0;
    z-index:0; 
}
.inferior {
    height: 100%;
    overflow-y: scroll;
}

#mapContainer { 
    width:100%;
    height:100%;
    position:fixed; 
}
#mapOptions {
    width:25%;
    position:absolute;
    top:0;
    right:-25%;
    bottom:0;
    z-index:1;
    box-shadow:-2px 0 5px rgba(0,0,0,0.1);
    z-index:99;
}
       
#mapContainer.options-open #map-containerDiv {
    right:25%;
}
#mapContainer.options-open #mapOptions {
    right:0; 
}

@media (max-width: 800px) {
    #mapOptions {
        width:92%;
        right:-92%;
    }
    .page__menu{
        width:92%!important;
    }
    #mapContainer.options-open #map-containerDiv {
        right:92%;
    }
    #imgLogoMaplife, #imgLogoMap{
        display: none;
    }
} 

/*Quitar el focus al hacer click sobre alguna capa de informacion resinera*/
path:focus {
    outline-width: 0;
}
.tabbable-panel {
    border-left:1px solid #5cffff;
}

.tabbable-panel.tab-right {
    border-left:none;
    border-right:1px solid #5cffff;
}
      
.tabbable-panel,.tabbable-target {
    -ms-transition:all 0.5s ease-in-out;
    -moz-transition:all 0.5s ease-in-out;
    -webkit-transition:all 0.5s ease-in-out;
    transition:all 0.5s ease-in-out;
}

/* ESTILOS PARA EL ACORDEON */
.accordion, .accordionInfoLayer, .accordionInfoLayerProvincias {
    background-color: white;
    cursor: pointer;
    padding: 10px 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    border-bottom:1px solid #ccc;
    font-family: Arial !important;
    font-size: 17px;
    font-weight: bold;
    color: #5c6873;
}
.accordion:after, .accordionInfoLayer:after, .accordionInfoLayerProvincias:after{
    content:'▼';
    float: right;
}
.active2, .accordion:hover, .accordionInfoLayer:hover, .accordionInfoLayerProvincias:hover  {
    color: white;
    border-bottom: 5px solid #4A7C68;
    background: #75A491;
}

.panel {
    padding-left: 18px;
    padding-bottom: 6px;
    padding-top: 5px;
    /*max-height: 0;*/
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background: #c4dd9d1c;
    border: 1px solid #1d5c003b;
}

input[type="checkbox"]{
    position: relative;
    top: 4px;
    height: 20px;
    width: 20px;
    background-color: white;
    cursor: pointer;
    display: inline-block;
    -webkit-appearance: none;
    border: 2px solid #75A491;
}
input[type="checkbox"] + span{
    margin-left: 7px;
}

input[type="checkbox"]:after{
    content: '';
    display: block;
    height: 20px;
    position: relative;
    width: 20px;
}

input[type="checkbox"]:checked:after{
    background-color: #416557;
    top: -2px;
    left: -2px;
}
input[type="radio"] + span{
    color: #5c6873;
}

#map input[type="checkbox"] + span{
    color: black;
}

input[type="radio"]{
    position: relative;
    top: 4px;
    height: 20px;
    width: 20px;
    background-color: white;
    cursor: pointer;
    display: inline-block;
    -webkit-appearance: none;
    border: 2px solid #75A491;
}
input[type="radio"] + span{
    margin-left: 7px;
}

input[type="radio"]:after{
    content: '';
    display: block;
    height: 20px;
    position: relative;
    width: 20px;
}

input[type="radio"]:checked:after{
    background-color: #416557;
    top: -2px;
    left: -2px;
}
input[type="radio"] + span{
    color: #5c6873;
}

#map input[type="radio"] + span{
    color: black;
}

.leaflet-control-layers {
    box-shadow: 0px 0px 0px rgba(0,0,0,0.4)!important;
    background: #c4dd9d00 !important;
    border-radius: 0px!important;
}
.leaflet-control-layers-expanded {
    padding: 0px 0px 0px 0px!important;
    background: #c4dd9d00 !important;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 40;
    -moz-transition: opacity 0.25s ease 0s, visibility 0.35s linear;
    -o-transition: opacity 0.25s ease 0s, visibility 0.35s linear;
    -webkit-transition: opacity 0.25s ease, visibility 0.35s linear;
    -webkit-transition-delay: 0s, 0s;
    transition: opacity 0.25s ease 0s, visibility 0.35s linear;
}
.modal-overlay.state-show {
    opacity: .7;
    visibility: visible;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -moz-transition-duration: 0.2s, 0s;
    -o-transition-duration: 0.2s, 0s;
    -webkit-transition-duration: 0.2s, 0s;
    transition-duration: 0.2s, 0s;
}

.modal-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 50;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -moz-box-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    width: 100%;
    text-align: center;
    visibility: hidden;
    height: 100%;
}
.modal-frame.state-appear {
    visibility: visible;
}
.modal-frame.state-appear .modal-inset {
    -moz-animation: modalComeIn 0.25s ease;
    -webkit-animation: modalComeIn 0.25s ease;
    animation: modalComeIn 0.25s ease;
    visibility: visible;
}
.modal-frame.state-appear .modal-body {
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
}
.modal-frame.state-leave {
    visibility: visible;
}
.modal-frame.state-leave .modal-inset {
    -moz-animation: modalHeadOut 0.35s ease 0.1s;
    -webkit-animation: modalHeadOut 0.35s ease 0.1s;
    animation: modalHeadOut 0.35s ease 0.1s;
    visibility: visible;
}
.modal-frame.state-leave .modal-body {
    opacity: 0;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -moz-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
}


.modal-info {
    overflow: auto;
    height: 100%;
    display: flex;
    vertical-align: middle;
    text-align: center;
}

.modal-inset {
    position: relative;
    padding: 37px;
    background-color: white;
    min-width: 320px;
    min-height: 126px;
    margin: auto;
    visibility: hidden;
    -moz-box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.modal-inset .close {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    opacity: .4;
}
.modal-inset .close:hover {
    opacity: 1;
}

.modal-body {
    margin: auto;
    opacity: 0;
    -moz-transform: translateY(0) scale(0.8, 0.8);
    -ms-transform: translateY(0) scale(0.8, 0.8);
    -webkit-transform: translateY(0) scale(0.8, 0.8);
    transform: translateY(0) scale(0.8, 0.8);
    -moz-transition-property: opacity, -moz-transform;
    -o-transition-property: opacity, -o-transform;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.modal-body h3 {
    font-weight: 700;
    padding-bottom: 5px;
    display: block;
    color: #F2594B;
    text-align: center;
}
.modal-body p {
    padding-bottom: 20px;
}
.modal-body .ps {
    font-size: 12px;
    opacity: .3;
}

@-webkit-keyframes modalComeIn {
    0% {
        visibility: hidden;
        opacity: 0;
        -moz-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
        -webkit-transform: scale(0.8, 0.8);
        transform: scale(0.8, 0.8);
    }
    65.5% {
        -moz-transform: scale(1.03, 1.03);
        -ms-transform: scale(1.03, 1.03);
        -webkit-transform: scale(1.03, 1.03);
        transform: scale(1.03, 1.03);
    }
    100% {
        visibility: visible;
        opacity: 1;
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
@-moz-keyframes modalComeIn {
    0% {
        visibility: hidden;
        opacity: 0;
        -moz-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
        -webkit-transform: scale(0.8, 0.8);
        transform: scale(0.8, 0.8);
    }
    65.5% {
        -moz-transform: scale(1.03, 1.03);
        -ms-transform: scale(1.03, 1.03);
        -webkit-transform: scale(1.03, 1.03);
        transform: scale(1.03, 1.03);
    }
    100% {
        visibility: visible;
        opacity: 1;
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
@keyframes modalComeIn {
    0% {
        visibility: hidden;
        opacity: 0;
        -moz-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
        -webkit-transform: scale(0.8, 0.8);
        transform: scale(0.8, 0.8);
    }
    65.5% {
        -moz-transform: scale(1.03, 1.03);
        -ms-transform: scale(1.03, 1.03);
        -webkit-transform: scale(1.03, 1.03);
        transform: scale(1.03, 1.03);
    }
    100% {
        visibility: visible;
        opacity: 1;
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
@-webkit-keyframes modalHeadOut {
    0% {
        visibility: visible;
        opacity: 1;
        -moz-transform: translateY(0) scale(1, 1);
        -ms-transform: translateY(0) scale(1, 1);
        -webkit-transform: translateY(0) scale(1, 1);
        transform: translateY(0) scale(1, 1);
    }
    100% {
        visibility: hidden;
        opacity: 0;
        -moz-transform: translateY(35px) scale(0.97, 0.97);
        -ms-transform: translateY(35px) scale(0.97, 0.97);
        -webkit-transform: translateY(35px) scale(0.97, 0.97);
        transform: translateY(35px) scale(0.97, 0.97);
    }
}
@-moz-keyframes modalHeadOut {
    0% {
        visibility: visible;
        opacity: 1;
        -moz-transform: translateY(0) scale(1, 1);
        -ms-transform: translateY(0) scale(1, 1);
        -webkit-transform: translateY(0) scale(1, 1);
        transform: translateY(0) scale(1, 1);
    }
    100% {
        visibility: hidden;
        opacity: 0;
        -moz-transform: translateY(35px) scale(0.97, 0.97);
        -ms-transform: translateY(35px) scale(0.97, 0.97);
        -webkit-transform: translateY(35px) scale(0.97, 0.97);
        transform: translateY(35px) scale(0.97, 0.97);
    }
}
@keyframes modalHeadOut {
    0% {
        visibility: visible;
        opacity: 1;
        -moz-transform: translateY(0) scale(1, 1);
        -ms-transform: translateY(0) scale(1, 1);
        -webkit-transform: translateY(0) scale(1, 1);
        transform: translateY(0) scale(1, 1);
    }
    100% {
        visibility: hidden;
        opacity: 0;
        -moz-transform: translateY(35px) scale(0.97, 0.97);
        -ms-transform: translateY(35px) scale(0.97, 0.97);
        -webkit-transform: translateY(35px) scale(0.97, 0.97);
        transform: translateY(35px) scale(0.97, 0.97);
    }
}
/*Acoordeones menu inforacion capas*/
.accordionInfoLayer {
    border-bottom: 5px solid #4A7C68D1;
    background: white;
}
.panelInfoLayer {
    border-bottom: 3px solid rgba(115, 163, 143, 0.49);
    background: rgb(185 248 220 / 32%);
    border-right: 3px solid rgba(115, 163, 143, 0.49);
    border-left: 3px solid rgba(115, 163, 143, 0.49);
    padding-bottom: 0px;
    padding-left: 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.panelInfoLayerProvincias {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background: #f6f9f6;
}
.accordionInfoLayerProvincias{
    border-bottom: 5px solid #4A7C68D1;
    background: rgba(74, 124, 104, 0.18);
}
.activeCCAA {
    background: #75A491;
    color: white;
}
.activeCCAA + .panelInfoLayer{
    max-height: 20000px;
}

.activeProvincias {
    background: #75A491;;
    color: white;
}
.activeProvincias + .panelInfoLayerProvincias{
    max-height: 2000px;
}

/*ABRIR Y CERRAR LOS DESPLEGABLES DE LAS CAPAS*/
.accordion {
    color: white;
    border-bottom: 5px solid #4A7C68;
    background: #75A491;
}

.active2:after, .activeCCAA:after, .activeProvincias:after{
    content: '▲';       
}   
.active2 + .panel, .active2 + .panel_subnivel {
    max-height: 000px;
}

#lista_info_layer_web a, #lista_info_layer_email a, #lista_info_layer_direccion a{
    text-decoration: none;
    color: #486fc7;
}

.r-link{
    display: var(--rLinkDisplay, inline-flex) !important;
}
.r-link[href]{
    text-decoration: var(--rLinkTextDecoration, none) !important;
}
.r-list{
    margin-bottom: var(--rListMarginBottom, 0) !important;
}

.menu{
    margin-bottom: 6px;
    --rLinkColor: var(--menuLinkColor, currentColor);
}
.menu__link{
    display: var(--menuLinkDisplay, block);
}
.menu:hover .menu__link:not(:hover){
    --rLinkColor: var(--menuLinkColorUnactive, rgba(22, 22, 22, .35));
}


.menu{
    box-shadow: var(--menuBoxShadow, 0 0px 0px 0 #4A7C68, 0 5px 3px 0 #4A7C68);
}

.menu__list{
    display: flex; 
    padding-left: 0px;
}

.menu__link{
    margin: 15px 0px;
    font-weight: 700;
    text-transform: uppercase;
}

.text-underlined{
    position: relative;
    overflow: hidden;
    will-change: color;
    transition: color .25s ease-out;  
}
#menu_visualizacion:hover, #menu_informacion:hover{
    font-size: 16.3px;
    transition: .2s;
}

.text-underlined::before, .text-underlined::after{
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--textUnderlinedLineColor, currentColor);
    will-change: width;
    transition: width .1s ease-out;
    position: absolute;
    bottom: 0;
}

.text-underlined::before{
    left: 50%;
    transform: translateX(-50%); 
}

.text-underlined::after{
    right: 50%;
    transform: translateX(50%); 
}

.text-underlined:hover::before, .text-underlined:hover::after{
    width: 100%;
    transition-duration: .2s;
}

.page__menu{
    position: fixed;
    top: 70px;
    width: 25%;
    z-index: 999;
}

.r-link{
    --uirLinkDisplay: var(--rLinkDisplay, inline-flex);
    --uirLinkTextColor: var(--rLinkTextColor);
    --uirLinkTextDecoration: var(--rLinkTextDecoration, none);
    display: var(--uirLinkDisplay) !important;
    color: var(--uirLinkTextColor) !important;
    text-decoration: var(--uirLinkTextDecoration) !important;
}
.menu__group{
    width: 50%;
    text-align: center;
    color: #4A7C68;
}

.infopanel_provincia_ccaa{
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 4px;
}

/*tabla menu informacion para mostrar los municipios resineros*/
table{
    width:100%;
    border:2px solid #4A7C68D1;
}
table tr th{
    border:1px solid #4A7C68D1;
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    width: 50%;
}
table tr:first-child th{
    font-size: 18px;
}
table tr td{
    border:1px solid #4A7C68D1;
    text-align: center
}
#informacion_parcelas{
    display: flex;
}

/*Leyenda*/

#leyend_provincia_ccaa{
    display: none;
    background-color: rgba(255, 255, 255, 0.72);
    bottom: 10px;
    left: 10px;
    height: 418px;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    border-radius: 15px;
    margin-left: 10px;
    margin-bottom: 5px;
}

#leyend_municipios_resineros, #leyend_potencialidad_resina{
    margin-left: 10px;
    display: none;
    background-color: rgba(255, 255, 255, 0.72);
    bottom: 10px;
    left: 10px;
    height: 47px;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    border-radius: 15px;
    margin-bottom: 5px;
}
#leyend_mfe{
    margin-left: 10px;
    display: none;
    background-color: rgba(255, 255, 255, 0.72);
    bottom: 10px;
    left: 10px;
    height: 244px;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    border-radius: 15px;
    margin-bottom: 5px;
}
#leyend_parcel_investigacion{
    margin-left: 10px;
    display: none;
    background-color: rgba(255, 255, 255, 0.72);
    bottom: 10px;
    left: 10px;
    height: 106px;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    border-radius: 15px;
    margin-bottom: 5px;
}
#leyend_montes_certificados_pefc_cyl, #leyend_montes_certificados_pefc_extremadura, #leyend_montes_utilidad_publica{
    margin-left: 10px;
    display: none;
    background-color: rgba(255, 255, 255, 0.72);
    bottom: 10px;
    left: 10px;
    height: 47px;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    border-radius: 15px;
    margin-bottom: 5px;
}
/*botones selector de capas*/
#btn_capa_info, #btn_capa_tematica{
    border-bottom: 5px solid #4A7C68D1;
    margin-top: 15px;
}
#btn_capa_base{
    border-bottom: 5px solid #4A7C68D1;
}

#informacionCapas h4{
    color: #4A7C68;
    justify-content: center;
    display: flex;
    padding: 9px 0;
    font-weight: bold;
    margin-bottom: 5px;
}
#logo_menu_resina{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
#logo_menu_resina img{
    width: 300px;
    position: static;
    opacity: 0.7;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 15px;
}

/*Coordenadas de cursor abajo a la izquierda*/
.mouseposition{
    margin-left: 15px!important;
    background: white;
    padding: 1px 5px;
    border-radius: 4px;
    box-shadow: 1px 0px 3px 2px rgba(0, 0, 0, 0.31);
}

/*Buscador de lugares*/
.search_close {
    padding: 0px!important;
    width: 0%!important;
}
.loupe{
    color:black;
    text-align: left;
    margin-top:14px
}
.buscador_hidden{
    width: 0px!important;
    display: none!important;
}
.li_buscador{
    margin: 0 -10px!important;
}
.style_ico_lupa{
    background: #cce3d9;
}
.leaflet-control-layers-expanded{
    width: 100%;
}