/*
Theme Name: ercas
Text Domain: ercas
Version: 1.1
Requires PHP: 7
Description: Theme für ercas
Author URI: https://uxcodes.com/
*/

/*
orange: #F08A00
primary font: #000000
secondary font: #6D6D6D
background gray: #F6F6F6
border gray: #EAE9E7
menu grey: #8D8E90
*/

:root {
  --healthBlue: #009AF0;
}
/* nunito-sans-regular - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/nunito-sans/nunito-sans-v6-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/nunito-sans/nunito-sans-v6-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunito-sans/nunito-sans-v6-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunito-sans/nunito-sans-v6-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunito-sans/nunito-sans-v6-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunito-sans/nunito-sans-v6-latin-regular.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

/* nunito-sans-italic - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/nunito-sans/nunito-sans-v6-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/nunito-sans/nunito-sans-v6-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunito-sans/nunito-sans-v6-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunito-sans/nunito-sans-v6-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunito-sans/nunito-sans-v6-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunito-sans/nunito-sans-v6-latin-italic.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

/* nunito-sans-700 - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/nunito-sans/nunito-sans-v6-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/nunito-sans/nunito-sans-v6-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunito-sans/nunito-sans-v6-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunito-sans/nunito-sans-v6-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunito-sans/nunito-sans-v6-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunito-sans/nunito-sans-v6-latin-700.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

/* nunito-sans-800 - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/nunito-sans/nunito-sans-v6-latin-800.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/nunito-sans/nunito-sans-v6-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunito-sans/nunito-sans-v6-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunito-sans/nunito-sans-v6-latin-800.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunito-sans/nunito-sans-v6-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunito-sans/nunito-sans-v6-latin-800.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

html,
body {
  height: 100%;
  min-width: 320px;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Nunito Sans', sans-serif;
  transition: opacity ease-in-out .2s;
}

#page {
  height: auto;
}

/******************************************************************************/
/*** WPCF7 Plugin *************************************************************/
/******************************************************************************/
.wpcf7-form {
  margin-top: 40px;
}
.wpcf7-form br {
  display: none;
}
.wpcf7-form p {
  margin-bottom: 10px;
}
.wpcf7-form fieldset {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 5px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}
.wpcf7-form fieldset legend {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.wpcf7-form .note {
  color: #6D6D6D;
}
.wpcf7-form input[type=tel],
.wpcf7-form input[type=text],
.wpcf7-form input[type=email] {
  border: 1px solid #dfdfdf;
  outline: none;
  line-height: 1;
  font-weight:400;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 8px;
  transition: border 0.1s;
  width: 100%;
}
.wpcf7-form textarea {
  border: 1px solid #dfdfdf;
  outline: none;
  font-weight:400;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 8px;
  transition: border 0.1s;
  width: 100%;
  resize: vertical;
}
.wpcf7-form input[type=tel]:focus,
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus:hover,
.wpcf7-form input[type=text]:focus:hover,
.wpcf7-form input[type=email]:focus:hover,
.wpcf7-form textarea:focus,
.wpcf7-form textarea:focus:hover {
  border-color: #F08A00;
}
.wpcf7-form input[type=tel]:hover,
.wpcf7-form input[type=text]:hover,
.wpcf7-form input[type=email]:hover,
.wpcf7-form textarea:hover {
  border-color: #6D6D6D;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance label:hover {
  cursor: pointer;
}
input[type=checkbox] {
  width: 16px;
  height: 16px;
}
@media(min-width:768px) {
  .wpcf7-form fieldset {
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
  .wpcf7-form fieldset legend {
    font-size: 20px;
  }
}

select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;

  border: 1px solid #dfdfdf;
  padding: 13.5px 15px;
  border-radius: 6px;
  line-height: 1;
  cursor: pointer;
  color: #000;
}
select::-ms-expand {
  display: none;
}


/******************************************************************************/
/*** Accordion Plugin *********************************************************/
/******************************************************************************/
.wp-block-pb-accordion-item {
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.wp-block-pb-accordion-item:last-of-type {
  border-bottom: none;
}
.wp-block-pb-accordion-item > *:after {
  font-size: 22px;
}
.wp-block-pb-accordion-item > *:focus {
  outline: none;
}
@media(min-width:768px) {
  .wp-block-pb-accordion-item {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .wp-block-pb-accordion-item > *:after {
    font-size: 24px;
  }
}
/******************************************************************************/
/*** Top Bar ******************************************************************/
/******************************************************************************/

#topbar {
  background: #F6F6F6;
  padding: 8px 0;
}
#topbar-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
}
#topbar-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#topbar-menu li a {
  margin: 8px 10px;
  color: #8D8E90;
}
#topbar-menu li a:hover {
  text-decoration: none;
}
#topbar-menu li a i {
  margin-bottom: 3px;
}
#topbar-menu li:first-child a {
  margin-left: 0;
}
@media (min-width: 768px) {
  #topbar {
    padding: 14px 0;
    position: relative;
    z-index: 2;
  }
  #topbar-menu ul {
    justify-content: flex-end;
  }
  #topbar-menu li:last-child a {
    margin-right: 0;
  }
}

/******************************************************************************/
/*** Page Header **************************************************************/
/******************************************************************************/

#page-header {
  margin: 30px 0 0 0;
  border-bottom: 1px solid #D7D7D7;
}
.page-header-col {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#page-header .custom-logo {
  max-width: 200px;
  max-height: 120px;
  height: auto;
  width: auto;
}
#main-menu-toggle {
  touch-action: manipulation;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: none;
  background: #fff;
  background: transparent;
  position: relative;
  width: 56px;
  height: 60px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  justify-content: space-evenly;
}
#main-menu-toggle:hover {
  cursor: pointer;
}
#main-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #F08A00;
  transition: 0.12s;
  position: relative;
}
.menu-open #main-menu-toggle span:first-child {
  transform: rotate(-45deg);
  top: 11px;
}
.menu-open #main-menu-toggle span:last-child {
  transform: rotate(45deg);
  top: -10px;
}
.menu-open #main-menu-toggle span:nth-child(2) {
  opacity: 0;
}

#main-menu {
  width: 100%;
  margin: 13px 0 15px 0;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  overflow: hidden;
}
.menu-open #main-menu {
  max-height: 1000px;
  transition: max-height 0.2s ease-in;
}
#main-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
#main-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#main-menu li a {
  display: block;
  padding: 14px 15px;
  margin: 1px 0;
  color: #000;
  line-height: 1;
  font-size: 18px;
  text-decoration: none;
  font-weight: 400;
}
#main-menu li.current_page_item a,
#main-menu li.current-page-ancestor a {
  color: #F08A00;
  background: #F6F6F6;
}

#main-menu li a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  #page-header {
    padding: 25px 0;
    margin: 0;
    border-bottom: none;
    background: rgba(255,255,255,0.86);
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    z-index: 1;
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #page-header.no-banner {
    position: relative;
    top: 0;
  }
  .page-header-col {
    flex-wrap: nowrap;
  }
  #main-menu-toggle {
    display: none;
  }
  #main-menu {
    width: auto;
    margin: 0;
    max-height: 1000px;
    overflow: inherit;
    height: 20px;
  }
  #main-menu ul {
    flex-direction: row;
  }
  #main-menu li a {
    padding: 0;
    margin: 0 12px 0px 12px;
  }
  #main-menu li:last-child a {
    margin-right: 0;
  }
  #main-menu li.current_page_item a,
  #main-menu li.current-page-ancestor a {
    background: #fff;
    background: transparent;
  }
}
@media (min-width: 992px) {
  #main-menu li a {
    margin: 0 25px 0px 25px;
  }
}



/******************************************************************************/
/*** Secondary Menu ***********************************************************/
/******************************************************************************/

#secondary-header {
  padding-top: 15px;
  padding-bottom: 20px;
}
#secondary-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
#secondary-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#secondary-menu li a {
  margin: 8px 0;
  color: #6D6D6D;
  line-height: 1;
  font-size: 18px;
  text-decoration: none;
  font-weight: 400;
  position: relative;
  display: block;
}
#secondary-menu li.current_page_item a {
  color: #F08A00;
}


#secondary-menu li a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  #secondary-header {
    padding-top: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    background: rgba(255,255,255,0.86);
    position: absolute;
    top: 141px;
    left: 0;
    width: 100%;
    z-index: 2;
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #secondary-header.no-banner {
    position: relative;
    top: 0;
  }
  #secondary-menu ul {
    flex-direction: row;
  }
  #secondary-menu li a {
    margin: 8px 10px 0px 15px;
  }
  #secondary-menu li:first-child a {
    margin-left: 0;
  }
  #secondary-menu li.current_page_item a:after {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #F08A00;
    bottom: -21px;
    left: 0;
  }
}

/* Fixed Menus */

@media (min-width: 768px) {
  #topbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: 0.2s;
  }
  #page-header {
    position: fixed;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    transition: 0.2s;
  }
  #secondary-header {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    transition: 0.2s;
  }
  .scrolled-header #topbar {
    padding: 8px 0;
  }
  .scrolled-header #page-header {
    top: 41px;
    padding: 15px 0;
  }
  .scrolled-header #secondary-header {
    top: 110px;
  }
}

/******************************************************************************/
/*** Header Image *************************************************************/
/******************************************************************************/

.fullscreen-image {
  height: 21vh;
  min-height: 180px;
  max-height: 320px;
  width: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
.fullscreen-image .subheading {
  color: #fff;
  margin: 0;
  font-weight: 800;
  font-size: 18px;
}
.fullscreen-image h1,
.fullscreen-image h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .fullscreen-image {
    height: 30vh;
    max-height: 420px;
    min-height: 320px;
    position: relative;
    z-index: 0;
  }
  .fullscreen-image:after {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.05;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    content: '';
  }
  .fullscreen-image .subheading {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.08);
  }
  .fullscreen-image h1,
  .fullscreen-image h2 {
    font-size: 42px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.08);
  }
}
/******************************************************************************/
/*** Page Content *************************************************************/
/******************************************************************************/

#page-content {
  padding: 40px 0;
}
@media (max-width: 767px) {
  #page-content .wp-block-columns {
    flex-wrap: wrap!important;
  }
  #page-content .wp-block-column {
    flex-basis: 100% !important;
    margin-left: 0!important;
  }
}
@media (min-width: 768px) {
  #page-content {
    padding: 60px 0;
  }
  #page-content .wp-block-columns {
    flex-wrap: nowrap!important;
  }
}
#page-content .subheading {
  margin: 0;
  font-weight: 800;
  font-size: 18px;
}
#page-content h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #F08A00;
  margin: 0 0 20px 0;
}
#page-content h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 40px 0 20px 0;
}
#page-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #F08A00;
  margin: 30px 0 10px 0;
}
#page-content h4 {
  font-size: 18px;
  font-weight: 700;
}
#page-content p {
  font-size: 16px;
  margin-bottom: 15px;
}
#page-content a,
#page-content a:hover {
  color: #F08A00;
}
#page-content ul {
  padding: 0 0 0 12px;
  margin: 0 0 15px 0;
}
#page-content ul li {
  list-style: none;
  font-size: 16px;
  line-height: 1.8;
  flex-shrink: 1;
  position: relative;
  padding-left: 21px;
}
#page-content ul li:before {
  content: '';
  background-image: url('./img/icons/ercas-list-item.svg');
  background-size: cover;
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  left: 0;
  top: 7.2px;
}
#page-content a.button,
#page-content button,
#page-content input[type=button],
#page-content input[type=submit] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: #F08A00;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 800;
  transition: 0.1s;
}
#page-content a.button:hover {
  background: #F08A00;
  color: #fff;
  text-decoration: none;
}
#page-content button:disabled,
#page-content input[type=button]:disabled,
#page-content input[type=submit]:disabled {
  opacity: 0.8;
  background: #6D6D6D;
}
#page-content blockquote p {
  font-size: 22px;
}
#page-content blockquote cite {
  font-size: 16px;
}
#page-content .wp-block-button a,
#page-content .wp-block-button a:hover {
  color: #fff;
  text-decoration: none;
}
#page-content .wp-block-image img {
  max-width: 100%;
  height: auto;
}
#page-content .border-boxes .wp-block-column {
  border: 1px solid #EAE9E7;
  border-radius: 8px;
  padding: 20px 15px 10px 15px;
  margin-bottom: 30px;
}
#page-content .border-boxes .wp-block-column img {
  height: 70px;
  width: auto;
}
#page-content table {
  font-size: 16px;
}
#page-content figure.is-style-regular table * {
  border-color: transparent;
  padding: 5px 0;
}
@media (min-width: 768px) {
  #page-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
  }
  #page-content h2 {
    font-size: 32px;
    margin: 45px 0 25px 0;
  }
  #page-content h3 {
    font-size: 26px;
    margin: 40px 0 10px 0;
  }
  #page-content h4 {
    font-size: 20px;
    font-weight: 700;
  }
  #page-content p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  #page-content img,
  .wp-block-image img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
  #page-content ul {
    padding: 0 0 0 18px;
    margin: 0 0 20px 0;
  }
  #page-content ul li {
    font-size: 18px;
    padding-left: 26px;
  }
  #page-content ul li:before {
    width: 16px;
    height: 16px;
    top: 8px;
  }
  #page-content .border-boxes .wp-block-column {
    margin-bottom: 0;
  }
  #page-content table {
    font-size: 18px;
  }
}
/******************************************************************************/
/*** Quick Contact ************************************************************/
/******************************************************************************/

#quick-contact {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 9;
}
#quick-contact .widget {
  background: #fff;
  /*margin-bottom: 70px;*/
  bottom: 70px;
  position: relative;
  border-top: 2px solid #F08A00;
  padding: 20px 15px;
  display: none;
  box-shadow: 0px 2px 0px 1px #e6e6e6;
  overflow: hidden;
  min-width: 290px;
  width: 290px;
}
.quick-contact-open #quick-contact .widget {
  display: block;
}
#quick-contact .widget > * {
  position: relative;
}
.quick-contact-open #quick-contact .widget > * {
  animation-name: slideinfromtop;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
}
@keyframes slideinfromtop {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }

  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
#quick-contact-toggle {
  touch-action: manipulation;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: none;
  background: #F08A00;
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  right: 0;
  bottom: 0;
  box-shadow: 0px 2px 0px 1px #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}
#quick-contact-toggle > i {
  margin-left: 6px;
  margin-bottom: 6px;
}
#quick-contact-toggle:hover {
  background: #FB8F00;
}
@media (min-width:380px) {
  #quick-contact .widget {
    width: 340px;
  }
}
/******************************************************************************/
/*** Page Footer **************************************************************/
/******************************************************************************/

#page-footer {
  background: #F6F6F6;
  padding: 40px 0;
}
#page-footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
#page-footer li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#page-footer li a {
  margin: 8px 10px;
  color: #8D8E90;
  text-decoration: underline;
}
#page-footer li a:hover {
  text-decoration: none;
}
#page-footer li a i {
  margin-bottom: 3px;
}
.footer-copyright {
  margin: 10px 0 0 0;
  color: #6D6D6D;
  text-align: center;
}
.footer-copyright a,
.footer-copyright a:hover {
  color: #6D6D6D;
  text-decoration: none;
}
@media (min-width: 768px) {
  #page-footer {
    background: #F6F6F6;
    padding: 80px 0;
  }
  .footer-copyright {
    margin: 20px 0 0 0;
  }
}

/******************************************************************************/
/*** Karriere/Stellenanzeigen *************************************************/
/******************************************************************************/

.page-template-template-stellen-personio #page-content {
  background-color: #fdfdfd;
}

.number-of-jobs {
  color:#6D6D6D;
}

.search-wrap {
  position: relative;
}
.fuzzy-search {
  background: #fff;
  display: flex;
  border: 1px solid #dfe1e5;
  box-shadow: none;
  height: 44px;
  width: 100%;
  line-height: 1.4;
  padding: 4px 25px 4px 48px;
  border-radius: 22px;
  font-size: 18px;
  margin-bottom: 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.search-wrap:before {
  background: url('./img/icons/search-icon.png');
  display: block;
  width: 20px;
  height: 20px;
  content: '';
  background-size: cover;
  position: absolute;
  top: 11px;
  left: 24px;
}

.fuzzy-search:active,
.fuzzy-search:focus {
  box-shadow: 0 1px 6px rgba(32,33,36,0.28);
  border-color: rgba(223,225,229,0);
  outline: none;
}

#page-content .sort-label {
  margin-bottom: 6px;
}
.filter-buttons {
  display: flex;
  margin-bottom: 40px;
}
#page-content .filter-buttons button {
  touch-action: manipulation;
  margin-right: 10px;
  padding: 6px 20px;
  background-color: #BDBDBD;
  display: flex;
}
#page-content .filter-buttons button span {
  margin-left: 6px;
}

#page-content .filter-buttons button:hover,
#page-content .filter-buttons button.asc,
#page-content .filter-buttons button.desc,
#page-content .filter-buttons button.activeFilterToggle {
  background-color: #F08A00;
}

#page-content .filter-buttons button.asc:after {
  /*content: "\002B06";
  content: "\A71B";*/
  font-family: 'dashicons';
  content: "\f343";
  padding-left: 4px;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  text-align: center;
  padding-top: 1px;
}

#page-content .filter-buttons button.desc:after {
  /*content: "\002B07";
  content: "\A71C";*/
  font-family: 'dashicons';
  padding-left: 4px;
  content: "\f347";
  padding-left: 4px;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  text-align: center;
  padding-top: 2px;
}

#page-content .jobs-list {
  margin: 0;
  padding: 0;
}
#page-content .jobs-list h4 {
  margin: 22px 0 18px 0;
}
#page-content .jobs-list > li {
  margin: 0;
  padding: 0;
}
#page-content .jobs-list > li a {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 15px 25px;
  box-shadow: 0 0px 0px 1px #e6e6e6;
  margin-bottom: 25px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top: 2px solid #e6e6e6;
  transition-duration: 0.2s;
  color: #000;
  line-height: 1.4;
}
#page-content .jobs-list > li a:hover {
  cursor: pointer;
  border-top: 2px solid #F08A00;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  text-decoration: none;
}
#page-content .jobs-list > li.category-health a {
  border-top: 2px solid var(--healthBlue);
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  box-shadow: 0 0px 0px 0px #e6e6e6;
}
#page-content .jobs-list > li.category-health a:hover {
  border-top-color: var(--healthBlue);
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
}
#page-content .jobs-list > li.category-health a:hover .job-title {
  color: var(--healthBlue);
}
#page-content .jobs-list > li:before {
  display: none;
  width: 0;
  height: 0;
  margin-top: 0;
  margin-right: 0;
}
.jobs-list .job-title {
  font-weight: 700;
  font-size: 20px;
  width: 100%;
  transition-duration: 0.2s;
}
.jobs-list .job-datum {
  font-size: 14px;
  color: #6D6D6D;
  width: 100%;
  display: block;
  margin: 2px 0 0 0;
  font-size: 16px;
  display: none;
}
.keywords {
  display: none;
  opacity: 0;
  visibility: hidden;
}

#page-content .pagination {
  margin: 0;
  padding: 0;
  text-align: center;
}
#page-content .pagination li {
  margin-right: 10px;
  margin-left: 0;
  display: inline;
  color: #000;
}
#page-content .pagination li a {
  color: #000;
}
#page-content .pagination li a:hover {
  text-decoration: underline;
}
#page-content .pagination li:before {
  display: none;
  width: 0;
  height: 0;
}
#page-content .pagination li.active a {
  color: #F08A00;
}
#page-content .pagination li.active a:hover {
  text-decoration: none;
}

#page-content .jobs-list > li a:hover .job-title {
  color: #F08A00;
}

#page-content .back-to-jobs-button {
  display: flex;
}
#page-content .back-to-jobs-button:before {
  font-family: 'dashicons';
  padding-right: 4px;
  content: "\f340";
  padding-left: 4px;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  text-align: center;
  padding-top: 1px;
}
#page-content .job-content {
  margin-top: 40px;
  padding: 15px 25px 0 25px;
  border-top: 3px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
#page-content .job-content.category-health {
  border-top-color: var(--healthBlue);
}
#page-content .job-content.category-health h3,
#page-content .job-content.category-health a,
#page-content .job-content.category-health a:hover {
  color: var(--healthBlue);
}
#page-content .job-content.category-health a.button,
#page-content .job-content.category-health a.button:hover {
  background-color: var(--healthBlue);
  color: #fff;
}
#page-content .job-content.category-health ul li::before {
  background-image: url('./img/icons/ercas-list-item-healthBlue.svg');
}

#page-content .job-content h1,
#page-content .job-content h2 {
  margin: 0;
  margin-top: 20px;
  font-weight: 700;
  line-height: 1.2;
  font-size: 28px;
  color: inherit;
}
@media (min-width: 768px) {
  #page-content .job-content h1,
  #page-content .job-content h2 {
    font-size: 32px;
  }
}
#page-content .kurzprofil {
  padding: 15px 15px;
  background: #F6F6F6;
  margin: 20px 0;
}
#page-content  .kurzprofil > h3 {
  margin: 10px 0 15px 0;
}
#page-content  .kurzprofil > p {
  margin-bottom: 15px;
}
.stelle-ctas {
  margin-top: 15px;
  position: sticky;
  bottom: 0;
  background: rgba(255,255,255,0.95);
  padding: 20px 10px;
  border-top: 1px solid #dfdfdf;
}
#page-content h1.initiativ-header,
#page-content h2.initiativ-header {
  margin-bottom: 10px;
}

/* sharing buttons */

.share-buttons {
  margin: 40px 0 30px 0;
}
#page-content .share-buttons h4 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 10px;
}
.share-buttons > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.share-buttons .share-list a svg {
  margin-right: 12px;
  width: 20px;
  height: auto;
}
.share-buttons .share-list div:last-child a svg {
  margin-right: 0;
}
#page-content .share-buttons a,
#page-content .share-buttons a svg path {
  color: #212529;
  fill:#212529;
}


/* mailchimp newsletter embedded form */

#mc_embed_signup {
  padding: 0 25px;
}
#mc_newsletter {
  /*background: #2f2f2f;
  color: #fff;*/
  background: #F6F6F6;
  color: #000;
  border-bottom: 1px solid #ddd;

  padding: 60px 0;
}
#mc_newsletter .subheading {
  margin: 0 0 10px 0;
  font-weight: 800;
  font-size: 18px;
}
#mc_newsletter h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  /*color: #fff;*/
  color: #000;
  margin-bottom: 15px;
}
#mc_newsletter .mc-field-group {
  display: flex;
  flex-direction: column;
}
#mc_newsletter .mc-field-group #hiddenTemp {
  opacity: 0;
  transition-duration: .2s;
  font-size: 14px;
}
#mc_newsletter .mc-field-group #hiddenTemp.visibleLabel {
  opacity: .8;
}
#mc_newsletter #mce-EMAIL {
  width: 100%;
  line-height: 1;
  padding: 12px;
  margin-bottom: 20px;
  font-size: 18px;
  border-radius: 6px;
  outline: none;
  border: 0;
}
#mc_newsletter .gdprRequired {
  margin-bottom: 20px;
}
#mc_newsletter .gdprRequired label {
  display: flex;
}
#mc_newsletter .gdprRequired label:hover,
#mc_newsletter .gdprRequired label input[type="checkbox"]:hover {
  cursor: pointer;
}
#mc_newsletter .gdprRequired label input[type="checkbox"] {
  margin-top: 2px;
  margin-right: 10px;
  width: 18px;
  height: 18px;
}
#mc_newsletter .content__gdprLegal {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}
#mc_newsletter .content__gdprLegal a {
  color: #F08A00;
}
#mc_newsletter #mc-embedded-subscribe {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: #F08A00;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 800;
  transition: 0.1s;
  margin-left: 10px;
}
#mc_newsletter #mc-embedded-subscribe:disabled {
  opacity: 0.8;
  background: #6D6D6D;
}
@media (min-width: 768px) {
  #mc_newsletter {
    padding: 80px 0;
  }
  #mc_newsletter h2 {
    font-size: 36px;
  }
}

/******************************************************************************/
/*** Filter Button Cities *****************************************************/
/******************************************************************************/

#filterButtonsWrap {
  position: relative;
}
#filterButtons {
  background: #fff;
  border: 1px solid #ddd;
  position: absolute;
  top: 42px;
  left: 0;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 8px 0;
  z-index: 1;
}
#page-content .filter-buttons  #filterButtons label {
  background: none;
  color: #000;
  padding: 4px 12px;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  user-select: none;
}
#page-content .filter-buttons  #filterButtons label:hover,
#page-content .filter-buttons  #filterButtons label input:hover {
  cursor: pointer;
}
#page-content .filter-buttons  #filterButtons label input {
  margin-right: 6px;
}

/******************************************************************************/
/*** Fehlermeldung Personio Bewerbungsformular API Error **********************/
/******************************************************************************/

#form-error-personio {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#form-error-personio-overlay {
  background: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(4px);
  z-index: 999998;
}
#form-error-personio-content {
  width: calc(100% - 30px);
  background: #fff;
  padding: 15px 20px;
  position: relative;
  z-index: 999999;
  margin: 15px auto;
  max-width: 830px;
  border-radius: 6px;
}
#form-error-personio-content h2 {
  margin: 15px 30px 20px 0;
}
#form-error-personio-external-link {
  margin: 5px 0 0 0;
  display: inline-block;
}
button#form-error-personio-close-modal {
  position: absolute;
  top: 7px;
  right: 0;
  background: transparent;
  color: #000;
  font-size: 21px;
  font-weight: 100;
}
@media (min-width: 768px) {
  #form-error-personio-content {
    padding: 20px 30px;
  }
}


/******************************************************************************/
/*** Azubi Personio XML Feed Positions Block **********************************/
/******************************************************************************/
.ercas-azubi-job-list {
  margin: 50px 0 30px 0;
}
.accordion {
  border-bottom: 1px solid #f0f0f0;
}
.accordion:last-child {
  border-bottom: none;
}
#page-content .accordion-title {
  cursor: pointer;
  margin: 26px 0 26px 0!important;
  padding-right: 25px;
  hyphens: auto;
  user-select: none;
  position: relative;
  font-size: 20px;
  font-weight: 700;
}
.accordion-title:after {
  color: #777;
  content: "+";
  font-weight: 300;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.accordion.active > .accordion-title:after {
  content: "-";
  }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition-duration: 0.2s;
}
#page-content .accordion-content.job-content {
  margin: 0;
  border: none;
  padding: 0;
  border-radius: inherit;
}
#page-content .accordion-content.job-content .custom-body {
  margin-top: 0;
}
.accordion-content h3:first-child {
  margin-top: 10px!important
}
.apply-footer {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 30px;
}

/******************************************************************************/
/*** Coveto Single Position/Job ***********************************************/
/******************************************************************************/
div.custom-backlink {
  display: none;
}
.custom-paper > h1 {
  display: none;
}
.job-content div.custom-paper {
  margin: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 100%;
}
@media (min-width: 768px) {
  #page-content .job-content div.custom-paper h1,
  #page-content .job-content div.custom-paper h2 {
    font-size: 26px;
    margin: 40px 0 10px 0;
  }
}
#page-content .job-content div.custom-paper h1,
#page-content .job-content div.custom-paper h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #F08A00;
  margin: 30px 0 10px 0;
}
#page-content .job-content div.custom-paper .coveto_handlungsaufforderung h1 {
  color: #000;
  line-height: 1.5;
  font-size: 18px;
  margin: 30px 0;
}
/******************************************************************************/
/*** Coveto Modal *************************************************************/
/******************************************************************************/
#applyModal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index:99999;
  display: none;
  background: #fff;
  transition: 0.2s;
  transform: translateY(100%);
}

.modal-open {
  overflow: hidden;
}
.modal-open #applyModal {
  display: block;
  opacity: 0;
}
.modal-open.modal-open-fadein #applyModal {
  opacity: 1;
  transform: translateY(0);
}
.applyModalheader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* =====================================================
 5. FIX: SCHLIESSEN BUTTON (Absolute Gleichheit erzwungen)
 ===================================================== */

#applyModal .close-modal {
    position: absolute !important; 
    top: 15px !important;     
    right: 15px !important;   
    z-index: 99999 !important; 
    
    width: 110px !important;
    height: 36px !important;
    min-width: 110px !important;
    max-width: 110px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    
    background-color: #333333 !important; 
    border: none !important; 
    border-radius: 18px !important; 
    
    padding: 0 !important; 
    margin: 0 !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    
    box-sizing: border-box !important;
    transform: none !important;
    
    opacity: 1 !important; /* Wichtig: Verhindert, dass das Theme den Button versteckt */
}

/* Text exakt normieren */
#applyModal .close-modal span {
    display: inline-block !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: bold !important;
    font-family: Arial, sans-serif !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* SVG (das X) exakt normieren */
#applyModal .close-modal svg {
    display: inline-block !important;
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    margin: 0 6px 0 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

#applyModal .close-modal svg path {
    stroke: #FFFFFF !important;
    fill: #FFFFFF !important;
}

#applyModal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* single position share buttons */
.ercas-socialmedia {
  margin-top: -50px;
  margin-bottom: 30px;
}
.ercas-socialmedia-heading {
  font-weight: bold;
  margin: 0 0 10px 0;
  text-align: center;
}
.coveto_socialmedia_buttons {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.coveto_socialmedia_buttons > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #F08A00;
  filter: grayscale(1) brightness(1.35);
  transition: 0.2s;
}
.coveto_socialmedia_buttons > a:hover {
  filter: none;
}
.coveto_socialmedia_buttons > a > svg {
  width: 20px;
  height: 20px;
}
.coveto_socialmedia_buttons > a > svg path {
  fill: #fff;
}