@charset "UTF-8";
:root {
  --ohaeyJobsFunnelOverlayBackgroundBackgroundColor: rgba(255, 255, 255, 0.5);
  --ohaeyJobsFunnelOverlayBackgroundColor: #87AFC3;
  /*--fontSize10: 0.5rem;
  --fontSize14: 0.5833rem;
  --fontSize16: 0.666rem;
  --fontSize35: 1.4583rem;
  --fontSize120: 5rem;*/
}

/*
.preview_check {
	position: fixed;
	left: 10px;
	top: 10px;
	z-index: 9999999999999999 !important;
	//display: none;
}

body:not(.wp-admin) .preview {
	width: 100% !important;
	position: absolute !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	top: 7.2rem !important;
	height: auto !important;
	z-index: 9999999999999998 !important;
	pointer-events: none !important;
	opacity: 0.4 !important;
	display: none;
	max-width: calc(1770px - var(--sideSpacing) - var(--sideSpacing)) !important;

}

.preview_check:checked + .preview {
	display: block;
}
*/
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit],
button,
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  font-family: "Archia";
}

:root {
  --ss-primary-color: #5897fb;
  --ss-bg-color: #ffffff;
  --ss-font-color: #4d4d4d;
  --ss-font-placeholder-color: #8d8d8d;
  --ss-disabled-color: #dcdee2;
  --ss-border-color: #dcdee2;
  --ss-highlight-color: #fffb8c;
  --ss-success-color: #00b755;
  --ss-error-color: #dc3545;
  --ss-main-height: 30px;
  --ss-content-height: 300px;
  --ss-spacing-l: 7px;
  --ss-spacing-m: 5px;
  --ss-spacing-s: 3px;
  --ss-animation-timing: 0.2s;
  --ss-border-radius: 4px;
}

@keyframes ss-valueIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ss-valueOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.ss-hide {
  display: none !important;
}

.ss-main {
  display: flex;
  flex-direction: row;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: var(--ss-font-color);
  min-height: var(--ss-main-height);
  width: 100%;
  padding: var(--ss-spacing-s);
  cursor: pointer;
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius);
  background-color: var(--ss-bg-color);
  outline: 0;
  box-sizing: border-box;
  transition: background-color var(--ss-animation-timing);
  overflow: hidden;
}

.ss-main:focus {
  box-shadow: 0 0 5px var(--ss-primary-color);
}

.ss-main.ss-disabled {
  background-color: var(--ss-disabled-color);
  cursor: not-allowed;
}

.ss-main.ss-disabled .ss-values .ss-disabled {
  color: var(--ss-font-color);
}

.ss-main.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed;
}

.ss-main.ss-open-above {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.ss-main.ss-open-below {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.ss-main .ss-values {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--ss-spacing-m);
  flex: 1 1 100%;
}

.ss-main .ss-values .ss-placeholder {
  display: flex;
  padding: var(--ss-spacing-s) var(--ss-spacing-m) var(--ss-spacing-s) var(--ss-spacing-m);
  margin: auto 0px auto 0px;
  line-height: 1em;
  align-items: center;
  width: 100%;
  color: var(--ss-font-placeholder-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ss-main .ss-values .ss-max {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: var(--ss-bg-color);
  line-height: 1;
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  background-color: var(--ss-primary-color);
  border-radius: var(--ss-border-radius);
}

.ss-main .ss-values .ss-single {
  display: flex;
  margin: auto 0px auto var(--ss-spacing-s);
}

.ss-main .ss-values .ss-value {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--ss-primary-color);
  border-radius: var(--ss-border-radius);
  animation-name: ss-valueIn;
  animation-duration: var(--ss-animation-timing);
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.ss-main .ss-values .ss-value.ss-value-out {
  animation-name: ss-valueOut;
  animation-duration: var(--ss-animation-timing);
  animation-timing-function: ease-out;
}

.ss-main .ss-values .ss-value .ss-value-text {
  font-size: 12px;
  color: var(--ss-bg-color);
  line-height: 1;
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
}

.ss-main .ss-values .ss-value .ss-value-delete {
  display: flex;
  align-items: center;
  height: var(--ss-spacing-l);
  width: var(--ss-spacing-l);
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  cursor: pointer;
  border-left: solid 1px var(--ss-bg-color);
  box-sizing: content-box;
}

.ss-main .ss-values .ss-value .ss-value-delete svg {
  height: var(--ss-spacing-l);
  width: var(--ss-spacing-l);
}

.ss-main .ss-values .ss-value .ss-value-delete svg path {
  fill: none;
  stroke: var(--ss-bg-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-main .ss-deselect {
  display: flex;
  align-self: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  width: 8px;
  height: 8px;
  margin: 0 var(--ss-spacing-m) 0 var(--ss-spacing-m);
}

.ss-main .ss-deselect svg {
  width: 8px;
  height: 8px;
}

.ss-main .ss-deselect svg path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 20;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-main .ss-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  width: 12px;
  height: 12px;
  margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m);
}

.ss-main .ss-arrow path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-timing-function: ease-out;
  transition: var(--ss-animation-timing);
}

.ss-content {
  position: absolute;
  display: flex;
  height: auto;
  flex-direction: column;
  width: auto;
  max-height: var(--ss-content-height);
  box-sizing: border-box;
  border: solid 1px var(--ss-border-color);
  background-color: var(--ss-bg-color);
  transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center top;
  overflow: hidden;
  z-index: 10000;
}

.ss-content.ss-relative {
  position: relative;
  height: 100%;
}

.ss-content.ss-open-above {
  flex-direction: column-reverse;
  opacity: 1;
  transform: scaleY(1);
  transform-origin: center bottom;
  border-top-left-radius: var(--ss-border-radius);
  border-top-right-radius: var(--ss-border-radius);
}

.ss-content.ss-open-below {
  opacity: 1;
  transform: scaleY(1);
  transform-origin: center top;
  border-bottom-left-radius: var(--ss-border-radius);
  border-bottom-right-radius: var(--ss-border-radius);
}

.ss-content .ss-search {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  padding: var(--ss-spacing-l) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);
}

.ss-content .ss-search input {
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0px;
  padding: var(--ss-spacing-m) var(--ss-spacing-l);
  margin: 0;
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius);
  background-color: var(--ss-bg-color);
  outline: 0;
  text-align: left;
  box-sizing: border-box;
}

.ss-content .ss-search input::-moz-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle;
}

.ss-content .ss-search input::placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle;
}

.ss-content .ss-search input:focus {
  box-shadow: 0 0 5px var(--ss-primary-color);
}

.ss-content .ss-search .ss-addable {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  height: auto;
  margin: 0 0 0 var(--ss-spacing-m);
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius);
}

.ss-content .ss-search .ss-addable svg {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  width: 12px;
  height: 12px;
  margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m);
}

.ss-content .ss-search .ss-addable svg path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-content .ss-list {
  flex: 1 1 auto;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

.ss-content .ss-list .ss-error {
  color: var(--ss-error-color);
  padding: var(--ss-spacing-l);
}

.ss-content .ss-list .ss-searching {
  color: var(--ss-font-color);
  padding: var(--ss-spacing-l);
}

.ss-content .ss-list .ss-optgroup.ss-close .ss-option {
  display: none !important;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text {
  flex: 1 1 auto;
  font-weight: bold;
  color: var(--ss-font-color);
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label:has(.ss-arrow) {
  cursor: pointer;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--ss-spacing-m);
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall:hover {
  opacity: 0.5;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path {
  stroke: var(--ss-error-color);
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall span {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60%;
  text-align: center;
  padding: 0 var(--ss-spacing-s) 0 0;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg {
  flex: 0 1 auto;
  width: 13px;
  height: 13px;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path {
  fill: none;
  stroke: var(--ss-success-color);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:first-child {
  stroke-width: 5;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:last-child {
  stroke-width: 11;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow {
  flex: 1 1 auto;
  width: 10px;
  height: 10px;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-timing-function: ease-out;
  transition: var(--ss-animation-timing);
}

.ss-content .ss-list .ss-optgroup .ss-option {
  padding: var(--ss-spacing-s) var(--ss-spacing-s) var(--ss-spacing-s) calc(var(--ss-spacing-l) * 3);
}

.ss-content .ss-list .ss-option {
  display: flex;
  padding: var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);
  color: var(--ss-font-color);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.ss-content .ss-list .ss-option:hover {
  color: var(--ss-bg-color);
  background-color: var(--ss-primary-color);
}

.ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: var(--ss-bg-color);
  background-color: var(--ss-primary-color);
}

.ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
  background-color: var(--ss-disabled-color);
}

.ss-content .ss-list .ss-option.ss-disabled:hover {
  color: var(--ss-font-color);
}

.ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: var(--ss-highlight-color);
} 
.funnel__overlay-background {
  background-color: var(--ohaeyJobsFunnelOverlayBackgroundBackgroundColor);
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999998;
  display: none;
}

.funnel__overlay {
  background-color: var(--ohaeyJobsFunnelOverlayBackgroundColor);
  position: fixed;
  right: 0;
  top: 0;
  width: calc(100% - 8.4rem);
  height: 100%;
  z-index: 9999999;
  display: none;
}
@media only screen and (max-width: 768px) {
  .funnel__overlay {
    width: calc(100% - 4.1rem);
  }
}

.prevQuestion {
  position: absolute;
  left: 4rem;
  background-color: transparent;
  border: 0;
  font-size: var(--fontSize14);
  line-height: 1.3;
  color: var(--colorBeige);
  text-transform: uppercase;
  display: grid;
  font-family: "Archia";
  font-weight: 700;
  bottom: 6.5rem;
  margin: 0;
  padding: 0;
  gap: 0 0.6rem;
  cursor: pointer;
  grid-template-columns: 2rem auto;
  cursor: pointer;
  z-index: 99;
}
@media only screen and (max-width: 768px) {
  .prevQuestion {
    font-size: 0.9rem;
    left: 1.3rem;
    grid-template-columns: 3rem auto;
  }
}
.prevQuestion:hover .arrow__inner  {
  width: 1.8rem;
}
.prevQuestion .arrow__inner {
  font-size: 0;
  line-height: 0;
  width: 2rem;
  overflow: hidden;
  transition: width 200ms ease-out;
  display: block;
}
@media only screen and (max-width: 768px) {
  .prevQuestion .arrow__inner {
    width: 3rem;
  }
}
.prevQuestion .arrow__inner svg {
  width: 2rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .prevQuestion .arrow__inner svg {
    width: 3rem;
  }
}

.funnel__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: none;
}
.funnel__progress.is-visible {
  display: block;
}
.funnel__progress .funnel__progress--inner {
  transition: width 200ms ease-out;
  height: 0.5rem;
  background-color: var(--colorBeige);
  width: calc(100% / var(--totalCount) * var(--currentCount));
}

.funnel__view-count {
  color: var(--colorBeige);
  font-size: var(--fontSize120);
  line-height: 1.2;
  position: absolute;
  left: 3.5rem;
  bottom: 0.9rem;
  display: none;
}
@media only screen and (max-width: 768px) {
  .funnel__view-count {
    left: 1.2rem;
    font-size: var(--fontSize60);
  }
}
.funnel__view-count em {
  font-style: normal;
}
.funnel__view-count.is-visible {
  display: block;
}

.funnel__block {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  display: none;
}
.funnel__block .funnel__block-content-holder {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: stretch;
}
.funnel__block[data-status=active] {
  display: block;
}
.funnel__block .funnel__view {
  padding: 9.3rem 4rem 9rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view {
    padding: 5.7rem 1.6rem 9rem 1.6rem;
    justify-content: flex-start;
  }
}
.funnel__block .funnel__view[data-status=hidden] {
  display: none;
}
.funnel__block .funnel__view .funnel__startview-inner {
  color: var(--colorWhite);
  font-size: var(--fontSize24);
  line-height: 1.333;
}
.funnel__block .funnel__view .funnel__startview-inner h3 {
  font-size: var(--fontSize34);
  font-weight: 700;
  line-height: 1.176;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 0.9em;
}
.funnel__block .funnel__view .funnel__startview-inner h2 {
  font-size: var(--fontSize68);
  line-height: 1.11;
  font-family: "Wild Month";
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.012em;
  color: var(--colorLila);
  text-transform: none;
}
.funnel__block .funnel__view .funnel__startview-inner p {
  max-width: 26em;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__startview-inner + .circleButton {
    right: auto;
    left: 50%;
    transform: translateX(-50%) !important;
  }
}
.funnel__block .funnel__view[data-type=end] {
  padding-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view[data-type=end] {
    padding-bottom: 8.7rem;
  }
  .funnel__block .funnel__view[data-type=end] .funnel__question-question p {
    max-width: none;
  }
  .funnel__block .funnel__view[data-type=end] .funnel__question-form {
    padding-top: 3.5rem;
  }
}
.funnel__block .funnel__view[data-type=question] .circleButton {
  right: 3.2rem;
  bottom: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view[data-type=question] .circleButton {
    --size: 6.4rem;
    right: 1.5rem;
    bottom: 2.9rem;
  }
}
.funnel__block .funnel__view[data-type=thank_you] {
  background-color: var(--colorBeige);
}
.funnel__block .funnel__view[data-type=thank_you] .funnel__thankyouview-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-right: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view[data-type=thank_you] .funnel__thankyouview-inner {
    flex-direction: column;
    padding-right: 0;
    gap: 2rem 0;
  }
}
.funnel__block .funnel__view[data-type=thank_you] .funnel__thankyouview-inner .cta__button {
  margin-top: auto;
  margin-bottom: 0;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view[data-type=thank_you] .funnel__thankyouview-inner .cta__button {
    text-align: center;
    justify-content: center;
  }
}
.funnel__block .funnel__view[data-type=thank_you] .funnel__thankyouview-inner h2 {
  font-size: var(--fontSize68);
  line-height: 1.11;
  font-family: "Wild Month";
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.012em;
  color: var(--colorLila);
  text-transform: none;
}
.funnel__block .funnel__view[data-type=thank_you] .funnel__thankyouview-inner ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  counter-reset: list;
  margin-top: 1.6rem;
  max-width: 25em;
  display: flex;
  flex-direction: column;
  gap: 1.3rem 0;
}
.funnel__block .funnel__view[data-type=thank_you] .funnel__thankyouview-inner ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: var(--fontSize18);
  font-weight: 400;
  line-height: 1.333;
  letter-spacing: 0em;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
}
.funnel__block .funnel__view[data-type=thank_you] .funnel__thankyouview-inner ul li:before {
  --size: 2.45rem;
  counter-increment: list;
  content: counter(list);
  width: var(--size);
  height: var(--size);
  background-color: var(--colorWhite);
  border-radius: 50%;
  display: flex;
  font-size: var(--fontSize35);
  color: var(--colorNavy);
  margin-top: -0.2rem;
  justify-content: center;
  align-items: center;
}
.funnel__block .funnel__view .funnel__question-inner {
  display: grid;
  grid-template-columns: 23rem 1fr;
  gap: 0 9.8rem;
  width: 100%;
  min-height: 15.4rem;
  align-items: start;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner {
    grid-template-columns: 100%;
    padding-bottom: 2rem;
  }
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-question p:first-child {
  margin-top: 0;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-question small {
  color: var(--colorLila);
  display: block;
  font-size: var(--fontSize14);
  margin-top: -1.2em;
  opacity: 0.5;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-question small {
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-question p {
    max-width: none;
  }
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1rem;
  padding-top: 0.3rem;
  align-items: start;
  --formElementHeight: 2.9rem;
  padding-right: 3.3rem;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-form {
    padding-top: 0.8rem;
    grid-template-columns: 100%;
    --formElementHeight: 3.9rem;
    gap: 1.1rem 0;
    padding-right: 0;
  }
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .funnel__question-column {
  display: flex;
  flex-direction: column;
  gap: 0 0;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-form .funnel__question-column {
    gap: 0 0;
  }
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field {
  outline: 2px solid var(--colorNavy);
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field .single__form-field-inner {
  position: relative;
  font-size: var(--fontSize18);
  line-height: 1.33;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field.is-active {
  outline: 3px solid var(--colorNavy);
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field-child-wrapper {
  opacity: 0.3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 1.3rem 0;
  padding-top: 1.3rem;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field.is-active + .single__form-field-child-wrapper {
  opacity: 1;
  pointer-events: auto;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=checkbox] .single__form-field-inner input,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=radioutton] .single__form-field-inner input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=checkbox] .single__form-field-inner label,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=radioutton] .single__form-field-inner label {
  display: flex;
  min-height: var(--formElementHeight);
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 0.7rem 0.5rem 2.2rem;
  position: relative;
  cursor: pointer;
  color: var(--colorLila);
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=checkbox] .single__form-field-inner label:hover,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=radioutton] .single__form-field-inner label:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=checkbox] .single__form-field-inner label:after,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=radioutton] .single__form-field-inner label:after {
  content: "";
  display: block;
  position: absolute;
  left: 0rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  background-size: 98% auto;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none'><circle cx='13' cy='13' r='12' stroke='%235A46F5' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center center;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=checkbox] .single__form-field-inner input:checked + label:after,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=radioutton] .single__form-field-inner input:checked + label:after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'><circle cx='12' cy='12' r='11.25' fill='%235A46F5' stroke='%235A46F5' stroke-width='1.5'/><path stroke='%23fff' stroke-width='1.5' d='M7.201 11.637 11.521 16l6.08-8.8'/></svg>");
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] input,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] textarea,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] input,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] textarea {
  font-family: "Archia";
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] input:focus,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] textarea:focus,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] input:focus,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] textarea:focus {
  outline: 0;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] input::-webkit-input-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] textarea::-webkit-input-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] input::-webkit-input-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] textarea::-webkit-input-placeholder {
  color: var(--colorNavy);
  opacity: 0.6;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] input::-moz-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] textarea::-moz-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] input::-moz-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] textarea::-moz-placeholder {
  color: var(--colorNavy);
  opacity: 0.6;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] input:-ms-input-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] textarea:-ms-input-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] input:-ms-input-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] textarea:-ms-input-placeholder {
  color: var(--colorNavy);
  opacity: 0.6;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] input:-moz-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] textarea:-moz-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] input:-moz-placeholder,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] textarea:-moz-placeholder {
  color: var(--colorNavy);
  opacity: 0.6;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] textarea,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] textarea {
  resize: none;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  field-sizing: content;
  width: 26.7rem;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] textarea,
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] textarea {
    width: 21.2rem;
  }
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textarea] .single__form-field-inner {
  position: relative;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textarea] .single__form-field-inner textarea {
  background-color: transparent;
  border: 0;
  display: flex;
  height: 7.1rem;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 0.7rem;
  position: relative;
  font-size: var(--fontSize18);
  line-height: 1.33;
  color: var(--colorNavy);
  width: 100%;
  font-family: "Archia";
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textarea] .single__form-field-inner textarea {
    height: var(--formElementHeight);
  }
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textarea] .single__form-field-inner textarea::-webkit-input-placeholder {
  color: var(--colorNavy);
  opacity: 0.6;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textarea] .single__form-field-inner textarea::-moz-placeholder {
  color: var(--colorNavy);
  opacity: 0.6;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textarea] .single__form-field-inner textarea:-ms-input-placeholder {
  color: var(--colorNavy);
  opacity: 0.6;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textarea] .single__form-field-inner textarea:-moz-placeholder {
  color: var(--colorNavy);
  opacity: 0.6;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] .single__form-field-inner {
  position: relative;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] .single__form-field-inner .optional {
  position: absolute;
  right: 0;
  top: 50%;
  pointer-events: none;
  color: var(--colorLila);
  transform: translateY(-50%);
  opacity: 0.5;
  font-size: var(--fontSize14);
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] .single__form-field-inner input,
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] .single__form-field-inner textarea {
  background-color: transparent;
  border: 0;
  display: flex;
  height: var(--formElementHeight);
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 0;
  position: relative;
  font-size: var(--fontSize18);
  line-height: 1.33;
  color: var(--colorLila);
  width: 100%;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] .single__form-field-inner textarea {
  height: auto;
  min-height: var(--formElementHeight);
  resize: none;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  field-sizing: content;
  width: 26.7rem;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=textfield] .single__form-field-inner textarea {
    width: 21.2rem;
  }
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] .single__form-field-inner {
  position: relative;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=datepicker] .single__form-field-inner input {
  background-color: transparent;
  border: 0;
  display: flex;
  height: var(--formElementHeight);
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 0.7rem;
  position: relative;
  font-size: var(--fontSize18);
  line-height: 1.33;
  color: var(--colorNavy);
  width: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='27' height='27' fill='none' viewBox='0 0 27 27'><path fill='%23FAF5EB' fill-rule='evenodd' stroke='%23FAF5EB' stroke-width='.5' d='M1 2.47h5.147V1h.735v1.47h13.97V1h.736v1.47h5.147V23.06A2.941 2.941 0 0 1 23.795 26H3.94A2.941 2.941 0 0 1 1 23.059V2.47Zm5.147.736v1.47h.735v-1.47h13.97v1.47h.736v-1.47H26v4.78H1.735v-4.78h4.412ZM26 8.72v14.338a2.206 2.206 0 0 1-2.206 2.206H3.941a2.206 2.206 0 0 1-2.206-2.206V8.72H26Z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 1rem auto;
  background-position: calc(100% - 0.8rem) center;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=select] .single__form-field-inner {
  position: relative;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .single__form-field[data-type=select] .single__form-field-inner select {
  background-color: transparent;
  width: 100%;
  border: 0;
  display: flex;
  height: var(--formElementHeight);
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 0.7rem;
  position: relative;
  font-size: var(--fontSize18);
  line-height: 1.33;
  color: var(--colorNavy);
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .checkboxes__holder {
  grid-column: 1/3;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
  max-width: none;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-form .checkboxes__holder {
    grid-column: unset;
    gap: 0.9rem 0;
    max-width: none;
    margin-top: 2rem;
  }
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .checkboxes__holder .single__checkbox {
  font-size: var(--fontSize12);
  line-height: 1.4;
  text-align: left;
  position: relative;
  color: var(--colorLila);
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-form .checkboxes__holder .single__checkbox {
    font-size: var(--fontSize12);
    line-height: 1.4;
  }
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .checkboxes__holder .single__checkbox input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .checkboxes__holder .single__checkbox label {
  display: block;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.5rem;
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .checkboxes__holder .single__checkbox label:before {
  --size: 1.3rem;
  width: var(--size);
  height: var(--size);
  display: block;
  content: "";
  font-size: 0;
  line-height: 0;
  margin-top: 0.2rem;
  background-size: 98% auto;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none'><circle cx='13' cy='13' r='12' stroke='%235A46F5' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (max-width: 768px) {
  .funnel__block .funnel__view .funnel__question-inner .funnel__question-form .checkboxes__holder .single__checkbox label:before {
    --size: 1.5rem;
  }
}
.funnel__block .funnel__view .funnel__question-inner .funnel__question-form .checkboxes__holder .single__checkbox input:checked + label:before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'><circle cx='12' cy='12' r='11.25' fill='%235A46F5' stroke='%235A46F5' stroke-width='1.5'/><path stroke='%23fff' stroke-width='1.5' d='M7.201 11.637 11.521 16l6.08-8.8'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
body {
  --ss-main-height: 2.9rem;
  --ss-border-color: var(--colorNavy);
  --ss-spacing-m: 0.5rem;
  --ss-spacing-l: calc(0.8rem + 2px);
  --ss-bg-color: var(--colorWhite);
  --ss-primary-color: var(--colorNavy);
}
@media only screen and (max-width: 768px) {
  body {
    --ss-main-height: 3.9rem;
  }
}
body .ss-content {
  border: 2px solid var(--ss-border-color);
  border-radius: 0 !important;
  z-index: 9999999;
  margin-top: 2px !important;
}
body .ss-content .ss-list {
  border-radius: 0;
}
body .ss-content .ss-list .ss-option {
  -webkit-hyphens: auto;
          hyphens: auto;
  text-align: left;
  font-size: var(--fontSize15);
}
body .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: var(--colorNavy);
  background-color: var(--colorBeige);
}

.funnel__block .funnel__view .funnel__question-inner .ss-main {
  border: 0 !important;
  border-radius: 0;
  padding: 0.15rem 0.8rem 0 0.8rem;
  font-size: var(--fontSize18);
  line-height: 1.33;
  background-color: transparent;
  color: var(--colorNavy);
}
.funnel__block .funnel__view .funnel__question-inner .ss-main:focus {
  box-shadow: none;
}

.circleButton {
  position: absolute;
  right: 3.2rem;
  bottom: 3.2rem;
  cursor: pointer;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .circleButton {
    right: 1.2rem;
  }
}
.circleButton[data-status=disabled] {
  opacity: 0.5 !important;
  pointer-events: none;
}
@media (hover: hover) {
  .circleButton:not([data-status=disabled]) {
    transition: background-color 200ms ease-out, color 200ms ease-out;
  }
  .circleButton:not([data-status=disabled]):hover {
    background-color: transparent;
    color: var(--colorWhite) !important;
  }
}

.air-datepicker-cell.-year-.-other-decade-, .air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}

.air-datepicker-cell.-year-.-other-decade-:hover, .air-datepicker-cell.-day-.-other-month-:hover {
  color: var(--adp-color-other-month-hover);
}

.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-, .-disabled-.-focus-.air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}

.-selected-.air-datepicker-cell.-year-.-other-decade-, .-selected-.air-datepicker-cell.-day-.-other-month- {
  color: #fff;
  background: var(--adp-background-color-selected-other-month);
}

.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-, .-selected-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background: var(--adp-background-color-selected-other-month-focused);
}

.-in-range-.air-datepicker-cell.-year-.-other-decade-, .-in-range-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range);
  color: var(--adp-color);
}

.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-, .-in-range-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range-focused);
}

.air-datepicker-cell.-year-.-other-decade-:empty, .air-datepicker-cell.-day-.-other-month-:empty {
  background: none;
  border: none;
}

.air-datepicker-cell {
  border-radius: var(--adp-cell-border-radius);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.air-datepicker-cell.-focus- {
  background: var(--adp-cell-background-color-hover);
}

.air-datepicker-cell.-current- {
  color: var(--adp-color-current-date);
}

.air-datepicker-cell.-current-.-focus- {
  color: var(--adp-color);
}

.air-datepicker-cell.-current-.-in-range- {
  color: var(--adp-color-current-date);
}

.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-disabled-.-focus- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-disabled-.-in-range- {
  color: var(--adp-color-disabled-in-range);
}

.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-in-range- {
  background: var(--adp-cell-background-color-in-range);
  border-radius: 0;
}

.air-datepicker-cell.-in-range-:hover {
  background: var(--adp-cell-background-color-in-range-hover);
}

.air-datepicker-cell.-range-from- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}

.air-datepicker-cell.-range-to- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
}

.air-datepicker-cell.-range-to-.-range-from- {
  border-radius: var(--adp-cell-border-radius);
}

.air-datepicker-cell.-selected- {
  color: #fff;
  border: none;
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-current- {
  color: #fff;
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-focus- {
  background: var(--adp-cell-background-color-selected-hover);
}

.air-datepicker-body {
  transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}

.air-datepicker-body.-hidden- {
  display: none;
}

.air-datepicker-body--day-names {
  display: grid;
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  margin: 8px 0 3px;
}

.air-datepicker-body--day-name {
  color: var(--adp-day-name-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}

.air-datepicker-body--day-name.-clickable- {
  cursor: pointer;
}

.air-datepicker-body--day-name.-clickable-:hover {
  color: var(--adp-day-name-color-hover);
}

.air-datepicker-body--cells {
  display: grid;
}

.air-datepicker-body--cells.-days- {
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: var(--adp-day-cell-height);
}

.air-datepicker-body--cells.-months- {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: var(--adp-month-cell-height);
}

.air-datepicker-body--cells.-years- {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: var(--adp-year-cell-height);
}

.air-datepicker-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--adp-border-color-inner);
  min-height: var(--adp-nav-height);
  padding: var(--adp-padding);
  box-sizing: content-box;
}

.-only-timepicker- .air-datepicker-nav {
  display: none;
}

.air-datepicker-nav--title, .air-datepicker-nav--action {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.air-datepicker-nav--action {
  width: var(--adp-nav-action-size);
  border-radius: var(--adp-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.air-datepicker-nav--action:hover {
  background: var(--adp-background-color-hover);
}

.air-datepicker-nav--action:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}

.air-datepicker-nav--action svg {
  width: 32px;
  height: 32px;
}

.air-datepicker-nav--action path {
  fill: none;
  stroke: var(--adp-nav-arrow-color);
  stroke-width: 2px;
}

.air-datepicker-nav--title {
  border-radius: var(--adp-border-radius);
  padding: 0 8px;
}

.air-datepicker-nav--title i {
  font-style: normal;
  color: var(--adp-nav-color-secondary);
  margin-left: 0.3em;
}

.air-datepicker-nav--title:hover {
  background: var(--adp-background-color-hover);
}

.air-datepicker-nav--title:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: none;
}

.air-datepicker-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}

.air-datepicker-button {
  display: inline-flex;
  color: var(--adp-btn-color);
  border-radius: var(--adp-btn-border-radius);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}

.air-datepicker-button:hover {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
}

.air-datepicker-button:focus {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
  outline: none;
}

.air-datepicker-button:active {
  background: var(--adp-btn-background-color-active);
}

.air-datepicker-button span {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.air-datepicker-time {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 12px;
  align-items: center;
  position: relative;
  padding: 0 var(--adp-time-padding-inner);
}

.-only-timepicker- .air-datepicker-time {
  border-top: none;
}

.air-datepicker-time--current {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  text-align: center;
}

.air-datepicker-time--current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.air-datepicker-time--current-hours, .air-datepicker-time--current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}

.air-datepicker-time--current-hours:after, .air-datepicker-time--current-minutes:after {
  content: "";
  background: var(--adp-background-color-hover);
  border-radius: var(--adp-border-radius);
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.air-datepicker-time--current-hours.-focus-:after, .air-datepicker-time--current-minutes.-focus-:after {
  opacity: 1;
}

.air-datepicker-time--current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: var(--adp-time-day-period-color);
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.air-datepicker-time--row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat;
}

.air-datepicker-time--row:first-child {
  margin-bottom: 4px;
}

.air-datepicker-time--row input[type=range] {
  background: none;
  cursor: pointer;
  flex: 1;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-ms-tooltip {
  display: none;
}

.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:hover::-ms-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:focus {
  outline: none;
}

.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-ms-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -moz-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -ms-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  margin-top: calc(var(--adp-time-thumb-size) / 2 * -1);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-ms-fill-lower {
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-ms-fill-upper {
  background: rgba(0, 0, 0, 0);
}

.air-datepicker {
  --adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --adp-font-size: 14px;
  --adp-width: 246px;
  --adp-z-index: 100;
  --adp-padding: 4px;
  --adp-grid-areas: "nav" "body" "timepicker" "buttons";
  --adp-transition-duration: .3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f0f0;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(92, 196, 239, .1);
  --adp-background-color-in-range-focused: rgba(92, 196, 239, .2);
  --adp-background-color-selected-other-month-focused: #8ad5f4;
  --adp-background-color-selected-other-month: #a2ddf6;
  --adp-color: #4a4a4a;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #4eb5e6;
  --adp-color-current-date: var(--adp-accent-color);
  --adp-color-other-month: #dedede;
  --adp-color-disabled: #aeaeae;
  --adp-color-disabled-in-range: #939393;
  --adp-color-other-month-hover: #c5c5c5;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #efefef;
  --adp-border-radius: 4px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 32px;
  --adp-nav-arrow-color: var(--adp-color-secondary);
  --adp-nav-action-size: 32px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #ff9a19;
  --adp-day-name-color-hover: #8ad5f4;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 32px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 4px;
  --adp-cell-background-color-hover: var(--adp-background-color-hover);
  --adp-cell-background-color-selected: #5cc4ef;
  --adp-cell-background-color-selected-hover: #45bced;
  --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 32px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px;
}

.air-datepicker-overlay {
  --adp-overlay-background-color: rgba(0, 0, 0, .3);
  --adp-overlay-transition-duration: .3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99;
}

.air-datepicker {
  background: var(--adp-background-color);
  border: 1px solid var(--adp-border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: var(--adp-border-radius);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, -webkit-max-content);
  grid-template-rows: repeat(4, max-content);
  grid-template-areas: var(--adp-grid-areas);
  font-family: var(--adp-font-family), sans-serif;
  font-size: var(--adp-font-size);
  color: var(--adp-color);
  width: var(--adp-width);
  position: absolute;
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
  z-index: var(--adp-z-index);
}

.air-datepicker:not(.-custom-position-) {
  opacity: 0;
}

.air-datepicker.-from-top- {
  transform: translateY(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-from-right- {
  transform: translateX(var(--adp-transition-offset));
}

.air-datepicker.-from-bottom- {
  transform: translateY(var(--adp-transition-offset));
}

.air-datepicker.-from-left- {
  transform: translateX(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-active-:not(.-custom-position-) {
  transform: translate(0, 0);
  opacity: 1;
}

.air-datepicker.-active-.-custom-position- {
  transition: none;
}

.air-datepicker.-inline- {
  border-color: var(--adp-border-color-inline);
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none;
}

.air-datepicker.-inline- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile- {
  --adp-font-size: var(--adp-mobile-font-size);
  --adp-day-cell-height: var(--adp-mobile-day-cell-height);
  --adp-month-cell-height: var(--adp-mobile-month-cell-height);
  --adp-year-cell-height: var(--adp-mobile-year-cell-height);
  --adp-nav-height: var(--adp-mobile-nav-height);
  --adp-nav-action-size: var(--adp-mobile-nav-height);
  position: fixed;
  width: var(--adp-mobile-width);
  border: none;
}

.air-datepicker.-is-mobile- * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.air-datepicker.-is-mobile- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile-:not(.-custom-position-) {
  transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
  transform: translate(-50%, -50%);
}

.air-datepicker.-custom-position- {
  transition: none;
}

.air-datepicker-global-container {
  position: absolute;
  left: 0;
  top: 0;
}

.air-datepicker--pointer {
  --pointer-half-size: calc(var(--adp-pointer-size) / 2);
  position: absolute;
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  z-index: -1;
}

.air-datepicker--pointer:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 1px solid var(--adp-border-color-inline);
  border-right: 1px solid var(--adp-border-color-inline);
  border-top-right-radius: var(--adp-poiner-border-radius);
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  box-sizing: border-box;
}

.-top-left- .air-datepicker--pointer, .-top-center- .air-datepicker--pointer, .-top-right- .air-datepicker--pointer, [data-popper-placement^=top] .air-datepicker--pointer {
  top: calc(100% - var(--pointer-half-size) + 1px);
}

.-top-left- .air-datepicker--pointer:after, .-top-center- .air-datepicker--pointer:after, .-top-right- .air-datepicker--pointer:after, [data-popper-placement^=top] .air-datepicker--pointer:after {
  transform: rotate(135deg);
}

.-right-top- .air-datepicker--pointer, .-right-center- .air-datepicker--pointer, .-right-bottom- .air-datepicker--pointer, [data-popper-placement^=right] .air-datepicker--pointer {
  right: calc(100% - var(--pointer-half-size) + 1px);
}

.-right-top- .air-datepicker--pointer:after, .-right-center- .air-datepicker--pointer:after, .-right-bottom- .air-datepicker--pointer:after, [data-popper-placement^=right] .air-datepicker--pointer:after {
  transform: rotate(225deg);
}

.-bottom-left- .air-datepicker--pointer, .-bottom-center- .air-datepicker--pointer, .-bottom-right- .air-datepicker--pointer, [data-popper-placement^=bottom] .air-datepicker--pointer {
  bottom: calc(100% - var(--pointer-half-size) + 1px);
}

.-bottom-left- .air-datepicker--pointer:after, .-bottom-center- .air-datepicker--pointer:after, .-bottom-right- .air-datepicker--pointer:after, [data-popper-placement^=bottom] .air-datepicker--pointer:after {
  transform: rotate(315deg);
}

.-left-top- .air-datepicker--pointer, .-left-center- .air-datepicker--pointer, .-left-bottom- .air-datepicker--pointer, [data-popper-placement^=left] .air-datepicker--pointer {
  left: calc(100% - var(--pointer-half-size) + 1px);
}

.-left-top- .air-datepicker--pointer:after, .-left-center- .air-datepicker--pointer:after, .-left-bottom- .air-datepicker--pointer:after, [data-popper-placement^=left] .air-datepicker--pointer:after {
  transform: rotate(45deg);
}

.-top-left- .air-datepicker--pointer, .-bottom-left- .air-datepicker--pointer {
  left: var(--adp-pointer-offset);
}

.-top-right- .air-datepicker--pointer, .-bottom-right- .air-datepicker--pointer {
  right: var(--adp-pointer-offset);
}

.-top-center- .air-datepicker--pointer, .-bottom-center- .air-datepicker--pointer {
  left: calc(50% - var(--adp-pointer-size) / 2);
}

.-left-top- .air-datepicker--pointer, .-right-top- .air-datepicker--pointer {
  top: var(--adp-pointer-offset);
}

.-left-bottom- .air-datepicker--pointer, .-right-bottom- .air-datepicker--pointer {
  bottom: var(--adp-pointer-offset);
}

.-left-center- .air-datepicker--pointer, .-right-center- .air-datepicker--pointer {
  top: calc(50% - var(--adp-pointer-size) / 2);
}

.air-datepicker--navigation {
  grid-area: nav;
}

.air-datepicker--content {
  box-sizing: content-box;
  padding: var(--adp-padding);
  grid-area: body;
}

.-only-timepicker- .air-datepicker--content {
  display: none;
}

.air-datepicker--time {
  grid-area: timepicker;
}

.air-datepicker--buttons {
  grid-area: buttons;
}

.air-datepicker--buttons, .air-datepicker--time {
  padding: var(--adp-padding);
  border-top: 1px solid var(--adp-border-color-inner);
}

.air-datepicker-overlay {
  position: fixed;
  background: var(--adp-overlay-background-color);
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
  transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
  z-index: var(--adp-overlay-z-index);
}

.air-datepicker-overlay.-active- {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s;
}

.air-datepicker-global-container {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 200px;
  z-index: 9999999999;
  height: 200px;
}

.close__funnel__overlay--button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 1.7rem;
  height: auto;
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 99;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .close__funnel__overlay--button {
    right: 1.4rem;
    top: 1.2rem;
    width: 1.7rem;
  }
}
.close__funnel__overlay--button svg {
  width: 100%;
  height: auto;
}

.ohaey__jobs-table .table__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 5rem;
  border-bottom: 2px solid var(--colorNavy);
}
@media only screen and (max-width: 768px) {
  .ohaey__jobs-table .table__row {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
  }
}
.ohaey__jobs-table .table__row .table__full-column {
  grid-column: 1/6;
}
.ohaey__jobs-table .table__columm[data-name=position] span {
  display: block;
}
.ohaey__jobs-table .table__columm .open__table-detail.is-active svg {
  transform: rotate(45deg);
}
.ohaey__jobs-table .table__columm[data-sort-button] {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  cursor: pointer;
}
.ohaey__jobs-table .table__columm[data-sort-button] svg {
  width: 0.9em;
  height: auto;
  transform: translateY(-0.1em);
}
.ohaey__jobs-table .table__columm[data-sort-button].reversed svg {
  transform: rotate(180deg) translateY(0.2em);
}
.ohaey__jobs-table .table__columm[data-sort-button].is-active {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.ohaey__jobs-table .job__details {
  display: none;
}
.ohaey__jobs-table .job__details .job__details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ohaey__jobs-table .job__details.is-active {
  display: block;
}

.ohaey__jobs-table {
  margin-top: 1rem;
  margin-bottom: 2.4rem;
}
.ohaey__jobs-table .table__row {
  grid-template-columns: 17.3rem 13.7rem 10.7rem 1fr 9rem;
}
.ohaey__jobs-table .table__column {
  text-align: left;
}
.ohaey__jobs-table .table__head {
  font-family: "industry-inc-base";
  font-size: var(--fontSize18);
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .ohaey__jobs-table .table__head {
    display: none;
  }
}
.ohaey__jobs-table .table__head .table__row {
  padding: 1rem 0;
}
.ohaey__jobs-table .table__body {
  text-align: left;
}
.ohaey__jobs-table .table__body .table__row {
  align-items: center;
  padding: 1rem 0;
}
.ohaey__jobs-table .table__body .table__row .table__columm:first-child {
  padding-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .ohaey__jobs-table .table__body .table__row .table__columm[data-name=position] {
    font-size: 1.7rem;
    max-width: 13em;
    padding-bottom: 0.4rem;
  }
  .ohaey__jobs-table .table__body .table__row .table__columm[data-name=position] em {
    font-size: 0.7em !important;
    margin-left: 0em !important;
  }
}
.ohaey__jobs-table .table__body .table__row .table__columm[data-name=position] strong {
  font-weight: 400;
  padding-right: 0.3em !important;
}
.ohaey__jobs-table .table__body .table__row .table__columm[data-name=position] span {
  font-size: var(--fontSize15);
  color: #87AFC3;
  font-weight: 500;
}
.ohaey__jobs-table .table__body .table__row .table__columm:not(:first-child) {
  font-size: var(--fontSize18);
  line-height: 1.33;
}
.ohaey__jobs-table .table__body .table__row .table__columm .open__table-detail {
  display: block;
  font-size: 0;
  line-height: 0;
  width: 100%;
  cursor: pointer;
}
.ohaey__jobs-table .table__body .table__row .table__columm .open__table-detail svg {
  width: 100%;
  height: auto;
}
.ohaey__jobs-table .job__details {
  padding-top: 0.4rem !important;
}
@media only screen and (max-width: 768px) {
  .ohaey__jobs-table .job__details {
    padding-top: 1.4rem !important;
  }
}
.ohaey__jobs-table .job__details .job__details-row {
  grid-template-columns: 17.3rem 1fr;
  margin-bottom: 0.6rem !important;
}
@media only screen and (max-width: 768px) {
  .ohaey__jobs-table .job__details .job__details-row {
    margin-bottom: 1.8rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .ohaey__jobs-table .job__details .job__details-row.only-mobile {
    grid-template-columns: 100% !important;
  }
}
.ohaey__jobs-table .job__details .job__details-row:not(:last-child) {
  margin-bottom: 1.8rem;
}
.ohaey__jobs-table .job__details .job__details-row:last-child {
  margin-top: 2rem !important;
}
.ohaey__jobs-table .job__details .job__details-row .column ul:first-child,
.ohaey__jobs-table .job__details .job__details-row .column p:first-child {
  margin-top: 0.6rem !important;
}
@media only screen and (max-width: 768px) {
  .ohaey__jobs-table .job__details .job__details-row .column ul:first-child,
  .ohaey__jobs-table .job__details .job__details-row .column p:first-child {
    margin-top: 0 !important;
  }
}
.ohaey__jobs-table .job__details .job__details-row .column p:last-child,
.ohaey__jobs-table .job__details .job__details-row .column ul:last-child {
  margin-bottom: 0;
}
.ohaey__jobs-table .job__details .job__details-row .column:first-child {
  font-size: var(--fontSize18);
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
  padding-right: 1rem;
  padding-top: 0.6rem;
}
.ohaey__jobs-table .job__details .job__details-row .column p {
  max-width: 39em !important;
  font-size: var(--fontSize18);
  line-height: 1.33;
}
.ohaey__jobs-table .job__details .job__details-row .column ul {
  font-size: var(--fontSize18);
  line-height: 1.33;
  padding-left: 0.8em;
}
.ohaey__jobs-table .job__details .job__details-row .column .contact__person {
  font-size: var(--fontSize18);
  line-height: 1.33;
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: 16rem auto;
  align-items: flex-end;
  margin-top: -1rem;
}
@media only screen and (max-width: 768px) {
  .ohaey__jobs-table .job__details .job__details-row .column .contact__person > div {
    margin-top: 0 !important;
  }
}
.ohaey__jobs-table .job__details .job__details-row .column .contact__person .cta__button {
  margin-right: 0.5rem;
}
.ohaey__jobs-table .job__details .job__details-row .column .contact__person .cta__button + span {
  font-size: var(--fontSize15);
}

.ohaey__jobs-search_and_filter {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 2.4rem;
  margin-top: 0;
  gap: 0 1.7rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .ohaey__jobs-search_and_filter {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.7rem;
  }
}
.ohaey__jobs-search_and_filter #submitSearch {
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}
.ohaey__jobs-search_and_filter #submitSearch[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
@media only screen and (max-width: 768px) {
  .ohaey__jobs-search_and_filter #submitSearch {
    grid-column: 2/3;
    width: 3.8rem;
    margin-left: auto;
  }
}
.ohaey__jobs-search_and_filter #submitSearch svg {
  width: 100%;
  height: auto;
}
.ohaey__jobs-search_and_filter .input-search {
  background-color: transparent;
  border: 2px solid var(--colorNavy);
  border-radius: 1.25rem;
  font-size: var(--fontSize16);
  padding: 0.5rem 0.5rem;
  color: var(--colorNavy);
  height: 2.5rem;
  font-family: "Archia";
}
.ohaey__jobs-search_and_filter .control-group {
  position: relative;
}
.ohaey__jobs-search_and_filter .control-group:before {
  content: "";
  background-color: var(--colorBeige);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 2px solid var(--colorNavy);
  border-radius: 1.25rem;
  z-index: 1;
}
.ohaey__jobs-search_and_filter .control-group .title {
  background-color: transparent;
  border: 0;
  font-size: var(--fontSize16);
  padding: 0.5rem 0.6rem;
  color: var(--colorNavy);
  height: 2.5rem;
  font-family: "Archia";
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.ohaey__jobs-search_and_filter .control-group .title .count {
  margin-left: 0.25em;
}
.ohaey__jobs-search_and_filter .control-group .title:after {
  content: "";
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='21' height='12' fill='none' viewBox='0 0 21 12'><path fill='%23283246' d='m10 10.308-.678.735.678.626.678-.627-.678-.734Zm9.678-7.573.735-.678-1.357-1.47-.734.678 1.356 1.47Zm-19.356 0 9 8.308 1.356-1.47-9-8.308-1.356 1.47Zm10.356 8.308 9-8.308-1.356-1.47-9 8.308 1.356 1.47Z'/></svg>");
  background-repeat: no-repeat;
  background-size: 1rem auto;
  background-position: center center;
  position: absolute;
  right: 0.75rem;
  top: 0;
  height: 100%;
  width: 1rem;
  transition: transform 100ms ease-out;
}
.ohaey__jobs-search_and_filter .control-group .control-group--inner {
  display: none;
  position: absolute;
  background-color: var(--colorBeige);
  border: 2px solid var(--colorNavy);
  border-top: 0;
  top: calc(100% - 1.3rem);
  z-index: 5;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1rem 0 1rem 0;
  width: 100%;
  /*
  button.control {
  	background-color: transparent;
  	border: 1px solid var(--colorNavy);
  	border-radius: 2em;
  	font-size: var(--fontSize16);
  	padding: 0.5rem 0.5rem;
  	color: var(--colorNavy);

  	&.mixitup-control-active {
  		background-color: var(--colorNavy);
  		color: var(--colorBeige);
  	}
  }
  */
}
.ohaey__jobs-search_and_filter .control-group .control-group--inner button.control {
  background-color: transparent;
  width: 100%;
  display: block;
  border: 0;
  font-family: "Archia";
  color: var(--colorNavy);
  font-size: var(--fontSize16);
  text-align: left;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}
.ohaey__jobs-search_and_filter .control-group .control-group--inner button.control:not(.mixitup-control-active):hover {
  background-color: var(--colorWhite);
}
.ohaey__jobs-search_and_filter .control-group .control-group--inner button.control.mixitup-control-active {
  background-color: var(--colorNavy);
  color: var(--colorWhite);
}
.ohaey__jobs-search_and_filter .control-group.is-active .title:after {
  transform: rotate(180deg);
}
.ohaey__jobs-search_and_filter .control-group.is-active .control-group--inner {
  display: block;
}
.ohaey__jobs-search_and_filter .control-group.is-selected .title:after {
  width: 0.8rem;
  background-size: 0.8rem;
  transform: rotate(0deg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'><path stroke='%23283246' stroke-width='2' d='M15.213 15.213 1.071 1.071m14.142 0L1.071 15.213'/></svg>");
}
