/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Text input elements.
 */

:root {
  --font-sans: "metropolis", sans-serif;
  --font-serif: "Lora", "georgia", serif;
  --font-size-base: 1rem;
  --font-size-l: 1.125rem;
  --font-size-s: 0.875rem;
  --font-size-xs: 0.8125rem;
  --font-size-xxs: 0.75rem;
  --line-height-base: 1.6875rem;
  --line-height-s: 1.125rem;
  --max-width: 84.375rem;
  --max-bg-color: 98.125rem;
  --sp: 1.125rem;
  --content-left: 5.625rem;
  --container-padding: var(--sp);
  --container-padding-nav: var(--sp2);
  --site-header-height-wide: var(--sp8);
  --toolbar-height: 2.4375rem;
  --toolbar-tray-height: 2.5rem;
  --toolbar-tray-vertical-width: 14.9375rem;

  --scrollbar-width: 0.9375rem;
  --grid-gap: var(--sp);
  --grid-gap--md: var(--sp2);
  --grid-gap--lg: var(--grid-gap--md);
  --grid-gap--nav: var(--grid-gap--md);
  --grid-gap--max: var(--grid-gap--md);
  --grid-col-count: 6;
  --grid-col-count--md: 14;
  --grid-col-count--lg: var(--grid-col-count--md);
  --grid-col-count--nav: var(--grid-col-count--md);
  --grid-col-count--max: var(--grid-col-count--md);
  --grid-gap-count: calc(var(--grid-col-count) - 1);
  --grid-gap-count--md: calc(var(--grid-col-count--md) - 1);
  --grid-gap-count--lg: var(--grid-gap-count--md);
  --grid-gap-count--nav: var(--grid-gap-count--md);
  --grid-gap-count--max: var(--grid-gap-count--md);
  --grid-full-width: calc(100vw - var(--sp2));
  --grid-full-width--md: var(--grid-full-width);
  --grid-full-width--lg: calc(var(--grid-full-width) - var(--scrollbar-width));
  --grid-full-width--nav: calc(100vw - var(--scrollbar-width) - var(--content-left) - var(--sp4));
  --grid-full-width--max: calc(var(--max-width) - var(--sp4));
  --grid-col-width: calc((var(--grid-full-width) - var(--grid-gap-count)*var(--grid-gap))/var(--grid-col-count));
  --grid-col-width--md: calc((var(--grid-full-width--md) - var(--grid-gap-count--md)*var(--grid-gap--md))/var(--grid-col-count--md));
  --grid-col-width--lg: calc((var(--grid-full-width--lg) - var(--grid-gap-count--lg)*var(--grid-gap--lg))/var(--grid-col-count--lg));
  --grid-col-width--nav: calc((var(--grid-full-width--nav) - var(--grid-gap-count--nav)*var(--grid-gap--nav))/var(--grid-col-count--nav));
  --grid-col-width--max: calc((var(--grid-full-width--max) - var(--grid-gap-count--max)*var(--grid-gap--max))/var(--grid-col-count--max));
  --sp0-25: calc(var(--sp)*0.25);
  --sp0-5: calc(var(--sp)*0.5);
  --sp0-75: calc(var(--sp)*0.75);
  --sp1: calc(var(--sp)*1);
  --sp1-5: calc(var(--sp)*1.5);
  --sp2: calc(var(--sp)*2);
  --sp2-5: calc(var(--sp)*2.5);
  --sp3: calc(var(--sp)*3);
  --sp4: calc(var(--sp)*4);
  --sp5: calc(var(--sp)*5);
  --sp6: calc(var(--sp)*6);
  --sp7: calc(var(--sp)*7);
  --sp8: calc(var(--sp)*8);
  --sp9: calc(var(--sp)*9);
  --sp10: calc(var(--sp)*10);
  --sp11: calc(var(--sp)*11);
  --sp12: calc(var(--sp)*12);
  --color--black: #000;
  --color--gray-0: #0d1214;
  --color--gray-5: #0c0d0e;
  --color--gray-8: #171e23;
  --color--gray-10: #313637;
  --color--gray-20: #6e7172;
  --color--gray-25: #5d7585;
  --color--gray-28: #7d919d;
  --color--gray-30: #7e96a7;
  --color--gray-40: #98abb9;
  --color--gray-45: #afb8be;
  --color--gray-50: #9ea0a1;
  --color--gray-70: #d7e1e8;
  --color--gray-75: #e3e3e5;
  --color--gray-80: #e7edf1;
  --color--gray-90: #f1f4f7;
  --color--gray-95: #f7f9fa;
  --color--blue-10: #1c042f;
  --color--blue-20: #39075f;
  --color--blue-30: #550b8e;
  --color--blue-50: #8e12ed;
  --color--blue-70: #bb71f4;
  --color--blue-90: #e8d0fb;
  --color--blue-95: #e8fcf8;
  --color--cp--green-42: #18bc9c;

  --color--white: #fff;
  --color--red: #e33f1e;
  --color--gold: #fdca40;
  --color--green: #3fa21c;
  --header-height-wide-when-fixed: calc(var(--sp)*6);
  --mobile-nav-width: 31.25rem;
  --border-radius: 0.1875rem;
}

[type="color"],
[type="date"],
[type="datetime-local"],
[type="email"],
[type="file"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
textarea {
  width: 100%;
  max-width: 100%;
  min-height: var(--sp3);
  padding: 0 var(--sp);
  color: var(--color--gray-0);
  border: 1px solid var(--color--gray-30);
  border-radius: var(--border-radius);
  background-color: var(--color--white);
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

[type="color"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="email"]:focus, [type="file"]: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, textarea:focus {
    border: solid 2px var(--color--blue-50);
    outline: solid 2px var(--color--blue-50)
  }

@supports (outline-style: double) {

[type="color"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="email"]:focus, [type="file"]: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, textarea:focus {
      border-width: 1px;
      outline-width: 6px;
      outline-style: double;
      outline-offset: -1px
  }
    }

[type="color"]::-ms-clear, [type="date"]::-ms-clear, [type="datetime-local"]::-ms-clear, [type="email"]::-ms-clear, [type="file"]::-ms-clear, [type="month"]::-ms-clear, [type="number"]::-ms-clear, [type="password"]::-ms-clear, [type="search"]::-ms-clear, [type="tel"]::-ms-clear, [type="text"]::-ms-clear, [type="time"]::-ms-clear, [type="url"]::-ms-clear, [type="week"]::-ms-clear, textarea::-ms-clear {
    display: none;
  }

[type="color"][disabled], [type="date"][disabled], [type="datetime-local"][disabled], [type="email"][disabled], [type="file"][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], textarea[disabled] {
    color: var(--color--gray-30);
    background-color: var(--color--gray-90);
  }

[type="color"].error, [type="date"].error, [type="datetime-local"].error, [type="email"].error, [type="file"].error, [type="month"].error, [type="number"].error, [type="password"].error, [type="search"].error, [type="tel"].error, [type="text"].error, [type="time"].error, [type="url"].error, [type="week"].error, textarea.error {
    border: solid 2px var(--color--red)
  }

[type="color"].error:focus, [type="date"].error:focus, [type="datetime-local"].error:focus, [type="email"].error:focus, [type="file"].error:focus, [type="month"].error:focus, [type="number"].error:focus, [type="password"].error:focus, [type="search"].error:focus, [type="tel"].error:focus, [type="text"].error:focus, [type="time"].error:focus, [type="url"].error:focus, [type="week"].error:focus, textarea.error:focus {
      outline-color: var(--color--red);
      outline-offset: -2px;
    }

[type="color"].error + .ck-editor > .ck-editor__main, [type="date"].error + .ck-editor > .ck-editor__main, [type="datetime-local"].error + .ck-editor > .ck-editor__main, [type="email"].error + .ck-editor > .ck-editor__main, [type="file"].error + .ck-editor > .ck-editor__main, [type="month"].error + .ck-editor > .ck-editor__main, [type="number"].error + .ck-editor > .ck-editor__main, [type="password"].error + .ck-editor > .ck-editor__main, [type="search"].error + .ck-editor > .ck-editor__main, [type="tel"].error + .ck-editor > .ck-editor__main, [type="text"].error + .ck-editor > .ck-editor__main, [type="time"].error + .ck-editor > .ck-editor__main, [type="url"].error + .ck-editor > .ck-editor__main, [type="week"].error + .ck-editor > .ck-editor__main, textarea.error + .ck-editor > .ck-editor__main {
      border: solid 2px var(--color--red);
    }

[type="color"].form-element--small, [type="date"].form-element--small, [type="datetime-local"].form-element--small, [type="email"].form-element--small, [type="file"].form-element--small, [type="month"].form-element--small, [type="number"].form-element--small, [type="password"].form-element--small, [type="search"].form-element--small, [type="tel"].form-element--small, [type="text"].form-element--small, [type="time"].form-element--small, [type="url"].form-element--small, [type="week"].form-element--small, textarea.form-element--small {
    min-height: var(--sp2-5);
  }

@media (min-width: 31.25rem) {

[type="color"],
[type="date"],
[type="datetime-local"],
[type="email"],
[type="file"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
textarea {
    width: auto
}
  }

[type="date"] {
  /* Ensure that date field isn't larger than other fields. */
}

[dir="ltr"] [type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding-left: 0;
}

[dir="rtl"] [type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding-right: 0;
}

[dir="ltr"] [type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding-right: 0;
}

[dir="rtl"] [type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding-left: 0;
}

[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

[type="file"] {
  height: auto;
  padding-top: var(--sp0-75);
  padding-bottom: var(--sp0-75);
}

[type="color"] {
  width: var(--sp3);
  padding: 0;
}
