/*
@font-face {
  font-family: 'OmoType';
  src: url('/fonts/OmoType_Std-Medium_One_web.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'OmoType';
  src: url('/fonts/OmoType_Std-Black_One_web.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
    */

.size1 {
  font-size: 1.2rem;
}
.size2 {
  font-size: 1.4rem;
}
.size3 {
  font-size: 1.6rem;
}
.size4 {
  font-size: 1.8rem;
}
.spacing1 {
  letter-spacing: 0.05rem;
}
.spacing2 {
  letter-spacing: 0.1rem;
}
.spacing3 {
  letter-spacing: 0.15rem;
}
.spacing4 {
  letter-spacing: 0.2rem;
}
.typography1 body {
  font-family: 'Lexend', sans-serif;
}
.links1 a {
  text-decoration: underline !important;
  background-color: #fdff32;
  color: #000;
}
.contrast1 {
  filter: grayscale(100%);
}
.contrast2 {
  filter: invert(100%);
}
.contrast3 {
  filter: contrast(200%);
}
.contrast4 {
  filter: contrast(75%);
}
.cursor1,
.cursor1 a,
.cursor1 button {
  cursor: url('/images/a11y/a11y-cursor.png'), auto !important;
}

:root {
  --a11y-panel-brand-color: #e30613;
  --a11y-panel-close-background: black;
  --a11y-panel-close-color: white;
}

.a11y-panel {
  position: fixed;
  z-index: 10000;
  top: 20px;
  right: -100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 360px;
  /* border: 1px solid #ccc; */
  padding: 20px;
  box-shadow: 0 0 1rem hsl(0 0% 0% / 0.2);
  background-color: #fff;
}
@media (max-width: 767px) {
  .a11y-panel {
    width: 200px;

    padding: 10px;
    top: initial;
    bottom: 20px;
  }
}
.a11y-panel.selected {
  right: 0.5rem;
}

.a11y-handle {
  background-color: var(--a11y-panel-brand-color);
  border: 0;
}

.a11y-close {
  font-weight: 400;
  background: var(--a11y-panel-close-background);
  color: var(--a11y-panel-close-color);
  margin-left: 5px;
  border: 0;
  padding: 0.25rem 0.5rem;
  display: none;
  cursor: pointer;
}
.a11y-panel.selected .a11y-close {
  display: block;
}
.a11y-title {
  width: calc(100% + 40px);
  background-color: var(--a11y-panel-brand-color);
  color: #fff;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0;
  margin: -20px -20px 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .a11y-title {
    margin: -10px -10px 10px;
  }
}
@media (min-width: 768px) {
  .a11y-title {
    align-items: center;
  }
}
.a11y-button,
.a11y-reset {
  position: relative;
  margin-top: -1px;
  border: 1px solid #ccc;
  padding: 5px;
  width: 100%;
  font-size: 16px;
  background: #fff;
  color: #000;
  cursor: pointer;
}
@media (min-width: 768px) {
  .a11y-button,
  .a11y-reset {
    width: 50%;
    padding: 25px 15px;
    margin-left: -1px;
  }
}
.a11y-reset {
  width: calc(100% - 1px);
}
.a11y-icon {
  display: block;
  width: 30px;
  margin: 0 auto 3px;
  transition: 0.15s ease;
}
@media (max-width: 767px) {
  .a11y-icon {
    width: 20px;
  }
}

.a11y-button:hover .a11y-icon,
.a11y-reset:hover .a11y-icon {
  transform: scale(1.2);
}

.a11y-name {
  display: block;
  letter-spacing: normal !important;
}
.a11y-panel .steps {
  display: flex;
  width: 100%;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 0;
}
@media (max-width: 767px) {
  .a11y-panel .steps {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    flex-direction: column;
    width: auto;
  }
}
.a11y-panel .steps li {
  flex-grow: 1;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 5px;
  background-color: #eee;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .a11y-panel .steps li {
    width: 10px;
  }
}
[data-selected='1'] .steps li:nth-child(1) {
  background-color: var(--a11y-panel-brand-color);
}
[data-selected='2'] .steps li:nth-child(1) {
  background-color: var(--a11y-panel-brand-color);
}
[data-selected='2'] .steps li:nth-child(2) {
  background-color: var(--a11y-panel-brand-color);
}
[data-selected='3'] .steps li:nth-child(1) {
  background-color: var(--a11y-panel-brand-color);
}
[data-selected='3'] .steps li:nth-child(2) {
  background-color: var(--a11y-panel-brand-color);
}
[data-selected='3'] .steps li:nth-child(3) {
  background-color: var(--a11y-panel-brand-color);
}
[data-selected='4'] .steps li:nth-child(1) {
  background-color: var(--a11y-panel-brand-color);
}
[data-selected='4'] .steps li:nth-child(2) {
  background-color: var(--a11y-panel-brand-color);
}
[data-selected='4'] .steps li:nth-child(3) {
  background-color: var(--a11y-panel-brand-color);
}
[data-selected='4'] .steps li:nth-child(4) {
  background-color: var(--a11y-panel-brand-color);
}
#accessibility_contrast .a11y-name {
  display: none;
}
#accessibility_contrast .a11y-name.kontrast {
  display: block;
}
#accessibility_contrast[data-selected='1'] .a11y-name {
  display: none !important;
}
#accessibility_contrast[data-selected='1'] .a11y-name:nth-child(2) {
  display: block !important;
}
#accessibility_contrast[data-selected='2'] .a11y-name {
  display: none !important;
}
#accessibility_contrast[data-selected='2'] .a11y-name:nth-child(3) {
  display: block !important;
}
#accessibility_contrast[data-selected='3'] .a11y-name {
  display: none !important;
}
#accessibility_contrast[data-selected='3'] .a11y-name:nth-child(4) {
  display: block !important;
}
#accessibility_contrast[data-selected='4'] .a11y-name {
  display: none !important;
}
#accessibility_contrast[data-selected='4'] .a11y-name:nth-child(5) {
  display: block !important;
}
