@charset "utf-8";

/* reset */
[hidden] {
    display: none;
}
template {
    display: none;
}
details {
    display: block;
}
summary {
    display: list-item;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}
[type=search] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}
[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}
button,
select {
    /* 1 */
    text-transform: none;
}
button,
input {
    /* 1 */
    overflow: visible;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}
img {
    border-style: none;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
b,
strong {
    font-weight: bolder;
}
abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration-style: dotted;
    /* 2 */
}
a {
    background-color: transparent;
    text-decoration-thickness: 1px;
}
hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}
/*****/

html {
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    font-size: 12px;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-md);
    font-size: var(--font-size-md);
    line-height: var(--line-height-sm);
    color: var(--text-color-main);
    background-color: var(--color-background);
    text-align: left;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

button {
    cursor: pointer;
}

main {
    height: auto;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
}

li {
    list-style: none;
}

input {
    border: 1px solid #000;
}

a,
a:hover,
a:focus {
    color: #000000;
    color: var(--text-color-main);
}

.font-family-xsm {
    font-family: var(--font-family-xsm) !important;
}
.font-family-sm {
    font-family: var(--font-family-sm) !important;
}
.font-family-md {
    font-family: var(--font-family-md) !important;
}
.font-family-lg {
    font-family: var(--font-family-lg) !important;
}
.font-family-xl {
    font-family: var(--font-family-xl) !important;
}
.font-family-2xl {
    font-family: var(--font-family-2xl) !important;
}

.text-color-black {
    color: #000 !important;
}

.transparent {
    opacity: 0;
}