@charset "utf-8";

:root {
    --bgColor_0: #f7fbff;
    --bgColor_1: rgba(0, 0, 0, 0.8);
    --a_1: #1ca7da;
    --a_2: #00beae;
    --a_3: #0971e9;
    --b_1: #282828;
    --black0: #282828;
    --black1: #2a415c;
    --black2: #455c75;
    --black3: #a5a5a5;
    --black4: #d4d4d4;
    --black5: #fff;
    --inputBG: rgba(255, 255, 255, 0.1);

    --r_0: rgba(23, 55, 214, 0.9);
    --r_1: rgba(75, 169, 88, 0.9);
    --r_2: rgb(248, 166, 1, 0.9);
    --r_3: rgba(255, 40, 51, 0.9);
    --r_4: rgba(179, 179, 179, 0.9);
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


body {
    font-family: 'Play', sans-serif, sans-serif, Georgia, serif;
    color: var(--black1);
    background-repeat: repeat-y;
    background-position: center center;
    overflow-x: hidden;
    /* cursor: url(./../img/cursorLogo.png), auto; */

}

input,
textarea,
keygen,
select,
button {
    font-family: 'Play', sans-serif, sans-serif, Georgia, serif;
}

html,
body {
    margin: 0;
    padding: 0;
}

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,
dl,
dt,
dd,
ol,
nav ul,
nav 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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-style: normal;
    /* word-break: break-all; */
    word-wrap: break-word;
    /* text-transform: capitalize; */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

thead {
    background-color: var(--black2);
}

table th,
table td {
    padding: 10px;
    font-size: 12px;
}

thead th {
    color: #fff;
    font-weight: 300;
}

table tr {
    text-align: left;
}

table td>p {
    line-height: 1.2;
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: var(--black1);
}

a {
    text-decoration: none;
    color: var(--r_0);
}

img {
    border: none;
    display: block;
    -webkit-user-drag: none;
}

div,
a,
img {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

::-webkit-scrollbar,
.scrollBar::-webkit-scrollbar {
    width: 5px;
    height: 2px;
}

::-webkit-scrollbar-track,
.scrollBar::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: rgba(231, 231, 231, 0.5)
}

::-webkit-scrollbar-thumb,
.scrollBar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(37, 37, 37, 0.9);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80%;
}

::-webkit-scrollbar-track-piece,
.scrollBar::-webkit-scrollbar-track-piece {
    background-color: transparent;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:vertical,
.scrollBar::-webkit-scrollbar-thumb:vertical {
    height: 2px;
    background-color: rgba(37, 37, 37, 0.9);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:horizontal,
.scrollBar::-webkit-scrollbar-thumb:horizontal {
    width: 6px;
    background-color: rgba(37, 37, 37, 0.9);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}