﻿/* ==========================================================================
   CARGA DE FUENTES, RESET Y AJUSTES MÓVILES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Work+Sans:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300..900;1,300..900&display=swap');

*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.search-box-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
}

ul,
ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

li {
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

summary::-webkit-details-marker {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

button,
input {
    font-family: 'Nunito', sans-serif;
    font-size: 100%;
    margin: 0;
    border: 0;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
}

img,
svg {
    display: block;
}

.font-nunito {
    font-family: 'Nunito', sans-serif !important;
}

.font-verdana {
    font-family: 'Verdana', sans-serif !important;
}

header ul[role="menu"] {
    animation: navMenuFadeIn 0.15s ease-out forwards;
}

@keyframes navMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}