/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
/**
 * Font-size calcul
 */
/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/
/**
* Set an item to 100% of its parent's width and height
*/
/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/
/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/
/**
* To call on an <img> tag.
* Set the image size to adapt to its parent
*/
/**
* Like img-cover(), but for responsive img with <picture>
* /!\ To call on <picture>, or <img> parent.
*/
/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
/**
Convert em value into px
 */
/**
Fluid font-size between 2 breakpoints.
Font-size must be in px, use em2px() function to convert from em.
*/
/**
Fluid value between 2 breakpoints (can be use for other than font-size)
(Font-size must be in px, use em2px() function to convert from em)
*/
/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */
/**
 * Animated placeholder for images or divs (FB like)
 */
/*@mixin breakpoint($point) {
  @if $point == desktop {
    @media only screen and (max-width: $bp-xlarge) {
      @content;
    }
  }
  @else if $point == table {
    @media only screen and (max-width: $bp-large) {
      @content;
    }
  }
  @else if $point == mobile {
    @media only screen and (max-width: $bp-xsmall) {
      @content;
    }
  }
}*/
/*** SPECIFIC TO CURRENT PROJECT ***/
.archive__filters {
  padding-block: clamp(35px, -0.78vw + 37.91px, 23px) clamp(15px, 0.52vw + 13.06px, 23px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px clamp(15px, 0.65vw + 12.57px, 25px);
}
.archive__filters .filter-title {
  color: #191414;
  font-size: clamp(20px, 0.13vw + 19.51px, 22px);
  font-weight: 600;
}
.archive__filters .filters-block {
  padding-block: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px clamp(15px, 0vw + 15px, 15px);
}
.archive__filters-checkboxes {
  display: none;
}
.archive__filters-checkboxes .filter-title {
  padding-left: clamp(0px, 0.87vw + -6.67px, 10px);
}
.archive__filters-checkboxes .checkbox-block {
  position: relative;
}
.archive__filters-checkboxes .checkbox-block.open .checkbox-block__values {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.archive__filters-checkboxes .checkbox-block__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--select-height);
  padding-inline: 13px clamp(35px, 3.88vw + 20.44px, 95px);
  border-radius: 8px;
  background-color: #FFF;
  background-image: url("../../svg/select.svg");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 11px;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
  color: #5D6066;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.archive__filters-checkboxes .checkbox-block__values {
  position: absolute;
  left: 0;
  top: calc(var(--select-height) + 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 400px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 150%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row, .archive__filters-checkboxes .checkbox-block__values .empty-label {
  padding: 10px 15px;
}
.archive__filters-checkboxes .checkbox-block__values .empty-label {
  font-size: 14px;
  -webkit-box-shadow: inset 0px 3px 15px rgba(193, 193, 193, 0.6);
          box-shadow: inset 0px 3px 15px rgba(193, 193, 193, 0.6);
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
  background: #f6f6f6;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row.disabled .checkbox-row__name, .archive__filters-checkboxes .checkbox-block__values .checkbox-row.disabled .checkbox-row__ui span {
  opacity: 0.5;
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row__name {
  font-size: 18px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row__name small {
  display: block;
  font-size: 80%;
  opacity: 0.85;
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row:not(.disabled) {
  cursor: pointer;
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row:not(.disabled) * {
  pointer-events: none;
}
@media screen and (hover: hover) {
  .archive__filters-checkboxes .checkbox-block__values .checkbox-row:not(.disabled):hover .checkbox-row__name {
    color: var(--c-action);
  }
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row:not(:last-of-type) {
  border-bottom: 1px solid var(--c-border);
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row:last-of-type {
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.08);
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row__ui {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row__ui .checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid var(--c-border);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row__ui .checkbox:after {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--c-secondary);
  z-index: 1;
  left: 50%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row__ui .checkbox input[type=checkbox] {
  position: absolute;
  margin: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row.selected .checkbox {
  border-color: var(--c-secondary);
}
.archive__filters-checkboxes .checkbox-block__values .checkbox-row.selected .checkbox:after {
  opacity: 1;
  visibility: visible;
}
.archive__filters #jobs-all-filters {
  position: fixed;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  top: 0;
  height: 100dvh;
  width: 100dvw;
  max-width: 540px;
  padding-block: 65px 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0s, z-index 0s, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0s, z-index 0s, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0s, z-index 0s, transform 0.5s ease;
  transition: opacity 0.3s ease, visibility 0s, z-index 0s, transform 0.5s ease, -webkit-transform 0.5s ease;
  background: #F5F5F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(20px, 1.62vw + 13.93px, 45px);
}
.archive__filters #jobs-all-filters.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.archive__filters #jobs-all-filters .close {
  display: block;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: var(--c-default);
  background-image: url("../../svg/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 50%;
  aspect-ratio: 1;
  z-index: 1;
  right: 17px;
}
.archive__filters #jobs-all-filters .close:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  background: url("../../svg/closing.svg") no-repeat center;
  background-size: contain;
}
.archive__filters #jobs-all-filters .close:hover {
  background-color: #000;
}
.archive__filters #jobs-all-filters .close:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.archive__filters #jobs-all-filters .filters-title {
  display: none;
  width: 100%;
  max-width: calc(100% - clamp(20px, 2.27vw + 11.5px, 55px));
  margin-inline: auto;
  font-family: var(--f-special);
  letter-spacing: -0.8px;
  color: var(--c-dark);
  font-size: clamp(18px, 0.45vw + 16.3px, 25px);
  padding-left: 65px;
  background: url("../../svg/filters.svg") no-repeat left 25px center;
  background-size: 25px;
}
@media screen and (min-width: 769px) {
  .archive__filters #jobs-all-filters .filters-title.desktop {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .archive__filters #jobs-all-filters .filters-title.mobile {
    display: block;
  }
}
.archive__filters #jobs-all-filters .filters {
  width: 100%;
  max-width: calc(100% - clamp(20px, 2.27vw + 11.5px, 55px));
  margin-inline: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  scrollbar-width: thin; /* Pour Firefox */
  scrollbar-color: var(--c-input-border) transparent; /* Pour Firefox */
}
.archive__filters #jobs-all-filters .filters [type=checkbox] {
  position: absolute;
  margin: 0;
  opacity: 0;
}
.archive__filters #jobs-all-filters .filters [type=checkbox] + label {
  position: relative !important;
  display: inline-block;
  min-height: 18px;
  padding: 0 0 0 28px;
  cursor: pointer;
  z-index: 1;
  font-weight: 400;
  line-height: 18px;
}
.archive__filters #jobs-all-filters .filters [type=checkbox] + label:before {
  content: "";
  display: block;
  left: 0;
  top: -1px;
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--c-border);
  background: #fff;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
}
.archive__filters #jobs-all-filters .filters [type=checkbox] + label:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  background: var(--c-secondary);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters #jobs-all-filters .filters [type=checkbox]:checked + label:after {
  opacity: 1;
}
.archive__filters #jobs-all-filters .filters [type=checkbox]:focus {
  outline: none;
}
.archive__filters #jobs-all-filters .filters::-webkit-scrollbar {
  width: 8px;
}
.archive__filters #jobs-all-filters .filters::-webkit-scrollbar-thumb {
  background-color: var(--c-input-border);
  border-radius: 10px;
}
.archive__filters #jobs-all-filters .filters::-webkit-scrollbar-track {
  background-color: transparent;
}
.archive__filters #jobs-all-filters .filters::-webkit-scrollbar-button {
  display: none;
}
.archive__filters #jobs-all-filters .filters::-webkit-scrollbar-button:single-button:vertical:increment, .archive__filters #jobs-all-filters .filters ::-webkit-scrollbar-button:single-button:vertical:decrement {
  display: none;
  width: 0;
  height: 0;
  color: transparent;
}
.archive__filters #jobs-all-filters .filters .cb-filter {
  padding-inline: 25px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters #jobs-all-filters .filters .cb-filter__name {
  cursor: pointer;
  padding-block: 10px;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters #jobs-all-filters .filters .cb-filter__name:after {
  position: relative;
  content: "";
  right: 0;
  top: 0;
  width: 18px;
  height: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  background: url("../../svg/select.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
  overflow: hidden;
  padding-block: 5px;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row {
  padding-block: 5px;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row * {
  pointer-events: none;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row label {
  -webkit-margin-after: 0;
          margin-block-end: 0;
  font-size: clamp(16px, 0.06vw + 15.76px, 17px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row label small {
  display: block;
  font-size: 80%;
  opacity: 0.85;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row.disabled {
  opacity: 0.5;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row:not(.disabled) {
  cursor: pointer;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row.selected .checkbox {
  border-color: var(--c-secondary);
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox-row.selected .checkbox:after {
  opacity: 1;
  visibility: visible;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid var(--c-border);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox:after {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--c-secondary);
  z-index: 1;
  left: 50%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters #jobs-all-filters .filters .cb-filter__checkboxes .checkbox input[type=checkbox] {
  position: absolute;
  margin: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.archive__filters #jobs-all-filters .filters .cb-filter:not(.cb-bool-filter) {
  padding-block: 8px;
  border-radius: 8px;
  background-color: #F9F9F9;
}
.archive__filters #jobs-all-filters .filters .cb-filter:not(.cb-bool-filter):hover {
  background-color: #FFFFFF;
}
.archive__filters #jobs-all-filters .filters .cb-filter:not(.cb-bool-filter):hover .cb-filter__name {
  color: var(--c-action);
}
.archive__filters #jobs-all-filters .filters .cb-filter:not(.cb-bool-filter).open .cb-filter__name:after {
  -webkit-transform: rotate(0.5turn);
          transform: rotate(0.5turn);
}
.archive__filters #jobs-all-filters .filters .cb-filter:not(.cb-bool-filter) .cb-filter__checkboxes:not(.open) {
  display: none;
}
.archive__filters #jobs-all-filters .filters-apply {
  background: #fff;
  padding-block: clamp(25px, 0.97vw + 21.36px, 40px);
  padding-inline: clamp(20px, 2.27vw + 11.5px, 55px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.archive__filters #jobs-all-filters .filters-apply > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.archive__filters #jobs-all-filters .filters-apply .apply button {
  position: relative;
  width: 100%;
  max-width: 220px;
  overflow: hidden;
}
.archive__filters #jobs-all-filters .filters-apply .apply button:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  background-color: var(--c-button-primary__background);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters #jobs-all-filters .filters-apply .apply button:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  aspect-ratio: 1;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  border-radius: 50%;
  border: 3px solid #FFF;
  border-bottom-color: transparent;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.archive__filters #jobs-all-filters .filters-apply .apply button.loading {
  overflow: hidden;
}
.archive__filters #jobs-all-filters .filters-apply .apply button.loading:before {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.archive__filters #jobs-all-filters .filters-apply .apply button.loading:after {
  opacity: 1;
  z-index: 1;
  visibility: visible;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}
.archive__filters #jobs-all-filters .filters-apply .delete {
  text-align: right;
}
.archive__filters #jobs-all-filters .filters-apply .delete button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  position: relative;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
  padding-inline: 0;
  color: var(--c-dark);
}
.archive__filters #jobs-all-filters .filters-apply .delete button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--c-link);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 0;
  height: 1px;
}
@media screen and (hover: hover) {
  .archive__filters #jobs-all-filters .filters-apply .delete button:hover:before {
    width: 100%;
  }
}
@media screen and (hover: none) {
  .archive__filters #jobs-all-filters .filters-apply .delete button:before {
    width: 100%;
  }
}
.archive__filters #jobs-all-filters .filters-apply .delete button:before {
  width: 100%;
}
@media screen and (hover: hover) {
  .archive__filters #jobs-all-filters .filters-apply .delete button:hover:before {
    width: 0;
  }
}
.archive__filters .more-filters {
  cursor: pointer;
  margin-left: 10px;
}
.archive__filters-search {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.archive__filters-search .filter-title {
  padding-left: clamp(25px, 1.3vw + 15px, 40px);
}
.archive__filters-search input {
  width: 100%;
  height: var(--select-height);
  border-radius: 45px;
  border: 1px solid #C1C1C1;
  padding: 10px 15px 10px clamp(60px, 1.29vw + 55.15px, 80px);
  background-color: #FFF;
  background-image: url("../../svg/search-filter.svg");
  background-position: left clamp(27px, 1.04vw + 23.12px, 43px) center;
  background-size: 25px;
  background-repeat: no-repeat;
}
.archive__available-terms {
  position: relative;
}
.archive__available-terms .loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--c-page-bg);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.archive__available-terms.loading .loader {
  z-index: 1;
  opacity: 0.85;
  visibility: visible;
}

@media screen and (max-width: 1200px) {
  .archive__filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .archive__filters-search {
    max-width: 415px;
  }
  .archive__filters-see-filters {
    display: none;
  }
  .archive__filters-checkboxes {
    display: block;
  }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.block-multifocus__open-positions-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 10px;
}
.block-multifocus__open-positions-header .archive__filters {
  padding-block: 0;
}
.block-multifocus__open-positions .archive__term {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}
.block-multifocus__open-positions .archive__term:hover .archive__term-title {
  color: var(--c-dark);
}
.block-multifocus__open-positions .archive__term:before, .block-multifocus__open-positions .archive__term:after {
  content: none !important;
}
.block-multifocus__open-positions .archive__term-left:before, .block-multifocus__open-positions .archive__term-left:after {
  content: none !important;
}
.block-multifocus__open-positions .archive__term-left .btn-alert {
  display: none !important;
}
.block-multifocus__open-positions .archive__term-right {
  border-left: none !important;
  padding-left: 0 !important;
}
/*# sourceMappingURL=block-open-positions.css.map */
