html, body {
margin: 0;
font-family: sans-serif;
overflow: visible;
} .controles {
display: flex;
align-items: center;
gap: 10px;
}
.menu-iconos .menu-button {
background: none;
border: none;
cursor: pointer;
padding: 0;
}
.menu-iconos svg {
width: 28px;
height: 28px;
}
.menu-button {
background: none;
border: none;
cursor: pointer;
padding: 4px;
}
.menu-button svg {
width: 32px;
height: 32px;
fill: #005aa7;
transition: transform 0.2s;
}
.menu-button:active svg {
transform: scale(0.9);
}
.dropdown-box {
display: none;
position: absolute;
top: calc(100% + 4px); right: 0 !important; background: #fff;
border: 1px solid #ddd;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
border-radius: 8px;
width: 280px !important;
z-index: 999;
padding: 15px;
max-height: 500px; overflow-y: auto; overflow-x: hidden; }
.dropdown-box.show {
display: block;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
.header h2 {
font-size: 18px;
margin: 0;
color: #0c4b8c;
}
.close-button {
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #b50000;
}
.dropdown-section {
margin-bottom: 20px;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
padding: 5px;
transition: background 0.3s;
}
.section-header:hover {
background: #f0f0f0;
}
.section-header h3 {
font-size: 16px;
margin: 0;
color: #0c4b8c;
}
.instituciones {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
margin-top: 15px;
justify-items: center;
}
.institucion {
text-align: center;
font-size: 11px;
color: #333;
transition: all 0.3s;
}
.institucion img {
width: 60px !important;
height: 60px !important;
object-fit: contain;
margin-bottom: 5px;
border: 2px solid #ddd;
border-radius: 50%;
transition: all 0.3s;
background: white;
}
.institucion a {
text-decoration: none;
color: inherit;
}
.institucion.custom-style div {
color: #001256;
transition: color 0.3s;
}
.institucion.custom-style:hover img {
border-color: #001256;
}
.institucion.custom-style:hover div {
color: #4baaff;
}
.arrow {
transition: transform 0.3s;
}
.arrow.rotate {
transform: rotate(180deg);
}  @media only screen and (max-width: 1000px) {
.menu-button {
display: none !important;
}
.separa-header-new {
display: none !important;
}
.ajaxsearchlite {
display: none !important;
}
.asl_w_container {
display: none !important;
}
.mobile-search-wrapper .ajaxsearchlite,
.mobile-search-wrapper .asl_w_container {
display: block !important;
}
}