@charset "UTF-8";
.CareerList-intro {
  text-align: center;
  padding: var(--spaceXxl) 0;
  background-color: var(--colorSecondaryBg);
}

.CareerList-intro__description {
  margin: var(--spaceLg) 0;
}

.CareerList-recruitment {
  margin: var(--spaceXl) 0;
  padding: var(--spaceXl) 0;
  background-color: var(--colorSecondaryBg);
}

.CareerList-recruitment__form-title {
  text-align: center;
}

.CareerList-recruitment__form-description {
  text-align: center;
  margin: var(--spaceLg) auto;
}

.CareerList-recruitment__form-button {
  text-align: center;
  margin-top: var(--spaceMd);
}

.CareerList-offers {
  display: flex;
  flex-flow: column;
}

.Benefits {
  margin: var(--spaceXl) 0;
}

@media (min-width: 48rem) {
  .Benefits {
    margin: var(--spaceXxl) 0;
  }
}

.Benefits-title {
  text-align: center;
  margin-bottom: var(--spaceMd);
}

.Benefits-list {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: var(--spaceLg);
}

@media (min-width: 48rem) {
  .Benefits-list {
    flex-flow: row;
  }
}

.Benefits-item {
  flex: 1;
}

.Benefits-item__title {
  font-weight: 700;
  font-size: var(--textMd);
  margin-bottom: var(--spaceRg);
}

.Benefits-item__list {
  display: flex;
  flex-flow: column;
  gap: var(--spaceSm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.Benefits-item__list-item {
  position: relative;
  padding-left: 2rem;
  font-size: var(--textSm);
  line-height: calc(var(--textRg) * 1.2);
}

.Benefits-item__list-item::before {
  content: '';
  display: block;
  background-color: var(--colorText);
  height: 1px;
  width: 1rem;
  position: absolute;
  left: 0;
  top: calc(var(--textRg) * 1.2 / 2);
}

.CareerItem {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spaceMd);
  padding: var(--spaceMd) 0;
  border-bottom: 1px solid hsla(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 1%), 0.3);
}

@media (min-width: 48rem) {
  .CareerItem {
    flex-wrap: nowrap;
  }
}

.CareerItem:first-child {
  margin-top: var(--spaceLg);
}

.CareerItem:last-child {
  border-bottom: none;
}

.CareerItem-title {
  font-weight: 600;
  width: 100%;
  font-size: var(--textMd);
  margin: 0;
}

@media (min-width: 48rem) {
  .CareerItem-title {
    width: 60%;
    font-size: var(--textRg);
  }
}

.CareerItem-place {
  display: flex;
  align-items: center;
  gap: var(--spaceXs);
  font-size: var(--textRg);
}

@media (min-width: 48rem) {
  .CareerItem-place {
    font-size: var(--textSm);
  }
}

.CareerItem-more {
  margin-left: auto;
  font-size: var(--textRg);
}

@media (min-width: 48rem) {
  .CareerItem-more {
    font-size: var(--textSm);
  }
}

.CareerForm-title {
  text-align: center;
}

.CareerForm-description {
  text-align: center;
}

.CareerForm .AppForm-button {
  text-align: center;
  margin-top: var(--spaceMd);
}

.select2 .selection {
  width: 100%;
  display: block;
  border: var(--sizeInputBorder) solid var(--colorInputBorder);
  background: var(--colorInputBackground);
  border-radius: var(--sizeInputBorderRadius);
  padding: var(--sizeInputPadding);
  font-size: var(--sizeInputFont);
  transition: var(--animationBase);
  outline: none;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border: none;
  border-radius: 0;
  background-color: var(--colorInputBackground);
  height: unset;
  min-height: unset;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  line-height: inherit;
  padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default .select2-selection--multiple .select2-selection__arrow b {
  border-color: var(--colorText) transparent transparent transparent;
  border-width: 7px 6px 0 6px;
  margin-left: 0;
  margin-top: 0;
  transform: translateY(-50%);
  left: 0;
  right: auto;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 0;
  width: calc(var(--sizeInputPaddingHorizontal) * 1.25);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
.select2-container--default.select2-container--open .select2-selection--multiple .select2-selection__arrow b {
  border-color: transparent transparent var(--colorText) transparent;
  border-width: 0 6px 7px 6px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none;
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 0;
}

.select2-container--default .select2-results__option {
  font-size: var(--sizeInputFont);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--colorBrand);
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  outline: 0;
  font-size: var(--sizeInputFont);
}

/* odstraní "extra" 7px výšky u multi-selectu */
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

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

.CareerList-searchInfo {
  text-align: center;
  margin-top: 2rem;
  color: var(--stateError);
}

/* --- --- --- */

/*# sourceMappingURL=career-list.min.css.map */
