/**
 * Reset
 */
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 {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
  outline: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

a:focus {
  outline: none;
}

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: 600;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #ddd;
}

button,
input,
select,
textarea {
  box-sizing: border-box;
  font-size: 100%;
  color: inherit;
  outline: 0;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

input[type="radio"] {
  -webkit-appearance: radio;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-inline-size: 0;
}


html {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
}

body {
  width: 100%;
  min-width: 320px;
  font-family: var(--tcd-base-font-type, sans-serif);
  font-size: var(--tcd-base-font-size);
  line-height: 1;
  color: var(--tcd-base-font-color);
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  overflow: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

b,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

big {
  font-size: larger;
}

small {
  font-size: 80%;
}

sub {
  font-size: smaller;
  vertical-align: sub;
}

sup {
  font-size: smaller;
  vertical-align: super;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: italic;
}

tt,
code,
kbd,
samp {
  font-family: monospace;
}

u,
ins {
  text-decoration: underline;
}

:where(button, input[type="button"], input[type="submit"]) {
  cursor: pointer;
  color: inherit;
  padding: 0;
  border: initial;
  outline: initial;
  background: initial;
}

a,
input,
button {
  color: inherit;
  line-height: inherit;
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-property: background-color, border-color, color, opacity;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

::placeholder {
  color: #999999;
  font-family: inherit;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.is-desktop :where(a[href*="tel:"]) {
  pointer-events: none;
  cursor: default;
}