/**
 * Square mixin
 *
 * @param [Number] $dimensions = the height and width of the element
 */
/* stylelint-disable */
/* stylelint-enable */
/*!
 * Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
#cboxWrapper {
  border-radius: 0;
}

#cboxCurrent {
  bottom: 0;
}

body::after {
  content: "bp-xs";
  position: fixed;
  bottom: 0;
  right: 0;
  display: block;
  padding: 0.625rem;
  background: red;
  visibility: hidden;
  opacity: 0;
}

body.theme-debug-mode::after {
  visibility: visible;
}

@media (min-width: 768px) {
  body::after {
    content: "bp-sm";
    position: fixed;
    bottom: 0;
    right: 0;
    background: #ffce00;
  }
}

@media (min-width: 940px) {
  body::after {
    content: "bp-md";
    position: fixed;
    bottom: 0;
    right: 0;
    background: yellow;
  }
}

@media (min-width: 1200px) {
  body::after {
    content: "bp-lg";
    position: fixed;
    bottom: 0;
    right: 0;
    background: green;
  }
}

/* stylelint-disable */
/* stylelint-enable */
:root {
  --c-text: #303030;
  --c-background: #fff;
  --c-primary: #e63639;
  --c-secondary: #e63639;
  --c-tertiary: #ff6763;
  --c-off-white: #f3f3f3;
  --c-disabled: #e5e5e5;
  --c-gray-light-1: #e5e5e5;
  --c-gray-light-2: #d1d1d1;
  --c-gray-light-3: #a2a2a2;
  --c-gray-medium: #b2b2b2;
  --c-success: #3fc380;
  --c-warning: #eb9532;
  --c-error: #e74c3c;
}

@media (prefers-color-scheme: dark) {
  :root {
    --c-text: #303030;
    --c-background: #fff;
  }
}

:root [data-theme="default"] {
  --c-text: #303030;
  --c-background: #fff;
  --c-primary: #e63639;
  --c-secondary: #e63639;
  --c-tertiary: #ff6763;
  --c-off-white: #f3f3f3;
  --c-disabled: #e5e5e5;
  --c-gray-light-1: #e5e5e5;
  --c-gray-light-2: #d1d1d1;
  --c-gray-light-3: #a2a2a2;
  --c-gray-medium: #b2b2b2;
  --c-success: #3fc380;
  --c-warning: #eb9532;
  --c-error: #e74c3c;
}

:root [data-theme="dark"] {
  --c-text: #303030;
  --c-background: #fff;
}

.cl-colors {
  padding: 1rem;
}

.cl-colors__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 2rem;
  padding: 0;
}

.cl-colors__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 150px;
  min-width: 150px;
  margin: .25rem;
  padding: 1rem 2rem;
  list-style: none;
  transition: all 0.4s;
}

.cl-colors__item--default-text {
  color: var(--c-off-white);
  background-color: var(--c-text);
}

.cl-colors__item--default-background {
  color: var(--c-color-black);
  background-color: var(--c-background);
}

.cl-colors__item--default-primary {
  color: var(--c-color-black);
  background-color: var(--c-primary);
}

.cl-colors__item--default-secondary {
  color: var(--c-color-black);
  background-color: var(--c-secondary);
}

.cl-colors__item--default-tertiary {
  color: var(--c-color-black);
  background-color: var(--c-tertiary);
}

.cl-colors__item--default-off-white {
  color: var(--c-color-black);
  background-color: var(--c-off-white);
}

.cl-colors__item--default-disabled {
  color: var(--c-color-black);
  background-color: var(--c-disabled);
}

.cl-colors__item--default-gray-light-1 {
  color: var(--c-color-black);
  background-color: var(--c-gray-light-1);
}

.cl-colors__item--default-gray-light-2 {
  color: var(--c-color-black);
  background-color: var(--c-gray-light-2);
}

.cl-colors__item--default-gray-light-3 {
  color: var(--c-color-black);
  background-color: var(--c-gray-light-3);
}

.cl-colors__item--default-gray-medium {
  color: var(--c-color-black);
  background-color: var(--c-gray-medium);
}

.cl-colors__item--default-success {
  color: var(--c-color-black);
  background-color: var(--c-success);
}

.cl-colors__item--default-warning {
  color: var(--c-color-black);
  background-color: var(--c-warning);
}

.cl-colors__item--default-error {
  color: var(--c-color-black);
  background-color: var(--c-error);
}

.cl-colors__item--dark-text {
  color: var(--c-accent-high);
  background-color: var(--c-text);
}

.cl-colors__item--dark-background {
  color: var(--c-muted);
  background-color: var(--c-background);
}

/*
 Pulse
*/
@keyframes blast {
  0% {
    opacity: 0.1;
    transform: scale(0.1);
  }
  100% {
    opacity: .5;
    transform: scale(1);
  }
}

.motion {
  padding: 0 1rem;
}

@media (min-width: 920px) {
  .motion__grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (min-width: 920px) {
  .motion__grid-item {
    margin-bottom: 1rem;
    margin-right: 1rem;
    width: 49%;
  }
  .motion__grid-item:nth-child(2n) {
    margin-right: 0;
  }
}

.demo-motion {
  padding: 3rem;
  border-radius: 2px;
  text-align: center;
  color: #fff;
  background-color: #e63639;
  cursor: pointer;
}

.demo-motion::before {
  display: block;
  content: "Duration: 0.3s";
}

.demo-motion::after {
  content: "Timing Function: ease-in-out";
}

.demo-motion span {
  display: block;
  margin: 0.25rem;
}

.demo-motion--fade {
  transition: all 0.3s ease-in-out;
}

.demo-motion--fade:hover {
  color: #fff;
  background-color: #e63639;
}

.demo-motion--slide-up {
  transition: transform 0.3s ease-in-out;
}

.demo-motion--slide-up::before {
  content: "Duration: 0.3s";
  display: block;
}

.demo-motion--slide-up::after {
  content: "Timing Function: ease-in-out";
}

.demo-motion--slide-up:hover {
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

.demo-motion--slide-down {
  transition: transform 0.3s ease-in-out;
}

.demo-motion--slide-down::before {
  content: "Duration: 0.3s";
  display: block;
}

.demo-motion--slide-down::after {
  content: "Timing Function: ease-in-out";
}

.demo-motion--slide-down:hover {
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

.demo-motion--expand {
  transition: transform 0.3s ease-in-out;
}

.demo-motion--expand::before {
  content: "Duration: 0.3s";
  display: block;
}

.demo-motion--expand::after {
  content: "Timing Function: ease-in-out";
}

.demo-motion--expand:hover {
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

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

html {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@-ms-viewport {
  width: device-width;
}

body {
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: left;
  text-rendering: optimizeSpeed;
  color: #303030;
  background-color: #fff;
  scroll-behavior: smooth;
}

.font-text-01-loaded body {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

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

figure {
  margin: 0;
}

hr {
  display: none;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

svg:not(:root) {
  overflow: hidden;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

output {
  display: inline-block;
}

a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

p {
  margin-top: 0;
}

abbr[title],
abbr[data-original-title] {
  border-bottom: 0;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
}

address {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-top: 0;
  margin-bottom: 0.9375rem;
  margin-left: 0;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

pre,
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

button {
  border: 0 none;
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  box-sizing: border-box;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"] {
  -webkit-appearance: none;
  appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="datetime"]::-webkit-calendar-picker-indicator:hover,
input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover,
input[type="week"]::-webkit-calendar-picker-indicator:hover {
  background: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  font-size: 1.5rem;
  line-height: inherit;
  white-space: normal;
  color: inherit;
  margin-bottom: .5rem;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
  appearance: none;
}

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

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
  appearance: button;
}

input[type="button"], input[type="reset"], input[type="submit"] {
  outline: 0;
}

input[type="button"]:focus, input[type="button"]:focus:hover, input[type="reset"]:focus, input[type="reset"]:focus:hover, input[type="submit"]:focus, input[type="submit"]:focus:hover {
  outline: 0;
}

#styleguide-header .item-list {
  width: 100%;
  margin: 0 0 1.5rem 0;
}

@media (min-width: 480px) and (max-width: 767px) {
  #styleguide-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #styleguide-header .item-list {
    width: 50%;
    padding: 0 0.625rem;
  }
}

@media (min-width: 768px) {
  #styleguide-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #styleguide-header .item-list {
    width: 25%;
    padding: 0 0.625rem;
  }
}

.iframe-responsive {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  width: 100%;
}

.iframe-responsive--full {
  padding-bottom: 75%;
}

.iframe-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pull-right,
[class*="col--"].pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.clear {
  clear: both;
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.hide,
.visually-hidden {
  position: absolute !important;
  display: block !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  overflow: hidden !important;
  height: 0.0625rem !important;
  width: 0.0625rem !important;
  word-wrap: normal !important;
}

.hide.focusable:focus,
.visually-hidden.focusable:focus {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  z-index: 10010 !important;
  display: block !important;
  clip: auto !important;
  overflow: visible !important;
  height: auto !important;
  width: auto !important;
  background: #fff;
}

.hide-text,
.hidden-text {
  overflow: hidden;
  text-indent: 110%;
  white-space: nowrap;
}

.hidden {
  display: none;
}

.invisible,
.element-invisible {
  visibility: hidden;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
  .visible-sm {
    display: none !important;
  }
  .visible-md {
    display: none !important;
  }
  .visible-lg {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 939px) {
  .visible-xs {
    display: none !important;
  }
  .hidden-sm {
    display: none !important;
  }
  .visible-sm {
    display: block !important;
  }
  .visible-md {
    display: none !important;
  }
  .visible-lg {
    display: none !important;
  }
}

@media (min-width: 940px) and (max-width: 1199px) {
  .visible-xs {
    display: none !important;
  }
  .visible-sm {
    display: none !important;
  }
  .hidden-md {
    display: none !important;
  }
  .visible-md {
    display: block !important;
  }
  .visible-lg {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .visible-xs {
    display: none !important;
  }
  .visible-sm {
    display: none !important;
  }
  .visible-md {
    display: none !important;
  }
  .visible-lg {
    display: block !important;
  }
  .hidden-lg {
    display: none !important;
  }
}

.animate-fade {
  transition: opacity 0.3s ease-out;
}

.animate-fade:hover {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}

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

.container {
  margin: 0 auto;
  max-width: none;
}

@media (min-width: 768px) {
  .container {
    max-width: none;
  }
}

@media (min-width: 940px) {
  .container {
    max-width: 940px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.container .container {
  padding: 0;
  margin: 0;
  max-width: none;
}

.container--fluid {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.container--fluid .container {
  padding: 0;
}

.page-wrapper {
  margin: 0;
  border-radius: 0;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 768px) {
  .page-wrapper {
    margin: 2em;
    border-radius: 1em;
  }
}

@media (min-width: 940px) {
  .page-wrapper {
    margin: 4em;
    border-radius: 2em;
  }
}

.page {
  overflow-x: hidden;
  overflow-y: auto;
}

a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration-skip-ink: auto;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  /**
  * Remove the outline on focused links when they are also active or hovered
  * in all browsers (opinionated).
  */
}

a, a:visited {
  color: #020000;
}

a:hover {
  color: #020000;
}

a:active, a:focus {
  color: #020000;
}

a::after, a::before {
  transition: all 0.3s ease-in-out;
}

a:hover, a:active {
  outline-width: 0;
}

.more-link a,
.link--more {
  display: inline-block;
  white-space: nowrap;
  -ms-word-break: keep-all;
  word-break: keep-all;
  border: 5px solid red;
}

.more-link a::after,
.link--more::after {
  transition: none;
}

.more-link--big a,
.link--more-big {
  display: inline-block;
  white-space: nowrap;
  -ms-word-break: keep-all;
  word-break: keep-all;
  border: 5px solid red;
}

.more-link--big a, .more-link--big a:visited,
.link--more-big,
.link--more-big:visited {
  color: #e63639;
}

.more-link--big a:hover, .more-link--big a:active,
.link--more-big:hover,
.link--more-big:active {
  color: #e63639;
}

.back-link a,
.link--back {
  display: inline-block;
  white-space: nowrap;
  -ms-word-break: keep-all;
  word-break: keep-all;
  border: 5px solid red;
}

.back-link a::before,
.link--back::before {
  transition: none;
}

ul.inline a,
.cke_editable a,
.text-long a,
.text-long .links li a {
  position: relative;
  display: inline;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

ul.inline a, ul.inline a:visited,
.cke_editable a,
.cke_editable a:visited,
.text-long a,
.text-long a:visited,
.text-long .links li a,
.text-long .links li a:visited {
  color: #e63639;
  border-bottom: 1px solid #e63639;
}

ul.inline a:hover,
.cke_editable a:hover,
.text-long a:hover,
.text-long .links li a:hover {
  color: #e63639;
  border-bottom: 1px solid rgba(230, 54, 57, 0);
}

ul.inline a:active,
.cke_editable a:active,
.text-long a:active,
.text-long .links li a:active {
  color: #e63639;
  border-bottom: 1px solid rgba(230, 54, 57, 0);
}

a:not([href]):not([tabindex]) {
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

[onclick^="location.href="],
[onclick^="window.open"] {
  cursor: pointer;
}

.file {
  position: relative;
  display: block;
  padding-left: 1.25rem;
  background: none;
}

.file .icon {
  position: absolute;
  left: 0;
  top: -0.125rem;
  width: 0.875rem;
  text-align: center;
}

.file a {
  display: block;
}

.icon--file {
  transition: all 0.3s ease-in-out;
}

.icon--file::before {
  content: "\f15b";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #303030;
}

.icon--image {
  transition: all 0.3s ease-in-out;
}

.icon--image::before {
  content: "\f1c5";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #303030;
}

.icon--pdf {
  transition: all 0.3s ease-in-out;
}

.icon--pdf::before {
  content: "\f1c1";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #303030;
}

.list__item--download {
  font-size: 0.875rem;
  line-height: 1.125rem;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.list__item--download:hover {
  color: #fff;
  background-color: #e63639;
  box-shadow: 0 0 0 0.2em #e63639;
}

.list__item--download:hover .icon::before {
  color: #fff;
}

.list__item--download .icon--file::before {
  content: "\f15b";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #e63639;
}

.list__item--download a,
.list__item--download a:visited {
  color: #e63639;
  transition: all 0.3s ease-in-out;
}

.list__item--download a:hover,
.list__item--download a:active {
  color: #fff;
}

h1,
.h1 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 2em auto;
  color: #020000;
  padding-bottom: 1em;
  font-size: 2rem;
  line-height: 2.5rem;
}

h1 a,
h1 a:visited,
.h1 a,
.h1 a:visited {
  text-decoration: none;
  color: #020000;
}

h1 a:hover,
.h1 a:hover {
  color: #e63639;
}

@media (min-width: 1200px) {
  h1,
  .h1 {
    text-align: left;
  }
}

h2,
.h2 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9375rem 0;
  color: #020000;
  padding-bottom: 1em;
  margin-bottom: 1em;
  font-size: 1.875rem;
  line-height: 2.1875rem;
}

h2 a,
h2 a:visited,
.h2 a,
.h2 a:visited {
  text-decoration: none;
  color: #020000;
}

h2 a:hover,
.h2 a:hover {
  color: #e63639;
}

@media (min-width: 1200px) {
  h2,
  .h2 {
    text-align: left;
  }
}

h3,
.h3 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9375rem 0;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #020000;
}

h3 a,
h3 a:visited,
.h3 a,
.h3 a:visited {
  text-decoration: none;
  color: #020000;
}

h3 a:hover,
.h3 a:hover {
  color: #e63639;
}

@media (min-width: 1200px) {
  h3,
  .h3 {
    text-align: left;
  }
}

h4,
.h4 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9375rem 0;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #020000;
}

h4 a,
h4 a:visited,
.h4 a,
.h4 a:visited {
  text-decoration: none;
  color: #020000;
}

h4 a:hover,
.h4 a:hover {
  color: #e63639;
}

@media (min-width: 1200px) {
  h4,
  .h4 {
    text-align: left;
  }
}

h5,
.h5 {
  margin: 0 0 0.3125rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #303030;
}

h6,
.h6 {
  margin: 0 0 0.3125rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #303030;
}

.text-long h2.no-margin,
.text-long h3.no-margin,
.text-long h4.no-margin,
.text-long h5.no-margin,
.text-long h6.no-margin {
  margin-bottom: 0;
}

h1,
.h1,
h2,
.h2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

h1::after,
.h1::after,
h2::after,
.h2::after {
  display: inline-block;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  width: 100%;
  margin: 0 1rem;
  border: none !important;
  border-top: 4px dotted #d4d4d4 !important;
  content: "";
}

.layout__top--2-col .field-cb-node-title-replacement h1,
.layout__top--2-col .field-cb-node-title-replacement h2 {
  margin-left: 1rem;
}

.layout-builder-update-block h1::after,
.layout-builder-update-block .h1::after,
.layout-builder-update-block h2::after,
.layout-builder-update-block .h2::after,
.layout-builder-configure-block h1::after,
.layout-builder-configure-block .h1::after,
.layout-builder-configure-block h2::after,
.layout-builder-configure-block .h2::after {
  display: none;
}

mark,
.marker,
.highlight {
  display: inline-block;
  color: #171717;
  background-color: #ff0;
}

small,
.small {
  font-size: 0.6875rem;
  line-height: 0.85938rem;
}

p,
.p {
  margin-bottom: 1.5rem;
}

.text-long .text-align-right {
  text-align: right;
}

.text-long .text-align-center {
  text-align: center;
}

.text-long .text-align-justify {
  text-align: justify;
}

.text-long::after {
  clear: both;
  content: "";
  display: table;
}

.text-long p:last-child,
.text-long .p:last-child {
  margin-bottom: 0;
}

.text-long p.no-margin,
.text-long .p.no-margin {
  margin-bottom: 0;
}

.text-long ul:not(.inline) .text-align-right::before,
.text-long ul:not(.inline) .text-align-center::before,
.text-long ol:not(.inline) .text-align-right::before,
.text-long ol:not(.inline) .text-align-center::before {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  margin-right: 0.625rem;
}

.text-long blockquote,
.text-long .blockquote {
  position: relative;
  margin: 0 0 1.5rem 0;
  padding: 0;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-style: italic;
  color: #52e23a;
  background-color: transparent;
}

.text-long blockquote::before,
.text-long .blockquote::before {
  content: "\201C";
  margin-right: 0.25rem;
}

.text-long blockquote::after,
.text-long .blockquote::after {
  content: "\201D";
  margin-left: -0.25rem;
}

.text-long blockquote p,
.text-long .blockquote p {
  display: inline;
}

.text-long blockquote:last-child,
.text-long .blockquote:last-child {
  margin-bottom: 0;
}

.text-long hr,
.text-long .hr {
  display: block;
  box-sizing: content-box;
  overflow: visible;
  margin: 1.5rem 0;
  padding: 0;
  width: 100%;
  height: 0;
  border: 0;
  border-top: 1px solid #d1d1d1;
}

.text-long hr:last-child,
.text-long .hr:last-child {
  margin-bottom: 0;
}

.text-long pre,
.text-long .pre {
  overflow: auto;
  -ms-overflow-style: scrollbar;
  margin: 0 0 1.5rem 0;
  padding: 0.9375rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.3125rem;
  font-family: monospace;
  font-size: 1em;
  white-space: pre-line;
  color: #303030;
  background-color: #fff;
}

.text-long pre:last-child,
.text-long .pre:last-child {
  margin-bottom: 0;
}

ul,
ol,
dl {
  margin: 0 0 0.9375rem 0;
}

ul ul,
ul ol,
ol ul,
ol ol,
dl ul,
dl ol {
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
}

ul li,
ol li,
dl li {
  margin-bottom: 0.375rem;
  list-style-position: inside;
}

ul li:last-child,
ol li:last-child,
dl li:last-child {
  margin-bottom: 0;
}

ul {
  padding: 0 0 0 1.25rem;
}

ol {
  padding: 0 0 0 1.5rem;
}

dl {
  padding: 0 0 0 1.5rem;
}

dl dt {
  margin-top: 0.9375rem;
}

dl dt:first-child {
  margin-top: 0;
}

dl dt + dd {
  margin-top: 0.9375rem;
}

dl dd {
  margin-bottom: 0.375rem;
}

nav ul,
nav ol {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul > li,
nav ol > li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.inline {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin: -0.3125rem -0.3125rem 1.5rem -0.3125rem;
}

ul.inline li {
  display: inline-block;
  margin: 0.3125rem 0.3125rem 0 0.3125rem;
  padding: 0;
}

.filter-type ul:not(.inline),
.text-long ul:not(.inline) {
  display: block;
  padding-left: 0;
  margin-left: 0;
  overflow: hidden;
}

.filter-type ul:not(.inline) > li,
.text-long ul:not(.inline) > li {
  position: relative;
  display: block;
  margin-bottom: 0.375rem;
  list-style: none;
}

.filter-type ul:not(.inline) > li:last-child,
.text-long ul:not(.inline) > li:last-child {
  margin-bottom: 0;
}

.filter-type ul:not(.inline) > li,
.text-long ul:not(.inline) > li {
  padding-left: 1.1875rem;
}

.filter-type ul:not(.inline) > li::before,
.text-long ul:not(.inline) > li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.75rem;
  display: block;
  margin-top: -1px;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #e63639;
}

.filter-type ul:not(.inline) > li ul li::before,
.text-long ul:not(.inline) > li ul li::before {
  border: 1px solid #e63639;
  border-radius: 50%;
  background: transparent;
}

.filter-type ul:not(.inline) > li ul li li::before,
.text-long ul:not(.inline) > li ul li li::before {
  border: 0 none;
  border-radius: 0;
  background: #e63639;
}

.filter-type ul:not(.inline) p,
.text-long ul:not(.inline) p {
  margin-bottom: 0.9375rem;
}

.filter-type ol,
.text-long ol {
  display: block;
  padding-left: 0;
  margin-left: 0;
  counter-reset: listStyle1;
  overflow: hidden;
}

.filter-type ol > li,
.text-long ol > li {
  position: relative;
  display: block;
  margin-bottom: 0.375rem;
  list-style: none;
}

.filter-type ol > li:last-child,
.text-long ol > li:last-child {
  margin-bottom: 0;
}

.filter-type ol > li,
.text-long ol > li {
  padding-left: 1.625rem;
  counter-increment: listStyle1;
}

.filter-type ol > li::before,
.text-long ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(listStyle1) ".";
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #e63639;
}

.filter-type ol > li ol,
.text-long ol > li ol {
  counter-reset: listStyle2;
}

.filter-type ol > li ol > li,
.text-long ol > li ol > li {
  counter-increment: listStyle2;
}

.filter-type ol > li ol > li::before,
.text-long ol > li ol > li::before {
  content: counter(listStyle2, lower-alpha) ".";
}

.filter-type ol > li ol > li > ol,
.text-long ol > li ol > li > ol {
  counter-reset: listStyle3;
}

.filter-type ol > li ol > li > ol > li,
.text-long ol > li ol > li > ol > li {
  counter-increment: listStyle3;
}

.filter-type ol > li ol > li > ol > li::before,
.text-long ol > li ol > li > ol > li::before {
  content: counter(listStyle3, lower-roman) ".";
}

.font-text-01-loaded .filter-type ol > li::before, .font-text-01-loaded
.text-long ol > li::before {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.filter-type ol p,
.text-long ol p {
  margin-bottom: 0.9375rem;
}

.filter-type ul:not(.inline).is-horizontal,
.filter-type ol.is-horizontal,
.text-long ul:not(.inline).is-horizontal,
.text-long ol.is-horizontal {
  margin-right: -1.875rem;
}

.filter-type ul:not(.inline).is-horizontal li,
.filter-type ol.is-horizontal li,
.text-long ul:not(.inline).is-horizontal li,
.text-long ol.is-horizontal li {
  display: inline-block;
  margin-right: 1.875rem;
}

.filter-type ul:not(.inline):last-child,
.filter-type ol:last-child,
.text-long ul:not(.inline):last-child,
.text-long ol:last-child {
  margin-bottom: 0;
}

.filter-type ul:not(.inline).no-margin,
.filter-type ol.no-margin,
.text-long ul:not(.inline).no-margin,
.text-long ol.no-margin {
  margin-bottom: 0;
}

.filter-type li > ol:last-child,
.filter-type li > ul:not(.inline):last-child,
.text-long li > ol:last-child,
.text-long li > ul:not(.inline):last-child {
  margin-bottom: 0.9375rem;
}

img {
  display: block;
  border-style: none;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.media__element {
  background-repeat: no-repeat !important;
}

.media--type-image {
  position: relative;
}

.lazy-wrapper {
  position: relative;
}

.media--view-mode-layout-builder-background .lazy-wrapper {
  position: static;
}

.lazy-wrapper::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  display: block;
  height: 1.875rem;
  width: 1.875rem;
  max-width: none;
  border-radius: 50%;
  background-color: #e63639;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  animation: blast 1s infinite ease-out;
  content: "";
  margin-left: -0.9375rem;
  margin-top: -0.9375rem;
}

.lazy-wrapper::after {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background-color: #e5e5e5;
  content: "";
  opacity: .75;
}

.lazy-wrapper.js-loaded {
  background-color: transparent;
}

.lazy-wrapper.js-loaded::before {
  display: none;
}

.lazy-wrapper.js-loaded::after {
  display: none;
}

.drimage {
  position: relative;
}

.media--view-mode-layout-builder-background .drimage {
  position: static;
}

.drimage::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  display: block;
  height: 1.875rem;
  width: 1.875rem;
  max-width: none;
  border-radius: 50%;
  background-color: #e63639;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  animation: blast 1s infinite ease-out;
  content: "";
  margin-left: -0.9375rem;
  margin-top: -0.9375rem;
}

.drimage::after {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background-color: #e5e5e5;
  content: "";
  opacity: .75;
}

.drimage.js-loaded {
  background-color: transparent;
}

.drimage.js-loaded::before {
  display: none;
}

.drimage.js-loaded::after {
  display: none;
}

.media--loading:not([data-animation]), .is-b-loading:not([data-animation]) {
  position: relative;
}

.media--view-mode-layout-builder-background .media--loading:not([data-animation]), .media--view-mode-layout-builder-background .is-b-loading:not([data-animation]) {
  position: static;
}

.media--loading:not([data-animation])::before, .is-b-loading:not([data-animation])::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  display: block;
  height: 1.875rem;
  width: 1.875rem;
  max-width: none;
  border-radius: 50%;
  background-color: #e63639;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  animation: blast 1s infinite ease-out;
  content: "";
  margin-left: -0.9375rem;
  margin-top: -0.9375rem;
}

.media--loading:not([data-animation])::after, .is-b-loading:not([data-animation])::after {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background-color: #e5e5e5;
  content: "";
  opacity: .75;
}

.media--loading:not([data-animation]).js-loaded, .is-b-loading:not([data-animation]).js-loaded {
  background-color: transparent;
}

.media--loading:not([data-animation]).js-loaded::before, .is-b-loading:not([data-animation]).js-loaded::before {
  display: none;
}

.media--loading:not([data-animation]).js-loaded::after, .is-b-loading:not([data-animation]).js-loaded::after {
  display: none;
}

.slick-cloned .lazy-wrapper::before,
.slick-cloned .drimage::before,
#colorbox .lazy-wrapper::before,
#colorbox .drimage::before {
  display: none;
}

.slick-cloned .lazy-wrapper img,
.slick-cloned .drimage img,
#colorbox .lazy-wrapper img,
#colorbox .drimage img {
  background-color: transparent;
  box-shadow: none;
}

/* During image load, show bounding box for the image
   Might make the bg color dynamic at some point */
.img-layout-shift {
  position: relative;
  display: block;
  background-color: #f3f3f3;
}

.media--view-mode-layout-builder-background .img-layout-shift {
  position: static;
}

.img-layout-shift > img {
  position: absolute;
}

picture {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  /* stretch to fit its containing element */
}

picture img {
  width: 100%;
  /* stretch to fill the picture element */
}

.text-long::after {
  clear: both;
  content: "";
  display: table;
}

.text-long img, .text-long img.align-left, .text-long img.align-right, .text-long img.align-center,
.text-long figure,
.text-long figure.align-left,
.text-long figure.align-right,
.text-long figure.align-center,
.text-long [data-entity-type="media"],
.text-long [data-entity-type="media"].align-left,
.text-long [data-entity-type="media"].align-right,
.text-long [data-entity-type="media"].align-center {
  display: block;
  float: none;
  margin: 0 0 1.875rem 0;
  max-width: 100%;
  width: auto;
  height: auto;
}

@media (min-width: 768px) {
  .text-long img.align-left,
  .text-long figure.align-left,
  .text-long [data-entity-type="media"].align-left {
    float: left;
    margin: 0 1.875rem 1.875rem 0;
  }
  .text-long img.align-right,
  .text-long figure.align-right,
  .text-long [data-entity-type="media"].align-right {
    float: right;
    margin: 0 0 1.875rem 1.875rem;
  }
  .text-long img.align-center,
  .text-long figure.align-center,
  .text-long [data-entity-type="media"].align-center {
    margin-left: auto;
    margin-right: auto;
  }
}

.text-long figure.align-center img,
.text-long [data-entity-type="media"].align-center img {
  margin: 0 auto;
}

.text-long figure img,
.text-long [data-entity-type="media"] img {
  float: none;
  padding: 0;
}

.text-long figcaption {
  margin-top: 0.625rem;
  display: block;
  text-align: center;
  font-style: italic;
  color: #b2b2b2;
}

.icons-demo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.icons-demo pre {
  margin: 0;
  padding: 0 4px;
  font-size: 0.8rem;
  text-align: center;
  background-color: var(--c-off-white);
}

.icons-demo--link {
  display: block;
}

.icons-demo__item-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.icons-demo__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0.625rem;
  border: 1px solid var(--c-off-white);
  text-align: center;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]),
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]),
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) {
  position: relative;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root {
  position: relative;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label {
  position: absolute;
  left: 1.25rem;
  top: 0.9375rem;
  z-index: 1;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: normal;
  color: rgba(178, 178, 178, 0.6);
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label.is-active, form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label.has-value,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label.is-active,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label.has-value,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label.is-active,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label.has-value,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label.is-active,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label.has-value,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label.is-active,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label.has-value,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label.is-active,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label.has-value {
  left: 1.25rem;
  top: 0.5rem;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label.is-active,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label.is-active,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label.is-active,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label.is-active,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) > label.is-active,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__element__root > label.is-active {
  color: #e63639;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).js-scrolling > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).js-scrolling > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).js-scrolling > label {
  pointer-events: none;
  opacity: 0;
  top: -1.5rem;
  transition: all 0.3s ease-in-out;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--webform-document-file > label,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--webform-document-file .form__element__root > label, form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--file > label,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--file .form__element__root > label, form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--managed-file > label,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--managed-file .form__element__root > label, form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--date > label,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--date .form__element__root > label, form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--select > label,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--select .form__element__root > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--webform-document-file > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--webform-document-file .form__element__root > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--file > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--file .form__element__root > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--managed-file > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--managed-file .form__element__root > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--date > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--date .form__element__root > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--select > label,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--select .form__element__root > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--webform-document-file > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--webform-document-file .form__element__root > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--file > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--file .form__element__root > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--managed-file > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--managed-file .form__element__root > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--date > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--date .form__element__root > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--select > label,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]).form-type--select .form__element__root > label {
  top: 0.5rem;
  left: 1.25rem;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  color: #e63639;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type]), form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]),
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) textarea,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type]),
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]),
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) textarea,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type]),
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]),
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) textarea {
  padding: 1.4375rem 1.25rem 0.375rem;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type]):-ms-input-placeholder, form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]):-ms-input-placeholder,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) textarea:-ms-input-placeholder,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type]):-ms-input-placeholder,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]):-ms-input-placeholder,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) textarea:-ms-input-placeholder,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type]):-ms-input-placeholder,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]):-ms-input-placeholder,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) textarea:-ms-input-placeholder {
  color: transparent;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type])::placeholder, form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"])::placeholder,
form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) textarea::placeholder,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type])::placeholder,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"])::placeholder,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) textarea::placeholder,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type])::placeholder,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"])::placeholder,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) textarea::placeholder {
  color: transparent;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) select,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) select,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) select {
  padding: 1.4375rem 2.5rem 0.375rem 1.25rem;
  height: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}

form[class*="webform-submission"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__dropdown::after,
form[class*="contact"] .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__dropdown::after,
form.is--floating .form__element:not(.form-type--range):not(.form-type--radio):not(.form-type--checkbox):not(.form-type--item):not(.form-type--password-confirm):not(.form-type-managed-file):not(.form-type-file):not([class*="form__element--comment-body"]) .form__dropdown::after {
  right: 1.25rem;
}

.form__group--checkboxes,
.form__group--radios {
  margin-bottom: 1.5rem;
  width: 100%;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  top: 0.3125rem;
  display: inline-block;
  margin: 0 0.625rem 0 0;
  padding: 0;
  border: 1px solid #d1d1d1;
  border-radius: 0;
  vertical-align: top;
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

input[type="radio"]:hover, input[type="radio"]:focus,
input[type="checkbox"]:hover,
input[type="checkbox"]:focus {
  cursor: pointer;
  outline: 0;
  border-color: #ec6366;
}

input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
  opacity: .5;
  border-color: #d1d1d1;
  background: #fff;
}

input[type="radio"]:disabled:hover,
input[type="checkbox"]:disabled:hover {
  cursor: default;
  border-color: #d1d1d1;
}

input[type="radio"]:disabled:hover + label,
input[type="radio"]:disabled + label,
input[type="checkbox"]:disabled:hover + label,
input[type="checkbox"]:disabled + label {
  opacity: .5;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
  border-color: #ec6366;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  position: relative;
  display: inline;
  font-weight: 400;
}

input[type="radio"] + label .form__label__not-required,
input[type="checkbox"] + label .form__label__not-required {
  display: none;
}

/* Gin admin theme override */
.ui-dialog [class*="layout-builder"] :not(.form-checkboxes):not(td):not(.media-library-item__click-to-select-checkbox):not(.field-content) > .form-type--checkbox input, .ui-dialog [class*="layout-builder"] :not(.form-checkboxes):not(td):not(.media-library-item__click-to-select-checkbox):not(.field-content) > .form-type--checkbox input:hover, .ui-dialog [class*="layout-builder"] :not(.form-checkboxes):not(td):not(.media-library-item__click-to-select-checkbox):not(.field-content) > .form-type--checkbox input:active, .ui-dialog [class*="layout-builder"] :not(.form-checkboxes):not(td):not(.media-library-item__click-to-select-checkbox):not(.field-content) > .form-type--checkbox input:focus, .ui-dialog [class*="layout-builder"] :not(.form-checkboxes):not(td):not(.media-library-item__click-to-select-checkbox):not(.field-content) > .form-type--checkbox input:active:focus {
  opacity: 1;
  width: 1rem;
  height: 1rem;
  clip: auto;
  border: 1px solid #d1d1d1;
}

input[type="checkbox"] {
  background-color: #fff;
  width: 1rem;
  height: 1rem;
  transition: background-color ease-in-out 0.1s, border-color ease-in-out 0.1s;
}

input[type="checkbox"]::-ms-check {
  color: transparent;
}

input[type="checkbox"] + label::before {
  content: "\f00c";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.9375rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #e63639;
}

input[type="checkbox"] + label::before {
  position: absolute;
  left: -1.625rem;
  top: 0.25rem;
  opacity: 0;
}

input[type="checkbox"]:checked + label::before {
  opacity: 1;
  transition: opacity ease-in-out 0.1s;
}

input[type="checkbox"]:disabled:checked + label::before {
  color: rgba(230, 54, 57, 0.5);
}

.form__element.form-type--checkbox,
.form__element.form-type--radio {
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: 0.3125rem;
}

.form__element.form-type--checkbox input[type="checkbox"],
.form__element.form-type--checkbox input[type="radio"],
.form__element.form-type--radio input[type="checkbox"],
.form__element.form-type--radio input[type="radio"] {
  position: absolute;
  left: 0;
  top: 0.3125rem;
}

fieldset.form-composite legend::after {
  width: auto !important;
  margin: 0 !important;
  border: none !important;
}

fieldset.form-composite .form__group--radios {
  display: -ms-flexbox;
  display: flex;
  padding: 0 1em;
}

fieldset.form-composite input[type="radio"] {
  width: 1em;
}

.main .form-actions button,
.main .form-actions input[type="submit"],
.main .form-actions [id*="edit-cancel"] {
  width: 100%;
  margin-top: 0.9375rem;
}

.main .form-actions button:first-child,
.main .form-actions input[type="submit"]:first-child,
.main .form-actions [id*="edit-cancel"]:first-child {
  margin-top: 0;
}

@media (min-width: 768px) {
  .main .form-actions button,
  .main .form-actions input[type="submit"],
  .main .form-actions [id*="edit-cancel"] {
    width: auto;
    margin-top: 0;
    margin-right: 0.9375rem;
  }
  .main .form-actions button:first-child,
  .main .form-actions input[type="submit"]:first-child,
  .main .form-actions [id*="edit-cancel"]:first-child {
    margin-top: 0;
  }
}

details {
  margin: 0 0 1.5rem 0;
  border: 1px solid #d1d1d1;
}

details summary {
  padding: 0.5rem 0.9375rem;
  color: #020000;
  background: #d1d1d1;
}

details summary:focus {
  outline: none;
}

details .details-wrapper {
  padding: 0.9375rem 0.9375rem 0;
}

summary {
  cursor: pointer;
}

.details-description {
  margin-bottom: 1.5rem;
}

.details__error-message {
  margin-bottom: 1.5rem;
  color: #e74c3c;
}

legend {
  display: block;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9375rem 0;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #020000;
  margin: 0;
  font-weight: 700;
  white-space: normal;
  color: #303030;
}

legend a,
legend a:visited {
  text-decoration: none;
  color: #020000;
}

legend a:hover {
  color: #e63639;
}

@media (min-width: 1200px) {
  legend {
    text-align: left;
  }
}

fieldset,
.form-fieldset,
.ui-dialog [class*="layout-builder"] fieldset:not(.fieldgroup) {
  position: relative;
  margin: 0 0 1.5rem 0;
  padding: 0.625rem;
  border: 1px solid #d1d1d1;
}

fieldset legend,
.form-fieldset legend,
.ui-dialog [class*="layout-builder"] fieldset:not(.fieldgroup) legend {
  display: table;
  box-sizing: border-box;
  padding: 0 0.625rem;
  max-width: 100%;
  width: auto;
}

fieldset > .form__element__tooltip,
.ui-widget fieldset > .form__element__tooltip,
.form-fieldset > .form__element__tooltip,
.ui-widget
.form-fieldset > .form__element__tooltip,
.ui-dialog [class*="layout-builder"] fieldset:not(.fieldgroup) > .form__element__tooltip,
.ui-widget
.ui-dialog [class*="layout-builder"] fieldset:not(.fieldgroup) > .form__element__tooltip {
  right: 2px;
  top: -10px;
}

.fieldset__error-message {
  margin-bottom: 1.5rem;
  color: #e74c3c;
}

.form__element {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
}

.form__element::after {
  clear: both;
  content: "";
  display: table;
}

.form__element .field-suffix,
.form__element .admin-link {
  display: block;
}

.form__element .admin-link {
  margin-top: 0.625rem;
}

.form__element--prefix,
.form__element--suffix {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form__element--prefix .form__element__description,
.form__element--suffix .form__element__description {
  width: 100%;
}

.form__element__prefix {
  margin-right: 0.625rem;
}

.form__element__suffix {
  margin-left: 0.625rem;
}

.form__element .container-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.form__element .container-inline .label {
  margin-right: 0.625rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.form__element .container-inline div {
  -ms-flex: 1;
  flex: 1;
  padding-left: 0.625rem;
}

.form__element .container-inline div:first-child {
  padding-left: 0;
}

.form__element .container-inline .description {
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  padding-left: 0;
}

.form__element .container-inline [data-drupal-field-elements="date-time"] + .description {
  -ms-flex: 0 1 0px;
  flex: 0 1 0;
  padding-left: 0.625rem;
}

.form__element__tooltip,
.ui-widget .form__element__tooltip {
  position: absolute;
  right: 0;
  top: 0;
}

.form__element__tooltip__button,
.ui-widget .form__element__tooltip__button {
  display: block;
  cursor: pointer;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  margin: 0;
  border: 0 none;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.3125rem;
  text-align: center;
  color: #fff;
  background-color: #e63639;
}

.form__element__tooltip__message,
.ui-widget .form__element__tooltip__message {
  pointer-events: none;
  position: absolute;
  right: -12px;
  top: 25px;
  z-index: 1;
  width: 15.625rem;
  visibility: hidden;
  padding: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  text-transform: none;
  border: 2px solid #e63639;
  border-radius: 5px;
  color: #303030;
  background-color: #fff;
}

.form__element__tooltip__message::before, .form__element__tooltip__message::after,
.ui-widget .form__element__tooltip__message::before,
.ui-widget .form__element__tooltip__message::after {
  content: "";
  position: absolute;
  right: 0.625rem;
  display: block;
}

.form__element__tooltip__message::before,
.ui-widget .form__element__tooltip__message::before {
  top: -20px;
  border-top: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #e63639;
  border-left: 10px solid transparent;
}

.form__element__tooltip__message::after,
.ui-widget .form__element__tooltip__message::after {
  top: -17px;
  border-top: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
}

.form__element__tooltip__message.is-visible,
.ui-widget .form__element__tooltip__message.is-visible {
  visibility: visible;
}

form small,
form .description,
.form__element__description,
.password-suggestions,
.webform-component--mandatory-fields p,
.form__element ~ p {
  display: block;
  margin-top: 0.9375rem;
  color: rgba(178, 178, 178, 0.6);
  font-size: 0.6875rem;
  line-height: 0.9375rem;
}

form small ul,
form .description ul,
.form__element__description ul,
.password-suggestions ul,
.webform-component--mandatory-fields p ul,
.form__element ~ p ul {
  display: block;
  padding-left: 0;
  margin-left: 0;
  overflow: hidden;
  padding-left: 0;
}

form small ul > li,
form .description ul > li,
.form__element__description ul > li,
.password-suggestions ul > li,
.webform-component--mandatory-fields p ul > li,
.form__element ~ p ul > li {
  position: relative;
  display: block;
  margin-bottom: 0.375rem;
  list-style: none;
}

form small ul > li:last-child,
form .description ul > li:last-child,
.form__element__description ul > li:last-child,
.password-suggestions ul > li:last-child,
.webform-component--mandatory-fields p ul > li:last-child,
.form__element ~ p ul > li:last-child {
  margin-bottom: 0;
}

form small ul > li,
form .description ul > li,
.form__element__description ul > li,
.password-suggestions ul > li,
.webform-component--mandatory-fields p ul > li,
.form__element ~ p ul > li {
  padding-left: 1.1875rem;
}

form small ul > li::before,
form .description ul > li::before,
.form__element__description ul > li::before,
.password-suggestions ul > li::before,
.webform-component--mandatory-fields p ul > li::before,
.form__element ~ p ul > li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.75rem;
  display: block;
  margin-top: -1px;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #e63639;
}

form small ul > li ul li::before,
form .description ul > li ul li::before,
.form__element__description ul > li ul li::before,
.password-suggestions ul > li ul li::before,
.webform-component--mandatory-fields p ul > li ul li::before,
.form__element ~ p ul > li ul li::before {
  border: 1px solid #e63639;
  border-radius: 50%;
  background: transparent;
}

form small ul > li ul li li::before,
form .description ul > li ul li li::before,
.form__element__description ul > li ul li li::before,
.password-suggestions ul > li ul li li::before,
.webform-component--mandatory-fields p ul > li ul li li::before,
.form__element ~ p ul > li ul li li::before {
  border: 0 none;
  border-radius: 0;
  background: #e63639;
}

form small ul > li,
form .description ul > li,
.form__element__description ul > li,
.password-suggestions ul > li,
.webform-component--mandatory-fields p ul > li,
.form__element ~ p ul > li {
  margin-top: 0.375rem;
  padding-left: 0.75rem;
}

form small ul > li::before,
form .description ul > li::before,
.form__element__description ul > li::before,
.password-suggestions ul > li::before,
.webform-component--mandatory-fields p ul > li::before,
.form__element ~ p ul > li::before {
  top: 0.5rem;
  font-size: 4px;
}

.grecaptcha-badge {
  z-index: 910;
}

.form__label {
  display: block;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.form__label.is-active {
  color: #e63639;
}

.form__label__required {
  display: none;
}

.form__label__not-required {
  display: inline-block;
  padding: 0 0.3125rem;
  color: #fff;
  background: #eb9532;
}

.js-form-required .form__label__not-required {
  display: none;
}

.form__element--error .form__label {
  color: #e74c3c;
}

input:not([type]), input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]),
textarea {
  -webkit-appearance: none;
  appearance: none;
  padding: 0.5625rem 0.625rem;
  width: 100%;
  border: 1px solid #d1d1d1;
  border-radius: 0;
  color: #303030;
  background: #fff;
  outline: none;
  transition: all 0.3s ease-in-out;
}

input:not([type]):-ms-input-placeholder, input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]):-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #d1d1d1;
  opacity: 1;
}

input:not([type])::placeholder, input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"])::placeholder,
textarea::placeholder {
  color: #d1d1d1;
  opacity: 1;
}

input:not([type]):focus, input:not([type]):focus:hover, input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]):focus, input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]):focus:hover,
textarea:focus,
textarea:focus:hover {
  border-color: #ec6366;
  outline: 0;
}

input:not([type])[disabled], input:not([type]):disabled, input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"])[disabled], input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]):disabled,
textarea[disabled],
textarea:disabled {
  opacity: .5;
  border-color: #e5e5e5;
  color: #e5e5e5;
  background: #fff;
}

input:not([type]).error, input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]).error,
textarea.error {
  border-color: #e74c3c;
  color: #e74c3c;
}

input.error {
  color: #e74c3c;
}

input.admin-menu-search {
  height: auto;
}

input[type="radio"] {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  transition: background-color ease-in-out 0.1s, border-color ease-in-out 0.1s, box-shadow ease-in-out 0.1s;
}

input[type="radio"]:checked {
  background: #e63639;
  box-shadow: inset 0 0 0 3px #fff;
}

input[type="radio"]:disabled:checked {
  background: #e5e5e5;
  box-shadow: inset 0 0 0 3px #fff;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.3125rem;
  border: 1px solid #e6e6e6;
  border-radius: 0.3125rem;
  background-color: #e6e6e6;
}

input[type="range"]::-webkit-slider-thumb {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  width: 0.9375rem;
  height: 0.9375rem;
  border: 1px solid #d1d1d1;
  border-radius: 0.1875rem;
  background-color: #fff;
}

input[type="range"]:focus, input[type="range"]:focus:hover {
  outline: 0;
}

select {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  height: 2.75rem;
  width: 100%;
  padding: 0 2.5rem 0 0.625rem;
  border: 1px solid #d1d1d1;
  border-radius: 0;
  line-height: 2.625rem;
  color: #303030;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #303030 50%), linear-gradient(135deg, #303030 50%, transparent 50%);
  background-position: calc(100% - 20px) 18px, calc(100% - 15px) 18px, calc(100% - 2.5em) 8px;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

select::-ms-expand {
  display: none;
}

select:focus, select:focus:hover {
  border-color: #ec6366;
  color: #e63639;
  outline: 0;
}

select:disabled, select[disabled] {
  border-color: #e5e5e5;
  border-style: dashed;
  color: #e5e5e5;
  background: #fff;
  opacity: .5;
}

.form__dropdown {
  position: relative;
}

.form__dropdown select {
  background-image: none;
}

.form__dropdown::after {
  content: "\f078";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.875rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #303030;
}

.form__dropdown::after {
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* stylelint-disable */
form .select2-container--default .select2-selection--multiple {
  min-height: 0;
  padding: 1.4375rem 1.25rem 0.375rem 1.25rem;
  border: 1px solid #d1d1d1;
  border-radius: 0;
  line-height: 0;
}

form .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  margin-left: -0.3125rem;
}

form .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  margin-bottom: 0;
}

form .select2-container--default .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice {
  line-height: 1.5;
}

form .select2-container--default .select2-selection--multiple input[type="search"] {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 none !important;
}

form .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #ec6366;
}

form .select2-container--default.select2-container--disabled .select2-selection--multiple {
  border-color: #e5e5e5;
}

/* stylelint-enable */
textarea {
  resize: vertical;
  overflow: auto;
  min-height: 8.75rem;
}

.form-textarea-wrapper {
  display: block;
}

.form-textarea-wrapper .grippie {
  display: none;
}

.webform-document-file .button {
  margin-top: 0.625rem;
}

.form-managed-file {
  -ms-flex-align: center;
  align-items: center;
}

.form-managed-file .messages {
  margin-bottom: 0.625rem;
}

.form-managed-file button {
  margin-top: 0.625rem;
}

@media (min-width: 768px) {
  .webform-document-file {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .webform-document-file .description {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .webform-document-file .button {
    margin-left: 0.625rem;
    margin-top: 0;
  }
  .file-upload-wrapper {
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto;
  }
  .form-managed-file {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .form-managed-file .messages {
    width: 100%;
  }
  .form-managed-file button {
    margin-top: 0;
    margin-left: 0.625rem;
  }
}

.button,
input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #e63639;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.font-text-01-loaded .button, .font-text-01-loaded
input[type="button"], .font-text-01-loaded input[type="reset"], .font-text-01-loaded input[type="submit"] {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.button, .button:visited,
input[type="button"],
input[type="button"]:visited, input[type="reset"], input[type="reset"]:visited, input[type="submit"], input[type="submit"]:visited {
  color: #fff;
}

.button:hover, .button:active,
input[type="button"]:hover,
input[type="button"]:active, input[type="reset"]:hover, input[type="reset"]:active, input[type="submit"]:hover, input[type="submit"]:active {
  border: 0 none;
  color: #fff;
  background: #e63639;
  outline: none;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.button:focus, .button:focus:hover,
input[type="button"]:focus,
input[type="button"]:focus:hover, input[type="reset"]:focus, input[type="reset"]:focus:hover, input[type="submit"]:focus, input[type="submit"]:focus:hover {
  outline: 0;
}

.button.disabled, .button:disabled, .button[disabled],
input[type="button"].disabled,
input[type="button"]:disabled,
input[type="button"][disabled], input[type="reset"].disabled, input[type="reset"]:disabled, input[type="reset"][disabled], input[type="submit"].disabled, input[type="submit"]:disabled, input[type="submit"][disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

.button--secondary {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #fff;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #e63639;
}

.font-text-01-loaded .button--secondary {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.button--secondary, .button--secondary:visited {
  color: #e63639;
}

.button--secondary:hover, .button--secondary:active {
  border: 0 none;
  color: #fff;
  background: #e63639;
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(230, 54, 57, 0);
}

.button--secondary:focus, .button--secondary:focus:hover {
  outline: 0;
}

.button--secondary.disabled, .button--secondary:disabled, .button--secondary[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

.button--negative {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #fff;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #fff;
}

.font-text-01-loaded .button--negative {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.button--negative, .button--negative:visited {
  color: #e63639;
}

.button--negative:hover, .button--negative:active {
  border: 0 none;
  color: #e63639;
  background: #fff;
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0);
}

.button--negative:focus, .button--negative:focus:hover {
  outline: 0;
}

.button--negative.disabled, .button--negative:disabled, .button--negative[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

.button--negative-secondary {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #fff;
}

.font-text-01-loaded .button--negative-secondary {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.button--negative-secondary, .button--negative-secondary:visited {
  color: #fff;
}

.button--negative-secondary:hover, .button--negative-secondary:active {
  border: 0 none;
  color: #e63639;
  background: #fff;
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0);
}

.button--negative-secondary:focus, .button--negative-secondary:focus:hover {
  outline: 0;
}

.button--negative-secondary.disabled, .button--negative-secondary:disabled, .button--negative-secondary[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

[id*="edit-cancel"],
[id*="edit-delete"] {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #fff;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #e63639;
}

.font-text-01-loaded [id*="edit-cancel"], .font-text-01-loaded
[id*="edit-delete"] {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

[id*="edit-cancel"], [id*="edit-cancel"]:visited,
[id*="edit-delete"],
[id*="edit-delete"]:visited {
  color: #e63639;
}

[id*="edit-cancel"]:hover, [id*="edit-cancel"]:active,
[id*="edit-delete"]:hover,
[id*="edit-delete"]:active {
  border: 0 none;
  color: #fff;
  background: #e63639;
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(230, 54, 57, 0);
}

[id*="edit-cancel"]:focus, [id*="edit-cancel"]:focus:hover,
[id*="edit-delete"]:focus,
[id*="edit-delete"]:focus:hover {
  outline: 0;
}

[id*="edit-cancel"].disabled, [id*="edit-cancel"]:disabled, [id*="edit-cancel"][disabled],
[id*="edit-delete"].disabled,
[id*="edit-delete"]:disabled,
[id*="edit-delete"][disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

.button--sm {
  padding: 0.5625rem 0.875rem 0.5625rem 0.875rem;
  font-size: 0.75rem;
  line-height: 0.875rem;
}

.button--md {
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.actions {
  margin-top: 0.625rem;
}

.actions .actions__divider,
.actions .button {
  display: block;
  margin-top: 0.625rem;
}

.actions .actions__divider {
  text-align: center;
}

@media (min-width: 768px) {
  .actions {
    margin-top: 0.625rem;
    margin-left: -0.625rem;
  }
  .actions .actions__divider {
    text-align: left;
  }
  .actions .actions__divider,
  .actions .button {
    display: inline-block;
    margin-left: 0.625rem;
  }
}

.text-long .cke-button,
.cke_editable .cke-button {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #e63639;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.font-text-01-loaded .text-long .cke-button, .font-text-01-loaded
.cke_editable .cke-button {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.text-long .cke-button, .text-long .cke-button:visited,
.cke_editable .cke-button,
.cke_editable .cke-button:visited {
  color: #fff;
}

.text-long .cke-button:hover, .text-long .cke-button:active,
.cke_editable .cke-button:hover,
.cke_editable .cke-button:active {
  border: 0 none;
  color: #fff;
  background: #e63639;
  outline: none;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.text-long .cke-button:focus, .text-long .cke-button:focus:hover,
.cke_editable .cke-button:focus,
.cke_editable .cke-button:focus:hover {
  outline: 0;
}

.text-long .cke-button.disabled, .text-long .cke-button:disabled, .text-long .cke-button[disabled],
.cke_editable .cke-button.disabled,
.cke_editable .cke-button:disabled,
.cke_editable .cke-button[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

.text-long .cke-button--secondary,
.cke_editable .cke-button--secondary {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #fff;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #e63639;
}

.font-text-01-loaded .text-long .cke-button--secondary, .font-text-01-loaded
.cke_editable .cke-button--secondary {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.text-long .cke-button--secondary, .text-long .cke-button--secondary:visited,
.cke_editable .cke-button--secondary,
.cke_editable .cke-button--secondary:visited {
  color: #e63639;
}

.text-long .cke-button--secondary:hover, .text-long .cke-button--secondary:active,
.cke_editable .cke-button--secondary:hover,
.cke_editable .cke-button--secondary:active {
  border: 0 none;
  color: #fff;
  background: #e63639;
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(230, 54, 57, 0);
}

.text-long .cke-button--secondary:focus, .text-long .cke-button--secondary:focus:hover,
.cke_editable .cke-button--secondary:focus,
.cke_editable .cke-button--secondary:focus:hover {
  outline: 0;
}

.text-long .cke-button--secondary.disabled, .text-long .cke-button--secondary:disabled, .text-long .cke-button--secondary[disabled],
.cke_editable .cke-button--secondary.disabled,
.cke_editable .cke-button--secondary:disabled,
.cke_editable .cke-button--secondary[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

.text-long p .actions__divider,
.cke_editable p .actions__divider {
  margin-right: 0.625rem;
}

.text-long p .cke-button,
.cke_editable p .cke-button {
  margin-top: 0.625rem;
  margin-right: 0.625rem;
  border-bottom: 0 none;
}

.text-long p .cke-button:last-child,
.cke_editable p .cke-button:last-child {
  margin-right: 0;
}

.text-long p .cke-button::before, .text-long p .cke-button::after,
.cke_editable p .cke-button::before,
.cke_editable p .cke-button::after {
  display: none;
}

.text-long p .cke-button--secondary,
.cke_editable p .cke-button--secondary {
  margin-top: 0.625rem;
  margin-right: 0.625rem;
  border-bottom: 0 none;
}

.text-long p .cke-button--secondary:last-child,
.cke_editable p .cke-button--secondary:last-child {
  margin-right: 0;
}

.text-long p .cke-button--secondary::before, .text-long p .cke-button--secondary::after,
.cke_editable p .cke-button--secondary::before,
.cke_editable p .cke-button--secondary::after {
  display: none;
}

table {
  table-layout: fixed;
  margin: 0;
  padding: 0;
  width: 100%;
  border: 1px solid #d1d1d1;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

table.is-striped tbody tr:nth-child(odd) {
  background: #d1d1d1;
}

table.is-striped tbody tr:nth-child(odd) td {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}

table.is-striped tbody tr:nth-child(odd) td:first-child {
  border-left: 1px solid #d1d1d1;
}

table.is-striped tbody tr:nth-child(odd) td:last-child {
  border-right: 1px solid #d1d1d1;
}

th {
  padding: 0.625rem;
  border: 1px solid #e63639;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  color: #fff;
  background: #ec6366;
}

th:first-child {
  border-left: 1px solid #e63639;
}

th:last-child {
  border-right: 1px solid #e63639;
}

td {
  padding: 0.625rem;
  border-bottom: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  border-left: 1px solid #d1d1d1;
  vertical-align: top;
}

thead th,
tfoot th {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  background: #e63639;
}

thead th:first-child,
tfoot th:first-child {
  border-left: 1px solid #e63639;
}

thead th:last-child,
tfoot th:last-child {
  border-right: 1px solid #e63639;
}

tbody td {
  padding: 0.625rem;
}

tr.odd {
  background: #d1d1d1;
}

tr.odd td {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}

tr.odd td:first-child {
  border-left: 1px solid #d1d1d1;
}

tr.odd td:last-child {
  border-right: 1px solid #d1d1d1;
}

caption {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  text-align: left;
  font-style: italic;
  color: #b2b2b2;
}

@media (max-width: 767px) {
  .table-responsive.is-reformatted {
    /* Force table to not be like tables anymore */
  }
  .table-responsive.is-reformatted caption {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #d1d1d1;
  }
  .table-responsive.is-reformatted table,
  .table-responsive.is-reformatted thead,
  .table-responsive.is-reformatted tbody,
  .table-responsive.is-reformatted th,
  .table-responsive.is-reformatted td,
  .table-responsive.is-reformatted tr {
    display: block;
  }
  .table-responsive.is-reformatted thead {
    border: 0 none;
    background: transparent;
  }
  .table-responsive.is-reformatted thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table-responsive.is-reformatted tr {
    border: 0 none;
  }
  .table-responsive.is-reformatted tr.odd td {
    border-bottom: 1px solid #fff;
  }
  .table-responsive.is-reformatted td {
    /* Behave  like a "row" */
    position: relative;
    border: none;
    border-bottom: 1px solid #d1d1d1;
  }
  .table-responsive.is-reformatted td::before {
    content: attr(data-title) ": ";
    /* Now like a table header */
    /* Top/left values mimic padding */
    display: block;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
  }
  .table-responsive.is-reformatted table.no-th td {
    position: static;
    width: auto;
  }
  .table-responsive.is-reformatted table.no-th td::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .table-responsive.has-scroll {
    position: relative;
    margin-bottom: 2.5rem;
    border: 1px solid #d1d1d1;
  }
  .table-responsive.has-scroll table {
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
    empty-cells: show;
    margin-bottom: 0;
    border: 0 none;
  }
  .table-responsive.has-scroll.js-table--no-th {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    min-height: .01%;
  }
  .table-responsive.has-scroll.js-table--th-row {
    overflow: hidden;
  }
  .table-responsive.has-scroll.js-table--th-row table {
    position: relative;
    width: 100%;
    padding: 0;
  }
  .table-responsive.has-scroll.js-table--th-row thead {
    position: absolute;
    top: 0;
    display: block;
    height: 100%;
    width: 7.5rem;
  }
  .table-responsive.has-scroll.js-table--th-row thead tr {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table-responsive.has-scroll.js-table--th-row thead tr:last-child {
    border-bottom: 0 none;
  }
  .table-responsive.has-scroll.js-table--th-row thead th,
  .table-responsive.has-scroll.js-table--th-row thead td {
    display: block;
    overflow: hidden;
    min-height: 6.25rem;
    text-overflow: ellipsis;
    word-wrap: normal;
    border-left: 1px solid #e63639;
    border-right: 1px solid #e63639;
    border-bottom: 1px solid white;
  }
  .table-responsive.has-scroll.js-table--th-row tbody {
    display: -ms-flexbox;
    display: flex;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: auto;
    overflow-y: hidden;
    width: calc(100vw - 120px - 40px);
  }
  .table-responsive.has-scroll.js-table--th-row tbody tr {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table-responsive.has-scroll.js-table--th-row tbody th,
  .table-responsive.has-scroll.js-table--th-row tbody td {
    display: block;
    min-height: 6.25rem;
  }
  .table-responsive.has-scroll.js-table--th-top thead {
    left: 0;
  }
  .table-responsive.has-scroll.js-table--th-top tbody {
    margin-left: 7.5rem;
  }
  .table-responsive.has-scroll.js-table--th-bottom thead {
    right: 0;
  }
  .table-responsive.has-scroll.js-table--th-bottom tbody {
    margin-right: 7.5rem;
  }
  .table-responsive.has-scroll.js-table--th-col table {
    display: block;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    width: 100%;
  }
  .table-responsive.has-scroll.js-table--th-col tbody {
    position: static;
  }
  .table-responsive.has-scroll.js-table--th-col tr {
    position: static;
  }
  .table-responsive.has-scroll.js-table--th-col tr:last-child .th__content {
    border-bottom: 0 none;
  }
  .table-responsive.has-scroll.js-table--th-col th {
    padding: 0;
    width: 0;
    border: 0;
    background: transparent none;
  }
  .table-responsive.has-scroll.js-table--th-col .th__content {
    position: absolute;
    width: 7.5rem;
    padding: 0.625rem;
    border-bottom: 1px solid #fff;
    background: #e63639;
  }
  .table-responsive.has-scroll.js-table--th-left {
    padding-left: 7.5rem;
  }
  .table-responsive.has-scroll.js-table--th-left .th__content {
    left: 0;
  }
  .table-responsive.has-scroll.js-table--th-right {
    padding-right: 7.5rem;
  }
  .table-responsive.has-scroll.js-table--th-right .th__content {
    right: 0;
  }
}

.text-long table {
  margin-bottom: 1.5rem;
}

.text-long table.no-margin {
  margin-bottom: 0;
}

.tabs__link {
  display: block;
  padding: 0.625rem 0.9375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  line-height: 1.125rem;
  background-color: #e5e5e5;
  font-size: 0.875rem;
  line-height: 1.125rem;
}

.tabs__link, .tabs__link:visited {
  color: #fff;
  background-color: #e63639;
}

.tabs__link:hover {
  color: #fff;
  background-color: #e63639;
}

.tabs__link.is-active {
  color: #fff;
  background-color: #e63639;
}

@media (min-width: 768px) {
  .tabs li {
    display: inline-block;
  }
  .tabs__link {
    display: inline-block;
    border-top: 0 none;
  }
  .tabs__link.is-active {
    color: #e63639;
    background-color: #fff;
  }
}

.ck-widget.bs_grid .ck-widget.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}

@media (min-width: 768px) {
  .ck-widget.bs_grid .ck-widget.row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 940px) {
  .ck-widget.bs_grid .ck-widget.row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .ck-widget.bs_grid .ck-widget.row {
    grid-template-columns: repeat(5, 1fr);
  }
}

.ajax-progress-throbber {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
}

.ajax-progress-throbber .throbber {
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  border: 3px solid rgba(230, 54, 57, 0.2);
  border-top-color: #e63639;
  border-radius: 100%;
  background-image: none;
  animation: spin 1s infinite linear;
  pointer-events: none;
}

button + .ajax-progress-throbber {
  margin-left: 0.625rem;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

div.krumo-root {
  color: #000;
}

div.krumo-root * {
  float: none;
}

div.krumo-root a.krumo-name {
  color: #404000;
}

body .block-place-region {
  padding: 0;
  margin: 0.3125rem;
}

body .block-place-region a.button {
  display: block;
  padding: 1.25rem;
  width: auto;
  border: 0 none;
  background-color: #fff;
}

body .block-place-region a.button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.quickedit-field.quickedit-highlighted,
.quickedit-form.quickedit-highlighted,
.quickedit-field .quickedit-highlighted {
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
}

.quickedit-form {
  max-width: 18.75rem;
}

.quickedit-form.quickedit-highlighted {
  margin: 0.3125rem 0;
}

.quickedit-form .messages {
  margin-bottom: 0.625rem;
}

.quickedit-form .messages abbr.warning {
  color: #fff;
}

.quickedit-form abbr.warning {
  color: #e74c3c;
}

.quickedit-form .table {
  table-layout: auto;
}

.quickedit-form .table th h4 {
  margin: 0;
}

.quickedit-form .table td {
  padding: 0.625rem;
}

.quickedit-form .link, .quickedit-form .link:visited {
  color: #e63639;
}

.quickedit-form .tabledrag-toggle-weight-wrapper {
  margin-bottom: 1.5rem;
  text-align: right;
}

.quickedit-form .field-multiple-drag {
  padding: 0.625rem;
}

.quickedit-form .tabledrag-handle .handle::before {
  content: "\f0b2";
  display: inline-block;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #303030;
}

.quickedit-form .form__element {
  margin-bottom: 1.5rem;
}

.quickedit-form select {
  min-width: 5rem;
}

.quickedit-form [id*="-view-mode"],
.quickedit-form [id*="-layout"],
.quickedit-form [id*="-field-p-bg-color"] {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.quickedit-form [id*="-view-mode"] .form-type--radio,
.quickedit-form [id*="-layout"] .form-type--radio,
.quickedit-form [id*="-field-p-bg-color"] .form-type--radio {
  padding: 0 0.625rem;
  width: auto;
}

.quickedit-form .form-submit {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #e63639;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  margin-top: 1.5rem;
}

.font-text-01-loaded .quickedit-form .form-submit {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.quickedit-form .form-submit, .quickedit-form .form-submit:visited {
  color: #fff;
}

.quickedit-form .form-submit:hover, .quickedit-form .form-submit:active {
  border: 0 none;
  color: #fff;
  background: #e63639;
  outline: none;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.quickedit-form .form-submit:focus, .quickedit-form .form-submit:focus:hover {
  outline: 0;
}

.quickedit-form .form-submit.disabled, .quickedit-form .form-submit:disabled, .quickedit-form .form-submit[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

.quickedit-form .dropbutton-widget button,
.quickedit-form .dropbutton-widget .button,
.quickedit-form .dropbutton-widget .dropbutton-toggle button {
  padding: 0 !important;
  margin: 0 !important;
  color: #e63639 !important;
  background: none !important;
  box-shadow: none !important;
}

.quickedit-form .dropbutton-widget button::before, .quickedit-form .dropbutton-widget button::after,
.quickedit-form .dropbutton-widget .button::before,
.quickedit-form .dropbutton-widget .button::after,
.quickedit-form .dropbutton-widget .dropbutton-toggle button::before,
.quickedit-form .dropbutton-widget .dropbutton-toggle button::after {
  display: none !important;
}

.quickedit-form .dropbutton li {
  margin: 0;
  padding: 0.3125rem;
}

.ui-dialog-titlebar {
  padding: 0.3125rem;
}

.ui-dialog-content {
  padding: 0.3125rem;
}

@media (min-width: 480px) {
  .quickedit-form {
    max-width: 26.25rem;
  }
}

@media (min-width: 768px) {
  .quickedit-form {
    max-width: 37.5rem;
  }
}

.toolbar-fixed .toolbar-bar {
  z-index: 990;
}

.toolbar-horizontal.toolbar-fixed {
  padding-top: 4.9375rem !important;
}

.toolbar-tray a, .toolbar-tray a:visited {
  color: #565656;
}

.block__branding--header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: end;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.block__branding__image--header {
  position: relative;
  display: block;
}

.block__branding__image--header img {
  margin: auto;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 940px) {
  .block__branding__image--header img {
    margin: 6px 0 0 10px;
  }
}

.block__branding__name--header,
.block__branding__slogan--header {
  display: block;
  width: 11em;
  margin: 1em 0;
  font-weight: normal;
  font-size: 1.4em;
  text-align: center;
  color: #2d1812 !important;
}

.cookie-policy {
  position: fixed;
  bottom: -12.5rem;
  left: 0;
  right: 0;
  z-index: 1010;
  padding: 0.9375rem 0;
  color: #fff;
  background: #ff6763;
  transition: all 0.3s ease-in-out;
}

.cookiePolicy-is-visible .cookie-policy {
  bottom: 0;
}

.sb-show-main .cookie-policy {
  bottom: auto;
  top: 0;
}

.cookie-policy__message span {
  display: block;
}

.cookie-policy__message a {
  position: relative;
  position: relative;
  display: inline;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.cookie-policy__message a, .cookie-policy__message a:visited {
  color: #fff;
  border-bottom: 1px solid white;
}

.cookie-policy__message a:hover {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.cookie-policy__message a:active {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.cookie-policy__message--first {
  font-weight: 700;
}

.cookie-policy__dismiss {
  margin-top: 1.25rem;
}

.cookie-policy__dismiss a {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #e63639;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.font-text-01-loaded .cookie-policy__dismiss a {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.cookie-policy__dismiss a, .cookie-policy__dismiss a:visited {
  color: #fff;
}

.cookie-policy__dismiss a:hover, .cookie-policy__dismiss a:active {
  border: 0 none;
  color: #fff;
  background: #e63639;
  outline: none;
}

.cookie-policy__dismiss a:focus, .cookie-policy__dismiss a:focus:hover {
  outline: 0;
}

.cookie-policy__dismiss a.disabled, .cookie-policy__dismiss a:disabled, .cookie-policy__dismiss a[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

@media (min-width: 768px) {
  .cookie-policy {
    padding: 1.5625rem 0;
  }
  .cookie-policy .container {
    display: -ms-flexbox;
    display: flex;
  }
  .cookie-policy__message {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .cookie-policy__dismiss {
    margin-top: 0.1875rem;
  }
}

.facets-widget-checkbox .item-list__checkbox {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facets-widget-checkbox .facet-item {
  margin: 0.3125rem 0 0;
}

.facets-widget-checkbox .facet-item:first-child {
  margin-top: 0;
}

.facets-searchbox-checkbox-wrapper {
  position: relative;
  border-radius: 1.4375rem;
  transition: box-shadow 0.3s ease-in-out;
}

.facets-searchbox-checkbox-wrapper::before {
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
}

.facets-searchbox-checkbox-wrapper.js-open::before {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.facets-searchbox-checkbox-label {
  display: block;
  margin: 0;
  padding: 0.5rem 3.125rem 0.6875rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
}

.facets-widget-searchbox-checkbox {
  position: relative;
  display: none;
  padding: 0 1.25rem 1.0625rem;
}

.facets-widget-searchbox-checkbox input:not([type]), .facets-widget-searchbox-checkbox input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]) {
  padding-left: 3.125rem;
}

.facets-widget-searchbox {
  --clr-form-bg: var(--clr-off-white);
  --clr-form-border: var(--clr-border);
  --clr-form-disabled-bg: var(--clr-off-white);
  --clr-form-disabled-border: var(--clr-border);
}

.facets-widget-searchbox-list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  overflow-y: auto;
  max-height: 11.875rem;
  margin-top: 0.625rem;
  padding: 0.1875rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.facets-widget-searchbox-list::-webkit-scrollbar {
  width: 0.375rem;
}

.facets-widget-searchbox-list::-webkit-scrollbar-track {
  border-radius: 0.1875rem;
}

.facets-widget-searchbox-list::-webkit-scrollbar-thumb {
  border-radius: 0.1875rem;
}

.facets-widget-searchbox-list .facet-item {
  margin: 0.3125rem 0 0;
}

.facets-widget-searchbox-list .facet-item:first-child {
  margin-top: 0;
}

@media (min-width: 940px) {
  .facets-searchbox-checkbox-wrapper {
    z-index: 1;
  }
  .facets-searchbox-checkbox-label {
    border-radius: 1.4375rem;
  }
  .facets-widget-searchbox-checkbox {
    position: absolute;
    z-index: -1;
    top: 1.4375rem;
    left: 0;
    right: 0;
    border-radius: 0 0 1.4375rem 1.4375rem;
    transition: box-shadow 0.3s ease-in-out;
  }
  .facets-widget-searchbox-checkbox::before {
    top: 1.9375rem;
  }
  .facets-widget-searchbox {
    margin-top: 1.4375rem;
  }
}

.block[class*="block--maguza-sorts"] .search-api-sorts {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
}

.block[class*="block--maguza-sorts"] .search-api-sorts__item {
  margin: 0 0.625rem 0 0;
}

.block[class*="block--maguza-sorts"] .search-api-sorts__item:last-child {
  margin-right: 0;
}

.block[class*="block--maguza-sorts"] .sort-item {
  font-weight: 400;
  text-decoration: none;
}

.block[class*="block--maguza-sorts"] .sort-item.is-active {
  font-weight: 700;
}

.block[class*="block--maguza-sorts"] .toggle--wrapper {
  position: relative;
  width: 2.5rem;
  height: 1.25rem;
  margin-top: 0.0625rem;
}

.block[class*="block--maguza-sorts"] .toggle--checkbox + label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  border-radius: 1.25rem;
  font-size: 0;
  cursor: pointer;
}

.block[class*="block--maguza-sorts"] .toggle--checkbox + label::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 100%;
  opacity: 1;
}

.block[class*="block--maguza-sorts"] .toggle--checkbox:checked + label::before {
  -ms-transform: translateX(1.25rem);
  transform: translateX(1.25rem);
}

.block[class*="block--maguza-sorts"] input[type="checkbox"] + label::before {
  transition: 0.2s;
}

.block--provider-facets-summary ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: -0.625rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.block--provider-facets-summary li {
  margin: 0.625rem 0.625rem 0 0;
}

.block--provider-facets-summary li:last-child {
  margin-right: 0;
}

.block--provider-facets-summary .facet-item__status {
  display: none;
}

.block--provider-facets-summary .facet-item__value::first-letter {
  text-transform: capitalize;
}

.block--provider-facets-summary .facet-summary-item--facet a {
  padding-right: 1.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-align: center;
  align-items: center;
}

.block--provider-facets-summary .facet-summary-item--facet a::before {
  content: "\f410";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.375rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
}

.block--provider-facets-summary .facet-summary-item--facet a::before {
  font-size: 1.1rem;
  color: #020000;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}

.block--provider-facets-summary .facet-summary-item--clear a {
  color: #e63639;
}

@media (max-width: 939px) {
  .block--provider-facets-summary .facet-summary-item--clear {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-top: 0.9375rem;
  }
}

@media (min-width: 940px) {
  .block--provider-facets-summary .facet-summary-item--clear {
    margin-left: 0.3125rem;
  }
}

.grid-view .view__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}

@media (min-width: 940px) {
  .grid-view .view__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid-view .view__content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-view .field-media-image {
  width: 8em;
}

.grid-view img {
  border-radius: 1rem;
}

.grid-view .node__links {
  text-align: center;
}

.grid-view .node__links ul.inline a {
  border: none;
  text-decoration: none;
}

@media (min-width: 940px) {
  .grid-view .node__links {
    text-align: left;
  }
  .grid-view .node__links ul.inline a {
    color: #020000;
  }
}

.grid-view-max-2 .view__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  text-align: center;
}

@media (min-width: 1200px) {
  .grid-view-max-2 .view__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-view-max-2 .view__content iframe {
  width: 100%;
}

.breadcrumb {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.breadcrumb__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 1rem;
  line-height: 1.5rem;
}

.font-text-01-loaded .breadcrumb__item {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.breadcrumb__item::before {
  content: "\f054";
  display: inline-block;
  margin: 0 5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.5rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #e63639;
}

.breadcrumb__item::before {
  vertical-align: baseline;
  font-size: 0.8rem;
}

.breadcrumb__item:first-child::before {
  display: none;
}

.breadcrumb__link {
  position: relative;
  display: inline;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.breadcrumb__link, .breadcrumb__link:visited {
  color: #e63639;
  border-bottom: 1px solid rgba(230, 54, 57, 0);
}

.breadcrumb__link:hover {
  color: #e63639;
  border-bottom: 1px solid #e63639;
}

.breadcrumb__link:active {
  color: #e63639;
  border-bottom: 1px solid #e63639;
}

.breadcrumb__link::after {
  bottom: 1px;
}

.inline-menu,
.menu--inline {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inline-menu__item,
.menu__item--inline {
  margin: 0 1.5rem 0.9375rem 0;
}

@media (min-width: 768px) {
  .inline-menu__item,
  .menu__item--inline {
    display: inline;
    margin-bottom: 1.5rem;
  }
}

.inline-menu__item:last-child,
.menu__item--inline:last-child {
  margin-right: 0;
}

.doormat .menu,
.footer .menu {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  font-size: 0.9rem;
}

.doormat .menu__item,
.footer .menu__item {
  max-height: 100em;
  margin: 0.5em 1em;
  list-style: none;
  font-weight: bold;
}

.doormat .menu--sub,
.footer .menu--sub {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}

.doormat .menu--sub a,
.footer .menu--sub a {
  color: #fff;
}

.doormat .menu__item--sub,
.footer .menu__item--sub {
  overflow: visible;
  height: 1em;
  font-weight: normal;
}

@media (min-width: 940px) {
  .doormat .menu,
  .footer .menu {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .doormat .menu--sub,
  .footer .menu--sub {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.doormat .menu__item--with-sub .expand-sub,
.footer .menu__item--with-sub .expand-sub {
  display: none;
}

.nav__item--language {
  display: inline;
}

.nav--language--dropdown {
  display: none;
  text-align: right;
}

.nav--language--dropdown.js-active {
  display: block;
}

.nav--language--dropdown > h2 {
  position: absolute !important;
  display: block !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  overflow: hidden !important;
  height: 0.0625rem !important;
  width: 0.0625rem !important;
  word-wrap: normal !important;
}

.nav--language--dropdown > h2.focusable:focus {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  z-index: 10010 !important;
  display: block !important;
  clip: auto !important;
  overflow: visible !important;
  height: auto !important;
  width: auto !important;
  background: #fff;
}

.nav__active--language--dropdown {
  cursor: pointer;
  position: relative;
  padding: 0.3125rem 1rem 0.3125rem 0;
}

.nav__active--language--dropdown::before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "\f078";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.625rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
}

.nav__active--language--dropdown::before {
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav__items--language--dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.js-open > .nav__items--language--dropdown {
  box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.2);
}

.nav__item--language--dropdown {
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s ease-in-out;
}

.js-open > ul > .nav__item--language--dropdown {
  max-height: 6.25rem;
}

.nav__item--language--dropdown a {
  display: block;
  padding: 0.3125rem 0.625rem;
  border-bottom: 1px solid #d1d1d1;
}

.nav__item--language--dropdown a::after {
  display: none;
  content: "";
}

.nav__item--language--dropdown:last-child > a {
  border-bottom: 0 none;
}

.page-wrapper {
  margin-top: 0 !important;
}

.nav__items--language {
  text-align: left;
  margin-left: 1em;
  margin-right: 1em;
  padding-top: 1.5em;
  font-size: 0.9rem;
}

@media (min-width: 940px) {
  .nav__items--language {
    text-align: right;
  }
}

.nav__items--language li {
  padding: 2em 0.5em 0.5em;
}

.nav__items--language .is-active {
  border-radius: 0 0 0.6rem 0.6rem;
  color: #fff;
  background: #e63639;
}

@media (min-width: 768px) {
  .nav--language--dropdown {
    position: relative;
    z-index: 6;
  }
}

.nav--main {
  -ms-flex: 4;
  flex: 4;
}

.nav--main > .menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 940px) {
  .nav--main > .menu {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}

.menu__item--main a,
.menu__item--main span {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: bold;
  text-align: center;
  color: #2d1812;
}

.menu {
  display: -ms-flexbox;
  display: flex;
}

.wrapper--navigation__content {
  /*  .menu__item--with-sub {

    &.js-open {

      .menu__item--sub {
        //
      }
    }
  } */
}

.wrapper--navigation__content .nav > .menu--main > .menu__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 0.7rem;
}

@media (min-width: 1200px) {
  .wrapper--navigation__content .nav > .menu--main > .menu__item {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.wrapper--navigation__content .nav > .menu--main > .menu__item:hover {
  border-radius: 1rem;
}

.wrapper--navigation__content .nav > .menu--main > .menu__item--active {
  color: #000;
}

.wrapper--navigation__content .menu--sub {
  z-index: 999;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  border-radius: 1rem;
  font-size: 0.8rem;
  background-color: #000;
  margin-top: 0.5em;
  opacity: 0.7;
}

@media (min-width: 1200px) {
  .wrapper--navigation__content .menu--sub {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.wrapper--navigation__content .menu--sub .menu__item {
  width: 100%;
  text-align: center;
}

.wrapper--navigation__content .menu--sub .menu__link {
  color: #fff;
}

.wrapper--navigation__content .menu--sub .menu__link.menu__link--active {
  color: #fff;
}

.wrapper--navigation__content .menu__link.menu__link--active {
  color: #000;
}

.wrapper--navigation__content .menu__link:hover {
  border-radius: 1rem 1rem 0 0;
}

.menu__item--with-sub {
  position: relative;
}

.menu__item--with-sub .expand-sub {
  display: block;
  height: 2.375rem;
  width: 2.375rem;
  -ms-transform: rotate(0);
  transform: rotate(0);
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}

.menu__item--with-sub .expand-sub::before {
  content: "\f078";
  display: inline-block;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.625rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
}

.menu__item--with-sub .expand-sub::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-style: normal;
}

.menu__item--with-sub.js-open > .menu__item--sub {
  max-height: 6.25rem;
  color: #fff;
}

.menu__item--with-sub.js-open .expand-sub {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all .25s ease-in;
}

.menu__item--with-sub > .menu__item--sub {
  overflow: hidden;
  max-height: 0;
  transition: all .25s ease-out;
}

.menu__item--sub {
  overflow: hidden;
  max-height: 0;
  transition: all .25s ease-out;
}

.menu__item.js-open .menu__item--sub {
  max-height: 6.25rem;
  transition: all .25s ease-in;
}

@media (max-width: 767px) {
  .wrapper--navigation__content .menu__link {
    cursor: pointer;
    display: block;
    padding: 0.5625rem 3.75rem;
  }
  .wrapper--navigation__content .js-open > .menu--sub {
    background-color: #ec6366;
  }
  .wrapper--navigation__content .menu__link--sub {
    padding-left: 5.625rem;
  }
}

@media (min-width: 768px) {
  .navigation__toggle-expand {
    display: none;
  }
  .wrapper--navigation__content .menu__item--with-sub .expand-sub {
    width: 1.5rem;
    height: 1.5rem;
  }
  .wrapper--navigation__content .menu--sub {
    position: absolute;
    top: 100%;
    left: 0;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 9.375rem;
    margin: 0;
    padding: 0 0.5rem;
    line-height: 2;
    margin-top: 0.5em;
  }
  .wrapper--navigation__content .menu--sub:first-child {
    margin-top: 0.5rem;
  }
  .wrapper--navigation__content .menu--sub:last-child {
    margin-bottom: 0.5rem;
  }
  .wrapper--navigation__content .menu__item--sub {
    margin: 0;
  }
}

.tabs {
  border-radius: 0.5em 0.5em 0 0;
  background-color: #e63639;
}

.tabs__nav {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 0;
  text-align: right;
}

.tabs__nav li:first-child a {
  border-radius: 10px 0 0;
}

.tabs__nav li:last-child a {
  border-radius: 0 10px 0 0;
}

.tabs__tab {
  display: none;
}

.tabs__tab.is-active {
  display: inline-block;
}

.tabs__content {
  padding: 0.9375rem;
}

.tabs.no-js .tabs__tab.is-active {
  display: block;
}

@media (min-width: 768px) {
  .tabs__nav {
    padding: 0.9375rem 0.9375rem 0 0.9375rem;
  }
}

.pager--mini {
  margin: 1.5rem 0;
}

.pager__items--mini {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.pager__item--mini {
  display: inline;
  margin: 0 0.625rem;
}

.pager__item--mini.is-active {
  font-weight: 700;
}

.pager__link--mini {
  display: inline-block;
  background-color: #e63639;
}

.pager__link--mini, .pager__link--mini:visited {
  text-decoration: none;
  color: #fff;
}

.pager__link--mini:hover .page__link__icon--prev {
  left: -3px;
}

.pager__link--mini:hover .page__link__icon--next {
  left: 3px;
}

.pager__link--mini.is-active, .pager__link--mini:hover {
  color: #fff;
}

.pager__link--mini.is-disabled {
  background-color: #e5e5e5;
}

.pager__link--mini.is-disabled .page__link__icon {
  left: 0;
}

.pager__link--mini .page__link__icon {
  position: relative;
  left: 0;
  display: inline-block;
  padding: 0 0.125rem;
  min-width: 2rem;
  line-height: 2rem;
  transition: all 0.3s ease-in-out;
}

.is-disabled .pager__link--mini .page__link__icon {
  opacity: .5;
}

.pager__link--mini .page__link__icon::before {
  position: relative;
  top: -1px;
}

.pager__link--mini .page__link__icon--prev::before {
  content: "\f053";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.875rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #fff;
}

.pager__link--mini .page__link__icon--next::before {
  content: "\f054";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.875rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #fff;
}

.pager--full {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

.pager__items--full {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 0;
}

.pager__item--full {
  display: inline-block;
  margin: 0 1px 0 0;
  font-size: 1rem;
  line-height: 1.5rem;
}

.pager__item--full.is-active {
  font-weight: 700;
}

.pager__item--ellipsis {
  display: inline-block;
  padding: 0 0.125rem;
  min-width: 1.5rem;
}

.pager__link--full {
  display: inline-block;
  padding: 0 0.125rem;
  min-width: 1.5rem;
  line-height: 1.5rem;
  background-color: transparent;
}

.pager__link--full, .pager__link--full:visited {
  text-decoration: none;
  color: #303030;
}

.pager__link--full:hover .page__link__icon, .pager__link--full:hover .page__link__icon::before {
  color: #fff;
}

.pager__link--full:hover .page__link__icon--first,
.pager__link--full:hover .page__link__icon--prev {
  left: -3px;
}

.pager__link--full:hover .page__link__icon--next,
.pager__link--full:hover .page__link__icon--last {
  left: 3px;
}

.pager__link--full.is-active, .pager__link--full:hover {
  color: #fff;
  background-color: #e63639;
}

.pager__link--full.is-disabled {
  background-color: #e5e5e5;
}

.pager__link--full.is-disabled .page__link__icon {
  left: 0;
}

.pager__link--full.pager__link--prev, .pager__link--full.pager__link--next {
  padding: 0 0.3125rem;
  text-transform: uppercase;
}

.pager__link--full.pager__link--first, .pager__link--full.pager__link--last {
  padding: 0 0.3125rem;
  text-transform: uppercase;
}

.pager__link--full .page__link__icon {
  position: relative;
  left: 0;
  top: -1px;
  display: inline-block;
  padding: 0 0.125rem;
  min-width: 1.5rem;
  line-height: 1.5rem;
  transition: all 0.3s ease-in-out;
}

.pager__link--full .page__link__icon::before {
  transition: all 0.3s ease-in-out;
}

.is-disabled .pager__link--full .page__link__icon {
  opacity: .5;
}

.pager__link--full .page__link__icon--arrow-left::before {
  content: "\f053";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.625rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #303030;
}

.pager__link--full .page__link__icon--arrow-right::before {
  content: "\f054";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.625rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #303030;
}

.pager__link--full .page__link__icon--double-arrow-left::before {
  content: "\f100";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.625rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #303030;
}

.pager__link--full .page__link__icon--double-arrow-right::before {
  content: "\f101";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.625rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #303030;
}

@media (min-width: 768px) {
  .pager__link--full.page__link__icon--first a, .pager__link--full.page__link__icon--prev a, .pager__link--full.page__link__icon--next a, .pager__link--full.page__link__icon--last a {
    font-size: 0.75rem;
    line-height: 1.625rem;
  }
  .pager__link--full.page__link__icon--first a::after, .pager__link--full.page__link__icon--prev a::after, .pager__link--full.page__link__icon--next a::after, .pager__link--full.page__link__icon--last a::after {
    display: none;
  }
}

.block--search-redirect-block form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.block--search-redirect-block form .form__element {
  margin-bottom: 0.5em;
  margin-right: 0.5em;
}

.block--search-redirect-block form button {
  margin: 0.5em 0;
}

@media (min-width: 768px) {
  .block--search-redirect-block form {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .block--search-redirect-block form .form__element {
    margin-bottom: 0;
  }
  .block--search-redirect-block form button {
    margin: 0 0.5em;
  }
}

@media (max-width: 767px) {
  .block--region-header_top.block--search h2 {
    cursor: pointer;
    position: relative;
    display: block;
    margin: 0;
    padding-top: 2.125rem;
    height: 3.75rem;
    width: 3.75rem;
    font-size: 0.6875rem;
    line-height: 0.9375rem;
    font-weight: normal;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
  .block--region-header_top.block--search h2::before {
    content: "\f002";
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    vertical-align: middle;
    font-size: 1.5rem;
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
  }
  .block--region-header_top.block--search h2::after {
    content: "\f00d";
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    vertical-align: middle;
    font-size: 1.5rem;
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
  }
  .block--region-header_top.block--search h2::before, .block--region-header_top.block--search h2::after {
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    padding-top: 0.625rem;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: opacity 0.3s ease-in-out;
  }
  .block--region-header_top.block--search h2::before {
    opacity: 1;
  }
  .block--region-header_top.block--search h2::after {
    opacity: 0;
  }
  .block--region-header_top.block--search h2:hover {
    color: #e63639;
  }
  .block--region-header_top.block--search.js-open h2::before {
    opacity: 0;
  }
  .block--region-header_top.block--search.js-open h2::after {
    opacity: 1;
  }
  .block--region-header_top.block--search form {
    position: fixed;
    left: 0;
    bottom: 3.75rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    height: 0;
    transition: all 0.3s ease-in-out;
  }
  .block--region-header_top.block--search .form-type--search {
    padding: 1.875rem 1.875rem 0 1.875rem;
  }
  .block--region-header_top.block--search .form-type--search input {
    border: 0 none;
  }
  .block--region-header_top.block--search .form-actions {
    padding: 0 1.875rem 1.875rem 1.875rem;
    text-align: center;
  }
  .block--region-header_top.block--search .form-actions button {
    cursor: pointer;
    display: inline-block;
    border: 0 none;
    border-radius: 0;
    padding: 0.625rem 1.1875rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: #fff;
    background-repeat: no-repeat;
    outline: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: inset 0 0 0 2px #fff;
  }
  .font-text-01-loaded .block--region-header_top.block--search .form-actions button {
    font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
  }
  .block--region-header_top.block--search .form-actions button, .block--region-header_top.block--search .form-actions button:visited {
    color: #e63639;
  }
  .block--region-header_top.block--search .form-actions button:hover, .block--region-header_top.block--search .form-actions button:active {
    border: 0 none;
    color: #e63639;
    background: #fff;
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0);
  }
  .block--region-header_top.block--search .form-actions button:focus, .block--region-header_top.block--search .form-actions button:focus:hover {
    outline: 0;
  }
  .block--region-header_top.block--search .form-actions button.disabled, .block--region-header_top.block--search .form-actions button:disabled, .block--region-header_top.block--search .form-actions button[disabled] {
    pointer-events: none;
    cursor: default;
    opacity: .5;
  }
  .block--region-header_top.block--search.js-open form {
    height: calc(100vh - 3.75rem);
    background-color: #f6e4cb;
  }
}

@media (min-width: 768px) {
  .block--region-header_top.block--search h2 {
    position: absolute !important;
    display: block !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    overflow: hidden !important;
    height: 0.0625rem !important;
    width: 0.0625rem !important;
    word-wrap: normal !important;
  }
  .block--region-header_top.block--search h2.focusable:focus {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 10010 !important;
    display: block !important;
    clip: auto !important;
    overflow: visible !important;
    height: auto !important;
    width: auto !important;
    background: #fff;
  }
  .block--region-header_top.block--search form {
    display: -ms-flexbox;
    display: flex;
    max-width: 15.625rem;
  }
}

.main form.search-form {
  position: relative;
}

.main form.search-form > .form__group {
  position: relative;
  margin: 0 auto 1.5rem auto;
}

.main form.search-form > .form__group .form-type--search {
  position: relative;
}

.main form.search-form > .form__group .form-type--search .form__element__root {
  position: relative;
}

.main form.search-form > .form__group .form-type--search > label,
.main form.search-form > .form__group .form-type--search .form__element__root > label {
  position: absolute;
  left: 1.25rem;
  top: 0.9375rem;
  z-index: 1;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: normal;
  color: rgba(178, 178, 178, 0.6);
}

.main form.search-form > .form__group .form-type--search > label.is-active, .main form.search-form > .form__group .form-type--search > label.has-value,
.main form.search-form > .form__group .form-type--search .form__element__root > label.is-active,
.main form.search-form > .form__group .form-type--search .form__element__root > label.has-value {
  left: 1.25rem;
  top: 0.5rem;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
}

.main form.search-form > .form__group .form-type--search > label.is-active,
.main form.search-form > .form__group .form-type--search .form__element__root > label.is-active {
  color: #e63639;
}

.main form.search-form > .form__group .form-type--search.js-scrolling > label {
  pointer-events: none;
  opacity: 0;
  top: -1.5rem;
  transition: all 0.3s ease-in-out;
}

.main form.search-form > .form__group .form-type--search.form-type--webform-document-file > label,
.main form.search-form > .form__group .form-type--search.form-type--webform-document-file .form__element__root > label, .main form.search-form > .form__group .form-type--search.form-type--file > label,
.main form.search-form > .form__group .form-type--search.form-type--file .form__element__root > label, .main form.search-form > .form__group .form-type--search.form-type--managed-file > label,
.main form.search-form > .form__group .form-type--search.form-type--managed-file .form__element__root > label, .main form.search-form > .form__group .form-type--search.form-type--date > label,
.main form.search-form > .form__group .form-type--search.form-type--date .form__element__root > label, .main form.search-form > .form__group .form-type--search.form-type--select > label,
.main form.search-form > .form__group .form-type--search.form-type--select .form__element__root > label {
  top: 0.5rem;
  left: 1.25rem;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  color: #e63639;
}

.main form.search-form > .form__group .form-type--search input:not([type]), .main form.search-form > .form__group .form-type--search input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]),
.main form.search-form > .form__group .form-type--search textarea {
  padding: 1.4375rem 1.25rem 0.375rem;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}

.main form.search-form > .form__group .form-type--search input:not([type]):-ms-input-placeholder, .main form.search-form > .form__group .form-type--search input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"]):-ms-input-placeholder,
.main form.search-form > .form__group .form-type--search textarea:-ms-input-placeholder {
  color: transparent;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}

.main form.search-form > .form__group .form-type--search input:not([type])::placeholder, .main form.search-form > .form__group .form-type--search input:not([type="range"]):not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="hidden"])::placeholder,
.main form.search-form > .form__group .form-type--search textarea::placeholder {
  color: transparent;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}

.main form.search-form > .form__group .form-type--search select {
  padding: 1.4375rem 2.5rem 0.375rem 1.25rem;
  height: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.1875rem;
}

.main form.search-form > .form__group .form-type--search .form__dropdown::after {
  right: 1.25rem;
}

.main form.search-form > .form__group input[type="text"],
.main form.search-form > .form__group input[type="search"] {
  padding-right: 3.125rem;
}

.main form.search-form > .form__group [type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  height: 3.125rem;
  width: 3.125rem;
  border: 0 none;
  text-align: center;
  background: transparent none;
}

.main form.search-form > .form__group [type="submit"]::before {
  content: "\f002";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.3125rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #a2a2a2;
}

.main form.search-form > .form__group [type="submit"]::before {
  position: absolute;
  left: 0;
  width: 100%;
}

.main form.search-form > .form__group [type="submit"]:hover::before {
  color: #e63639;
}

.main form.search-form .search-help-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.main form.search-form .search-help-link::before {
  content: "\f059";
  display: inline-block;
  margin: -1px 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #e63639;
}

.main form.search-form .search-advanced {
  margin-bottom: 1.5rem;
}

.main form.search-form .search-advanced fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.main form.search-form .search-advanced legend {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9375rem 0;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #020000;
  padding: 0;
  margin: 0 0 0.625rem 0;
}

.main form.search-form .search-advanced legend a,
.main form.search-form .search-advanced legend a:visited {
  text-decoration: none;
  color: #020000;
}

.main form.search-form .search-advanced legend a:hover {
  color: #e63639;
}

@media (min-width: 1200px) {
  .main form.search-form .search-advanced legend {
    text-align: left;
  }
}

.main form.search-form .search-advanced .criterion legend {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9375rem 0;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #020000;
  margin: 0 0 0.3125rem 0;
  font-weight: 400;
}

.main form.search-form .search-advanced .criterion legend a,
.main form.search-form .search-advanced .criterion legend a:visited {
  text-decoration: none;
  color: #020000;
}

.main form.search-form .search-advanced .criterion legend a:hover {
  color: #e63639;
}

@media (min-width: 1200px) {
  .main form.search-form .search-advanced .criterion legend {
    text-align: left;
  }
}

.main form.search-form .search-advanced .form-radiobuttons label,
.main form.search-form .search-advanced .form-checkboxes label {
  display: inline-block;
}

.main form.search-form .details-wrapper {
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .main form.search-form .search-advanced .details-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: columns;
    flex-direction: columns;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1.25rem 0;
  }
  .main form.search-form .search-advanced .details-wrapper > fieldset {
    padding: 0 1.25rem;
    width: 25%;
  }
  .main form.search-form .search-advanced .details-wrapper > fieldset:first-child {
    width: 50%;
  }
  .main form.search-form .search-advanced .details-wrapper .action {
    padding: 0 1.25rem;
    width: 100%;
  }
}

@media (min-width: 940px) {
  .main form.search-form > .form__group {
    max-width: 50%;
  }
  .main form.search-form .search-help-link {
    position: absolute;
    right: 0;
    top: 0.9375rem;
  }
}

.node_search-results__item {
  display: block;
  margin: 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid #d1d1d1;
}

.node_search-results__item:first-child {
  padding-top: 0;
}

.node_search-results__item:last-child {
  padding-bottom: 0;
  border-bottom: 0 none;
}

.search-page .views__row {
  margin: 2em auto;
}

.social-widgets {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .social-widgets {
    -ms-flex-pack: left;
    justify-content: left;
  }
}

.social-widgets__group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.social-widgets__group .social-link {
  padding-left: 0 !important;
}

.social-widgets__title {
  font-size: 1rem;
  line-height: 1.375rem;
  margin: 0 0.625rem 0 0;
}

.block--type-social-media {
  display: -ms-flexbox;
  display: flex;
  margin-top: 1em;
}

@media (min-width: 940px) {
  .block--type-social-media {
    margin-right: 8em;
  }
}

.footer .block--type-social-media {
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-top: 5em;
  margin-bottom: 2em;
}

.social-link,
.block--type-social-media .field--type-link,
.block--type-social-media-footer .field--type-link {
  margin-left: 0.625rem;
}

.social-link:first-child,
.block--type-social-media .field--type-link:first-child,
.block--type-social-media-footer .field--type-link:first-child {
  margin-left: 0;
}

.social-link a,
.block--type-social-media .field--type-link a,
.block--type-social-media-footer .field--type-link a {
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  font-size: 0;
  text-align: center;
}

.social-link a::before,
.block--type-social-media .field--type-link a::before,
.block--type-social-media-footer .field--type-link a::before {
  content: "\f14d";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 2rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  color: #c7c7c7;
}

.social-link a:hover::before,
.block--type-social-media .field--type-link a:hover::before,
.block--type-social-media-footer .field--type-link a:hover::before {
  color: #e63639;
}

.social-link .facebook::before,
.block--type-social-media .field--type-link .facebook::before,
.block--type-social-media-footer .field--type-link .facebook::before {
  content: "\f39e";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.375rem;
  font-family: "Font Awesome 5 Brands", sans-serif;
  font-weight: normal;
}

.social-link .twitter::before,
.block--type-social-media .field--type-link .twitter::before,
.block--type-social-media-footer .field--type-link .twitter::before {
  content: "\f099";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.375rem;
  font-family: "Font Awesome 5 Brands", sans-serif;
  font-weight: normal;
}

.social-link .pinterest::before,
.block--type-social-media .field--type-link .pinterest::before,
.block--type-social-media-footer .field--type-link .pinterest::before {
  content: "\f0d2";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Brands", sans-serif;
  font-weight: normal;
}

.social-link .linkedin::before,
.block--type-social-media .field--type-link .linkedin::before,
.block--type-social-media-footer .field--type-link .linkedin::before {
  content: "\f08c";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Brands", sans-serif;
  font-weight: normal;
}

.social-link .print::before,
.block--type-social-media .field--type-link .print::before,
.block--type-social-media-footer .field--type-link .print::before {
  content: "\f02f";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.375rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
}

.social-link .e_mail::before,
.block--type-social-media .field--type-link .e_mail::before,
.block--type-social-media-footer .field--type-link .e_mail::before {
  content: "\f0e0";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
}

.social-link .telegram::before,
.block--type-social-media .field--type-link .telegram::before,
.block--type-social-media-footer .field--type-link .telegram::before {
  content: "\f2c6";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Brands", sans-serif;
  font-weight: normal;
}

.social-link .instagram::before,
.block--type-social-media .field--type-link .instagram::before,
.block--type-social-media-footer .field--type-link .instagram::before {
  content: "\f16d";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Brands", sans-serif;
  font-weight: normal;
}

.social-link .youtube::before,
.block--type-social-media .field--type-link .youtube::before,
.block--type-social-media-footer .field--type-link .youtube::before {
  content: "\f167";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Brands", sans-serif;
  font-weight: normal;
}

.social-link .flickr::before,
.block--type-social-media .field--type-link .flickr::before,
.block--type-social-media-footer .field--type-link .flickr::before {
  content: "\f16e";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Brands", sans-serif;
  font-weight: normal;
}

.social-link .slideshare::before,
.block--type-social-media .field--type-link .slideshare::before,
.block--type-social-media-footer .field--type-link .slideshare::before {
  content: "\f1e7";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Brands", sans-serif;
  font-weight: normal;
}

.layout__content__row .block-rocketship_social_widgets:nth-child(1) .social-widgets,
.layout__content__row .block-rocketship_social_widgets:nth-child(2) .social-widgets {
  border-bottom: 1px solid #807f7d;
  padding-bottom: 2em;
  margin-bottom: 2em;
}

.layout__content__row .block-rocketship_social_widgets:last-child .social-widgets a::before {
  color: #807f7d;
}

.layout__content__row .block-rocketship_social_widgets:last-child .social-widgets a:hover::before {
  color: #e63639;
}

.messages--wrapper {
  position: relative;
  clear: both;
}

body.toolbar-fixed .messages--wrapper {
  position: relative;
  z-index: 900;
}

.messages {
  position: relative;
  clear: both;
  margin-top: 1.5rem;
  padding: 0.9375rem 1.875rem 0.9375rem 3.75rem;
  border-radius: 0.1875rem;
  color: #fff;
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  transition: transform 0.5s ease-in-out;
  opacity: 1;
}

.messages::before {
  position: absolute;
  top: 0.75rem;
  bottom: 0;
  left: 0.9375rem;
  width: 1.875rem;
  height: 1.875rem;
  text-align: center;
  line-height: 1;
}

.messages:first-child {
  margin-top: 1.5rem;
}

.messages:last-child {
  margin-bottom: 1.5rem;
}

.messages.js-closing {
  opacity: 0;
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  transition: all 0.5s ease-in-out;
}

@media (min-width: 940px) {
  .messages.js-closing {
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }
}

.messages.js-closed {
  display: none;
}

.messages--status {
  border: 1px solid #00b16a;
  background-color: #3fc380;
}

.messages--status::before {
  content: "\f058";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.875rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #fff;
}

.messages--status a {
  color: #007e4b;
}

.messages--status a:hover {
  color: #00b16a;
}

.messages--warning {
  border: 1px solid #f2784b;
  background-color: #eb9532;
}

.messages--warning::before {
  content: "\f071";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.875rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #fff;
}

.messages--warning a {
  color: #ef541b;
}

.messages--warning a:hover {
  color: #f2784b;
}

.messages--error {
  border: 1px solid #c0392b;
  background-color: #e74c3c;
}

.messages--error::before {
  content: "\f06a";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.875rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #fff;
}

.messages--error a {
  color: #962d22;
}

.messages--error a:hover {
  color: #c0392b;
}

.message__close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  color: #fff;
  outline: none;
}

.message__close:hover {
  opacity: 0.6;
}

.message__close .icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  padding-top: 0.4375rem;
  text-align: center;
}

.message__close .icon::before {
  content: "\f00d";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #fff;
}

.message__close span {
  position: absolute !important;
  display: block !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  overflow: hidden !important;
  height: 0.0625rem !important;
  width: 0.0625rem !important;
  word-wrap: normal !important;
}

.message__close span.focusable:focus {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  z-index: 10010 !important;
  display: block !important;
  clip: auto !important;
  overflow: visible !important;
  height: auto !important;
  width: auto !important;
  background: #fff;
}

.messages__list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.messages__item + .messages__item {
  margin-top: 0.625rem;
}

.user-box__middle {
  position: relative;
  padding: 2.1875rem 1.25rem 1.25rem 1.25rem;
  margin: 1.5rem auto 0 auto;
  max-width: 21.875rem;
  border: 1px solid #d1d1d1;
  background-color: #f3f3f3;
}

.user-box__middle::after {
  content: "\f023";
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.125rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #303030;
}

.user-box__middle::before, .user-box__middle::after {
  position: absolute;
  left: 50%;
  display: block;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.user-box__middle::before {
  content: "";
  top: -1.5rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  background-color: #fff;
}

.user-box__middle::after {
  top: -0.5rem;
}

.user-box__middle h1 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9375rem 0;
  color: #020000;
  padding-bottom: 1em;
  margin-bottom: 1em;
  font-size: 1.875rem;
  line-height: 2.1875rem;
}

.user-box__middle h1 a,
.user-box__middle h1 a:visited {
  text-decoration: none;
  color: #020000;
}

.user-box__middle h1 a:hover {
  color: #e63639;
}

@media (min-width: 1200px) {
  .user-box__middle h1 {
    text-align: left;
  }
}

.user-box__middle .form__element {
  margin: 0 0 0.9375rem 0;
}

.user-box__middle input[type="submit"],
.user-box__middle button[type="submit"] {
  width: 100%;
}

.user-box__middle .paragraph--type-simple-header::before {
  display: none !important;
}

.user-box__links {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 1.5rem;
}

.user-box__links li {
  font-size: 0.75rem;
  line-height: 0.875rem;
}

.user-box__links li::before {
  content: "\f054";
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 0.5625rem;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  color: #b2b2b2;
}

.user-box__bottom {
  padding: 1.25rem;
  text-align: center;
}

.user-box__middle--register {
  padding: 2.1875rem 1.25rem 1.25rem 1.25rem;
  max-width: 940px;
}

@media (min-width: 768px) {
  .user-box__middle--register input[type="submit"],
  .user-box__middle--register button[type="submit"] {
    width: auto;
  }
}

.password-strength__meter {
  margin-top: 0.625rem;
  background: #f3f3f3;
}

.password-strength__indicator {
  background-color: #f3f3f3;
  transition: width 0.3s ease-in-out;
}

.password-strength__indicator.is-weak {
  background-color: #e74c3c;
}

.password-strength__indicator.is-fair {
  background-color: #eb9532;
}

.password-strength__indicator.is-good {
  background-color: #0074bd;
}

.password-strength__indicator.is-strong {
  background-color: #3fc380;
}

.confirm-parent .password-confirm .ok {
  color: #3fc380;
}

.confirm-parent .password-confirm .error {
  color: #e74c3c;
}

.node--view-mode-full h1::after {
  display: none;
}

.node--event--full .block--field-blocknodeeventtitle h1 {
  margin-top: 1em;
  margin-bottom: 0;
  padding-bottom: 0;
}

.node--blog--full .block--field-blocknodeblogtitle h1 {
  margin-top: 0;
  margin-bottom: 0;
}

.node--library-page--full .layout--rs-two-col {
  padding-top: 1em;
}

.node--library-page--full .block--field-blocknodelibrary-pagetitle h1 {
  margin-top: 0;
  margin-bottom: 0;
}

.node--library-page--full img {
  border-radius: 0.5rem;
}

.paragraph--type-overview .more-link--overview {
  margin-top: 0.9375rem;
  text-align: right;
}

.node__meta--bottom > .layout__region {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.node__meta--bottom > .layout__region > * {
  margin-bottom: 0.3125rem;
}

.node__meta--bottom > .layout__region > *:last-child {
  margin-bottom: 0;
}

.node__meta--bottom > .layout__region .layout__region--content-blocks {
  margin-top: 0;
}

.node__meta--bottom > .layout__region .block--extra-field-blocknodenewsdropsolid-social-widgets h3 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9375rem 0;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #020000;
}

.node__meta--bottom > .layout__region .block--extra-field-blocknodenewsdropsolid-social-widgets h3 a,
.node__meta--bottom > .layout__region .block--extra-field-blocknodenewsdropsolid-social-widgets h3 a:visited {
  text-decoration: none;
  color: #020000;
}

.node__meta--bottom > .layout__region .block--extra-field-blocknodenewsdropsolid-social-widgets h3 a:hover {
  color: #e63639;
}

@media (min-width: 1200px) {
  .node__meta--bottom > .layout__region .block--extra-field-blocknodenewsdropsolid-social-widgets h3 {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .node__meta--bottom > .layout__region {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 1.5625rem;
    padding-right: 0;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .node__meta--bottom > .layout__region > * {
    margin-right: 1.5625rem;
    margin-bottom: 0;
  }
  .node__meta--bottom > .layout__region .block--extra-field-blocknodenewsdropsolid-social-widgets {
    display: -ms-flexbox;
    display: flex;
  }
  .node__meta--bottom > .layout__region .block--extra-field-blocknodenewsdropsolid-social-widgets h3 {
    margin-right: 0.625rem;
    margin-bottom: 0;
    padding-top: 1px;
  }
}

@media (min-width: 940px) {
  .node__meta--bottom > .layout__region {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .node__meta--bottom > .layout__region {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
}

body,
html {
  height: 100%;
}

.flexboxtweener,
.flexboxtweener .page {
  height: 100%;
}

.page-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.page {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.sticky-top,
.doormat,
.footer--primary {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

.sticky-top {
  min-height: 1px;
}

.doormat {
  text-align: center;
  color: #fff;
  background: #e63639;
  padding-top: 3em;
}

.doormat a {
  color: #fff;
}

.footer--primary {
  font-size: 0.8rem;
  color: #fff;
  background: #e63639;
}

.footer--primary .container {
  margin-bottom: 1em;
  padding-bottom: 0;
}

@media (min-width: 940px) {
  .footer--primary .container {
    margin-bottom: 5em;
  }
}

@media (min-width: 940px) {
  .footer--primary .block--rocketship-copyright-block {
    margin-top: 2em;
  }
}

.footer .container {
  margin: 2em auto;
  padding-bottom: 5em;
  font-weight: bold;
  text-align: center;
}

.header--primary {
  margin-bottom: 2em;
}

.header--primary .header__section--secondary {
  -ms-flex: 2;
  flex: 2;
}

.header--primary .header__section--primary {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  margin: 2em 0 2em 1em;
}

.header--primary .header__section--primary #block-town-hall-logo {
  width: 14em;
}

@media (min-width: 940px) {
  .header--primary .header__section--primary {
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 0;
  }
}

.header--primary .header__section--primary .media--type-image {
  text-align: center;
  margin-left: 2em;
}

.header--primary .header__section--primary .media--type-image img {
  width: 18rem;
  margin: 0 auto;
}

.header-top .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .header-top .container {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 940px) {
  .header-top .container {
    -ms-flex-pack: end;
    justify-content: end;
  }
}

.nav-section--primary {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.nav-section--primary .block--hasdeu-become-member {
  -ms-flex: 1;
  flex: 1;
  margin: 1em auto;
}

.nav-section--primary .block--hasdeu-become-member a::after {
  position: relative;
  top: -2px;
  padding: 5px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free", serif;
  font-size: 0.6rem;
  font-weight: 900;
  content: "\f061";
  font-style: normal;
  margin-left: 0.8rem;
}

.nav-section--primary .become-member a {
  padding: 0.5em 1em;
  border-radius: 0.4rem;
  font-size: 0.9em;
  text-align: center;
  color: #fff;
  background: #000;
}

@media (min-width: 1200px) {
  .nav-section--primary {
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (max-width: 1199px) {
  .header__section--secondary {
    position: absolute;
    z-index: 910;
    right: 0;
    top: 0;
    width: 3.375rem;
    height: 3.75rem;
    color: #1f2833;
  }
  .navigation__toggle-expand {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding-top: 0;
    width: 3.375rem;
    height: 3.75rem;
    text-align: center;
  }
  .js-open .navigation__toggle-expand {
    position: fixed;
    z-index: 1;
  }
  .navigation__toggle-expand__icon {
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    padding-top: 0.9375rem;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: opacity 0.3s ease-in-out;
  }
  .navigation__toggle-expand__icon--open {
    opacity: 1;
  }
  .navigation__toggle-expand__icon--open::before {
    content: "\f0c9";
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    vertical-align: middle;
    font-size: 1.125rem;
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
  }
  .js-open .navigation__toggle-expand__icon--open {
    opacity: 0;
  }
  .navigation__toggle-expand__icon--closed {
    opacity: 0;
  }
  .navigation__toggle-expand__icon--closed::before {
    content: "\f00d";
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    vertical-align: middle;
    font-size: 1.3125rem;
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
  }
  .js-open .navigation__toggle-expand__icon--closed {
    opacity: 1;
  }
  .navigation__toggle-expand__text {
    position: absolute !important;
    display: block !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    overflow: hidden !important;
    height: 0.0625rem !important;
    width: 0.0625rem !important;
    word-wrap: normal !important;
  }
  .navigation__toggle-expand__text.focusable:focus {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 10010 !important;
    display: block !important;
    clip: auto !important;
    overflow: visible !important;
    height: auto !important;
    width: auto !important;
    background: #fff;
  }
  .navigation__toggle-expand__text--open {
    display: inline-block;
  }
  .js-open .navigation__toggle-expand__text--open {
    display: none;
  }
  .navigation__toggle-expand__text--closed {
    display: none;
  }
  .js-open .navigation__toggle-expand__text--closed {
    display: inline-block;
  }
  .wrapper--navigation__content {
    position: fixed;
    left: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    height: 0;
    transition: all 0.3s ease-in-out;
  }
  .js-open > .wrapper--navigation__content {
    height: 100vh;
    background-color: #e63639;
  }
  .nav-section--secondary {
    margin: 1.5rem -1.5rem 1.5rem -1.5rem;
    padding: 1.5rem;
    background-color: #f3f3f3;
  }
  .wrapper--headers {
    position: relative;
  }
  .nav--language-interface {
    z-index: 6;
  }
  .block--header_top.block--search {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 920;
  }
}

.multiple-search-wrapper .media--view-mode-layout-builder-background {
  opacity: 1 !important;
  border-radius: 0.6em;
}

.multiple-search {
  padding: 3em 0 2em;
  border-radius: 0.6em;
}

.multiple-search form {
  width: 90%;
  margin: auto;
  text-align: center;
}

@media (min-width: 940px) {
  .multiple-search form {
    width: 60%;
  }
}

.multiple-search form input[name="search"] {
  border-radius: 1.6em !important;
  padding-left: 1.5em !important;
}

.multiple-search form .form-text {
  height: 3em;
}

.multiple-search form .form__group--radios {
  top: 4px;
  left: -4px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 300px;
  margin: 2em auto;
}

.multiple-search form .form__group--radios input {
  padding: 5px;
  border-radius: 10em;
}

.multiple-search form label {
  display: inline-block;
  width: 8em;
  padding: 0.5em 1em;
  border-radius: 1.3em;
  color: #b2b2b2;
  background: #fff;
  cursor: pointer;
}

.multiple-search form label :active {
  color: #e63639;
}

.multiple-search form .form-radio {
  margin-left: 1em;
}

.multiple-search form .form-type-radio input {
  display: none;
}

.multiple-search form .form-type-radio input + label::before {
  position: relative;
  top: -2px;
  padding: 0.2rem 0.3rem;
  border: 1px solid #b2b2b2;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free", serif;
  font-size: 0.6rem;
  font-weight: 900;
  color: #b2b2b2;
  content: "\f00d";
  font-style: normal;
  margin-right: 0.5rem;
}

.multiple-search form .form-type-radio input:checked + label::before {
  padding: 0.2rem;
  border: 1px solid #fff;
  font-family: "Font Awesome 5 Free", serif;
  font-size: 0.6rem;
  font-weight: 900;
  color: #fff;
  background: #0080ff;
  content: "\f00c";
  font-style: normal;
}

.multiple-search form .form-type-radio input[value="website2"]:checked + label {
  color: #fff;
  background: #e63639;
}

.multiple-search form .form-type-radio input[value="catalog2"]:checked + label {
  color: #fff;
  background: #0080ff;
}

.multiple-search form .form-type-radio input[type="radio"]:checked + label {
  color: #fff;
  background: #0080ff;
}

.multiple-search form .form-submit {
  padding: 0.5em 2em;
  border-radius: 1.2rem;
  background: #e63639;
}

.node_search-results {
  display: block;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

@media (min-width: 768px) {
  .layout__cols {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
  .layout__cols--reversed {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .layout__content--2-col--left,
  .layout__content--2-col--right {
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: calc(50% - 1.875rem);
    min-height: 1px;
  }
  .layout__sidebar--2-col--left,
  .layout__sidebar--2-col--right {
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: calc(50% - 1.875rem);
    min-height: 1px;
  }
}

@media (min-width: 940px) {
  .layout__content--2-col--left,
  .layout__content--2-col--right {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: calc(66.66667% - 1.875rem);
  }
  .layout__sidebar--2-col--left,
  .layout__sidebar--2-col--right {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: calc(33.33333% - 1.875rem);
  }
}

@media (min-width: 1200px) {
  .layout__content--2-col--left,
  .layout__content--2-col--right {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: calc(75% - 1.875rem);
  }
  .layout__sidebar--2-col--left,
  .layout__sidebar--2-col--right {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: calc(25% - 1.875rem);
  }
}

@media (min-width: 768px) {
  .layout__content--3-col--center {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
    min-height: 1px;
    width: calc(50% - 1.875rem);
  }
  .layout__sidebar--3-col--left,
  .layout__sidebar--3-col--right {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
    min-height: 1px;
    width: calc(25% - 1.875rem);
  }
}

@media (min-width: 940px) {
  .layout__sidebar--3-col--left,
  .layout__sidebar--3-col--right {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: calc(25% - 1.875rem);
  }
}

@media (min-width: 768px) {
  .layout__region--4-col--01,
  .layout__region--4-col--02,
  .layout__region--4-col--03,
  .layout__region--4-col--04 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
    min-height: 1px;
    width: calc(50% - 1.875rem);
  }
}

@media (min-width: 940px) {
  .layout__region--4-col--01,
  .layout__region--4-col--02,
  .layout__region--4-col--03,
  .layout__region--4-col--04 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: calc(33.33333% - 1.875rem);
  }
}

.storybook__divider--hor {
  display: block;
  margin: 20px 0;
  height: 1px;
  border: 0 none;
  background: #ccc;
}

.storybook__content-section {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  min-height: 500px;
  color: #39596a;
  overflow: hidden;
}

.storybook__content-section::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: '';
}

.storybook__content-section .text {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.5);
  border: 2px dashed #c3d5df;
  border-radius: 10px;
}

.storybook__content-section.has--bg::before {
  background-color: #c3d5df;
}

.storybook__content-section.has--bg .text {
  background-color: rgba(255, 255, 255, 0.5);
}

.storybook__content__label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 999;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  padding: 0.625rem;
  border-radius: 0.3125rem;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #39596a;
  background-color: #c3d5df;
  border: 2px dotted #6090a9;
  pointer-events: none;
}

.storybook__content__label--layout {
  position: absolute;
  top: auto;
  right: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0.3125rem;
  width: 12.5rem;
  font-size: 16px;
  line-height: 18px;
}

.storybook__content__label--section {
  position: absolute;
  right: 20px;
  top: 20px;
  -ms-transform: none;
  transform: none;
  padding: 0.3125rem;
  font-size: 18px;
}

.storybook__content-section--page {
  min-height: 900px;
}

.node--blog--full .text-long {
  margin: 2em auto;
}

.node--blog--teaser h3 {
  margin-top: 1em;
}

.layout-builder-discard-changes {
  margin-top: 1.875rem;
}

.layout-builder-discard-changes .form-actions {
  margin-top: 1.25rem;
}

#edit-discard-changes {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #fff;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px #e63639;
}

.font-text-01-loaded #edit-discard-changes {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

#edit-discard-changes, #edit-discard-changes:visited {
  color: #e63639;
}

#edit-discard-changes:hover, #edit-discard-changes:active {
  border: 0 none;
  color: #fff;
  background: #e63639;
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(230, 54, 57, 0);
}

#edit-discard-changes:focus, #edit-discard-changes:focus:hover {
  outline: 0;
}

#edit-discard-changes.disabled, #edit-discard-changes:disabled, #edit-discard-changes[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

/* Dialog Forms, needed for Layout Builder (in modals & sidebar tray)
 - use #layout-builder-modal to override modal window stuff specifically
 - use #drupal-off-canvas to override sidebar tray stuff specifically
 - for dialogs used in other places, do your styling in a separate Sass-file
   and leave this generic stying here
*/
.ui-dialog fieldset legend,
.ui-dialog fieldset legend.h2,
.ui-dialog .form-fieldset legend.h2 {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9375rem 0;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #020000;
  margin: 0;
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
  font-weight: 700;
}

.ui-dialog fieldset legend a,
.ui-dialog fieldset legend a:visited,
.ui-dialog fieldset legend.h2 a,
.ui-dialog fieldset legend.h2 a:visited,
.ui-dialog .form-fieldset legend.h2 a,
.ui-dialog .form-fieldset legend.h2 a:visited {
  text-decoration: none;
  color: #020000;
}

.ui-dialog fieldset legend a:hover,
.ui-dialog fieldset legend.h2 a:hover,
.ui-dialog .form-fieldset legend.h2 a:hover {
  color: #e63639;
}

@media (min-width: 1200px) {
  .ui-dialog fieldset legend,
  .ui-dialog fieldset legend.h2,
  .ui-dialog .form-fieldset legend.h2 {
    text-align: left;
  }
}

.ui-dialog button[type="submit"],
.ui-dialog .ui-dialog-buttonset button {
  cursor: pointer;
  display: inline-block;
  border: 0 none;
  border-radius: 0;
  padding: 0.625rem 1.1875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #e63639;
  background-repeat: no-repeat;
  outline: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.font-text-01-loaded .ui-dialog button[type="submit"], .font-text-01-loaded
.ui-dialog .ui-dialog-buttonset button {
  font-family: "Golos Text", "Open Sans", "Arial", sans-serif;
}

.ui-dialog button[type="submit"], .ui-dialog button[type="submit"]:visited,
.ui-dialog .ui-dialog-buttonset button,
.ui-dialog .ui-dialog-buttonset button:visited {
  color: #fff;
}

.ui-dialog button[type="submit"]:hover, .ui-dialog button[type="submit"]:active,
.ui-dialog .ui-dialog-buttonset button:hover,
.ui-dialog .ui-dialog-buttonset button:active {
  border: 0 none;
  color: #fff;
  background: #e63639;
  outline: none;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.ui-dialog button[type="submit"]:focus, .ui-dialog button[type="submit"]:focus:hover,
.ui-dialog .ui-dialog-buttonset button:focus,
.ui-dialog .ui-dialog-buttonset button:focus:hover {
  outline: 0;
}

.ui-dialog button[type="submit"].disabled, .ui-dialog button[type="submit"]:disabled, .ui-dialog button[type="submit"][disabled],
.ui-dialog .ui-dialog-buttonset button.disabled,
.ui-dialog .ui-dialog-buttonset button:disabled,
.ui-dialog .ui-dialog-buttonset button[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: .5;
}

.ui-dialog .field--type-webform.field--widget-webform-entity-reference-select {
  margin-bottom: 0.9375rem;
  padding: 0.9375rem;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.ui-dialog .form__multiple-value > .form__element__tooltip {
  right: 3px;
  top: 3px;
}

.layout-builder__section {
  margin-top: 2em;
}

.layout-builder__add-section + .layout-builder__section {
  margin-top: 0;
}

.layout-builder-configure-section input.form-color,
.layout-builder-configure-block input.form-color {
  width: 14.5rem !important;
  height: 4rem;
}

.node--library-page--full .text-long {
  margin: 2em auto;
}

.node--library-page--teaser h3 {
  margin-top: 1em;
}

.page-node-type-page .node__content--page--full {
  margin-bottom: 2em;
}

.block--system-main-block > .compose-tips {
  padding: 1.5rem 0;
}

.block--system-main-block > .compose-tips .filter-type {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .block--system-main-block > .compose-tips {
    padding: 1.5rem 0;
  }
}

@media (min-width: 940px) {
  .block--system-main-block > .compose-tips {
    padding: 2.5rem 0;
  }
}

@media (min-width: 1200px) {
  .block--system-main-block > .compose-tips {
    padding: 3.125rem 0;
  }
}

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