@charset "UTF-8";
/* Css reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.group:before,
.group:after {
  content: "";
  display: table; }

.group:after {
  clear: both; }

.group {
  zoom: 1; }

/* General Selectors */
* {
  box-sizing: border-box; }

body {
  font-family: "Fira Sans", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

#wrapper {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto; }

.content {
  -moz-animation: fadeIn 1s;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s; }

a {
  font-family: "Fira Sans", sans-serif;
  text-decoration: none;
  font-weight: 500;
  color: #E65400; }

.center {
  text-align: center; }

.button {
  display: inline-block;
  text-decoration: none;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1.6;
  color: #E65400;
  background-color: #fef8f1;
  padding: 5px 0;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 5px;
  border: 1px solid #E65400;
  -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease;
  transition: all .2s ease; }

.button:hover {
  background: rgba(253, 125, 0, 0.05);
  box-shadow: 0px 0px 20px rgba(253, 125, 0, 0.2); }

.button::after {
  content: '→';
  margin-left: 10px; }

/* Typography */
.section-headline {
  font-size: 2rem;
  color: #4C5058;
  border-bottom: 2px solid #E65400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 40px 0;
  display: inline-block; }

p, h1, h2, h3, li, #headline, .caption, a.green, a.blue, a.circular, nav {
  -webkit-font-smoothing: antialiased;
  color: #4C5058;
  line-height: 1.5;
  font-weight: 400; }

h1, h2, h3 {
  font-family: "Roboto Condensed", sans-serif; }

h1 {
  font-size: 2rem;
  color: #E65400;
  padding-bottom: 1rem;
  font-weight: 400; }

h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #E65400;
  color: #E65400; }

p {
  font-size: 1.1rem; }

li {
  font-weight: 500;
  margin-bottom: .5rem; }

ul {
  list-style-position: inside; }

li {
  line-height: 1.8; }

.orangeText {
  color: #E65400; }

.bold {
  font-weight: 600; }

/* Header */
#topbar {
  position: fixed;
  height: 2px;
  width: 100%;
  background-color: #E65400; }

#header {
  height: 100px;
  border-bottom: 1px double #E8E8E8;
  padding: 20px 0px;
  margin-bottom: 40px; }

.logo {
  height: 60px;
  width: 150px; }

nav {
  float: right;
  padding-top: 20px; }

nav a {
  text-decoration: none;
  position: relative;
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  color: #7C7F85;
  font-size: 1.05em;
  margin-left: 20px;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s; }

nav a:hover {
  color: #E65400; }

nav a::after {
  position: absolute;
  top: 150%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E65400;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.08, 0.94); }

nav a:hover::after,
nav a:focus::after {
  opacity: 1;
  color: #E65400;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px); }

.currentPage {
  color: #E65400; }

/* Mobile nav */
#header select {
  display: none;
  padding: 20px;
  width: 100%;
  border: 1px solid #E65400;
  border-radius: 5px;
  background: #fef8f1 url("../img/arrow.svg") no-repeat 92% 50%;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #E65400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

/* Cover Pictures */
.cover {
  width: 100%; }

.cover img {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); }

/* Welcome Banner */
.pagetitle {
  color: #4C5058;
  font-size: 1.5rem;
  margin-bottom: 1.7rem; }

.banner {
  text-align: center; }

.banner h3 {
  font-weight: 300; }

.banner h2 {
  font-size: 1.4em;
  line-height: 1.4;
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: 400;
  color: #4C5058;
  border-bottom: none; }

.banner blockquote {
  font-family: "Playfair Display", serif;
  font-size: 2.8em;
  color: #E65400;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px; }

/* Info Boxes */

.boxes {
  text-align: center;
}

.infobox {
  border: 1px solid #E8E8E8;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  display: inline-block;
  width: 20%;
  margin: 2%;
  padding: 30px 15px;
  text-align: center;
  margin-bottom: 60px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* &:hover {
  	box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  } */ }

.alert-infobox {
  background: #E65400;
  color: white;
}

.infobox h2 {
  font-size: 1.8em;
  font-weight: bold;
  color: #E65400;
  margin-bottom: 1.8rem;
  border-bottom: none; }

.alert-infobox h2 {
  color: white;
}

.infobox p {
  margin-bottom: 1.5em;
  font-size: 1.1rem; }

.alert-infobox p {
  color: white;
}

.infobox .button {
  width: 70%; }

.alert-infobox .button:hover {
  background: white;
}

.infobox .button:after {
  content: '→';
  margin-left: 10px; }

/* Two Columns */
.twoColumns {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 20px; }

.twoColumns div {
  width: 47%; }

.twoColumns div h2 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #E65400;
  border-bottom: 1px solid #E65400; }

.image-column {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); }

/* Big Button */
.bigButton {
  font-size: 1.2rem;
  letter-spacing: 0px;
  text-transform: none;
  padding: 10px 20px;
  margin: 40px 0; }

/* Footer */
.footer {
  text-align: left;
  margin-top: 40px;
  padding: 30px 0;
  max-width: 100%;
  border-top: 1px solid #E8E8E8; }

.footer a {
  font-size: .8rem;
  color: #4C5058;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.footer a:hover {
  color: #E65400; }

.footerlink {
  margin-right: 40px; }

/* infotext (Impressum / Datenschutz) */
.infotext h2 {
  padding-bottom: 1rem;
  margin-top: 1rem; }

/* Telefon und Fax */
.fonfax {
  font-size: 1.2rem; }

/* Back to top Button */
.backtotop {
  float: right; }

/* reusable grey bottom border */
.divider {
  border-bottom: 1px solid #E8E8E8; }

/* Alert */
.online_termine {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background: #E65400;
  color: white;
  padding: 20px;
  padding-bottom: 31px;
  padding-top: 25px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  z-index: 9000;
  -moz-animation: alert 5s;
  -webkit-animation: alert 5s;
  animation: alert 5s; }
  .online_termine a {
    color: #E65400;
    background: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: "Roboto Condensed", sans-serif; }
  .online_termine p {
    color: white;
    margin-bottom: 10px;
    margin-top: 10px; }

.close_dialog {
  color: white;
  position: absolute;
  top: 4px;
  right: 18px;
}

.new_highlight {
  background: rgba(0,0,0,0.1);
  padding: 3px 6px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 3px;
}

@-webkit-keyframes alert {
  0% {
    opacity: 0;
    bottom: 0px; }
  90% {
    opacity: 0;
    bottom: 0px; }
  100% {
    opacity: 1;
    bottom: 20px; } }
@keyframes alert {
  0% {
    opacity: 0;
    bottom: 0px; }
  90% {
    opacity: 0;
    bottom: 0px; }
  100% {
    opacity: 1;
    bottom: 20px; } }
/* Fade content in on load */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/* Media Queries */
@media (max-width: 1020px) {
  #header {
    padding: 20px; }

  #wrapper {
    padding: 0 20px; } }
@media (max-width: 885px) {
  p {
    font-size: 1.1rem; }

  .infobox {
    width: 100%;
    margin: 0;
    margin-bottom: 40px; }

  .infobox p {
    font-size: 1.4rem; }

  .infobox .button {
    width: 40%; }

  .twoColumns {
    margin-top: 40px;
    display: block; }

  .twoColumns div {
    width: 100%;
    padding: 0;
    padding-bottom: 40px; } }
@media (max-width: 780px) {
  .logo {
    margin-bottom: 20px; }

  nav {
    display: none;
    width: 100%; }

  .banner blockquote {
    font-size: 2.2em; }

  .footer {
    text-align: center; }

  .footerlink {
    margin: 0 10px; }

  .backtotop {
    display: none; }

  #header {
    height: 190px;
    text-align: center; }

  #header select {
    display: block;
    margin: 0 auto; } }
@media (max-width: 450px) {
  .infobox .button {
    width: 80%;
    padding: 20px 0; } }


/* Corona FAQ */

.faq_link {
  font-size: 28px;
  line-height: 80px;
  display: block;
}

.faq_link:after {
  content: "→";
  margin-left: 10px;
  transition: all .2s linear;
}

.faq_link:hover:after {
  margin-left: 20px;
}

/* Zahnspangen */
ul.brace-list {
  list-style-position: outside;}

.sss {
  width: auto !important;
}

.sssnext, .sssprev {
	width: 50px !important;
	height: 100% !important;
	margin: 0 !important;
	position: absolute !important;
	top: 0 !important;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
