@charset "UTF-8";

/* ==========================================================
   Influence+
   reset.css
   ========================================================== */

/* Box sizing
---------------------------------------------------------- */

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

/* Reset
---------------------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video{
    margin:0;
    padding:0;
    border:0;
    font:inherit;
    vertical-align:baseline;
}

/* HTML5
---------------------------------------------------------- */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section{
    display:block;
}

/* Body
---------------------------------------------------------- */

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

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

/* List
---------------------------------------------------------- */

ol,
ul{
    list-style:none;
}

/* Quote
---------------------------------------------------------- */

blockquote,
q{
    quotes:none;
}

blockquote::before,
blockquote::after,
q::before,
q::after{
    content:"";
}

/* Table
---------------------------------------------------------- */

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

/* Image
---------------------------------------------------------- */

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

/* Link
---------------------------------------------------------- */

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

/* Form
---------------------------------------------------------- */

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

button{
    cursor:pointer;
}

textarea{
    resize:vertical;
}

input,
textarea,
select,
button{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
}

/* Placeholder
---------------------------------------------------------- */

::placeholder{
    color:#94a3b8;
    opacity:1;
}

/* Disabled
---------------------------------------------------------- */

:disabled{
    cursor:not-allowed;
}

/* Focus
---------------------------------------------------------- */

:focus{
    outline:none;
}

/* Horizontal Rule
---------------------------------------------------------- */

hr{
    border:0;
    border-top:1px solid #e2e8f0;
}

/* SVG
---------------------------------------------------------- */

svg{
    display:block;
    fill:currentColor;
}

/* Media
---------------------------------------------------------- */

iframe{
    border:0;
}

video{
    display:block;
    max-width:100%;
}

/* Hidden
---------------------------------------------------------- */

[hidden]{
    display:none !important;
}

/* Selection
---------------------------------------------------------- */

::selection{
    background:#2563eb;
    color:#ffffff;
}