/*=========================================================
    Learning Mail
    Base.css
    Estilos globales
=========================================================*/

/*========== RESET ==========*/

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

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

html{
    font-size:16px;
    scroll-behavior:smooth;
}

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

body{

    font-family:var(--font);

    background:var(--background);

    color:var(--text);

    line-height:1.5;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}

/*========== TITULOS ==========*/

h1,h2,h3,h4,h5,h6{

    font-weight:700;

    color:var(--primary);

    line-height:1.2;

}

p{

    color:var(--text);

    line-height:1.6;

}

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

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

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

ul,
ol{

    list-style:none;

}

/*========== IMAGENES ==========*/

img{

    display:block;

    max-width:100%;

    height:auto;

}

/*========== BOTONES ==========*/

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

/*========== INPUTS ==========*/

input,
textarea,
select{

    width:100%;

    border:none;

    outline:none;

    font-family:inherit;

    background:transparent;

}

/*========== TEXTAREA ==========*/

textarea{

    resize:none;

}

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

table{

    width:100%;

    border-collapse:collapse;

}

/*========== ICONOS ==========*/

i{

    display:flex;
    align-items:center;
    justify-content:center;

}

/*========== SELECCION ==========*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*========== PLACEHOLDER ==========*/

::placeholder{

    color:#9b9b9b;

    opacity:1;

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--accent);

}

/*========== CLASES UTILITARIAS ==========*/

.container{

    width:min(1200px,92%);

    margin:auto;

}

.shadow{

    box-shadow:var(--shadow);

}

.radius{

    border-radius:var(--radius-lg);

}

.text-center{

    text-align:center;

}

.w-100{

    width:100%;

}

.d-flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-center{

    justify-content:center;

}

.hidden{

    display:none;

}