.img-fluid {
    max-width: 100%;
    height: auto;
}

.mb-0 {
    margin-bottom: 0;
}

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

.fw-bold {
    font-weight: bold;
}

.text-uppercase {
    text-transform: uppercase;
}

.fz-11 {
    font-size: 11px;
}

.d-block {
    display: block;
}

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

.d-flex {
    display: flex;
}

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

.d-none {
    display: none !important;
}

.align-items-center {
    align-items: center;
}

.op-hover {
    -moz-transition: opacity .4s;
    -ms-transition: opacity .4s;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
    opacity: 1;
}

.op-hover:hover {
    opacity: 0.5;
}

.opacity-50{
    opacity: 0.5;
}

.text-black {
    color: black;
}

.text-primary {
    color: var(--e-global-color-eb0e927);
}

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



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}




/*FROMAGO MAPA EXPOSITORES*/
/*
 * Property styles in unhighlighted state.
 */

#mapa-expositores svg {
    height: 14px;
    width: 14px;
    margin-right: 0.25rem;
}

.property {
    align-items: center;
    background-color: var(--e-global-color-eb0e927);
    border: 1px solid white;
    border-radius: 50%;
    color: black;
    display: flex;
    font-size: 14px;
    gap: 15px;
    height: 30px;
    justify-content: center;
    padding: 4px;
    position: relative;
    position: relative;
    transition: all 0.3s ease-out;
    width: 30px;
}



.property::after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 15px solid var(--e-global-color-eb0e927);
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 90%;
    height: 100%;
    transform: translate(-50%, 0);
    width: 0;
    z-index: 1;
}

.property .details {
    display: none;
    flex-direction: column;
    flex: 1;
    max-width: 200px;
}

.property.opacity-50{
     background-color: var(--e-global-color-88cff94);
}
.property.opacity-50::after {
    border-top: 15px solid var(--e-global-color-88cff94);
}

/*
 * Property styles in highlighted state.
 */
.property.highlight {
    background-color: white !important;
    border-radius: 0px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
    height: auto;
    padding: 10px;
    width: auto;


}

.property.highlight .details {
    display: block;
}

.property.highlight::after {
    border-top-color: white !important;
    top: 100%;
}

.marker-tag{
    background-color: var(--e-global-color-eb0e927);
    border-radius: 1rem;
    padding: 0.1rem 0.25rem;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    font-size: 11px;
    color: white;
    font-weight: bold;
}


#filtros-expositores {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem;
    justify-content: center;
}

#filtros-expositores .filtro {
    max-width: 30%;
    margin: 1rem;
}


#filtros-expositores .tag-button {
    padding: 0.1rem .75rem;
    padding-right: 0.4rem;
    cursor: pointer;
    display: inline-flex;
    margin: 0 0.2rem;
    margin-top: 0.2rem;
    font-size: 11px;
    background-color: var(--e-global-color-eb0e927);
    border-radius: 0.5rem;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

#filtros-expositores .tag-button span {
    background-color: white;
    border-radius: 1rem;
    margin-left: 0.5rem;
    margin-top: 2px;
    width: 12px;
    height: 12px;
    font-size: 8px;
    color: var(--e-global-color-eb0e927);
    text-align: center;
}


#listado-expositores {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem;
}

#listado-expositores .expositor-item {
    width: calc(25% - 1rem);
    margin: 0.5rem;
    border: 2px solid var(--e-global-color-eb0e927);
    padding: 1rem;
    position: relative;
    min-height: 400px;
}

#listado-expositores .expositor-item.seleccionado {
    border-color: var(--e-global-color-accent);
}

#listado-expositores .tags {
    position: absolute;
    background-color: var(--e-global-color-eb0e927);
    top: 0;
    left: 0;
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 0.25rem;
    padding-right: 1rem;
    margin-top: 1rem;
    font-size: 11px;
    color: white;
    font-weight: bold;
}

#listado-expositores .expositor-item .contenido {
    position: absolute;
    bottom: 0;
    margin-bottom: 1rem;
    max-width: 90%;
}


#listado-expositores .provincia {
    text-transform: uppercase;
    cursor: pointer;
}

#listado-expositores .contenedor-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
}

#listado-expositores img {
    padding: 1rem;
    max-height: 150px;
}

#listado-expositores a,
#listado-expositores .provincia {
    color: black;
    font-size: 14px;
}

#listado-expositores svg {
    height: 14px;
    width: 14px;
    margin-right: 0.5rem;
    fill: var(--e-global-color-eb0e927);
}
