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,b,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,menu,nav,output,ruby,section,summary,time,mark,audio,video,input,select {
    border: 0;
    margin: 0;
    padding: 0;
    font: inherit;
    font-size: 1em;
    vertical-align: baseline;
    display: block;
    text-decoration: none;
    outline: none;
    box-sizing: border-box
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block
}
:root{
    --bg1: #ffffff;
    --bg2: #f1f2f3;
    --bg3: #e1e2e3;
    --bg4: #d1d2d3;
    --bg5: #c1c2c3;
    --bgd: #111213;
    --bgdl: #313233;
    --bgdll: #464849;
    --color1: #00ad57;
    --color1_dark: #009651;
    --color1: #0f79e2;
    --color1_dark: #056bd0;
    --red: #f00;
    --redl: #fee;
    --red_dark: #d00;
    --orange: #f80;
    --orangel: #fff3e6;
    --orange_dark: #e17800;
    --yellow: #fabf00;
    --yellowl: #fff8e2;
    --yellow_dark: #dca800;
    --green: #29c953;
    --greenl: #deffe7;
    --green_dark: #22ad46;
    --cyan: #07c1ca;
    --cyanl: #d9fdff;
    --cyan_dark: #04a1a8;
    --blue: #0f79e2;
    --bluel: #e5f2ff;
    --blue_dark: #056bd0;
    --purple: #b20bfd;
    --purplel: #f7e5ff;
    --purple_dark: #9a08dc;
    --pink: #ff009c;
    --pinkl: #ffe1f3;
    --pink_dark: #df0189;
    --grad1: linear-gradient(135deg, #ffaa00 0%, #ff5000 100%);
    --grad2: linear-gradient(135deg, #193764 0%, #a900ff 100%);
    --ttc: #021220;
    --ttcl: #b4b9bd;
    --ttcw: #ffffff;
}
html,body {
    height: 100%;
    scroll-behavior: smooth
}
body{
    font-size: 16px;
    max-width: 100%;
    min-height: 100%;
    min-width: 280px;
    font-weight: 500;
    color: var(--ttc);
    overflow-x: hidden;
    background: var(--bg2);
    font-family: 'Inter',sans-serif;
    -ms-overflow-style: none;
    scrollbar-width: none
}
body::-webkit-scrollbar {
    display: none
}
p:not(:last-child){
    margin-bottom: .5rem
}
p{
    line-height: 1;
    overflow-wrap: break-word;
}
textarea{
    resize: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    height: 3.5em;
    padding: .5em;
    box-sizing: border-box;
}
button{
    appearance: none;
    border: none;
    font-size: 1em;
}
ol,ul {
    list-style: none;
    position: relative;
}
ol:not(:last-child),ul:not(:last-child){
    margin-bottom: 1rem
}
li{
    padding-left: 1rem;
    position: relative;
}
li::before{
    content: "";
    position: absolute;
    width: .5rem;
    height: .5rem;
    background-color: var(--color1);
    left: 0;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
ul.dark li::before{
    background-color: var(--ttc);
}
ul.light li::before{
    background-color: #fff;
}
li:not(:last-child){
    margin-bottom: .25rem
}
blockquote,q {
    quotes: none
}
blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none
}
table {
    border-spacing: 0;
    border-collapse: collapse
}
strong,b,s {
    display: inline;
    color: var(--color1);
    font-weight: 600
}
b.red{
    color: var(--red)
}
b.black{
    color: var(--ttc)
}

input,textarea,select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}
select{
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 50%
}
input[type="date"]:before {
    color: #aaa
}
input[type="date"]:focus:before,
input[type="date"]:valid:before {
    content: ""
}
:focus-visible {
    outline: none
}
hr{
    border: 1px solid var(--bg2);
    margin: 0;
    margin-bottom: 1em;
}
hr:last-child{
    margin-bottom: 0;
}
h1,h2,h3 {
    font-weight: 700
}
h1{
    font-size: 2em;
    font-weight: 800;
    margin-bottom: .5rem
}
h2{
    font-size: 2em;
    margin-bottom: 1rem
}
h3{
    font-size: 1.25em;
    margin-bottom: .5rem
}
h4{
    font-weight: 600;
    margin-bottom: .5rem
}
h1,h2,h3,h4,h5,h6{
    grid-column: 1/-1;
}
a{
    color: var(--ttc)
}
::placeholder{
    color: var(--ttc);
    opacity: .4;
}
::-ms-input-placeholder{
    color: var(--ttc);
    opacity: .4;
}
textarea:required::placeholder,
input:required::placeholder{
    color: var(--red);
    opacity: .4;
}
textarea:required::-ms-input-placeholder,
input:required::-ms-input-placeholder{
    color: var(--red);
    opacity: .4;
}

@keyframes call_attention {
    0% {
        transform: scale(1) rotate(0deg)
    }

    90% {
        transform: scale(1) rotate(0deg)
    }

    95% {
        transform: scale(1.2) rotate(-25deg)
    }

    100% {
        transform: scale(1) rotate(0deg)
    }
}
@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

::-webkit-scrollbar {
    width: .5rem;
}
::-webkit-scrollbar-track {
    background: var(--bg3);
}
::-webkit-scrollbar-thumb{
    /* border: var(--bg2) 2px solid; */
    background: var(--bg4);
    /* border-radius: 1rem; */
    cursor: grab;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--bg5);
}
::-webkit-scrollbar-thumb:active{
    cursor: grabbing!important;
}

@media (prefers-color-scheme: dark) {
    :root{
        --bg1: #2c2c2c;
        --bg2: #212121;
        --bg3: #424242;
        --bg4: #4d4d4d;
        --bgd: #ffffff;
        --bgdl: #eeeeee;
        --ttc: #ffffff;
        --ttcl: #b4b9bd;
        --ttcw: #212121;
    }
}