a.button,
a.ck-button,
button, [type='button'], [type='reset'], [type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: 2px solid #000000;
  border-color: var(--this-color, #000000);
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  block-size: 36px;
  inline-size: 100%;
  max-inline-size: 130px;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

a.button:hover, a.button:focus,
a.ck-button:hover,
a.ck-button:focus,
button:hover,
button:focus, [type='button']:hover, [type='button']:focus, [type='reset']:hover, [type='reset']:focus, [type='submit']:hover, [type='submit']:focus {
  background-color: var(--this-color, #000000);
  color: #fff;
}

a.button:disabled,
a.ck-button:disabled,
button:disabled, [type='button']:disabled, [type='reset']:disabled, [type='submit']:disabled {
  background-color: #cdcece;
  cursor: not-allowed;
  opacity: 0.5;
}

a.button:disabled:hover,
a.ck-button:disabled:hover,
button:disabled:hover, [type='button']:disabled:hover, [type='reset']:disabled:hover, [type='submit']:disabled:hover {
  background-color: #cdcece;
}

root {
  --input-background: #fff;
  --input-border: 2px solid #000000;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: 6.75px;
  padding: 0;
}

label {
  display: block;
  font-weight: normal;
  margin-bottom: 6.75px;
}

input,
select,
textarea {
  display: block;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
}

[type='color'], [type='date'], [type='datetime'], [type='datetime-local'], [type='email'], [type='month'], [type='number'], [type='password'], [type='search'], [type='tel'], [type='text'], [type='time'], [type='url'], [type='week'], input:not([type]), textarea {
  appearance: none;
  background-color: var(--input-background, #fff);
  border: var(--input-border, 2px solid #000000);
  border-radius: 2px;
  box-sizing: border-box;
  color: black;
  padding: 3px;
  transition: border-color 150ms ease;
  width: 100%;
}

[type='color']:hover, [type='date']:hover, [type='datetime']:hover, [type='datetime-local']:hover, [type='email']:hover, [type='month']:hover, [type='number']:hover, [type='password']:hover, [type='search']:hover, [type='tel']:hover, [type='text']:hover, [type='time']:hover, [type='url']:hover, [type='week']:hover, input:not([type]):hover, textarea:hover {
  border-color: #cccccc;
}

[type='color']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='email']:focus, [type='month']:focus, [type='number']:focus, [type='password']:focus, [type='search']:focus, [type='tel']:focus, [type='text']:focus, [type='time']:focus, [type='url']:focus, [type='week']:focus, input:not([type]):focus, textarea:focus {
  border-color: #000000;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 0, 0, 0.7);
  outline: none;
}

[type='color']:disabled, [type='date']:disabled, [type='datetime']:disabled, [type='datetime-local']:disabled, [type='email']:disabled, [type='month']:disabled, [type='number']:disabled, [type='password']:disabled, [type='search']:disabled, [type='tel']:disabled, [type='text']:disabled, [type='time']:disabled, [type='url']:disabled, [type='week']:disabled, input:not([type]):disabled, textarea:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}

[type='color']:disabled:hover, [type='date']:disabled:hover, [type='datetime']:disabled:hover, [type='datetime-local']:disabled:hover, [type='email']:disabled:hover, [type='month']:disabled:hover, [type='number']:disabled:hover, [type='password']:disabled:hover, [type='search']:disabled:hover, [type='tel']:disabled:hover, [type='text']:disabled:hover, [type='time']:disabled:hover, [type='url']:disabled:hover, [type='week']:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover {
  border: 2px solid #000000;
}

[type='color']::placeholder, [type='date']::placeholder, [type='datetime']::placeholder, [type='datetime-local']::placeholder, [type='email']::placeholder, [type='month']::placeholder, [type='number']::placeholder, [type='password']::placeholder, [type='search']::placeholder, [type='tel']::placeholder, [type='text']::placeholder, [type='time']::placeholder, [type='url']::placeholder, [type='week']::placeholder, input:not([type])::placeholder, textarea::placeholder {
  color: #000000;
}

textarea {
  resize: vertical;
}

[type="file"] {
  margin-bottom: 13.5px;
  width: 100%;
}

select {
  margin-bottom: 27px;
  max-width: 100%;
  width: auto;
}

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="file"]:focus,
select:focus {
  outline: 2px solid rgba(0, 0, 0, 0.6);
  outline-offset: 2px;
}

input[type="search"] {
  box-sizing: border-box;
}

form .description {
  font-size: smaller;
}

form .form-item {
  margin: 0;
  margin-bottom: 13.5px;
}

form .form-actions {
  margin: 0;
}

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 6.75px;
  position: absolute;
  opacity: 0;
}

[type="checkbox"] + label, [type="checkbox"] + div > label,
[type="radio"] + label,
[type="radio"] + div > label {
  margin-left: 36px;
}

[type="checkbox"] + label::before, [type="checkbox"] + div > label::before,
[type="radio"] + label::before,
[type="radio"] + div > label::before {
  content: '';
  border: 1px solid var(--checkbox-border-color, var(--checkbox-color, #000000));
  float: left;
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  margin-lefT: -36px;
  position: relative;
  margin-right: 1em;
  vertical-align: baseline;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

[type="checkbox"]:checked + label:before, [type="checkbox"]:checked + div > label:before,
[type="radio"]:checked + label:before,
[type="radio"]:checked + div > label:before {
  background-color: var(--checkbox-fill-color, var(--checkbox-color, #000000));
  box-shadow: inset 0 0 0 var(--checkbox-inset-size, 2px) var(--checkbox-inset-color, white);
}

[type="radio"] + label::before, [type="radio"] + div > label::before {
  border-radius: 100%;
}

ul.menu {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

img,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

iframe {
  border: none;
  width: 100%;
}

select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url(../../images/icons/angle-down.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 5px;
  border: 2px solid #000000;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  padding: 9px;
  transition: border-color 150ms ease;
  width: 100%;
}

select:focus {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 0, 0, 0.7);
  outline: none;
}

select::after {
  content: 'ddd';
}

table {
  border-collapse: collapse;
  margin: 27px 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: 1.3;
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: 2px solid #000000;
}

th {
  font-weight: 600;
}

th,
td {
  padding: 13.5px 13.5px 13.5px 0;
}

:root {
  --primary-color: #000000;
  --contrast-color: #000000;
  --accent-color: #000000;
  --text-color: #000000;
  --heading-color: #000000;
}

html {
  color: var(--text-color, #000000);
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color, #000000);
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 13.5px;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.2em;
}

h5 {
  font-size: 1.1em;
}

p {
  color: var(--text-color, #000000);
  margin: 0 0 13.5px;
}

a {
  color: var(--this-color, var(--accent-color, #000000));
  text-decoration: none;
  transition: color 150ms ease;
}

a:active, a:focus, a:hover {
  filter: brightness(0.8);
}

hr {
  border-bottom: 2px solid #000000;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 27px 0;
}

pre, code, tt {
  font: 1em "andale mono", "lucida console", monospace;
  line-height: 1.5;
}

pre {
  background-color: #efefef;
  display: block;
  padding: 5px;
  margin: 5px 0;
  border: 1px solid #aaaaaa;
}

abbr {
  border-bottom: 1px dotted #666666;
  cursor: help;
  white-space: nowrap;
}

summary {
  color: var(--text-color, #000000);
  cursor: pointer;
}

::selection {
  color: #000000;
  background-color: var(--this-color, #cdcece);
}

/*# sourceMappingURL=base.css.map */
