/* ==========================================================
   Package Recorder Pro
   reset.css
========================================================== */

@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,400..800&display=swap");

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    font-size:16px;
    -webkit-text-size-adjust:100%;
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    font-family:
        "Google Sans Flex",
        "Google Sans",
        "Product Sans",
        "Segoe UI",
        "Noto Sans",
        "DejaVu Sans",
        Tahoma,
        Arial,
        sans-serif;
    line-height:1.5;
    overflow:hidden;
}

img,
picture,
svg,
video,
canvas{
    display:block;
    max-width:100%;
}

button,
input,
textarea,
select{
    font:inherit;
    border:none;
    outline:none;
    background:none;
}

button{
    cursor:pointer;
}

ul,
ol{
    list-style:none;
}

table{
    border-collapse:collapse;
    border-spacing:0;
}

a{
    text-decoration:none;
    color:inherit;
}

input::-ms-clear{
    display:none;
}

::-webkit-scrollbar{
    width:10px;
    height:10px;
}

::-webkit-scrollbar-thumb{
    background:#444;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#202020;
}

::selection{
    background:#2F80ED;
    color:#fff;
}
