﻿/* Reset */

html,
body,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
img,
pre,
form,
fieldset {
    margin: 0;
    padding: 0;
}

img,
fieldset { border: 0; }


/*body,
html {
    height: 100%;
    width: 100%;
}*/

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    font-family: sans-serif;
    font-size: 62.5%;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
}

body {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    background-color: var(--background-default, #fff);
    color: var(--text-highEmphasis, #172B4D);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857142857143;
    text-decoration-skip-ink: auto;
}

/* Default margins */

p,
ul,
ol,
dl,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
form,
table { margin: 12px 0 0 0; }

/* Links */

a {
    color: var(--text-link-resting, #0052CC);
    text-decoration: none;
}

a:hover {
    color: var(--text-link-resting, #0065FF);
    text-decoration: underline;
}

a:active { color: var(--text-link-pressed, #0747A6); }

a:focus {
    outline: 2px solid var(--border-focus, #4C9AFF);
    outline-offset: 2px;
}

/* Headings */

h1 {
    color: var(--text-highEmphasis, #172B4D);
    font-size: 2.0714285714285716em;
    font-style: inherit;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.103448275862069;
    margin-top: 40px;
}

h2 {
    color: var(--text-highEmphasis, #172B4D);
    font-size: 1.7142857142857142em;
    font-style: inherit;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.1666666666666667;
    margin-top: 40px;
}

h3 {
    color: var(--text-highEmphasis, #172B4D);
    font-size: 1.4285714285714286em;
    font-style: inherit;
    font-weight: 500;
    letter-spacing: -0.008em;
    line-height: 1.2;
    margin-top: 28px;
}

h4 {
    color: var(--text-highEmphasis, #172B4D);
    font-size: 1.1428571428571428em;
    font-style: inherit;
    font-weight: 600;
    letter-spacing: -0.006em;
    line-height: 1.25;
    margin-top: 24px;
}

h5 {
    color: var(--text-highEmphasis, #172B4D);
    font-size: 1em;
    font-style: inherit;
    font-weight: 600;
    letter-spacing: -0.003em;
    line-height: 1.1428571428571428;
    margin-top: 16px;
}

h6 {
    color: var(--text-highEmphasis, #172B4D);
    font-size: 0.8571428571428571em;
    font-style: inherit;
    font-weight: 600;
    line-height: 1.3333333333333333;
    margin-top: 20px;
    text-transform: uppercase;
}

/* Lists */

ul,
ol,
dl { padding-left: 40px; }

[dir='rtl']ul,
[dir='rtl']ol,
[dir='rtl']dl {
    padding-left: 0;
    padding-right: 40px;
}

dd,
dd + dt,
li + li { margin-top: 4px; }

ul ul:not(:first-child),
ol ul:not(:first-child),
ul ol:not(:first-child),
ol ol:not(:first-child) { margin-top: 4px; }

/* remove top margin for first element */

p:first-child,
ul:first-child,
ol:first-child,
dl:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
blockquote:first-child,
pre:first-child,
form:first-child,
table:first-child { margin-top: 0; }

/* Quotes */

blockquote,
q { color: inherit; }

blockquote {
    border: none;
    padding-left: 40px;
}

[dir='rtl'] blockquote {
    padding-left: 0;
    padding-right: 40px;
}

blockquote::before,
q::before { content: '\201C'; }

blockquote::after,
q::after { content: '\201D'; }

blockquote::before {
    float: left;
    /* to keep the quotes left of any child elements like blockquote > p */
    margin-left: -1em;
    text-align: right;
    width: 1em;
}

[dir='rtl'] blockquote::before {
    float: right;
    margin-right: -1em;
    text-align: left;
}

blockquote > :last-child {
    display: inline-block; /* so the quotes added via pseudos follow it immediately. */
}

/* Other typographical elements */

small {
    color: var(--text-lowEmphasis, #6B778C);
    font-size: 0.7857142857142857em;
    font-style: inherit;
    font-weight: 700;
    font-weight: normal;
    line-height: 1.4545454545454546;
    margin-top: 16px;
}

code,
kbd { font-family: 'SFMono-Medium', 'SF Mono', 'Segoe UI Mono', 'Roboto Mono', 'Ubuntu Mono', Menlo, Consolas, Courier, monospace; }

var,
address,
dfn,
cite { font-style: italic; }

abbr {
    border-bottom: 1px var(--border-neutral, #ccc) dotted;
    cursor: help;
}


table {
    border-collapse: collapse;
    width: 100%;
}

thead,
tbody,
tfoot { border-bottom: 2px solid var(--border-neutral, #DFE1E6); }

td,
th {
    border: none;
    padding: 4px 8px;
    text-align: left;
}

th { vertical-align: top; }

td:first-child,
th:first-child { padding-left: 0; }

td:last-child,
th:last-child { padding-right: 0; }

caption {
    color: var(--text-highEmphasis, #172B4D);
    font-size: 1.4285714285714286em;
    font-style: inherit;
    font-weight: 500;
    letter-spacing: -0.008em;
    line-height: 1.2;
    margin-bottom: 8px;
    margin-top: 28px;
    text-align: left;
}


/* IE11 doesn't support <template> elements which shouldn't be displayed */

template { display: none; }

/* IE11 and some older browsers don't support these elements yet and treat them as display: inline; */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section { display: block; }

/* Suppress the ugly broken image styling in Firefox */

@-moz-document url-prefix() {
    img { font-size: 0; }
    img:-moz-broken { font-size: inherit; }
}

/*
  Chrome 83.0.4103.61 introduced a new user-agent style that broke all buttons for us. This default override reverts it.
  chrome user agent added this => font: 400 13.3333px Arial;
*/

button { font-family: inherit; }


.assistive {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}