/**
* Theme Name:  Physiogruppe
* Version:     1.2.1
*/

:root {
  --content-width: 1170px;
  --theme-color: red;
  --theme-accent-color: blue;
  --header-gray: #9d9d9d;

  /* I'd love to have breakpoints here but css does not support var in media queries rn
  19.06.23 */
}

/** Overwrite container default width to match design page width */
@media screen and (min-width: 768px) {
  .container {
    width: 780px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 1000px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

/** Right align content within col */
.alignright {
  float: right;
}

.physio_header {
  display: flex;
  flex-direction: row;
  gap: 75px;
  align-items: center;
}
.physio_header .header-link-wrapper {
  display: flex;
  flex-grow: 1;
}
.physio_header .header-link {
  margin-right: 50px;
}
.physio_header .header-link a img {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .physio_header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: unset;
  }
}

/* START POST IMAGE */
.fullwidthimage {
  position: relative;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}
.fullwidthimage img {
  width: 100%;
  height: unset;
}

.fullwidthimage .container.title-container {
  position: absolute;
  text-align: left;
  left: 50%;
  transform: translate(-50%, 0);
}
.fullwidthimage .container.title-container h1,
.fullwidthimage .container .kicker .white {
  color: white;
}

.fullwidthimage .container .kicker {
  font-size: 20px;
  line-height: 26px;
  display: inline-block;
  color: white;
}

/* standard is white but on bright backgrounds it needs to be darker */
.fullwidthimage .container h1 span.dark,
.fullwidthimage .container .dark {
  color: #807F7F;
}

/* xs only */
@media screen and (max-width: 767px) {

  .fullwidthimage .container.title-container {
    transform: none;
    left: 0;
  }

  .fullwidthimage img {
    height: 250px;
    width: unset;
  }

  .fullwidthimage .container h1 {
    word-break: break-all;
    top: -190px;
  }
}

/*
  END POST IMAGE
*/

/*
  The first container should have a gap to the masterslider / top image
*/
.content>.container {
  margin-top: 70px;
}

/*
  FROM HERE ON OLD UNCHECKED CSS
*/

div#content {
  font-size: 14px;
  position: relative;
}

.seminar_entry {
  border-bottom: 1px solid var(--theme-color) !important;
}

.event-title {
  font-size: 20px;
  color: var(--theme-color);
  font-weight: normal;
  text-transform: uppercase;
}

.google_iframe {
  margin-left: -375px;
  margin-top: 20px;
}

.page-content {
  position: relative;
}

.page-content>.wp-post-image {
  margin-left: -215px;
}

.faq_list {
  list-style: none;
  margin: 0;
  margin-top: 75px;
  padding: 0;
}

.faq_list .faq_item {
  display: flex;
  background: #f9fafb;
  width: 100%;
  margin-bottom: 30px;
  padding-right: 10px;
}

.liste {
  list-style: none;
  padding: 0px;
}

.liste li {
  margin-bottom: 5px;
}

.liste li img {
  margin-right: 10px;
}

.faq_list .faq_item.collapsed:after {
  -webkit-mask-image: url('images/icon_faq_plus.png');
  mask-image: url('images/icon_faq_plus.png');
}

.faq_list .faq_item:after {
  align-self: center;
  transition: all ease .2s;
  flex-grow: 1;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center right;
  mask-position: center right;
  -webkit-mask-image: url('images/icon_faq_minus.png');
  mask-image: url('images/icon_faq_minus.png');
  background-color: var(--theme-color);
  content: " ";
  height: 17px;
  width: 17px;
  cursor: pointer;
}

.faq_list .faq_answer {
  clear: both;
  padding-top: 40px;
  padding-bottom: 40px;
}

.faq_list .faq_question {
  float: left;
  padding: 15px;
  color: var(--theme-color);
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
}

.faq_list .faq_number {
  float: left;
  background: var(--theme-color);
  border: 1px solid white;
  border-radius: 60px;
  color: white;
  padding: 15px;
}

h1.content_title {
  font-size: 20px;
  color: var(--theme-color);
  margin-top: 80px;
  margin-bottom: 30px;
  font-weight: normal;
  text-transform: uppercase;
}

.partner_row {
  margin-bottom: 70px;
}

.download_btn {
  background: var(--theme-color);
  border: 1px solid white;
  padding: 8px 25px;
  color: white;
  text-transform: uppercase;
  margin-left: 30px;
}

.mfz_box {
  width: 100%;
  max-width: 356px;
  margin-top: 5em;
  background-color: #f9fafb;
}

.mfz_box .box_text {
  padding: 1em 2em;
}

.download_btn img {
  margin: -7px 15px 0 0 !important;
  padding: 0 !important;
  float: none !important;
}

.page-content .col-md-4>h1 {
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
}

.pd-small {
  padding: 1em 0.5em;
}

.page-content .urlaub .col-md-4>.mfz_box {
  margin-top: 0;
  padding-top: 0;
}

.page-content b {
  font-weight: bold;
}

.breadcrumb {
  color: #807f7f;
  font-size: 12px;

  /* override bootstrap */
  background-color: unset;
}

.breadcrumb span,
.breadcrumb a:last-child {
  color: var(--theme-color);
}

#kontakt_form div {
  float: none;
}

#kontakt_form input[type=text],
#kontakt_form textarea {
  border-right: 15px solid white;

}

#kontakt_form input[type=text] {
  border-bottom: 0;
}

.anfahrt_list b {
  color: #a8a8a8;
}

.kontakt_details {
  margin-top: 20px;
}

.kontakt_details .col-md-4>div {
  float: left;
  height: 60px;
  margin-right: 20px;
}

.green_bottom_border {
  border-bottom: 2px solid var(--theme-color);
}

.yellow_bottom_border {
  border-bottom: 2px solid #fdb330;
}

.yellow_bottom_border b {
  color: #fdb330;
}

.blue_bottom_border b {
  color: #7295ab;
}

.blue_bottom_border {
  border-bottom: 2px solid #7295ab;
}

.container.urlaub {
  margin-top: 2em;
}

.home_box_header {
  background: url(images/home_box_header.png) #f9fafb top center no-repeat;
  width: 100%;
  padding-top: 200px;
  float: right;
}

.home_box_header a {
  padding-top: 0.5em;
  display: block;
  font-weight: normal;
}

/* xs only */
@media screen and (max-width: 767px) {
  .home_box_header {
    float: none;
    margin: 70px auto 0px;
  }
}

.hint_box {
  padding: 30px;
  background: #f6f8ee;
}

.slider_content {
  float: left;
  padding-left: 15px;
}

.bg-hblau {
  background-color: #f9fafc;
}

.mt-5 {
  margin-top: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.datenschutz input[type=checkbox] {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.datenschutz label {
  display: inline-block;
  width: 80%;
  font-weight: normal;
}

#ac-nav.ac-nav-f {
  position: fixed;
  top: 0px;
  z-index: 99999;
  width: 100%;
}

#sub-navigation.ac-nav-f {
  position: fixed;
  top: 60px;
  z-index: 99999;
  width: 100%;
}

object,
#prokurs-include {
  width: 100%;
  height: 35000px;
  padding-left: 40px;
  border: 0;
}

#prokurs-include.top-kurse {
  height: 550px;
  overflow: hidden;
  padding: 0;
}

#content.page-content {
  margin-top: 40px;
}

#content .acadia-info-box {
  padding: 15px 15px 0 15px;
  margin-bottom: 60px;
}

.acadia-info-box h2 {
  margin: 0;
  padding: 10px 0 0 0;
}

#prokurs-menu {
  padding: 20px 0 5px 0;
  margin: 0;
  list-style-type: none;
  list-style-image: url('images/icon_arrow_right.png');
  list-style-position: inside;
}

#prokurs-menu li {
  border-top: 1px solid #ddd;
  padding: 5px 0;
}

#prokurs-menu li a {
  color: #9d9d9d;
}

.kontaktbox h2 {
  margin: 0 0 20px 20px;
}

#kontaktbox {
  border-top: 1px solid #ddd;
  padding: 20px 0 5px 20px;
  margin: 0;
  list-style-type: none;
}

#kontaktbox .konphone:before, #kontaktbox .konem:before {
  content: " ";
  -webkit-mask-image: url('images/phone_icon_mini.png');
  mask-image: url('images/phone_icon_mini.png');
  -webkit-mask-position: left center;
  mask-position: left center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-right: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--theme-color);
}
#kontaktbox .konem:before {
  -webkit-mask-image: url('images/print_icon_mini.png');
  mask-image: url('images/print_icon_mini.png');
}
#kontaktbox .cgr {
  margin-bottom: 20px;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
#kontaktbox li a {
  font-weight: normal;
}

#last-minute-include {
  position: absolute;
  z-index: 1;
  border: 0;
  overflow: hidden;
  width: 360px;
  height: 428px;

  /* content padding */
  right: 15px;
}

ul.service-list {
  padding: 0px 1em;
  list-style-type: none;

}

ul.service-list li {
  margin-bottom: 1em;
}

ul.service-list .service-header {
  background-color: var(--theme-color);
  color: #ffffff;
  padding: 0.8em 1.5em;
  cursor: pointer;
  position: relative;
}

ul.service-list .service-info {
  padding: 0.8em 1.5em;
}

.service-list .service-item .service-header:before {
  -webkit-mask-image: url('images/icon_mobile_minus.png');
  mask-image: url('images/icon_mobile_minus.png');
  -webkit-mask-repeat: no-repeat;
  background-color: white;
  mask-repeat: no-repeat;
  content: " ";
  width: 17px;
  height: 17px;
  display: block;
  position: absolute;
  right: 15px;
  top: 12px;
}

.service-list .service-item.collapsed .service-header:before {
  -webkit-mask-image: url('images/icon_mobile_plus.png');
  mask-image: url('images/icon_mobile_plus.png');
}

.vorteil {
  max-width: 600px;
  display: inline-block;
  width: 100%;
  margin-left: 2em;
}

.vorteil h3 {
  margin-top: 0;
  text-transform: uppercase;
  font-size: 125%;
}

.vorteil h3 span {
  color: var(--theme-color);
}

.vorteil.bild {
  width: 350px;
  margin: 0;
  vertical-align: top;
  text-align: center;
  height: 150px;
  background-color: #f9fafb;
  position: relative;
  line-height: 8;
  padding: 1em;
}

.vorteil-list img {
  vertical-align: middle;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
}

.faq_list.vorteil-list .faq_answer {
  clear: both;
  padding-top: 0;
  padding-bottom: 20px;
}

.faq_list.vorteil-list {
  margin-top: 20px;
}

.facebook_box {
  font-style: italic;
  background: #f9fafb;
}

.clear {
  clear: both;
}

/*
  START of bg_stripe
*/

.bg_stripe img {
  float: left;
  margin-right: 50px;
}

.bg_stripe table.prospekt_site_preview td {
  padding-right: 30px;
}

.bg_stripe table.prospekt_site_preview td.ac-np {
  padding: 0;
}

.bg_stripe_container_inner {
  width: 1170px;
  margin: 0 auto;
}

.bg_stripe_container {
  width: 100vw;
  height: auto;
  background: url(images/bg_stripe.png) left center no-repeat var(--theme-color);
  margin-left: calc(0px - ( 100vw - 1120px ) / 2 );
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 1200px) {
  .bg_stripe_container_inner {
    width: 100%;
  }

  .bg_stripe_container {
    margin-left: calc(0px - ( 100vw - 940px ) / 2 );
    padding: 30px;
  }
}

@media screen and (max-width: 992px) {
  .bg_stripe_container {
    margin-left: calc(0px - ( 100vw - 720px ) / 2 );
  }
}

@media screen and (max-width: 767px) {
  .bg_stripe_container {
    margin-left: 0;
    width: 100%;
  }
}

.bg_stripe b {
  display: block;
  margin-top: 15px;
  font-weight: normal;
  text-transform: uppercase;
}

.bg_stripe h3 {
  font-weight: normal;
  text-transform: uppercase;
  font-size: 20px;
  padding: 0 0 15px 0;
  border-bottom: 1px solid var(--theme-accent-color);
  margin: 0;
}

.bg_stripe h5 {
  padding: 15px 0 0 0;
  text-transform: uppercase;
  margin: 0;
}

.bg_stripe {
  margin-top: 85px;
  color: white;
}

/* .bg_stripe_container {
  margin-top: 85px;
  background: url(images/bg_stripe.png) left center no-repeat var(--theme-color);
}

.bg_stripe_container .bg_stripe {
  padding-top: 30px;
  padding-bottom: 30px;
  color: white;
}

.bg_stripe_container .bg_stripe h3 {
  border-bottom: 1px solid var(--theme-accent-color);
}

.bg_stripe_container .bg_stripe .borderright {
  border-right: 1px solid var(--theme-accent-color);
} */

/*
  END of bg_stripe
*/

/*
  START of newsletter form
*/

.ac-rahmen {
  margin: 50px 15px;
  padding: 15px 40px;
}

form#newsletter_anmeldung input[type=text] {
  width: 100%;
  background: white;
  border: 1px solid lightgray;
  padding: 15px;
  margin-top: 15px;
}

/* submit button */
form#newsletter_anmeldung input[type=submit] {
  background: var(--theme-color);
  width: 100%;
  padding: 15px;
  color: white;
  border: 0px;
}

/* xs only */
@media screen and (max-width:991px) {
  form#newsletter_anmeldung input[type=submit] {
    margin-top: 15px;
  }
}

/*
  END of newsletter form
*/

/*
  START of team
*/
div.team {
  display: flex;
  flex-wrap: wrap;
}
div.team > div {
  margin-top: 15px;
  width: 50%;
  display: flex;
  flex-direction: row;
  gap: 25px;
}
div.team > div > p {
  display: flex;
  flex-direction: column;
  align-self: center;
}
@media screen and (max-width: 767px) {
  div.team > div {
    width: 100%;
  }
}
/*
  END of team
*/

/*
  START of sidebar
  (mostly used for single event display / dagw blog)
*/
.sidebar .search-form {
  border: 10px solid #F9F9F9;
  padding: 9px 15px;
  box-shadow: none;
  display: flex;
  align-items: center;
}

.sidebar .search-field {
  border: none;
}

.sidebar input.search-field:after {
  content: "";
  background-image: url("/wp-content/themes/dagw/images/icon-search-2.png");
  background-size: 40px;
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
}

.sidebar .tag-cloud-link {
  font-size: 12pt !important;
  padding: 5px 10px;
  background: #6F8191;
  border-radius: 5px;
  color: #ffff;
}

/*
  END of sidebar
*/

/*
  START of subscriber_comments
*/

.subscriber_comments {

  --s-width: 20px;
  --lr-padding: calc(var(--s-width) + 100px);


  background: #f9fafb;
  padding: 45px var(--lr-padding);
  margin-bottom: 40px;
  position: relative;
}

/* " signs */
.subscriber_comments:before,
.subscriber_comments:after {
  background: url(images/icon_comment_sign.png);
  position: absolute;
  content: "";
  width: var(--s-width);
  height: 15px;
}

.subscriber_comments:before {
  left: calc(var(--lr-padding) - var(--s-width) - 10px);
}

.subscriber_comments:after {
  right: calc(var(--lr-padding) - var(--s-width) - 10px);
  margin-top: 10px;
  transform: rotate(180deg);
}

/* xs only */
@media screen and (max-width: 767px) {
  .subscriber_comments {
    --lr-padding: calc(var(--s-width) + 15px);
    padding: 45px var(--lr-padding);
  }
}

/*
  END of subscriber_comments
*/

/** Highlights box within sidebar */
table.highlights {
  width: 100%;
  border: 0;
}
table.highlights img {
  margin-right: 10px;
  margin-top: -2px;
}