/*################## CSS ##################*/

body {
  display: flex;
  flex-direction: column;
  color: var(--primary_text_color);
}

#body-background-image {
  z-index: -65;
  position: fixed;
  background: var(--body_background);
  background-position: center top !important;
  background-size: 100% auto !important;
  height: 100%;
  width: 100%;
}

#main-container {
  background: transparent;
  min-height: auto;
  flex: 1;
  left: 0;
  right: 0;
  top: 10px;
  z-index: 1000;
}

#main-container {
  background: var(--container_background);
}

.container, .card {
  background: transparent;
  min-height: auto;
}

header {
  min-height: var(--body_header_height);
  background: var(--body_header_background);
  box-shadow: 2px 2px 8px var(--body_header_shadow_color);
  color: var(--body_header_color);
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
}

#header-div {
  align-content: center;
  height: 100%;
  background: transparent;
  margin: auto;
  padding: 0px;
}

#header-logo {
  max-width: 100%;
  max-height: var(--body_header_logo_size);
  align-self: center;
}

#header-image {
  padding: 0px;
  max-width: 100%;
}

.carouselExampleIndicators, button {
  background: transparent;
  border: 0px;
}

.filter-search-col {
  display: flex;
  flex-direction: column;
}

#filter-search {
  height: 100%;
  padding: 5px 8px;
  border: 1px solid var(--button_border_color);
  outline-color: var(--button_border_color);
  border-radius: var(--border_radius);
}

#filter-search {
  border: 1px solid var(--filter_button_border_color);
  outline-color: var(--filter_button_border_color);
}

.filter-element {
  height: 100%;
  padding: 10px 0 0 0;
  border-radius: var(--border_radius);
  white-space: normal;
}

.filter-dropdown-menu {
  width: 100%;
}

.filter-dropdown-menu-search {
  padding: 10px;
  margin-top: -9px;
  border: 1px solid transparent;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 0;
}

.filter-dropdown-menu-reset {
  border-bottom: 1px solid #d9d9d9;
}

.filter-dropdown-menu-items {
  max-height: 77vh;
  overflow-y: auto;
}

.form-control:focus {
  border: 1px solid rgba(0, 0, 0, .15);
}

.btn:focus, .form-control:focus {
  outline: 0;
  box-shadow: 0 0 0 0;
  cursor: pointer;
}

.btn {
  color: var(--button_color);
  background-color: var(--button_background_color);
  border: 1px solid var(--button_border_color);
  border-radius: var(--border_radius);
}

.btn:hover {
  color: var(--button_hover_color);
  background-color: var(--button_hover_background_color);
}

.btn-invert {
  color: var(--button_background_color);
  background-color: var(--button_color);
  border: 1px solid var(--button_background_color);
  border-radius: var(--border_radius);
}

.btn-invert:hover {
  color: var(--button_background_color);
  background-color: var(--button_color);
  border: 1px solid var(--button_background_color);
  border-radius: var(--border_radius);
}

.toggle_icon_class {
  display: flex;
  align-items: center;
}

.toggle_icon_class i {
  padding-right: 10px;
}

.ausschreibungstyp-dropdown-header {
  padding-left: 1rem;
  width: 100%;
  white-space: break-spaces;
}

.dropdown-toggle > span {
  white-space: initial;
}

.dropdown-toggle {
  border-color: var(--filter_button_border_color);
  background: var(--filter_button_background_color);
  color: var(--filter_button_color);
}

.dropdown-toggle:hover {
  background: var(--filter_button_hover_background_color);
  color: var(--filter_button_hover_color);
}

.dropdown-item {
  white-space: initial;
}

.dropdown-item.active, .dropdown-item:active {
  color: var(--button_hover_color);
  background-color: var(--button_hover_background_color);
}

.btn-important {
  color: var(--important_button_color);
  background-color: var(--important_button_background_color);
  border: 1px solid var(--important_button_border_color);
}

.btn-important:hover {
  color: var(--important_button_hover_color);
  background-color: var(--important_button_hover_background_color);
}

.btn-transparent, .btn-transparent:hover {
  background: transparent;
}

.card-title, .card-title-a:hover {
  color: var(--secondary_text_color);
}

button.collapsed > h3 > .fa-angle-up {
  display: none;
}

button:not(.collapsed) > h3 > .fa-angle-down {
  display: none;
}

.filter-auswahl-counter {
  min-width: 20px;
  float: right;
}

.ausschreibungstyp-collapse {
  padding: 0px;
}

.ausschreibungstyp-dropdown, .ausschreibungstyp-dropdown:hover {
  text-decoration: none !important;
  padding-left: 0px !important;
  border: 0px !important;
  text-align: left;
  width: 100%;
  white-space: nowrap;
  color: black;
}

.ausschreibungsblock-card-header {
  padding-left: 0px;
}

.overviewRow:not(:last-child) {
  border-bottom: 1px solid grey;
}

.ausschreibung_icon {
  height: 24px;
  width: 24px;
  text-align: center;
  margin-top: -3px;
  pointer-events: none;
  color: var(--primary_color);
  fill: var(--primary_color);
}

.ausschreibung-div {
  font-weight: bold;
  padding-bottom: 10px;
  display: flex;
  align-items: baseline;
  word-break: break-word;
}

.ausschreibung-svg-div {
  padding-right: 5px;
  display: block;
}

.ausschreibung-svg-div > img {
  width: 30px;
}

.bild_ausschreibung {
  max-width: 200px;
  max-height: 100px;
  padding-top: 5px;
}

.ansprechpartner-liste {
  display: flex;
  flex-wrap: wrap;
}

.ansprechpartner-box {
  @media (min-width: 768px) {
    flex-basis: 50%;
  }

  min-width: 100%;
}

.ansprechpartner-titel {
  padding-top: 26px;
  font-size: 1.4rem;
}

.information-ansprechpartner-name {
  color: black;
}

.bild_ansprechpartner {
  max-width: 119px;
  width: 100%;
  max-height: 119px;
  object-fit: contain;
}

.bild_ansprechpartner_round {
  border-radius: 100px;
  height: 85px;
  width: 85px;
  object-fit: cover;
}

.bild_ansprechpartner_div {
  margin-top: 0.5rem;
  min-width: 6.5rem;
}

.ansprechpartner-card-title {
  margin-bottom: 0;
}

.guidecom_percos-fileUploadError {
  margin-top: 1em;
  color: red;
  font-size: 14px;
  list-style: none;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.benefit-card {
  background-color: transparent;
  width: 80%;
  min-width: 17rem;
  aspect-ratio: 1 / 1;
  perspective: 1000px;
  margin-top: 1.4rem;
  margin-right: 1.4rem;
  @media (min-width: 768px) {
    flex-basis: 30%;
  }
}

.benefit-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.benefit-card:hover .benefit-card-inner {
  transform: rotateY(180deg);
}

.benefit-card-front, .benefit-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.benefit-card-front {
  font-size: larger;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-color: white; /* Firefox */
}

.benefit-card-front > img {
  width: 45%;
}

.benefit-card-front > p {
  padding: 0rem 0.5rem;
  margin-bottom: 0px;
}

.benefit-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  @media (max-width: 768px) {
    font-size: 1vp;
  }
  background-color: white; /* Firefox */
}

.benefit-card-back > img {
  width: 35%;
}

.benefit-card-back > p {
  padding: 0rem 1rem;
  margin-bottom: 0px;
  overflow-y: auto;
}

.dark_grey {
  color: #777;
}

a :not(.footer-impressum) :not(button), a :not(.footer-impressum) :not(button) :hover {
  color: var(--a_color);
}

.footer-impressum {
  padding-right: 20px;
  cursor: pointer;
}

.list-group-item {
  background: transparent;
}

.card-body > h1 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.0;
}

.card-body > h1 > span {
  font-family: unset !important;
}

.deprecated-browser-version {
  margin-bottom: 1em;
  background-color: #ffe6e6;
  border: 1px #3a3a3a solid !important;
  border-radius: var(--border_radius);
  padding: 5px 10px;
}

#deprecated-browser-version-info {
  margin: 0px !important;
}

input[type="checkbox"], input[type="radio"] {
  accent-color: var(--primary_color);
}

.extra-formular-feld {
  margin-top: 1.5em;
  border-top: 1px solid grey;
  padding-top: 1.5em;
}

.pflichtfeld-label {
  text-align:left;
  padding-top: 15px;
}

.modal-footer .pflichtfeld-label {
  text-align: left;
  position: absolute;
  left: 15px;
  padding-top: 0;
}

.detail-sticky-bewerben-box .button-jetzt-bewerben-div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.detail-sticky-bewerben-box {
  position: sticky;
  top: 0;
  z-index: 3;
  background: white;
}

.detail-sticky-bewerben-box .detail-title {
  font-size: 1.5rem !important;
  font-weight: 500 !important;
}

.detail-sticky-bewerben-box-shadow {
  box-shadow: 0 45px 35px -40px rgba(0, 0, 0, 0.5) !important;
}

.detail-sticky-bewerben-box-titel {
  font-size: 22px;
}

.detail-sticky-bewerben-box-small-content > * {
  font-size: 14px;
  font-weight: 300;
  height: 100%;
  padding: 0;
  align-items: center;
}

.detail-sticky-bewerben-box p {
  margin-bottom: 0;
}

.top-rounded-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.detail-button {
  padding-left: 32px;
  padding-right: 32px;
}

.shariff {
  margin-left: 0px;
}

.job-teilen-div {
  padding: 1.25rem;
}

.form-check-div {
  padding: 3px 0px 35px 20px;
}

footer {
  min-height: var(--body_footer_height);
  background: var(--body_footer_background);
  box-shadow: -2px -2px 8px var(--body_footer_shadow_color);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#footer-div > a {
  color: var(--body_footer_color);
}

#footer-div {
  background: transparent;
  color: var(--body_footer_color);
  padding-top: 0px;
  padding-bottom: 0px;
}

.full-width {
  width: 100%;
}

.not-visible {
  display: none;
}

.carousel {
  width: 100%;
}


#login-with-xing-button {
  min-width: 140px !important;
}

.one-click {
  height: 30px;
  width: 30px;
  font-size: 19px;
  margin: 0px 3px;
  padding-top: 6px;
  padding-left: 6px;
  padding-right: 12px;
  color: white;
  cursor: pointer;
}

.ansprechpartner-xing-button, .ansprechpartner-xing-button:hover {
  color: black;
  text-decoration: none !important;
  background-color: transparent;
}

.ansprechpartner-linkedIn-button, .ansprechpartner-linkedIn-button:hover {
  color: black;
  text-decoration: none !important;
  background-color: transparent;
}

.bewerben-button-right .bewerben-button {
  float: right;
}

.bewerben-button-right .bewerben-cammio-button {
  float: right;
}

.bewerben-cammio-button-outline {
  border-width: medium;
}

#scrollBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--button_background_color);
  color: var(--button_color);
  cursor: pointer;
  padding: 2px 0 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 30px;
}

#scrollBtn:hover {
  background-color: var(--button_hover_background_color);
  color: var(--button_hover_color);
}

.fab.fa-twitter::before {
  color: transparent;
  background-image: url(https://connect.guidecom.de/jobportal/global/images/x.png);
  background-size: cover;
  background-color: white;
  filter: invert(1);
}

.shariff .twitter a, .shariff .twitter a:hover {
  background-color: black;
}

.shariff .twitter .fa-twitter {
  font-size: 18px;
}


@media (min-width: 1200px) {
  .container {
    max-width: var(--body_max_width);
  }
}

/*Nicht Mobil*/
@media (min-width: 768px) {

  .jumbotron > .row > div > .bild_ausschreibung {
    float: right;
  }

  .ausschreibung-mehr-erfahren-div {
    justify-content: flex-end;
  }

  .align-right-widescreen {
    display: flex;
    justify-content: flex-end;
  }

  .hide-display {
    display: none !important;
    max-height: 0 !important;
    max-width: 0 !important;
  }
}

/*Mobil*/
@media (max-width: 767px) {
  .detail-button {
    padding-top: 5px;
    width: 100%;
  }

  h1 {
    font-size: 2rem !important;
  }

  .shariff .orientation-horizontal li.shariff-button {
    min-width: 35px;
    max-width: 35px;
    width: 35px;
  }

  .hide-mobile {
    display: none !important;
    max-height: 0 !important;
    max-width: 0 !important;
  }
}

/*YouTube-iFrame mit consent-overlay & toggle-Button
Zeigt entweder Overlay oder iFrame an*/
.video-container {
  position: relative;
  width: 100%;
  pointer-events: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.video-overlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  background: rgba(87, 87, 87, 0.7);
  color: white;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
  font-size: smaller;
  font-weight: lighter;
}

.youTube-overlay-header {
  display: flex;
  padding: 10px 10px 0 10px;
}

.youTube-overlay-header-title {
  display: flex;
  flex-direction: column;
}

.video-overlay p {
  margin-bottom: 10px;
  padding: 0 10px 10px 10px;
}

.youTube-ds-link {
  pointer-events: all;
  color:black;
}

.youTube-ds-link:hover {
  color: black;
}

.video-frame {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 640px;
  height: 0;
  aspect-ratio: 16/9;
}

.toggle-container {
  display: inline-block;
  padding-top: 6px;
}

.toggle-container:hover {
  color: #616060;
}

.toggle-row {
  display: flex;
  align-content: stretch;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 640px;
}

#toggleLabel {
  text-align: center;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 300;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin-right: 8px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary_color);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/*Nicht Mobil*/
@media (min-width: 768px) {
  .youtube-player {
    width: 640px;
    height: 100%;
  }
}

/*Mobil*/
@media (max-width: 767px) {
  .youtube-player {
    width: 100%;
    height: 100%;
  }
  .video-overlay {
    aspect-ratio: unset;
    height: auto;
  }
}
