*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: normal !important;
}
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,body{
    display: flex;
    flex-direction: column;
}
body {
    overscroll-behavior-y: none;
}
ul, ol{
    list-style: none;
}
a{
    text-decoration: none;
}
button, input, textarea, a{
    border: none;
}
input:focus, input:active, textarea:focus, textarea:active, a:focus, a:active{
    outline: none;
}
button{
    cursor: pointer;
    background-color: transparent;
}
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}