/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

/*
####### CUSTOMIZE #######
##### TO YOUR NEEDS #####
*/

html { scroll-padding-top: 160px; scroll-behavior: smooth; }

.bricks-button {
  transition: all ease .3s;
}

p {
	margin: 0;
}
strong {
  font-weight: 700;
}
p + p,
h3 + h4 {
	margin: 1rem 0 0 0; /* Customize to your needs */
}
h1 + p, h2 + p,
h1 + .brxe-text,
h2 + .brxe-text {
	margin: .75rem 0 0 0; /* Customize to your needs */
}
h3 + p, h4 + p,
h5 + p, h6 + p,
h3 + .brxe-text,
h4 + .brxe-text,
h5 + .brxe-text,
h6 + .brxe-text,
p + .brxe-button,
.brxe-text + .brxe-button {
	margin: .5rem 0 0 0; /* Customize to your needs */
}
.brxe-text + h1,
.brxe-text + h2,
.brxe-text + h3,
.brxe-text + h4,
.brxe-text + h5,
.brxe-text + h6,
p + h1, p + h2,
p + h3, p + h4,
p + h5, p + h6 {
	margin: 2.5rem 0 0 0; /* Customize to your needs */
}
[class*="col-"]:not([class*="bricks-col-"]),
.col {
  padding: 1rem; /* Customize to your needs. See also Media query > 786px */
  width: 100%;
}
@media screen and (min-width: 768px) {
  [class*="col-"]:not([class*="bricks-col-"]),
  .col {
    padding: 1rem; /* Customize to your needs */
  }
}

@media only screen and (max-width: 1300px) {
  .brxe-container, .single-post header .brxe-container, .single-post .cta .brxe-container {
      max-width: 100%;
  }
}

@media only screen and (min-width: 1300px) {
  .brxe-container, .single-post header .brxe-container, .single-post .cta .brxe-container {
      max-width: 1200px;
      width: 100%;
  }
}

@media only screen and (min-width: 1600px) {
  .brxe-container, .single-post header .brxe-container, .single-post .cta .brxe-container {
      max-width: 1360px;
      width: 100%;
  }
}

/*
####### BASE #######
#### DONT TOUCH ####
*/
.row {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
ul.row {
	list-style: none;
	padding-left: 0;
}
.row-reverse {
  flex-direction: row-reverse;
}
.gap {
	gap: 1rem;
}
.flex-column {
  flex-direction: column;
}
.column-reverse {
  flex-direction: column-reverse;
}
.flex-grow {
  flex: 1;
}
.flex-start {
  justify-content: flex-start;
}
.flex-center {
  justify-content: center;
}
.flex-end {
  justify-content: flex-end;
}
.flex-top {
  align-items: flex-start;
}
.flex-middle {
  align-items: center;
}
.flex-bottom {
  align-items: flex-end;
}
.flex-around {
  justify-content: space-around;
}
.flex-between {
  justify-content: space-between;
}
.flex-first {
  order: -1;
}
.flex-last {
  order: 1;
}
@media screen and (min-width: 480px) {
  .row-sm-reverse {
    flex-direction: row-reverse;
  }
  .column-sm-reverse {
    flex-direction: column-reverse;
  }
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .col-sm-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .flex-sm-start {
    justify-content: flex-start;
  }
  .flex-sm-center {
    justify-content: center;
  }
  .flex-sm-end {
    justify-content: flex-end;
  }
  .flex-sm-top {
    align-items: flex-start;
  }
  .flex-sm-middle {
    align-items: center;
  }
  .flex-sm-bottom {
    align-items: flex-end;
  }
  .flex-sm-around {
    justify-content: space-around;
  }
  .flex-sm-between {
    justify-content: space-between;
  }
  .flex-sm-first {
    order: -1;
  }
  .flex-sm-last {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .row-md-reverse {
    flex-direction: row-reverse;
  }
  .column-md-reverse {
    flex-direction: column-reverse;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .col-md-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .flex-md-start {
    justify-content: flex-start;
  }
  .flex-md-center {
    justify-content: center;
  }
  .flex-md-end {
    justify-content: flex-end;
  }
  .flex-md-top {
    align-items: flex-start;
  }
  .flex-md-middle {
    align-items: center;
  }
  .flex-md-bottom {
    align-items: flex-end;
  }
  .flex-md-around {
    justify-content: space-around;
  }
  .flex-md-between {
    justify-content: space-between;
  }
  .flex-md-first {
    order: -1;
  }
  .flex-md-last {
    order: 1;
  }
}
@media screen and (min-width: 992px) {
  .row-lg-reverse {
    flex-direction: row-reverse;
  }
  .column-lg-reverse {
    flex-direction: column-reverse;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .col-lg-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .flex-lg-start {
    justify-content: flex-start;
  }
  .flex-lg-center {
    justify-content: center;
  }
  .flex-lg-end {
    justify-content: flex-end;
  }
  .flex-lg-top {
    align-items: flex-start;
  }
  .flex-lg-middle {
    align-items: center;
  }
  .flex-lg-bottom {
    align-items: flex-end;
  }
  .flex-lg-around {
    justify-content: space-around;
  }
  .flex-lg-between {
    justify-content: space-between;
  }
  .flex-lg-first {
    order: -1;
  }
  .flex-lg-last {
    order: 1;
  }
}
@media screen and (min-width: 1200px) {
  .row-xl-reverse {
    flex-direction: row-reverse;
  }
  .column-xl-reverse {
    flex-direction: column-reverse;
  }
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .col-xl-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-xl-offset-0 {
    margin-left: 0;
  }
  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }
  .flex-xl-start {
    justify-content: flex-start;
  }
  .flex-xl-center {
    justify-content: center;
  }
  .flex-xl-end {
    justify-content: flex-end;
  }
  .flex-xl-top {
    align-items: flex-start;
  }
  .flex-xl-middle {
    align-items: center;
  }
  .flex-xl-bottom {
    align-items: flex-end;
  }
  .flex-xl-around {
    justify-content: space-around;
  }
  .flex-xl-between {
    justify-content: space-between;
  }
  .flex-xl-first {
    order: -1;
  }
  .flex-xl-last {
    order: 1;
  }
}

@media screen and (min-width: 1600px) {
  .row-xxl-reverse {
    flex-direction: row-reverse;
  }
  .column-xxl-reverse {
    flex-direction: column-reverse;
  }
  .flex-xxl-row {
    flex-direction: row;
  }
  .flex-xxl-column {
    flex-direction: column;
  }
  .col-xxl-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xxl-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xxl-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xxl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xxl-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xxl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xxl-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xxl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-xxl-offset-0 {
    margin-left: 0;
  }
  .col-xxl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xxl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xxl-offset-3 {
    margin-left: 25%;
  }
  .col-xxl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xxl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xxl-offset-6 {
    margin-left: 50%;
  }
  .col-xxl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xxl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xxl-offset-9 {
    margin-left: 75%;
  }
  .col-xxl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xxl-offset-11 {
    margin-left: 91.66666667%;
  }
  .flex-xxl-start {
    justify-content: flex-start;
  }
  .flex-xxl-center {
    justify-content: center;
  }
  .flex-xxl-end {
    justify-content: flex-end;
  }
  .flex-xxl-top {
    align-items: flex-start;
  }
  .flex-xxl-middle {
    align-items: center;
  }
  .flex-xxl-bottom {
    align-items: flex-end;
  }
  .flex-xxl-around {
    justify-content: space-around;
  }
  .flex-xxl-between {
    justify-content: space-between;
  }
  .flex-xxl-first {
    order: -1;
  }
  .flex-xxl-last {
    order: 1;
  }
}

/* ### Extra CSS ### */

:where(.brxe-nav-menu) .bricks-mobile-menu-toggle span {
  background-color: #0d518c;
}

.brxe-text.white-text h1, 
.brxe-text.white-text h2, 
.brxe-text.white-text h3, 
.brxe-text.white-text h4, 
.brxe-text.white-text h5, 
.brxe-text.white-text h1, 
.brxe-text.white-text a, 
.brxe-text.white-text p {
  color: #ffffff;
}

.brxe-text.white-text a {
  text-decoration: underline;
}

.brxe-text a { color: var(--bricks-color-zurhzx); }

.brxe-button.download-button::after {
  display: none;
}

.brxe-button.download-button:hover {
  padding-right: 1.2rem;
}

/* Animation Home Hero */

.slogan {
  animation: slogan 1s ease .5s 1 normal forwards;
  opacity: 0;
}

@keyframes slogan {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

span.unterstrich {
  position: relative;
}

span.unterstrich:before {
  content: url(https://ce-med.qtec-group.com/wp-content/uploads/2025/04/unterstrich-1.svg);
  position: absolute;
  bottom: -24px;
  left: 0;
  z-index: 10;
  width: 100%;
  height: auto;
  transition: all ease .3s;
  animation: unterstrich .5s ease 1.5s 1 normal forwards;
  clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
}

.page-id-872 span.unterstrich:before {
  content: url(https://ce-med.qtec-group.com/wp-content/uploads/2025/04/unterstrich-en.svg);
}

@keyframes unterstrich {
	0% {
		clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
	}

  100% {
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
	}
}

/* -- Verteiler */

a.verteiler-single:hover .brxe-icon {
  transform: translateX(10px);
}

a.verteiler-single .brxe-icon {
  transition: all ease .3s;
}

/* -- List Styles */

ul.list_cancel { list-style: none; margin-left: 0; margin-bottom: 12px; }
ul.list_cancel li { position: relative; margin: 0 0 20px 0; padding-left: 50px; }
ul.list_cancel li i { color:  #3E3E3E; }
ul.list_cancel li::before { font-family: "mfn-icons"; overflow: hidden; position: absolute; left: 20px; bottom: auto; font-size: 17px; }
ul.list_cancel li::before { content: '\e81a'; }
ul.list_cancel li::after { content: ""; width: 70px; height: 1px; overflow: hidden; background: rgba(0,0,0,.08); position: absolute; left: 0; bottom: -11px; }

ul.list_dash,
ul.list_dash-double { list-style: none; margin-left: 0; margin-bottom: 30px; padding-left: 25px; }
ul.list_dash li,
ul.list_dash-double li { position: relative; padding: 10px 0 10px 0; border-bottom: 1px solid #e6e6e6; margin-bottom: 0; }
ul.list_dash li::before,
ul.list_dash-double li::before { position: absolute; left: -20px; top: 5px; }
ul.list_dash li ul.list_dash li:last-child,
ul.list_dash-double li ul.list_dash-double li:last-child,
ul.list_dash ul.list_dash-double li:last-child { border-bottom: 0; padding-bottom: 0; }

ul.list_dash li:nth-child(3n + 2)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-gif-2-1.gif); }
ul.list_dash li:nth-child(3n + 3)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-gif-2-2.gif); }
ul.list_dash li:nth-child(3n + 1)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-gif-2-3.gif); }

ul.list_dash-double li:nth-child(3n + 1)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-double-gif-2-1.gif); }
ul.list_dash-double li:nth-child(3n + 2)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-double-gif-2-2.gif); }
ul.list_dash-double li:nth-child(3n + 3)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-double-gif-2-3-neu.gif); }

/* -- List dash White */

ul.list_dash-white { list-style: none; margin-left: 0; margin-bottom: 30px; padding-left: 0px; }
ul.list_dash-white li { position: relative; padding: 10px 0 10px 0; border-bottom: 1px solid #e6e6e6; margin-bottom: 0; }
ul.list_dash-white li::before { position: absolute; left: -20px; top: 5px; }
ul.list_dash-white ul.list_dash-white-double li:last-child { border-bottom: 0; padding-bottom: 0; }

ul.list_dash-white li:nth-child(3n + 2)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-gif-2-1-white.gif); }
ul.list_dash-white li:nth-child(3n + 3)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-gif-2-2-white.gif); }
ul.list_dash-white li:nth-child(3n + 1)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11dash-gif-2-3-white.gif); }

ul.list_dash-white-double li:nth-child(3n + 1)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-double-gif-2-1.gif); }
ul.list_dash-white-double li:nth-child(3n + 2)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-double-gif-2-2.gif); }
ul.list_dash-white-double li:nth-child(3n + 3)::before { content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/dash-double-gif-2-3-neu.gif); }

/* --- List Special */

ul.list_special { list-style: none; margin-left: 0; margin-top: 0; margin-bottom: 30px; padding-left: 0px; }
ul.list_special li { position: relative; padding: 1rem 0 1rem 3rem; border-bottom: 1px solid #e6e6e6; margin-bottom: 0; }
ul.list_special li::before { position: absolute; left: 10px; top: calc(50% - 12px); width: 1.5rem; height: 1.5rem; font-size: 1.5rem; }

ul.list_special li::before { content: url(https://www.qtec-hcs.com/wp-content/uploads/2025/06/qtec-hcs-list-special-icon.svg); }

/* -- Ordered List */

ol li {
  padding-bottom: 1rem;
}


/* -- Button Hover */

.bricks-button,
.brxe-shortcode .ff-default .ff_btn_style,
.brxe-shortcode .cr_button { position: relative; padding-right: 2.5rem !important; transition: all ease .3s; border-radius: 4px; }

.bricks-button::after,
.brxe-shortcode .ff-default .ff_btn_style::after,
.brxe-shortcode .cr_button::after {
  position: absolute;
  right: 16px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  content: '';
  transition: all ease .3s;
  background-image: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/qtec-eurep-arrow_forward-white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
} 

.bricks-background-light::after {
  background-image: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/qtec-ce-med-arrow_forward.svg);
}

.bricks-button:hover::after,
.brxe-shortcode .ff-default .ff_btn_style:hover::after,
.brxe-shortcode .cr_button:hover::after { right: 10px; }


.brxe-shortcode .cr_button {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  height: fit-content;
  line-height: 1.6rem;
  padding-top: .5rem;
  padding-right: 1.2rem;
  padding-bottom: .5rem;
  padding-left: 1.2rem;
}

.brxe-shortcode .cr_form .submit_container {
  text-align: left !important;
  margin-left: 10px;
  margin-right: 10px;
}

/* -- Experts */

.experts h4 {
  line-height: 1.5rem;
}

/* -- Bildunterschrift */

:where(.brxe-image) .bricks-image-caption {
  background: unset;
  font-size: 1rem;
  margin: .5rem 0 0 0;
  padding: 0;
  position: relative !important;
  line-height: 1.2rem;
  color: var(--bricks-text-light);
}

/* -- Contact */

.mail {
  margin-bottom: .25rem;
  display: inline-block;
}

.mail, .phone {
  position: relative;
  padding-left: 24px;
}

.mail:hover, .phone:hover, .brxe-social-icons .repeater-item.has-link a:hover {
  opacity: .7;
}

.mail::before, .phone::before {
  position: absolute;
  top: 0;
  width: 16px;
  height: 20px;
  font-family: Ionicons;
  transition: all ease .3s;
}

.mail::before {
  width: 16px;
  height: 20px;
  content: "\f1b8";
  left: 0;
}

.phone::before {
  width: 11px;
  height: 26px;
  content: "\f347";
  left: 3px;
}

/* -- Video */

@media only screen and (max-width: 767px) {
  .video-col {
    transform: translateY(0rem);
  }
}

@media only screen and (min-width: 767px) {
  .video-col {
    transform: translateY(-3rem);
  }
}

@media only screen and (min-width: 960px) {
  .video-col {
    transform: translateY(-5rem);
  }
}

@media only screen and (min-width: 1200px) {
  .video-col {
    transform: translateY(-7rem);
  }
}

/* -- Kacheln */

.kachel {
  position: relative;
}

.kachel::before {
  position: absolute;
  right: 1rem;
}

.schild.kachel::before {
  content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/schild-icon.svg);
  width: 24px;
  bottom: .75rem;
}

.trending.kachel::before {
  content: url(https://ce-med.qtec-group.com/wp-content/uploads/2024/11/trending-icon.svg);
  width: 32px;
  bottom: 1rem;
}

/* -- Before and After */

@keyframes before-after {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}

  10% {
		transform: translateY(0px);
	}
}

.brxe-ba-before-after-image .ba-before-after-image-control::before {
  content: 'Hier ziehen';
  padding: .5rem 1rem 1.5rem 1rem;
  position: absolute;
  top: 30%;
  left: calc(50% - 62px);
  z-index: 10;
  background-image: url(https://ce-med.qtec-group.com/wp-content/uploads/2025/04/qtec-arrow-downward.svg);
  background-size: 1rem;
  background-position: center 80%;
  background-repeat: no-repeat;
  background-color: var(--bricks-color-zurhzx);
  color: #ffffff;
  width: 123px;
  height: auto;
  border-radius: 4px;
  transition: all ease .3s;
  text-align: center;
  animation: before-after 3s ease 0s infinite normal forwards;
}

.page-id-872 .brxe-ba-before-after-image .ba-before-after-image-control::before {
  content: 'Pull here'
}

.brxe-ba-before-after-image:hover .ba-before-after-image-control::before {
  visibility: hidden;
  opacity: 0;
}

@media only screen and (max-width: 780px) {
  .brxe-ba-before-after-image .ba-before-after-image-control::before {
    top: 25%;
  }
}

/* -- Borlabs */ 

body div.brlbs-cmpnt-container img {
  height: 40px !important;
  margin-right: 1.5rem !important;
}

.brlbs-cmpnt-container :is(.brlbs-basis-3\/12) {
  display: none;
}

#BorlabsCookieBox .brlbs-cmpnt-dialog-details .brlbs-cmpnt-dialog-details-header, .brlbs-cmpnt-container .brlbs-cmpnt-dialog-details .brlbs-cmpnt-dialog-details-header {
  justify-content: space-between;
}

.brlbs-cmpnt-container :is(.brlbs-justify-center) {
  justify-content: flex-start !important;
  padding: .5rem !important;
}

/* -- Geschuetzter Bereich */

.page-id-920 #brxe-3e1df7,
.page-id-212 #brxe-3e1df7 {
  padding-top: 80px;
}

.page-id-920 article h1,
.page-id-212 article h1 {
  display: none;
}

.page-id-920 form,
.page-id-212 form {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
}

.page-id-920 form > div,
.page-id-212 form > div {
  width: calc(100% - 150px - 1rem);
}

.page-id-920 form input,
.page-id-212 form input {
  line-height: 37px;
}

@media only screen and (max-width: 767px) {
  .page-id-920 form,
  .page-id-212 form {
    flex-direction: column;
    align-items: center;
  }
}

/* -- Sprachenschalter */

.wpml-ls-slot-2 {
  display: flex;
  align-items: center;
}

 /* -- Formular */

:where(.brxe-form) .options-wrapper li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

:where(.brxe-form) .options-wrapper li input {
  margin-top: 5px !important;
}

.brxe-shortcode .ff-default .ff-el-form-control {
  background-color: #f7f7f7;
  border: 0;
  border-radius: 4px;
  font-family: 'Lato (local)' !important;
}

.brxe-shortcode .ff-default .ff_btn_style {
  font-size: 18px;
}

.brxe-shortcode .ff-default .ff-el-form-control:focus {
  background-color: #eeeeee;
}

.brxe-shortcode .fluentform .ff-el-group {
  margin-bottom: 16px;
}

.brxe-shortcode .fluentform .ff-el-group.ff_submit_btn_wrapper {
  margin-bottom: 0px;
}

.brxe-shortcode .ff-message-success {
  box-shadow: unset;
  background-color: #f7f7f7;
  color: var(--bricks-color-nbaavl);
  border: unset;
  padding: 16px;
  text-align: center;
}