/* ==========================================================
   EMFORSOL
   RESET.CSS
   ----------------------------------------------------------
   Reset global de estilos
   Versión: 1.0.0
   ========================================================== */

/* ===========================
   BOX MODEL
=========================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===========================
   HTML
=========================== */

html{
    font-size:16px;
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

/* ===========================
   BODY
=========================== */

body{
    min-height:100vh;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    overflow-x:hidden;
}

/* ===========================
   IMÁGENES
=========================== */

img,
picture,
svg,
video,
canvas{
    display:block;
    max-width:100%;
    height:auto;
}

/* ===========================
   ENLACES
=========================== */

a{
    color:inherit;
    text-decoration:none;
}

/* ===========================
   LISTAS
=========================== */

ul,
ol{
    list-style:none;
}

/* ===========================
   TABLAS
=========================== */

table{
    width:100%;
    border-collapse:collapse;
    border-spacing:0;
}

/* ===========================
   FORMULARIOS
=========================== */

input,
textarea,
select,
button{
    font:inherit;
    color:inherit;
    background:transparent;
    border:none;
    outline:none;
}

button{
    cursor:pointer;
}

/* ===========================
   TITULARES
=========================== */

h1,
h2,
h3,
h4,
h5,
h6{
    font-size:inherit;
    font-weight:inherit;
}

/* ===========================
   PÁRRAFOS
=========================== */

p{
    line-height:1.5;
}

/* ===========================
   TEXTO
=========================== */

strong{
    font-weight:700;
}

em{
    font-style:italic;
}

/* ===========================
   ELEMENTOS OCULTOS
=========================== */

[hidden]{
    display:none !important;
}

/* ===========================
   SELECCIÓN
=========================== */

::selection{
    background:#3aa44d;
    color:#ffffff;
}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:10px;
    height:10px;
}

::-webkit-scrollbar-thumb{
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:transparent;
}