/*======================================
  Wx Design System v1.0
  CSS Reset
======================================*/

/* Box sizing */

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

/* Remove default margin */

*{
    margin:0;
    padding:0;
}

/* Smooth scrolling */

html{
    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;
}

/* Images */

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

/* Forms */

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

/* Buttons */

button{
    cursor:pointer;
    background:none;
}

/* Links */

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

/* Lists */

ul,
ol{
    list-style:none;
}

/* Tables */

table{
    border-collapse:collapse;
    border-spacing:0;
}

/* Text */

h1,
h2,
h3,
h4,
h5,
h6,
p{
    overflow-wrap:break-word;
}

/* Textareas */

textarea{
    resize:vertical;
}

/* Inputs */

input:focus,
textarea:focus,
select:focus{
    outline:none;
}

/* Fieldset */

fieldset{
    border:none;
}

/* Horizontal Rule */

hr{
    border:0;
}

/* Hidden */

[hidden]{
    display:none !important;
}