@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  -webkit-tap-highlight-color: transparent;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

input,
button,
textarea {
  font-family: var(--font-family-default);
  font-size: inherit;
  outline: none;
}

video:focus {
  outline: none;
}

img {
  pointer-events: none;
}

button {
  color: inherit;
  background-color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
}
a:focus, a:active {
  outline: none;
}
a:link, a:visited, a:hover {
  text-decoration: none;
}
a[href^=tel], a[href^=mailto] {
  white-space: nowrap;
}
a[data-modal], a[data-fancybox] {
  display: block;
}

ul li {
  list-style: none;
}

ol {
  counter-reset: section;
  list-style-type: none;
}
ol > li {
  position: relative;
  padding-left: 20px;
  list-style: none;
  list-style-type: none;
}
ol > li:not(:last-child) {
  margin-bottom: 12px;
}
ol > li:before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: section;
  content: counter(section) ". ";
}
ol > li > ol {
  counter-reset: subsection;
}
ol > li > ol li {
  position: relative;
  padding-left: 20px;
}
ol > li > ol li:before {
  counter-increment: subsection;
  content: counter(section) "." counter(subsection) " ";
}
ol > li > ol li::before {
  content: "―";
  position: absolute;
  left: 0;
  top: -2px;
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
}
ol > li ol, ol > li ul {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

code {
  background-color: var(--gray-300);
  padding: 2px 5px;
  border-radius: 5px;
}/*# sourceMappingURL=null.css.map */