/* VARIABES */
/*
	TBA: GRID overwrite

	setting classes for page container:

	debug
	debug_grid
	debug_section

*/
/* apply a natural box layout model to all elements (idea: Paul Irish) * /
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
 }

.HYPE_scene *, .HYPE_scene *:before, .HYPE_scene *:after {
	-moz-box-sizing: content-box !important;
	-webkit-box-sizing: content-box !important;
	box-sizing: content-box !important;
}

*/
/* DEBUG:	place .debug class in body and set div debutbox at page bottom d */
#t_debugbox {
  position: fixed;
  display: block;
  z-index: 999999;
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 1em;
  padding: 3px 10px;
  border-top-right-radius: 5px;
  background-color: grey;
}
#t_debugbox.t_debugbox_live {
  background-color: #c1ac73;
  /* gold */
}
.server-localhost #t_debugbox {
  background-color: #780201;
}
.server-localhost #t_debugbox::after {
  content: ' DEV ';
  color: #fff;
  margin-left: 30px;
}
#t_debugbox a {
  text-decoration: none;
  font-weight: 700;
  color: #ccc;
}
#t_debugbox a:hover {
  text-decoration: underline;
  cursor: pointer;
}
#t_debugbox a.t_debug_active {
  text-decoration: underline;
}
.t_debug_section .uk-container {
  outline: 1px dashed red;
}
.t_debug_row .data-uk-grid {
  outline: 2px dashed #0f5;
}
.t_debug_col [class*='uk-width'] {
  outline: 1px dotted #ea00ff;
}
.t_debug_div * {
  outline: 2px dotted red;
}
.t_debug_div * * {
  outline: 2px dotted green;
}
.t_debug_div * * * {
  outline: 2px dotted orange;
}
.t_debug_div * * * * {
  outline: 2px dotted blue;
}
.t_debug_div * * * * * {
  outline: 1px solid red;
}
.t_debug_div * * * * * * {
  outline: 1px solid green;
}
.t_debug_div * * * * * * * {
  outline: 1px solid orange;
}
.t_debug_div * * * * * * * * {
  outline: 1px solid blue;
}
#t_debugbox {
  background-color: grey;
}
#t_debugbox:before {
  content: "größer 1200";
}
/* All Mobile Sizes */
@media only screen and (min-width: 960px) and (max-width: 1199px) {
  #t_debugbox:before {
    content: "größer 960";
  }
}
/* Mobile Landscape Size to Tablet Portrait */
@media only screen and (min-width: 640px) and (max-width: 959px) {
  #t_debugbox:before {
    content: "größer 640";
  }
}
/* Mobile Portrait Size to Mobile Landscape Size */
@media only screen and (max-width: 639px) {
  #t_debugbox:before {
    content: " kleiner 640";
  }
}
/* ADMIN SWITCH */
#t_adminswitch {
  position: fixed;
  z-index: 99998;
  top: 140px;
  right: 0px;
  margin-right: -25px;
  transition: margin 0.3s;
}
#t_adminswitch:hover {
  margin-right: -11px;
}
#t_adminswitch a {
  display: block;
  color: #fff;
  padding: 4px 30px 4px 6px;
  font-size: 24px;
  line-height: 1;
  text-decoration: none !important;
  background-color: #555;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  margin-top: 8px;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 8px rgba(100, 100, 100, 0.5);
}
#t_adminswitch a:hover {
  color: orange;
  background-color: #333;
  border: 1px solid #999;
  box-shadow: 0px 0px 8px rgba(100, 100, 100, 0.2);
}
.server-localhost #t_adminswitch a:hover {
  background-color: #780201;
  color: red;
}
/* TBA FRAMEWORK */
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
a.btn {
  text-decoration: none;
}
[class*='uk-icon-'].t_unprop {
  width: 1.2em;
  text-align: left;
}
/* Break strings if their length exceeds the width of their container */
/* TBA: immer machen */
p,
li,
h3,
h4,
h5,
h6,
td {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
a img,
.uk-link img,
a:hover img,
.uk-link:hover img {
  text-decoration: none;
}
/* a ohne href - "klickbar"-Anzeige entfernen */
a:not([href]) {
  cursor: default;
  text-decoration: none;
}
sup {
  color: red;
  font-weight: bold;
  font-size: 15px;
  top: 0em;
  padding: 0 2px;
}
sup:hover {
  cursor: pointer;
}
.no_break_word,
.no_break_word p {
  word-wrap: normal !important;
  -webkit-hyphens: none !important;
  hyphens: none !important;
}
/* UIKIT - additions */
/* try to fix float problem if there are too few elements to make a row
.data-uk-grid > .uk-container { float: none; } */
.uk-aktive a {
  color: red !important;
}
.uk_listdot > a:before {
  content: "\f0da";
  margin-right: 5px;
  font-family: FontAwesome;
  color: #D44E3D;
  font-weight: normal;
}
.show_if_portrait_mode {
  display: none;
}
.hide_if_portrait_mode {
  display: none;
}
@media screen and (orientation: landscape) {
  .show_if_portrait_mode {
    display: none;
  }
  .hide_if_portrait_mode {
    display: block;
  }
}
@media screen and (orientation: portrait) {
  .show_if_portrait_mode {
    display: block;
  }
  .hide_if_portrait_mode {
    display: none;
  }
}
.t_uk_slidenav_btn:before {
  margin-top: -30px;
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}
.t_languageswitch:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* UIKIT - schönere BlockQuote*/
blockquote {
  display: block;
  background: rgba(100, 100, 100, 0.1);
  padding: 15px 20px 1px 55px;
  margin: 20px 5% 20px 0;
  position: relative;
  color: inherit !important;
  border: none !important;
}
blockquote * {
  color: inherit !important;
}
blockquote::before {
  content: "\201C";
  /*Unicode for Left Double Quote*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: inherit !important;
  position: absolute;
  left: 10px;
  top: 25px;
  opacity: 0.7;
}
blockquote::after {
  content: "";
  /*Reset to make sure*/
}
/* UIKIT Responsive lists */
/*
.uk-list li {
	display: block;
	margin-bottom:15px;
}
.uk-list li a {
	display: block;
	width: 100%;
	height:100%;
}

@media (max-width: 766px) {
	.uk-list li {
		display: block;
		margin-bottom:10px;
	}
	.uk-list li a {
		display: block;
		box-sizing: border-box;
		width: 100%;
		height:100%;
		border: 1px solid rgba(150,150,150,0.5);
		padding: 12px;
	}
}
*/
.uk-tile {
  border-radius: 4px;
}
.uk-tile.uk-tile-default {
  background-image: linear-gradient(135deg, #f7f7f7, #f4f4f4) !important;
}
.uk-tile-primary {
  background-image: linear-gradient(135deg, #b9bab9 0%, #979897 100%) !important;
}
.uk-tile.uk-tile-dashed {
  border: 1px dashed #ccc;
  background: transparent;
}
.uk-tile h2:first-child,
.uk-tile h3:first-child,
.uk-tile h4:first-child {
  margin-top: 0;
}
.uk-nav li a,
.uk-subnav li a {
  text-transform: none !important;
}
.uk-navbar-nav {
  padding-left: 35px;
  padding-right: 10px;
}
#header_logo {
  text-align: left;
  height: 80px;
  width: 320px;
  margin: 10px 0 10px 10px;
}
.uk-navbar-container.uk-sticky-fixed.uk-active {
  height: 85px;
}
.uk-navbar-container.uk-sticky-fixed.uk-active #header_logo {
  height: 60px;
  width: 240px;
}
.uk-navbar-nav .m1_li > a {
  padding-right: 10px;
  padding-left: 10px;
}
@media (max-width: 1200px) {
  .uk-navbar-container {
    padding: 0 10px;
  }
  #header_logo {
    height: 60px;
    width: 240px;
    margin-left: 5px;
  }
  .uk-navbar-nav {
    padding-right: 0px;
    padding-left: 0px;
  }
  .uk-navbar-nav .m1_li > a {
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media (max-width: 960px) {
  /*960 breakpoint */
}
.uk-subnav-pill > li > a:first-child {
  background: #f0f0f0;
  text-decoration: none;
}
.uk-button {
  text-transform: none !important;
  text-decoration: none !important;
  border-radius: 3px;
  border: none;
}
.uk-button.uk-button-default {
  background: #f0f0f0;
  color: #555;
  border: none;
}
.uk-button.uk-button-primary {
  background: #dee0e1;
  color: #000;
}
.uk-button.uk-button-secondary {
  background: #888;
  color: #fff;
}
.uk-button.uk-button-success {
  background: #9bc300;
  color: #fff;
}
.uk-button.uk-button-warning {
  background: #d7b100;
  color: #fff;
}
.uk-button.uk-button-danger {
  background: #D44E3D;
  color: #fff;
}
.uk-button.uk-button-large {
  font-size: 18px;
  font-weight: bold;
}
.uk-button:hover {
  background: #D44E3D;
  color: #fff !important;
}
.uk-search-default .uk-search-icon {
  height: 40px;
}
.uk-tile h3:first-child,
.uk-tile h4:first-child {
  margin-top: 0;
}
a > .uk-overlay:hover {
  cursor: pointer;
}
.uk-accordion-title.uk-dark::before {
  color: #fff;
}
.uk-navbar-nav * {
  text-transform: none !important;
}
/*
		set styles for PW core and modules

*/
/* AdminBar Module modal edit */
#ab-modal {
  margin-top: 90px !important;
}
#ab-modal form {
  margin: 40px 0 !important;
}
/* AdminBar Module Layout */
#adminbar {
  min-height: 40px !important;
}
#pageID {
  position: fixed;
  left: 280px;
  top: 8px;
  color: #999;
  font-size: 16px;
  padding: 1px 5px;
  z-index: 99999;
  border-radius: 20px;
  padding: 2px 15px;
  vertical-align: middle;
}
#pageID:hover {
  color: #000;
  background-color: #fff;
}
#pageID img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
#tba_logo_adminbar {
  position: fixed;
  z-index: 99998;
  right: 160px;
  top: 0px;
  width: 120px;
  height: 43px;
  background-image: url(/site/templates/admin/1-media/tba_logo-transp-weiss.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
@media (max-width: 940px) {
  #pageID {
    display: none;
  }
}
@media (max-width: 740px) {
  #tba_logo_adminbar {
    display: none;
  }
}
/* ADMIN BAR */
/* corrections  */
.align_left {
  float: left;
  margin: 2px 10px 5px 0;
}
.align_right {
  float: right;
  margin: 2px 0 5px 10px;
}
/* paginator pager */
.MarkupPagerNav {
  clear: both;
  margin: 1em 0 3em 0;
}
.MarkupPagerNav li {
  display: inline;
  list-style: none;
  margin: 0;
  vertical-align: middle;
}
.MarkupPagerNav li a,
.MarkupPagerNav li.MarkupPagerNavSeparator {
  display: block;
  float: left;
  font-size: 1em;
  padding: 2px 9px;
  margin-right: 3px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}
.MarkupPagerNav li a:hover {
  color: #FF9933;
  background-color: #fff;
  text-decoration: none;
}
.MarkupPagerNav li.MarkupPagerNavOn a {
  color: #FFF;
  background-color: #6DA1D1;
  text-decoration: none;
  cursor: default;
}
.MarkupPagerNav li.MarkupPagerNavSeparator {
  display: inline;
  color: #FFF;
  background-color: #6DA1D1;
  padding-left: 3px;
  padding-right: 3px;
}
/* text colums: Absatzabstand entspricht 2 Zeilen*/
[class*='uk-column-'] p {
  line-height: 1.5em;
  margin-top: 0em;
  margin-bottom: 1.5em;
}
/* pagination - active also for a element */
.uk-pagination > .uk-active > a {
  background: #00a8e6;
  color: #ffffff;
}
/* animated navbar closs button = > x  */
.uk-navbar-toggle.t_close {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.uk-navbar-toggle.t_close:before {
  content: "\f00d";
}
/* VARIABES */
a[href^="http://tba-"],
a[href^="https://tba-"] {
  text-decoration: none !important;
  color: inherit !important;
}
a[href^="http://tba-"]:before,
a[href^="https://tba-"]:before {
  content: "";
}
.bg_test {
  background: #ff000066;
}
/* set main parts */
body {
  /* height hier nicht auf 100% setzen! */
  height: auto;
}
#t_page_wrapper {
  /* https://stackoverflow.com/questions/4575826/how-to-push-a-footer-to-the-bottom-of-page-when-content-is-short-or-missing/66565163#66565163 */
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
}
.t_page_main {
  height: 100%;
  min-height: 700px;
  display: table-row;
  width: 100%;
  padding-bottom: 50px;
}
.t_page_footer {
  position: relative;
  display: table-row;
  min-height: 1px;
}
/* set main parts details */
.t_page_footer {
  background-color: #4d4d4d;
  background: linear-gradient(to bottom, #6d6a6a 0%, #464444 100%);
  padding: 1px 0 10px 0;
}
/* Layout
 ========================================================================== */
html,
body,
p,
ul,
ol,
td {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
h1,
.uk-h1 {
  font-family: 'Lato', sans-serif !important;
  font-weight: light;
}
body,
h3,
h4,
h5,
h6,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
td,
li,
.t_p,
.uk-navbar-nav > li > a {
  font-family: 'Lato', sans-serif !important;
  font-weight: normal;
}
.uk-nav li.uk-active a {
  color: #D44E3D;
}
strong,
b {
  font-weight: bold;
}
.uk-flex.uk-flex-center {
  background: #fff;
}
#t_page_wrapper .t_page_main {
  background-color: #fff;
  background-image: url('/site/templates/1-media/bg-bilder/bg_main_logopart.jpg');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: bottom 100%;
  min-height: 1200px;
}
.t_background img {
  mix-blend-mode: multiply;
}
.tpl-p-news-details .t_background img {
  mix-blend-mode: normal;
}
.t_background_XXX {
  background: rgba(235, 234, 233, 0.3);
  background: linear-gradient(340deg, rgba(235, 234, 233, 0.3) 0%, rgba(253, 252, 251, 0.2) 100%);
}
.bg_praxis_allg,
.bg_praxis_privat {
  min-height: 110px;
}
.bg_praxis_privat,
.tpl-p-praxen-details.body_praxis_privat .t_background {
  background: #FCF9EA;
}
.bg_praxis_allg {
  background: #fafafa;
}
#topbar_bg .uk-flex.uk-flex-center,
.t_page_footer .uk-flex.uk-flex-center {
  background: none;
}
.uk-button {
  line-height: 1.2;
  padding: 10px 20px;
}
.uk-link,
p a,
ul a,
ol a,
td a {
  color: inherit;
  text-decoration: underline;
}
.uk-link-toggle:focus .uk-link-toggle:hover .uk-link,
.uk-link:hover,
a:hover {
  color: #D44E3D;
}
a.anchor {
  display: block;
  position: relative;
  top: -250px;
  visibility: hidden;
}
a img {
  text-decoration: none !important;
}
a:hover img {
  opacity: 0.8;
}
a:before {
  text-decoration: none !important;
}
li {
  padding-left: 0px;
  margin-left: 0px;
}
h1,
.uk-h1 {
  font-size: 30px;
  font-weight: normal;
  line-height: 1.4em;
  color: #D44E3D;
  margin-top: -10px;
}
h2,
.uk-h2 {
  font-size: 24px;
  font-weight: light;
  line-height: 1.3em;
  color: #656565;
}
h2 a,
.uk-h2 a {
  color: inherit;
}
h2.praxis_header_h1 {
  margin-top: 2px !important;
}
h3,
.uk-h3 {
  font-size: 21px;
  line-height: 1.3em;
  color: #d7290b;
}
h4,
.uk-h4 {
  font-size: 18px;
  line-height: 1.3em;
  color: #d7290b;
  margin-bottom: 15px;
}
h4 + p {
  margin-top: -15px;
  /* first paragraph after .uk-h4 headline moves up right underneath */
}
@media (max-width: 980px) {
  h1,
  .uk-h1 {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  h1,
  .uk-h1 {
    font-size: 22px;
  }
}
.hl_dark,
.uk-h1.hl_dark,
.uk-h2.hl_dark {
  color: rgba(40, 40, 40, 0.7) !important;
}
.hl_hell,
.uk-h1.hl_hell,
.uk-h2.hl_hell {
  color: rgba(255, 255, 255, 0.8) !important;
}
em {
  color: inherit;
}
#topbar_bg {
  background-color: #F0F0F0;
  background-image: url("/site/templates/1-media/ic-images/Bilder/rahh-ic-verlauf-header-bg.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% 100%;
}
#topbar_bg .uk-sticky-fixed {
  box-shadow: 0 -15px 30px #333;
}
.t_page_topalert {
  color: #ccc !important;
  background-color: #666 !important;
  box-shadow: 0 0 12px rgba(100, 100, 100, 0.8);
}
.t_page_topalert .uk-alert {
  color: #ccc !important;
  background-color: #666 !important;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.t_page_topalert p {
  margin: 0px;
  padding: 4px;
  color: #ccc !important;
  line-height: 1.2;
  font-size: 13px !important;
}
.t_page_topalert a {
  color: inherit !important;
  text-decoration: underline;
}
.t_warn_intern {
  background-color: orange;
  border: 2px solid red;
  text-align: center;
  color: white;
  text-transform: uppercase;
  padding: 4px;
  font-weight: bold;
}
@media (min-width: 500px) {
  .logo_mobile_normal {
    margin-left: 20px;
  }
}
.logo_mobile_solo {
  height: 30px;
  width: 30px;
  vertical-align: middle;
}
#header_logo a:hover {
  opacity: 0.9;
}
.img_logo_solo {
  height: 40px;
  width: 40px;
}
@media (max-width: 500px) {
  .img_logo_solo {
    margin-top: -4px;
    height: 24px;
    width: 24px;
  }
}
.t_header_panorama {
  background-color: #ccc;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 460px;
}
.t_header_panorama.t_header_praxen_list {
  padding-bottom: 120px;
  margin-bottom: -90px;
  mix-blend-mode: multiply;
  background-position: top right;
}
@media (max-width: 1300px) {
  .t_header_panorama {
    height: 350px;
  }
}
@media (max-width: 1000px) {
  .t_header_panorama {
    height: 300px;
  }
  .t_header_panorama.t_header_praxen_list {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 960px) {
  /*960 breakpoint */
  .t_header_panorama {
    height: 280px;
  }
}
@media (max-width: 500px) {
  .t_header_panorama {
    height: 200px;
  }
}
/* Header INDEX Kreis */
.t_header_panorama .index_hl_teaser_kreis {
  text-align: center;
  z-index: 2;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 8%;
}
.t_header_panorama .index_hl_teaser_kreis img {
  height: 304px;
  /* wie panorama oben */
  max-height: 100%;
}
.t_header_panorama .index_hl_teaser_kreis .index_btn1,
.t_header_panorama .index_hl_teaser_kreis .index_btn2 {
  z-index: 5;
  position: absolute;
  display: block;
  left: 20%;
  right: 20%;
  top: 30%;
  bottom: 30%;
}
.t_header_panorama .index_hl_teaser_kreis .index_btn2 {
  top: 52%;
  bottom: 25%;
}
.t_header_panorama .index_hl_teaser_kreis .index_btn1:hover,
.t_header_panorama .index_hl_teaser_kreis .index_btn2:hover {
  background: radial-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}
@media (max-width: 960px) {
  .t_header_panorama .index_hl_teaser_kreis {
    top: -20px;
    right: 3%;
  }
}
/* ende Header INDEX Kreis */
.header_hl .uk-h1 {
  font-size: 24px;
  line-height: 1.3;
}
.header_hl .uk-h2 {
  font-size: 18px;
  line-height: 1.3;
}
.header_hl p {
  font-size: 14px;
  line-height: 1.3;
}
@media (min-width: 960px) {
  .header_hl .uk-h1 {
    font-size: 36px;
  }
  .header_hl .uk-h2 {
    font-size: 20px;
  }
  .header_hl p {
    font-size: 24px;
  }
}
.header_hl_small {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  text-align: left;
  background-color: rgba(100, 100, 100, 0.5);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.spalten-2 {
  width: 100%;
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
}
.spalten-steg {
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
  -webkit-column-rule-color: red;
     -moz-column-rule-color: red;
          column-rule-color: red;
  -webkit-column-rule-width: 1px;
     -moz-column-rule-width: 1px;
          column-rule-width: 1px;
  -webkit-column-rule-style: dotted;
     -moz-column-rule-style: dotted;
          column-rule-style: dotted;
}
.spalten-block {
  display: inline-block;
  width: 100%;
}
.page_min_height_large {
  min-height: 600px;
}
@media (max-width: 479px) {
  .spalten-2 {
    width: 100%;
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
  .spalten-block {
    display: block;
    width: 100%;
  }
}
/* small things
 ========================================================================== */
/* Break strings if their length exceeds the width of their container */
@media (max-width: 767px) {
  .t_bodyarea p {
    max-width: 100%;
  }
}
.t_bodyarea a,
.t_bodyarea .uk-link {
  cursor: pointer;
}
.t_bodyarea li {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
.t_bodyarea p,
.t_break_word_yes {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.uk-h1,
.uk-h2,
.uk-h3,
.t_break_word_not {
  word-wrap: normal!important;
  -webkit-hyphens: manual!important;
  hyphens: manual!important;
}
.t_bodyarea img {
  margin: 10px 30px 20px 0;
  padding: 15x 0 15px 0;
}
.t_bodyarea img.align_right {
  margin: -5px 0 0 10px;
}
.t_bodyarea img.align_left {
  margin: -5px 10px 0 0;
}
.t_bodyarea img.align_center {
  margin: 10px auto 0 auto;
}
.t_bodyarea figure {
  font-size: small;
}
/* bodyarea clearfix */
.t_bodyarea:after {
  content: "";
  display: table;
  clear: both;
}
.t_uk_button_red {
  background-color: #D44E3D;
  color: #ffffff;
  font-size: normal;
}
.button_feedback:hover {
  color: #29a8e6;
  box-shadow: 0px 0px 3px 0px rgba(127, 127, 127, 0.8);
}
.display_none {
  display: none;
}
.t_clickable_teaser_block_setup {
  cursor: pointer;
}
.t_clickable_teaser_block_setup:hover {
  opacity: 0.8;
}
.t_bodyarea_designcredits p {
  margin-bottom: 0 !important;
}
.t_bodyarea_designcredits a {
  color: inherit !important;
  text-decoration: none;
}
.link_back:hover {
  cursor: pointer;
}
.link_to:hover {
  cursor: pointer;
}
.icn_1st_email:hover {
  cursor: pointer;
}
.icn_1st_email:before {
  font-family: FontAwesome;
  content: "\f003" !important;
  /* envelope-o */
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none !important;
  padding-right: 3px;
  color: #D44E3D;
  opacity: 0.8;
}
.button_form_submit1 {
  cursor: pointer;
  color: #fff;
  text-shadow: 0px 0px 4px #DF4D46;
  /* if background image fails loading */
  font-size: 18px;
  line-height: 1.2;
  width: 221px;
  height: 33px;
  border: none;
  background-color: transparent;
  background-image: url("/site/templates/1-media/ic-images/Bilder/terminform-button.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 2px;
}
.linkspfeil_before:before {
  font-family: FontAwesome;
  content: "\f060" !important;
  /* arrow-left */
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none !important;
  padding-right: 3px;
  color: #D44E3D;
  opacity: 0.8;
}
.t_hoverzoom:hover {
  display: block;
  -ms-transform: scale(1.1);
  /* IE 9 */
  -ms-transform-origin: 0 0;
  -moz-transform: scale(1.1);
  /* Firefox */
  -moz-transform-origin: 0 0;
  -o-transform: scale(1.1);
  /* Opera */
  -o-transform-origin: 0 0;
  -webkit-transform: scale(1.1);
  /* Safari And Chrome */
  -webkit-transform-origin: 0 0;
  transform: scale(1.1);
  /* Standard Property */
  transform-origin: 0 0;
  /* Standard Property */
}
.tooltip_block {
  position: relative;
  display: block;
}
/* Google Map */
.t_map_area img {
  /* many frameworks like UIkit and Bootstrap distort Google Map control elements */
  max-width: inherit;
}
.text_col_grey {
  color: #999;
}
.text_col_privat_prx {
  color: #d28736;
}
.t_bg_col_privat_prx {
  background: #FCF9EA !important;
}
/* read more buttons + show more box */
.t_read_more_link:hover:after {
  text-decoration: none;
  content: "\f101";
  opacity: 0.9;
}
.t_show_more_link:hover:after {
  text-decoration: none;
  content: "\f150";
  opacity: 0.9;
}
.t_show_more_content {
  display: none;
  background-color: #f3f3f3;
  padding: 10px 10% 10px 20px;
  position: relative;
  margin-top: 10px;
  padding-top: 15px;
}
.t_show_more_content .t_hide_more_link {
  display: none;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
  text-align: right;
  color: #ccc;
  background-color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 3px 4px 4px 4px;
  border-radius: 50%;
}
.t_show_more_content .t_hide_more_link:hover {
  color: #fff;
  background-color: #666;
}
.t_show_more_content .t_hide_more_link:before {
  content: "" !important;
  margin: 0 !important;
  padding: 0 !important;
}
.t_methods_content_min_height {
  min-height: 600px;
}
.uk-subnav-pill li a {
  background-color: #f0f0f0;
  margin: 10px;
}
.uk-subnav-pill li a:hover {
  background-color: #D44E3D;
  border: none;
  color: #fff;
}
.uk-subnav-pill .uk-active a {
  background-color: #22AAAF !important;
}
/* TBA Datenschutz-Blocks*/
.tba_datenschutz h2,
.tba_datenschutz h3,
.tba_datenschutz h4 {
  margin: 30px 0 15px 0;
}
.tba_datenschutz p {
  margin-bottom: 1.4em;
}
.meth_detail_navi.uk-subnav.uk-subnav-pill {
  margin: 0;
}
.meth_detail_navi.uk-subnav.uk-subnav-pill li {
  margin: 6px 0;
}
.meth_detail_navi.uk-subnav.uk-subnav-pill li a {
  background: #fff;
  font-size: 15px;
  border-radius: 3px;
  text-transform: none;
  padding: 2px;
}
.meth_detail_navi.uk-subnav.uk-subnav-pill li:hover a {
  color: #333;
}
@media (max-width: 959px) {
  .meth_detail_navi.uk-subnav.uk-subnav-pill li {
    margin: 10px 0;
  }
}
.uk-overlay-primary {
  background: rgba(100, 100, 120, 0.7);
}
/* von JS gesteuert: */
.img_snap_to_full_width {
  width: 100%;
  height: auto;
}
.navbar_bg_alternat {
  background: linear-gradient(356deg, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0) 100%);
}
.navbar_bg_transparent {
  background: none !important;
}
/* sticky header logo */
.uk-active #header_logo a {
  width: 170px;
  height: 40px;
  margin: 5px !important;
}
/* sticky header navbar padding */
@media (max-width: 1000px) {
  .uk-navbar-nav li a {
    padding: 0 8px;
  }
}
#praxen_filter_wrapper em {
  font-style: normal;
  font-size: 14px;
  color: #D44E3D;
}
@nedia (max-width: 960px) {
  #praxen_filter_wrapper uk-button {
    line-height: 1.2;
    margin: 10px;
  }
}
#praxen_filter_wrapper .uk-button.uk-active {
  background: #ccc;
  color: #000;
}
.uk-accordion-title::before {
  background-color: #f0f0f0;
  border-radius: 50%;
  margin: 3px;
}
.terminwahl_button_group * {
  color: #eee;
  line-height: 1.2 !important;
}
.terminwahl_button_group a {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 10px 20px;
  text-align: left;
  margin: 0 0 15px 0;
}
.terminwahl_button_group a:hover {
  color: #fff;
  background: #999 !important;
}
.terminwahl_button_group uk-buttons-default {
  background: #666;
}
.terminwahl_buttons {
  display: inline-block;
  margin-right: 20px;
  font-size: 28px;
  text-align: center;
  background: rgba(220, 220, 220, 0.6);
  height: 40px;
  width: 46px;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
  padding-top: 8px;
}
.button_hauarztverm {
  color: #fff;
  background-color: #3F8EAa;
}
.t_badge {
  display: inline-block;
  width: 15px;
  min-height: 12px;
  overflow: hidden;
  padding-top: 2px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: #666;
  opacity: 0.8;
  font-size: 12px;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  line-height: 1;
  vertical-align: super;
}
.t_badge:hover {
  opacity: 1;
  cursor: pointer;
}
.newsbox_tile_bg {
  background: linear-gradient(180deg, #f0f0f0 0%, #ffffff00 100%) !important;
}
.uk-h3.uk-text-muted {
  color: #666 !important;
}
.t_page_topalert {
  display: none;
}
/* VARIABES */
/*

TBA  MENU 1

*/
#menu1_wrapper {
  position: relative;
  float: right;
  margin-right: -30px;
  /* resets last menu1_col */
}
.t_page_header .m1_li a {
  text-decoration: none;
  font-size: 16px;
  color: #666;
}
.t_page_header .m1_li.menu1_current > a {
  text-decoration: none;
  font-size: 16px;
  color: #D44E3D;
}
.t_page_footer .m1_li a {
  font-weight: normal;
  text-decoration: none;
}
.praxis_termin_machen a {
  color: #fff;
  background-color: #ccc;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  #nav_termin i {
    display: none;
  }
}
#menu1_goto_private_prax {
  position: absolute;
  bottom: 2px;
  right: 200px;
  height: 22px;
  width: auto;
  padding: 0;
  overflow: hidden;
}
#menu1_goto_private_prax a {
  width: auto;
  background: transparent;
  letter-spacing: 0.2em;
}
.menu1_col#nav_last li a {
  color: #4C4C4C;
  background-color: #fff;
}
.menu1_col#nav_lang,
.menu1_col#nav_lang li a {
  width: auto;
  background: none;
  display: inline;
  padding: 0;
}
.menu1_col#nav_lang {
  margin-left: 20px;
}
.lang_button img {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  margin-top: -2px;
}
@media (max-width: 1100px) {
  .menu1_col#nav_lang {
    margin-left: 0px;
  }
}
.menu1_col li:hover a,
#menu1_goto_private_prax:hover a,
.praxis_termin_machen:hover a,
.menu1_col li.menu1_current a {
  text-decoration: none;
  color: #fff !important;
  background-color: #D72118 !important;
}
.praxis_termin_machen a:hover {
  box-shadow: 0 0 8px #666;
}
#nav_termin li a i,
.praxis_termin_machen a i {
  float: left;
  background: url(/site/templates/1-media/kalender.png);
  /* fallback */
  background-image: url(/site/templates/1-media/kalender.svg), none;
  /* old browser do not support multiple backgrounds*/
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #fff;
  width: 25px;
  height: 23px;
  margin-top: -3px;
  margin-left: -5px;
  border-right: 2px solid #fff;
}
.nav_termin_en {
  width: 180px;
}
.praxis_termin_machen:hover span,
#nav_termin li:hover span {
  opacity: 0.8;
}
.tpl-p-home #m1_home a,
.tpl-p-home #m1_home:hover a {
  opacity: 0.5;
  background-color: #DFE0E1 !important;
  color: #4C4C4C !important;
  cursor: default;
}
/*  Gehe zu Privatpraxen ausblenden wenn man dort bereits ist: * /
.body_praxis_privat #menu1_goto_private_prax {
	display: none !important;
}
*/
.menu1_current {
  cursor: default;
}
.body_praxis_privat .menu1_col#nav_last li a {
  background-color: #f5f5f5;
  color: #4C4C4C;
}
.m1_min_menu_button {
  float: right;
  vertical-align: middle;
  font-size: 20px;
  margin: 3px 0px 0 5px;
  padding: 5px 10px !important;
  padding: 0 5px;
  color: #fff !important;
  background-color: #D44E3D;
}
.m1_min_menu_button:hover {
  background-color: #4C4C4C;
}
.m1_min_menu_button span {
  font-size: 14px;
}
/*

TBA  MENU 2 - left sidebar

*/
/* Base Styles */
.t_menu2,
.t_menu2 ul,
.t_menu2 li,
.t_menu2 a {
  box-sizing: border-box;
  list-style: none;
  color: #656565;
  font-size: 14px;
  line-height: 1;
  font-weight: normal;
  text-decoration: none;
  position: relative;
}
.t_menu2 {
  width: 100%;
}
.uk-nav > li.menu2_li {
  margin-bottom: 15px;
}
.uk-nav > li.menu2_li > a {
  display: block;
  padding: 0 5px 0 15px;
}
.t_menu2 em {
  color: inherit;
}
.t_menu2 a {
  display: block;
  width: 100%;
  color: #000;
  padding: 5px 5px 5px 10px;
}
.t_menu2 ul.t_menu2_hidden {
  display: none;
}
.t_menu2 ul > li.t_menu2_current > ul.t_menu2_hidden {
  display: block;
}
.menu2_current {
  cursor: default;
}
/* 1st level */
.t_menu2 > ul {
  margin-bottom: 0px;
}
.t_menu2 > ul > li > a {
  display: block;
  background-color: #EDEDED;
  background-image: url(/site/templates/1-media/ic-images/Bilder/rahh-ic-verlauf-m2a.png);
  background-repeat: repeat-y;
  background-position: left center;
  padding: 4px 4px 2px 4px;
  background-size: cover;
}
.t_menu2 > ul > li > a:hover {
  background-image: none;
  background-color: #eee;
}
.t_menu2 > ul > li.t_menu2_current > a {
  display: block;
  background-image: none;
  background-color: #afadb066;
  padding: 5px !important;
  color: #fff;
}
/* 2nd level */
.t_menu2 > ul > li > ul {
  margin-bottom: 10px;
}
.t_menu2 > ul > li > ul > li {
  margin-bottom: 2px;
}
.t_menu2 > ul > li > ul > li > a {
  padding-left: 10px;
}
.t_menu2 > ul > li > ul > li.t_menu2_current {
  background-color: #EDEDED;
  background-image: url(/site/templates/1-media/ic-images/Bilder/rahh-ic-verlauf-m2a.png);
  background-size: cover;
  background-repeat: repeat-y;
  background-position: left center;
}
.t_menu2 > ul > li > ul > li > a:hover {
  background-image: none;
  background-color: #eee;
}
.t_menu2 > ul > li > ul > li.t_menu2_current > a {
  background-image: none;
  background-color: #B0ADB1;
  color: #fff;
  padding-top: 2px;
  padding-bottom: 2px;
}
.t_menu2 > ul > li > ul > li.t_menu2_current > a em {
  color: #f0f0f0;
}
/* 3rd level */
.t_menu2 > ul > li > ul > li > ul {
  padding-bottom: 2px;
  margin-top: 4px;
  margin-bottom: 6px;
}
.t_menu2 > ul > li > ul > li > ul > li {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
  /*	border-bottom: 1px dashed rgba(150,150,150,0.6); */
}
.t_menu2 > ul > li > ul > li > ul > li > a {
  margin-top: 0;
  margin-bottom: 0 !important;
  padding-left: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 14px;
}
.t_menu2 > ul > li > ul > li > ul > li > a::before {
  content: '→ ';
}
.t_menu2 > ul > li > ul > li > ul > li > a:hover {
  background-image: none;
  background-color: #eee;
}
.t_menu2 > ul > li > ul > li > ul > li.t_menu2_current > a {
  background-image: none;
  background-color: #D8D6D8;
  color: #000;
  padding-top: 2px;
  padding-bottom: 2px;
}
/* Besonderheiten  Praxen Liste short */
.t_menu2.menu2_praxen_short > ul li {
  margin-bottom: 5px;
}
.t_menu2.menu2_praxen_short > ul li ul li {
  margin-bottom: 3px;
  /* abstand zwischen praxen */
}
.t_menu2.menu2_praxen_short a em {
  display: inline-block;
  color: #aaaaaa;
  font-size: 12px;
  line-height: 1em;
  margin-left: 14px;
  padding-bottom: 5px;
  font-weight: normal;
}
.t_menu2 > ul > li.t_menu2_current > a {
  background-color: #DFE0E1;
  /* hier keinen Current Status zeigen, wegen Privatpraxen-Seite */
  color: #4C4C4C;
}
.t_menu2.menu2_praxen_short > ul > li > a {
  padding-top: 2px;
  padding-bottom: 5px;
}
.t_menu2.menu2_praxen_short a {
  padding-top: 1px;
  padding-bottom: 2px;
  line-height: 1.3;
  color: #656565;
}
/* Besonderheiten  Praxen Liste Long */
.t_menu2.menu2_praxen_long a {
  margin-bottom: 0;
  color: #656565;
}
.t_menu2.menu2_praxen_long > ul > li > a,
.t_menu2.menu2_praxen_long > ul > li > ul > li > a {
  padding-left: 0px;
}
.t_menu2.menu2_praxen_long a em {
  display: inline-block;
  color: #999;
  font-size: 13px;
  line-height: 1em;
  margin-left: 11px;
  padding-bottom: 2px;
  font-weight: normal;
  /*	font-style: normal; */
}
.t_menu2.menu2_praxen_long li.t_menu2_current > a {
  margin-top: 1px;
  margin-bottom: 2px;
}
.t_menu2.menu2_praxen_long > ul > li {
  margin-bottom: 0px;
}
.t_menu2.menu2_praxen_long > ul > li > a {
  color: #D44E3D;
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  line-height: 1;
  font-weight: normal;
}
.t_menu2.menu2_praxen_long > ul > li > ul > li:hover > a:before {
  opacity: 1;
}
/* Besonderheiten  Praxen TEL ALLG */
.t_menu2.menu2_tel_allg {
  margin-bottom: 30px;
}
.t_menu2.menu2_tel_allg > ul > li > a {
  padding-left: 15px !important;
  color: #656565;
  font-size: 15px;
}
.t_menu2.menu2_tel_allg > ul > li > ul > li {
  color: #D44E3D !important;
}
.t_menu2.menu2_tel_allg > ul > li > ul > li span {
  display: block;
  float: left;
  padding-right: 10px;
  min-width: 50px;
  white-space: nowrap;
}
.t_menu2.menu2_tel_allg > ul > li > ul > li strong {
  display: block;
  float: right;
  white-space: nowrap;
}
/* Besonderheiten  ALLG */
.menu2_service_hotlines_wrapper {
  margin-top: 50px;
  margin-left: 25px;
}
.menu2_service_hotlines_hl_img {
  height: 28px;
  width: 100%;
  background-image: url(/site/templates/1-media/ic-images/Bilder/rahh-ic-hotlines.png);
  background-repeat: no-repeat;
  display: block;
}
/* menu2 INDEX Methoden Teaser Menu */
.t_menu2.menu2_methoden_teaser {
  background: none;
}
.t_menu2.menu2_methoden_teaser li {
  background-color: #eeeeee !important;
  margin-top: 8px;
  border-radius: 3px;
}
.t_menu2.menu2_methoden_teaser a {
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  padding: 3px 5px 4px 15px !important;
  color: #333;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: normal;
  transition: color 0.3s;
}
.t_menu2.menu2_methoden_teaser a:hover {
  color: #fff !important;
}
.menu2_methoden_teaser1 a {
  color: #2496B4 !important;
}
.menu2_methoden_teaser2 a {
  color: #77a820 !important;
}
.menu2_methoden_teaser3 a {
  color: #2541D2 !important;
}
.menu2_methoden_teaser4 a {
  color: #6770DD !important;
}
.menu2_methoden_teaser5 a {
  color: #2496B4 !important;
}
.menu2_methoden_teaser6 a {
  color: #666 !important;
}
.menu2_methoden_teaser1 a:hover {
  background-color: #2496B4 !important;
  color: #fff !important;
}
.menu2_methoden_teaser2 a:hover {
  background-color: #80BD16 !important;
  color: #fff !important;
}
.menu2_methoden_teaser3 a:hover {
  background-color: #2541D2 !important;
  color: #fff !important;
}
.menu2_methoden_teaser4 a:hover {
  background-color: #6770DD !important;
  color: #fff !important;
}
.menu2_methoden_teaser5 a:hover {
  background-color: #2496B4 !important;
  color: #fff !important;
}
.menu2_methoden_teaser6 a:hover {
  background-color: #666 !important;
  color: #fff !important;
}
/*

TBA  MENU 3 - menu

*/
ul.t_menu3 li.subnav_li {
  box-sizing: content-box;
  box-sizing: border-box;
}
ul.t_menu3 li a {
  display: block;
  text-align: center;
  padding: 4px 15px 2px 15px;
  color: #4C4C4C;
  font-size: 16px;
  line-height: 1.2;
  background-color: #DFDFE0;
  border-radius: 3px;
  text-decoration: none;
}
ul.t_menu3 li a:hover,
ul.t_menu3 li.t_menu3_current a,
ul.t_menu3 li.uk-active a {
  background-color: #D44E3D;
  color: #fff;
  text-decoration: none;
}
.menu3_current {
  cursor: default;
}
.body_praxis_privat ul.t_menu3 li a {
  background-color: #fff;
}
@media (max-width: 759px) {
  ul.t_menu3 li {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
}
/*

TBA  MENU 3 - SUBmenu

*/
ul.t_menu3.t_menu3_submenu li {
  margin-top: 8px;
  margin-bottom: -6px;
}
ul.t_menu3.t_menu3_submenu li a {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #EDEDED;
  padding-left: 0;
}
ul.t_menu3.t_menu3_submenu a:hover,
ul.t_menu3.t_menu3_submenu li.t_menu3_current a,
ul.t_menu3.t_menu3_submenu li.uk-active a {
  background-color: #B0ADB1 !important;
  color: #fff !important;
  text-decoration: none !important;
}
hr.t_menu3_subline {
  margin-top: -18px;
  border-top: 3px solid #B0ADB1;
}
.body_praxis_privat ul.t_menu3 li a:hover,
.body_praxis_privat ul.t_menu3 li.t_menu3_current a,
.body_praxis_privat ul.t_menu3 li.uk-active a {
  background-color: #727375;
}
/*

TBA  MENU FOOTER - menu

*/
.menu_footer {
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.menu_footer li {
  margin: 0;
  padding: 10px 10px;
  list-style: none;
  display: inline-block;
  text-align: center;
}
.menu_footer a {
  color: #ccc;
  border-bottom: 1px solid transparent;
}
.menu_footer a:hover,
.menu_footer li.menu_f_current a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
/* MOBILE MENU */
.m_current a {
  color: #D44E3D !important;
}
/*

TBA  MENU - offcanvas

*/
.m1_off_btn {
  color: black;
  text-decoration: none;
}
.m1_off_btn:hover {
  color: #D44E3D;
  text-decoration: none;
}
@media (max-width 479px) {
  .m1_off_btn .uk-icon-large {
    height: 25px;
    width: 26px;
  }
}
#offcanvas li a {
  /* bigger buttons for touch */
  text-align: left;
  font-size: 16px;
  line-height: 1;
  color: #000 !important;
  padding: 10px 10px 10px 10px !important;
  margin-bottom: 2px;
  letter-spacing: 1px;
}
#offcanvas #nav_termin li a {
  padding-left: 45px !important;
}
#offcanvas #nav_termin li a i {
  margin-top: -2px;
  margin-left: -35px;
}
#offcanvas .offmenu1 .menu1_col {
  width: 100%;
  margin: 0 0 1px 0 !important;
}
#offcanvas .offmenu2 > div {
  border-radius: 10px !important;
}
#offcanvas .offmenu2 > div > ul > li a {
  font-size: 14px;
  letter-spacing: 0px;
}
#offcanvas .offmenu2 > div > ul > li > a {
  font-size: 14px;
}
#offcanvas .offmenu2.uk-tile.uk-tile-default ul:last-child,
#offcanvas .offmenu2.uk-tile.uk-tile-default li:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#offcanvas .offmenu2.uk-tile.uk-tile-default > div > ul {
  background-color: none !important;
  margin: 0 !important;
  border-radius: 3px;
}
#offcanvas .offmenu2.uk-tile.uk-tile-default > div > ul > li {
  background-color: #DEDFE0;
  margin: 0 !important;
  border-radius: 3px;
}
#offcanvas .offmenu2.uk-tile.uk-tile-default > div > ul > li > ul {
  background-color: #000;
  border-radius: 3px;
}
#offcanvas .offmenu2.uk-tile.uk-tile-default > div > ul > li.t_menu2_current > ul {
  background-color: #DEDFE0;
  border-top: 5px solid #DEDFE0;
  border-left: 5px solid #DEDFE0;
  border-right: 5px solid #DEDFE0;
  border-bottom: 3px solid #DEDFE0;
  border-radius: 3px;
}
#offcanvas .offmenu2.uk-tile.uk-tile-default > div > ul > li > ul > li {
  padding-left: 0px;
  background-color: #999;
  background-image: none;
  border-radius: 3px;
}
#offcanvas .offmenu2.uk-tile.uk-tile-default > div > ul > li > ul > li > ul {
  padding-left: 10px;
  background-color: #999;
  border-radius: 3px;
}
#offcanvas .offmenu2.uk-tile.uk-tile-default > div > ul > li > ul > li > ul > li {
  background-color: #999;
  border-radius: 3px;
}
#offcanvas .t_menu2_active {
  color: #fff !important;
  background: #D44E3D !important;
}
/* Offcanvas Specials */
#offcanvas .offmenu2 div.t_menu2 menu2_praxen_long {
  margin-bottom: 3px !important;
}
#offcanvas .offmenu2 .menu2_praxen_long_hl2 {
  padding-top: 20px !important;
  background: none !important;
}
#offcanvas .offmenu2 .menu2_praxen_long_hl2 > a {
  color: #999 !important;
}
#offcanvas .offmenu2 .menu2_praxen_long .t_menu2_current ul {
  background: none !important;
  border: none !important;
}
#offcanvas .offmenu2 .menu2_praxen_long > ul > li > ul a > em {
  color: #333 !important;
}
#offcanvas .offmenu2 .menu2_praxen_long > ul > li > ul .t_menu2_current,
#offcanvas .offmenu2 .menu2_praxen_long > ul > li > ul .t_menu2_current a,
#offcanvas .offmenu2 .menu2_praxen_long > ul > li > ul .t_menu2_current a > em {
  color: #fff !important;
  background: #D44E3D !important;
  border: none;
  border-radius: 3px;
}
/* Buttons fix small */
.menu2_li {
  margin-bottom: 15px !important;
}
.menu2_li a {
  padding-left: 5px;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}
/* RESPONSIVE small */
@media (max-width: 960px) {
  .menu1_col li {
    margin-bottom: 10px !important;
  }
  .menu2_li {
    margin-bottom: 10px !important;
  }
  .menu2_li a {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}
/* VARIABES */
.sidebar {
  font-size: 14px;
}
/* HOME
 ========================================================================== */
.index_header_teaser {
  position: absolute;
  z-index: 1;
  top: 36px;
  left: 220px;
  font-size: 24px;
  line-height: 1.2;
  color: #fefefe;
  font-style: italic;
}
.index_header_btn {
  position: absolute;
  z-index: 1;
  height: 61px;
  width: 215px;
  right: 160px;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0;
}
.index_header_btn a {
  display: block;
  width: 100%;
  height: 100%;
}
.index_header_btn_termin {
  background-image: url(/site/templates/1-media/headerbilder/index/btn-hover-termin.png);
  top: 82px;
}
.index_header_btn_termin:hover {
  opacity: 1;
}
.index_header_btn_praxis {
  background-image: url(/site/templates/1-media/headerbilder/index/btn-hover-praxisfinder.png);
  top: 152px;
}
.index_header_btn_praxis:hover {
  opacity: 1;
}
.t_header_panorama .index_buttons_small_wrapper {
  position: absolute;
  top: 0px;
  bottom: 20px;
  right: 0px;
  left: 40%;
  padding: 20px;
}
@media (max-width: 380px) {
  .t_header_panorama .index_buttons_small_wrapper {
    bottom: 0;
    left: 0;
    padding: 10px;
  }
}
.index_pano_button_termin {
  background-color: #DD5842;
  opacity: 0.9;
  color: #fff !important;
  font-weight: bold;
  font-size: 18px;
}
.index_pano_button_termin:hover {
  background-color: #DD5842;
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
ul.index_news_area {
  list-style: none;
}
.index_news_box {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
}
.index_news_box img {
  margin: 10px auto;
}
.index_news_box .t_line_bottom {
  border-bottom: 1px solid #f0f0f0;
}
.index_news_box_subtext {
  color: #777;
}
/* TEAM
 ========================================================================== */
.praxis_header_address a {
  color: inherit;
  text-decoration: underline;
}
.praxis_header_address a:hover {
  color: #D44E3D;
}
.team_area_wrapper {
  min-height: 600px;
  margin-right: -10px;
  /* wegen thumb padding */
  margin-left: -10px;
}
.team_area_wrapper img {
  mix-blend-mode: normal !important;
}
.team_thumb {
  padding: 10px;
}
.team_thumb:hover {
  box-shadow: 0px 0px 30px #eeeeeedd;
}
.team_thumb img {
  -webkit-filter: sepia(9%);
  filter: sepia(9%);
  -webkit-filter: saturate(90%);
  filter: saturate(90%);
}
.team_thumb:hover img {
  -webkit-filter: sepia(0%);
  filter: sepia(0%);
  -webkit-filter: saturate(100%);
  filter: saturate(100%);
}
.team_thumb .team_names {
  padding: 10px 0;
  color: #666 !important;
}
.team_thumb .team_names span {
  font-weight: bold;
}
.team_thumb em {
  font-size: 14px;
  font-style: normal;
}
.t_overflow_container_team {
  min-height: 300px;
}
.tpl-p-team-details .t_overflow_container_team {
  overflow: visible;
}
/* praxis
 ========================================================================== */
.praxis_address_smallscreen {
  background-color: #eee;
  padding: 20px 10px 20px 10px;
  margin-left: 0px !important;
}
.praxis_header_hl .uk-h2 {
  color: #fff;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 0 !important;
}
.praxis_header_hl .uk-h1 {
  color: #fff;
  font-weight: normal;
  margin: 0;
}
.praxis_header_hl p {
  color: #fff;
  font-size: 24px !important;
  line-height: 1.3;
  font-weight: normal;
}
.praxis_header_hl .uk-h2.hl_dark,
.praxis_header_hl .uk-h1.hl_dark {
  color: #717274 !important;
}
.praxis_header_hl .uk-h1 {
  font-size: 20px;
}
.praxis_header_hl .uk-h2 {
  font-size: 15px;
}
@media (min-width: 760px) {
  .praxis_header_hl {
    width: 260px;
  }
  .praxis_header_hl .uk-h1 {
    font-size: 22px;
  }
  .praxis_header_hl .uk-h2 {
    font-size: 17px;
  }
}
@media (min-width: 980px) {
  .praxis_header_hl {
    width: 300px;
  }
  .praxis_header_hl .uk-h1 {
    font-size: 38px;
  }
  .praxis_header_hl .uk-h2 {
    font-size: 20px;
  }
}
.praxis_header_address {
  position: absolute;
  top: 5px;
  right: 40px;
  width: 200px;
  font-size: 14px;
  line-height: 1.3;
  background: none;
}
.praxis_header_address .praxis_header_address_inner {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 20px 20px 10px 20px;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
}
.praxis_header_address .priv_praxis_label {
  width: 100%;
  height: 22px;
  margin-top: 8px;
  margin-bottom: 8px;
  background: url(/site/templates/1-media/privatpraxen-name-label.png);
  /* fallback */
  background-image: url(/site/templates/1-media/privatpraxen-name-label.svg), none;
  /* old browser do not support multiple backgrounds*/
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
}
.praxis_header_address .praxisname {
  color: #D44E3D;
  text-transform: uppercase;
}
.praxen_contact_address_string {
  font-weight: bold;
}
.praxen_hvv strong {
  color: #D44E3D !important;
  font-weight: normal;
}
.button_anfahrtsweg {
  display: block;
  background-color: #DFE0E1;
  color: #4C4C4C;
  font-size: 14px;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  margin-top: 2px;
  padding-bottom: 1px;
}
.button_anfahrtsweg:hover {
  text-decoration: none;
  color: #fff !important;
  background-color: #D44E3D;
}
#map_area_praxis {
  background-color: #f0f0f0;
  width: 100%;
  height: 430px;
}
.menu3_wrapper_standard {
  background-color: #F2F4F6;
  padding: 15px 15px 10px 5px;
}
.menu3_wrapper_privat {
  background-color: #DCDDE1;
  padding: 15px 15px 10px 5px;
}
.menu3_wrapper_privat li:nth-child(1),
.menu3_wrapper_privat li {
  padding-left: 10px !important;
}
#tab_main_content {
  min-height: 900px;
}
#praxis_meth_tab_content {
  min-height: 800px;
}
/* praxis = privat
 ========================================================================== */
.body_praxis_privat {
  background-image: url(/site/templates/1-media/ic-images/bg-privatpraxen.jpg);
  background-repeat: repeat-x;
  background-position: center 80px;
}
.body_praxis_privat #topbar_bg {
  background: none;
  background-color: #fff;
}
.body_praxis_privat .t_header_panorama .uk-h2 {
  font-weight: 200;
  font-style: normal;
}
.body_praxis_privat .t_header_panorama .uk-h1 {
  font-size: 24px !important;
  line-height: 1.2;
  font-weight: 200;
}
@media (min-width: 760px) {
  .body_praxis_privat .t_header_panorama .uk-h1 {
    font-size: 44px !important;
  }
}
.body_praxis_privat .t_header_panorama .uk-h1.hl_dark {
  color: #717274 !important;
}
.privat_galleryview_wrapper {
  display: none;
  overflow: hidden;
}
.uk-slideshow {
  mix-blend-mode: normal !important;
}
/* methoden
 ========================================================================== */
.methoden_header_hl .uk-h1 {
  font-size: 24px;
}
.methoden_header_hl .uk-h2 {
  font-size: 15px;
}
@media (min-width: 760px) {
  .methoden_header_hl {
    width: 220px;
  }
  .methoden_header_hl .uk-h1 {
    font-size: 30px;
  }
  .methoden_header_hl .uk-h2 {
    font-size: 17px;
  }
}
@media (min-width: 960px) {
  .methoden_header_hl {
    width: 300px;
  }
  .methoden_header_hl .uk-h1 {
    font-size: 38px;
  }
  .methoden_header_hl .uk-h2 {
    font-size: 20px;
  }
}
.methoden_header_hl .uk-h1 {
  color: #fff;
  margin-bottom: 0 !important;
}
.methoden_header_hl .uk-h2 {
  margin-top: 0;
  color: #fff;
  font-weight: normal;
}
.methoden_header_hl p {
  color: #fff;
  font-weight: normal;
}
.methoden_listboxes {
  height: 110px;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.methoden_listboxes.methoden_listboxes_vorbereitung {
  height: 210px !important;
}
.methoden_listboxes.meth_notinpraxis {
  background-color: #ccc !important;
  opacity: 0.9;
}
.methoden_listboxes.meth_notinpraxis:hover {
  background-color: #333 !important;
  opacity: 1;
}
.methoden_listboxes.meth_notinpraxis em {
  display: block;
}
.methoden_listboxes.meth_notinpraxis strong {
  display: none;
}
.methoden_listboxes.meth_notinpraxis:hover em {
  display: none;
}
.methoden_listboxes.meth_notinpraxis:hover strong {
  display: block;
  color: red;
  background-color: #fff;
  padding: 2px;
  text-align: center;
}
.methoden_listboxes .textblock_notinpraxis {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 20px;
  font-size: 14px;
  color: #fff;
  line-height: normal;
  padding: 10px;
}
.methoden_listboxes .block_name {
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  font-size: 28px;
  color: #fff;
  line-height: 1.2;
  padding: 20px 10px;
}
.methoden_listboxes .block_subnames {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  overflow: hidden;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 6px 10px 10px 10px;
}
@media (max-width: 959px) {
  .methoden_listboxes {
    height: 50px;
  }
  .methoden_listboxes .block_name {
    font-size: 18px;
  }
}
.block_checkliste {
  position: absolute;
  top: 8px;
  right: 10px;
  min-width: 80px;
  min-height: 40px;
  font-size: 14px !important;
  color: #fff;
  line-height: 14px;
  padding: 0 0 0 26px;
}
.block_checkliste span {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 30px;
  font-weight: normal;
  display: block;
}
.block_checkliste strong {
  font-size: 18px !important;
  line-height: 22px !important;
}
/* methods en */
.meth_box_name_en a:hover {
  opacity: 0.9;
}
.meth_box_name_en.meth_box_name_en_main > a,
.meth_box_name_en .meth_hl {
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
}
.meth_box_name_en.meth_box_name_en_main a {
  font-size: 17px;
}
.meth_box_name_en.meth_box_name_en_sub a {
  font-size: 14px;
}
/* Koerperbereiche
 ========================================================================== */
.koerperbereich_tile_bg {
  background: linear-gradient(60deg, #dddddd 0%, #ffffff00 100%) !important;
}
.koerperbereich_tile_bg2 {
  background: linear-gradient(60deg, #f0f0f0 0%, #ffffff00 100%) !important;
}
#koerperwahl_area_wrapper {
  position: relative;
  mix-blend-mode: multiply;
}
#koerperwahl_area {
  background-image: url(/site/templates/1-media/ic-images/Bilder/koerper-bg.png);
  background-position: right center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  min-height: 290px;
  /* not longer than #koerperschema_area */
}
#koerperwahl_menu {
  position: absolute;
  z-index: 99;
  top: 10px;
  left: 2px;
}
#koerperwahl_area ul,
#koerperwahl_area li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#koerperwahl_area ul li {
  padding-bottom: 5px;
}
#koerperwahl_area ul li a {
  display: block;
  background-color: rgba(211, 226, 234, 0.2);
  background-image: none;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 24px;
  width: 220px;
  padding: 1px 0 0 10px;
  color: #000;
  overflow: hidden;
  text-decoration: none;
}
#koerperwahl_area ul li:hover a,
#koerperwahl_area ul li.mkoerper_current a {
  width: 208px;
  background-image: url(/site/templates/1-media/ic-images/Bilder/koerper-pfeil-bg.png);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
#koerperwahl_area ul li.mkoerper_current a {
  cursor: default;
}
#koerperschema_area {
  /*	outline: 1px dashed red; */
  position: absolute;
  top: 10px;
  right: 4%;
  width: 180px;
  height: 320px;
  background-image: url(/site/templates/1-media/koerper/_init.png);
  background-repeat: no-repeat;
  display: none;
  overflow: hidden;
}
.tpl-p-home #koerperschema_area {
  right: 4%;
}
#koerperschema_area div {
  display: none;
}
#koerper_result_meth_area,
#koerper_result_meth_area ul li {
  display: none;
}
#koerper_result_meth_area .uk-h4 {
  color: #22AAAF;
  margin-bottom: 5px;
}
#koerper_result_meth_area ul,
#koerper_result_meth_area li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#koerper_result_meth_area a {
  display: block;
  padding: 2px 10px;
  color: #fff;
  background-color: #22AAAF;
  margin-bottom: 5px;
  text-decoration: none;
}
#koerper_result_meth_area a:hover {
  opacity: 0.8;
}
/* about-about, koop, karriere...
 ========================================================================== */
.tpl-p-about--standard .special_bg {
  background-image: url(/site/templates/1-media/bg-bilder/about-us.jpg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 270px;
  margin-bottom: -50px;
}
@media (max-width: 960px) {
  .tpl-p-about--standard .special_bg {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .tpl-p-about--standard .special_bg {
    height: 150px;
  }
}
.koop_panel ul,
.koop_panel ul li {
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
  list-style: none;
}
.koop_panel > ul > li {
  font-size: 14px;
  line-height: 1.3;
  color: #333;
}
.koop_panel > ul > li ul > li {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.ansprech_panel p {
  margin-top: 0;
}
.ansprech_panel strong {
  color: #d7290b;
}
.aktuelle-stellen-wrapper {
  background-color: rgba(253, 243, 200, 0.3);
  padding: 25px !important;
  box-shadow: inset 0px 0px 12px rgba(200, 200, 200, 0.1);
}
.uk-accordion-title {
  color: #333;
}
.uk-accordion-title.uk-active {
  background: #ddd;
  border-color: #ccc;
  color: #000;
}
.uk-accordion-title.uk-active i {
  color: #D44E3D;
}
.karriere_list ul {
  padding-left: 0;
  margin-left: 0;
}
.karriere_list li {
  list-style: none;
  padding-left: 0px;
  margin-left: 20px;
  font-size: 14px;
  margin-bottom: 5px;
}
.karriere_list li::before {
  font-family: FontAwesome;
  content: "\f00c";
  /* check */
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none !important;
  margin-left: -20px;
  padding-right: 4px;
  color: green;
  opacity: 0.8;
}
/* SERVICE -> FAQ...
 ========================================================================== */
.tpl-p-service--faq .methoden_header_hl {
  width: 700px;
}
.tpl-p-service--faq .faq_hl1,
.tpl-p-service--faq .faq_hl2 {
  color: #005F9F !important;
  margin-bottom: 0 !important;
}
.faq_wrapper .faq_kat_box {
  margin-bottom: 40px;
}
.faq_wrapper .faq_box {
  margin-bottom: 5px;
}
.faq_wrapper .question {
  cursor: pointer;
  background-color: #EDEDED;
  padding: 10px 10px 10px 15px;
}
.faq_wrapper .question .uk-h4 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: normal;
  color: #4C4C4C;
}
.faq_wrapper .question .uk-h4:before {
  font-family: FontAwesome;
  content: "\f0da";
  /* caret-right */
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none !important;
  padding-right: 10px;
  color: #D44E3D;
  opacity: 0.8;
}
.faq_wrapper .question:visited .uk-h4 {
  color: #666;
}
.faq_wrapper .question:hover .uk-h4,
.faq_wrapper .question:active .uk-h4,
.faq_wrapper .faq_open .question .uk-h4 {
  color: #000;
}
.faq_wrapper .faq_open .question .uk-h4:before {
  content: "\f0d7";
  /* caret-down */
  padding-right: 9px;
  margin-left: -2px;
}
.faq_wrapper .answer {
  display: none;
  padding: 20px 20px 20px 30px;
}
/* SERVICE - Termine
 ========================================================================== */
.tpl-p-service-praxen-sprechzeiten .praxis_stadtteil {
  background-color: #EDEDED;
  padding: 5px 10px 5px 18px;
}
.tpl-p-service-praxen-sprechzeiten .praxis_name {
  cursor: pointer;
}
.tpl-p-service-praxen-sprechzeiten .praxis_name a {
  color: #333 !important;
}
.sprechzeiten_wrapper {
  font-size: 14px;
  background-color: rgba(150, 200, 200, 0.1);
  padding: 35px 35px 25px 35px;
}
.sprechzeiten_wrapper table {
  margin-bottom: 20px;
  font-size: 14px;
  margin-right: 0 !important;
  margin-left: 5px;
}
.sprechzeiten_wrapper table td {
  padding-right: 10px;
  font-size: 14px;
}
.sprechzeiten_wrapper table td:first-child {
  padding-right: 15px;
}
.tpl-p-service-praxen-sprechzeiten .sprechzeiten_wrapper {
  margin-left: 15px !important;
}
/* SERVICE - News LISTE
 ========================================================================== */
.news_box {
  min-height: 100px;
  -moz-column-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  column-break-inside: avoid;
  position: relative;
}
.news_box_content {
  padding: 10px 15px 10px 15px;
}
.news_box p,
.news_box .uk-h3 {
  margin: 0;
}
.news_datum {
  color: #999 !important;
  margin-bottom: 5px;
}
.news_img_small {
  float: left;
  margin-top: 2px;
  margin-right: 8px;
  margin-bottom: 1px;
  max-width: 100%;
}
.news_hl_big {
  margin-bottom: 20px !important;
  color: #4C4C4C;
  font-size: 24px;
}
.news_hl_small {
  color: #4C4C4C;
  font-size: 14px;
}
.news_box p {
  color: #4C4C4C;
  font-size: 14px;
}
.news_bottombox {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  height: 31px;
  padding: 10px 10px 0 10px;
}
.news_bottombox .news_pdf_btn {
  display: block;
  font-size: 14px;
  line-height: 18px;
  padding-top: 2px;
  background-color: #DE6353 !important;
  color: #fff !important;
  font-style: normal !important;
  width: 57px;
  height: 20px;
  text-align: center;
  overflow: hidden;
}
.news_bottombox .news_pdf_btn:hover {
  text-decoration: none;
  box-shadow: 0px 0px 3px black;
}
.news_bottombox .news_more {
  float: right;
  display: block;
  width: 100px;
  text-align: right;
  color: #D44E3D;
  padding-top: 1px;
}
/* SERVICE - News DETAIL
 ========================================================================== */
.news_details_box {
  min-height: 100px;
  position: relative;
}
.news_details_box .news_box_content {
  padding: 20px;
}
.tpl-p-news-details .news_bottombox {
  height: 40px;
}
.tpl-p-news-details .news_bottombox .news_pdf_btn {
  left: 20px;
  top: 10px;
}
/* SERVICE -> Downloads...
 ========================================================================== */
.downloads_a_wrapper {
  text-decoration: none !important;
  color: #333 !important;
}
.downloads_a_wrapper .uk-h3 {
  color: #333 !important;
  font-size: 20px !important;
}
@media (min-width: 760px) {
  .downloads_a_wrapper .uk-h3 {
    font-size: 28px !important;
  }
}
.downloads_box {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  margin-bottom: 30px;
  border-bottom: 5px solid #999;
}
.downloads_thumb_area {
  position: absolute;
  max-width: 100px;
  bottom: 0;
  width: 200px;
  height: 180px;
  margin: 10px 0 0px 20px;
  z-index: 2;
  text-align: center;
  background-image: url(/site/templates/1-media/ic-images/Bilder/rahh-ic-pdf.png);
  background-position: 50% 96%;
  background-repeat: no-repeat;
}
.downloads_thumb_img:hover {
  margin-bottom: 1px;
  max-width: 105px;
}
.downloads_thumb_img {
  width: 140px;
  height: auto;
  margin: 0px auto 0 auto;
  border: 1px solid #ccc;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.51);
  -moz-transform: rotate(-1deg);
  -webkit-transform: rotate(-1deg);
  -o-transform: rotate(-1deg);
  -ms-transform: rotate(-1deg);
}
@media (max-width: 500px) {
  .downloads_thumb_img {
    width: 300px;
    height: auto;
    text-align: center;
  }
}
.downloads_box:hover .downloads_thumb_img {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.8);
}
.downloads_title {
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  padding-left: 200px;
  padding-right: 70px;
}
.downloads_desription_block {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 200px;
  padding-top: 10px;
  padding-right: 70px;
  background-color: #F1F0F1;
  height: 80px;
}
/* TERMIN MACHEN
 ========================================================================== */
.bg-phone-desk-color {
  background-color: #EDEDED;
}
.bg-phone-desk-img {
  min-height: 500px;
}
@media (min-width: 780px) {
  .bg-phone-desk-img {
    background-image: url(/site/templates/1-media/ic-images/phone-desk.jpg);
    background-position: 103% center;
    background-repeat: no-repeat;
  }
}
.bg-phone-desk-img-1arge {
  background-size: 50% auto;
}
.termin_intro_box {
  position: relative;
}
.termin_info_box {
  background-color: #F6F6F6;
  font-size: 16px;
  color: #D44E3D;
  line-height: 22px;
  padding: 10px 10px 5px 10px;
  position: relative;
}
.termin_info_box ol {
  margin-top: 0;
}
.termin_info_box ol li {
  color: #656565;
  font-weight: bold;
  margin-bottom: 3px;
}
.termin_info_hl {
  font-size: 16px;
  color: #D44E3D;
  line-height: 22px;
}
/* PRAXIS FINDER
 ========================================================================== */
.pkey-praxisfinder .t_page_main {
  min-height: 1000px !important;
}
.pkey-praxisfinder .uk-h2 a {
  color: #666;
}
.finder_praxis_detail_wrapper {
  margin-top: 5px;
  overflow: hidden;
  padding: 10px 20px 0px 20px;
  min-height: 400px;
  background-color: #fff;
  box-shadow: inset 0px 0px 80px #efefef;
  margin-bottom: 0;
}
.finder_praxis_detail {
  display: none;
}
.ullist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ullist li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ullist li a {
  display: block;
  color: #000;
  width: 100%;
  margin-top: 3px;
  padding: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  cursor: pointer;
}
/* same as in menuu 2 */
.ullist li a:hover,
.ullist li a.map_hover {
  text-decoration: none;
  background-color: #EDEDED;
  background: linear-gradient(356deg, #EDEDED 0%, #ffffff 100%);
}
.ullist li a.map_selected {
  background-image: none;
  background-color: #afadb0;
  color: #fff;
}
.ullist li a.map_selected em {
  font-style: normal;
}
.ullist li a:before {
  font-family: FontAwesome;
  content: "\f0da";
  /* caret-right */
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none !important;
  padding-right: 4px;
  color: #D44E3D;
  opacity: 0.8;
}
.marker_text {
  background-image: url(/site/templates/1-media/ic-images/rahh-logo-mini.png);
  background-repeat: no-repeat;
  background-position: left 1px;
  padding-left: 30px;
  min-width: 100px;
  min-height: 26px;
  white-space: nowrap;
}
.praxis_filter_wrapper {
  background-color: #6E6E6E;
  color: #fff;
  padding: 10px 10px 0 10px;
}
.praxis_filter_wrapper .praxisfinderform_label1 {
  padding-top: 4px;
  color: #fff;
}
form select {
  padding: 0 6px!important;
}
/* TEXT BLOCKS
 ========================================================================== */
.blockmain.pkey-class_strahlen table,
.tpl-p-methoden-details table {
  margin-bottom: 20px;
}
.blockmain.pkey-class_strahlen td,
.tpl-p-methoden-details td {
  width: 48%;
  padding-right: 2%;
  padding-bottom: 10px;
  font-size: 12px;
  line-height: 17px;
  vertical-align: top;
  font-style: italic;
}
/* PRINT */
.t_showonly_print {
  display: none !important;
  /* for showing something for print only */
}
@media print {
  .t_hide_print {
    display: none !important;
  }
  .t_showonly_print {
    display: block !important;
    /* for showing something for print only */
  }
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* PRIVACYWIRE + VIDEO replacement v. 13 */
/* Privacywire Popup  */
/* auf Sonderseiten (Datenschutzseite) verbergen */
.pkey-privacy .privacywire-page-wrapper,
.pkey-privacy .privacywire {
  display: none !important;
}
#privacywire-wrapper {
  position: absolute;
}
.show-banner > .privacywire-page-wrapper,
.show-options > .privacywire-page-wrapper,
.show-message > .privacywire-page-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(150, 150, 150, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99988 !important;
}
.privacywire {
  display: none;
  z-index: 99999 !important;
  margin: auto;
}
.show-banner .privacywire.privacywire-banner,
.show-options .privacywire.privacywire-options,
.show-message .privacywire.privacywire-message {
  display: block;
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  max-width: 600px;
  border: 3px solid #999 !important;
  box-shadow: 0 0 30px #505050cc !important;
  font-size: 12px !important;
  line-height: 1.2;
  font-family: Verdana, serif;
  border-radius: 8px;
  margin: 15px;
  padding: 30px 30px 10px 30px !important;
  /* https://bgjar.com/animated-shape */
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='600' height='400' preserveAspectRatio='none' viewBox='0 0 600 400'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1117%26quot%3b)' fill='none'%3e%3crect width='600' height='400' x='0' y='0' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/rect%3e%3cpath d='M516.8291113715586 43.107993007852315L422.0006814951802 36.47694322498843 415.3696317123163 131.3053731013669 510.1980615886947 137.93642288423078z' fill='rgba(210%2c 210%2c 210%2c 0.23)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M105.92492256411653 312.7215975181381L71.50608884892 418.651875412171 177.43636674295294 453.07070912736754 211.85520045814945 347.1404312333346z' fill='rgba(210%2c 210%2c 210%2c 0.23)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M544.2901936661304 347.24314960683347L614.4752687444711 266.50445657827584 533.7365757159134 196.31938149993516 463.55150063757276 277.05807452849285z' fill='rgba(210%2c 210%2c 210%2c 0.23)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M365.0071873605026 133.15450818718887L261.43026581977966 124.09270174946153 252.36845938205232 227.66962329018446 355.94538092277526 236.7314297279118z' fill='rgba(210%2c 210%2c 210%2c 0.23)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M264.78416559018046 97.91494796991685L264.78416559018046-8.317956083863677 158.55126153639992-8.317956083863663 158.55126153639992 97.91494796991687z' fill='rgba(210%2c 210%2c 210%2c 0.23)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M166.55343465751835 250.0801411866625L236.81748540175133 227.2499671627528 213.98731137784162 156.98591641851982 143.72326063360865 179.81609044242953z' fill='rgba(210%2c 210%2c 210%2c 0.23)' class='triangle-float2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1117'%3e%3crect width='600' height='400' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
}
.show-message .privacywire.privacywire-message {
  padding: 30px !important;
}
.show-banner .privacywire-header {
  font-size: 14px;
}
.show-banner .privacywire-body {
  text-align: left;
}
.privacywire-text {
  display: block;
}
.privacywire-text .privacywire-header,
.privacywire-text p,
.privacywire-text ul,
.privacywire-text ol,
.privacywire-text li {
  font-size: 12px !important;
  text-align: left;
  padding-top: 8px;
  margin: 0;
}
.privacywire-text ul {
  padding-left: 0;
}
.privacywire label {
  display: inline-block;
  margin: 10px 0 0 0 !important;
  padding: 2px 7px 2px 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: left;
}
.privacywire input[type=checkbox] {
  border: #333;
  margin-right: 4px;
}
.privacywire-text ul li {
  display: inline-block;
  margin: 0 10px 0 0;
}
.privacywire-header {
  font-weight: normal !important;
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
}
.privacywire-buttons {
  text-align: left;
  margin: 15px 0px 10px 0px;
}
.privacywire-buttons .allow-necessary,
.privacywire-buttons .allow-all,
.privacywire-buttons .choose,
.privacywire-buttons .toggle,
.privacywire-buttons .save {
  display: inline-block;
  border: none;
  background: #555;
  border-radius: 4px;
  box-shadow: 1px 1px 8px #66666620;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  padding: 8px 20px;
  margin: 10px 10px 0 0!important;
  cursor: pointer;
}
.privacywire-buttons .choose {
  background: #777;
}
.privacywire-buttons .allow-necessary:hover {
  background: #d77962;
}
.privacywire-buttons .save:hover {
  background: #d6b863;
}
.privacywire-buttons .choose:hover {
  background: #d6b863;
}
.privacywire-buttons .allow-all:hover {
  background: #7bbf85;
}
.privacywire-buttons .toggle:hover {
  background: #7bbf85;
}
a.privacywire-page-link {
  display: inline-block;
  float: right;
  font-size: 11px !important;
  color: #666 !important;
  background: none;
  border: none;
  text-decoration: underline;
  margin: 15px 0 15px 15px;
}
/* resppnsive small */
@media (max-width: 780px) {
  .privacywire {
    margin: 10px 5px;
  }
  .privacywire-banner {
    padding: 15px 15px 5px 15px !important;
  }
  .privacywire-body * {
    margin-bottom: 5px;
  }
  .privacywire-text,
  .privacywire-label,
  .privacywire-buttons {
    text-align: center !important;
    margin: 10px;
  }
}
/* MEDIA Consent Area */
.TextformatterVideoEmbed .privacywire-ask-consent {
  display: block;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  width: 95%;
  max-width: 800px;
  min-height: 400px;
  padding: 50px;
  text-align: center;
}
/* stripes - hell dunkel dunkel hell hell dunkel dunkel */
.TextformatterVideoEmbed .privacywire-ask-consent {
  background-image: linear-gradient(45deg, #f0f0f0 25%, #ffe7cb 25%, #ffe7cb 50%, #f0f0f0 50%, #f0f0f0 75%, #ffe7cb 75%, #ffe7cb 100%);
  background-size: 56.57px 56.57px;
}
.TextformatterVideoEmbed .privacywire-ask-consent button {
  font-size: 18px;
  line-height: 1.2;
  background: #555;
  color: #fff;
  border: none;
  padding: 10px 30px;
  box-shadow: 0px 0px 30px 66666620;
  border-radius: 4px;
  margin: 35px 0;
  min-width: 30%;
}
.TextformatterVideoEmbed .privacywire-ask-consent button:hover {
  background: #7bbf85;
}
@media (max-width: 780px) {
  .TextformatterVideoEmbed .privacywire-ask-consent {
    width: 100%;
    font-size: 14px;
  }
  .TextformatterVideoEmbed .privacywire-ask-consent button {
    font-size: 15px;
    line-height: 1.2;
    padding: 5px 15px;
    margin-top: 10px;
    min-width: 50%;
  }
}
/*# sourceMappingURL=x_main-ck.css.map */