@charset "UTF-8";
/* Variables
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Extend
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none; }

/* Mixin
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* General
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
body {
  font-family: "Akkurat", sans-serif;
  font-weight: 300;
  color: #2e3436;
  font-size: 14px;
  line-height: 20px;
  width: 100%; }

select {
  border: 1px solid #9fa1a3;
  background-color: #fff;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  select:focus {
    outline: none;
    color: inherit; }

textarea:focus {
  outline: none;
  color: inherit; }

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }

input[type="search"]::-webkit-search-decoration {
  display: none; }

input[type="search"]::-webkit-search-cancel-button {
  display: none; }

input[type="search"]::-webkit-search-results-button {
  display: none; }

input[type="search"]::-webkit-search-results-decoration {
  display: none; }

input {
  border: 1px solid #9fa1a3;
  border-radius: 0;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  input:focus {
    outline: none; }

input[type="number"] {
  padding-left: 5px;
  border: 1px solid #999;
  outline: none; }

h1 {
  font-weight: normal; }

h2 {
  font-weight: normal; }

h3 {
  font-weight: normal; }

h4 {
  font-weight: normal; }

h5 {
  font-weight: normal; }

h6 {
  font-weight: normal; }

a {
  color: inherit;
  text-decoration: none;
  font-size: inherit; }
  a:hover {
    text-decoration: none; }

button {
  font-size: inherit;
  font-family: inherit;
  font-weight: normal;
  background-color: transparent;
  border: none; }
  button:focus {
    border: none;
    outline: none;
    cursor: pointer; }

ul {
  list-style: none; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none; }

.hidden {
  display: none; }

.row {
  position: relative;
  margin-left: -15px;
  margin-right: -15px; }
  .row:after {
    display: table;
    clear: both;
    content: ''; }
  .row .row {
    margin-left: 0;
    margin-right: 0; }

[class^="col-"] {
  box-sizing: border-box; }

.container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

#detach-button {
  display: none !important; }

/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0; }

#mobile-menu, #lang-mobile {
  display: none; }

.header__container {
  position: relative;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  z-index: 10; }

.header__top {
  padding-top: 25px;
  display: flex;
  font-size: 18px; }
  .header__top a {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .header__top a:hover {
      color: #bb2d38; }

.header__lang {
  font-size: 16px;
  margin-left: 50px; }
  .header__lang li {
    float: left; }
  .header__lang a {
    line-height: 22px; }
  .header__lang span {
    display: block;
    width: 1px;
    height: 20px;
    background: #393939;
    margin: 0 10px; }

.header__top-links {
  width: 100%;
  align-self: center;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px; }

header {
  font-family: sans-serif;
  color: #393939; }

.header__menu li {
  float: left;
  display: block;
  margin-left: 30px; }
  .header__menu li:last-child {
    display: none; }

.header__icon-menu {
  position: absolute;
  left: 0;
  top: 25%;
  z-index: 2; }
  .header__icon-menu li {
    background: #f7f7f7;
    color: #bb2d38;
    border: 2px solid #bb2d38;
    border-left: none;
    font-size: 22px;
    width: auto;
    max-width: 50px;
    margin: 15px 0;
    text-align: left;
    text-indent: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s; }
    .header__icon-menu li:hover {
      max-width: 250px; }
  .header__icon-menu a {
    display: flex;
    padding: 10px; }

.header__icon-text {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 15px; }

/* Sections
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.section-wrapper {
  position: relative;
  background: url("/img/sections/Header-bg.jpg") no-repeat top center;
  background-size: cover;
  padding-top: 109px; }

.dr-beat {
  overflow: hidden; }
  .dr-beat .container {
    max-width: 1200px; }

.dr-beat .icon-sso_logo {
  color: #fff;
  z-index: 5;
  font-size: 29px;
  margin-top: 50px; }

.dr-beat__img {
  max-width: 700px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: -70px;
  z-index: 1; }

.dr-beat__red-layer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 250px; }

.dr-beat__wrapper {
  width: 600px;
  padding-top: 40px;
  float: right;
  padding-bottom: 360px;
  position: relative;
  z-index: 9; }

.dr-beat__title {
  font-family: "Oranienbaum", sans-serif;
  font-size: 54px;
  line-height: 60px; }

.dr-beat__sub-title {
  font-family: "Oranienbaum", sans-serif;
  font-size: 38px;
  line-height: 40px; }

.dr-beat__text {
  font-family: "Akkurat", sans-serif;
  font-size: 18px;
  margin-top: 25px;
  line-height: 25px; }

.dr-beat__competencies {
  color: #fff;
  position: absolute;
  z-index: 4;
  width: 100%;
  bottom: 50px;
  right: -50px;
  display: flex; }

.dr-beat__competencies-wrapper {
  margin-right: 40px; }
  .dr-beat__competencies-wrapper:last-child {
    margin-right: 0; }

.dr-beat__competencies-title {
  font-family: "Oranienbaum", sans-serif;
  font-size: 26px;
  line-height: 52px;
  display: block; }

.dr-beat__competencies-list {
  font-family: "Akkurat", sans-serif;
  font-size: 15px; }
  .dr-beat__competencies-list .icon-shape {
    font-size: 8px;
    padding-right: 13px;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0; }
  .dr-beat__competencies-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px; }

.implants {
  position: relative;
  padding-top: 100px;
  padding-bottom: 250px;
  background-color: #f3f3f3; }

.implant__left-img {
  position: absolute;
  top: -30px;
  left: 15%; }

.implant__right-img {
  position: absolute;
  top: 350px;
  right: 120px; }

.implants__right-wrapper {
  float: right;
  width: 430px; }

.section__title {
  font-family: "Oranienbaum", sans-serif;
  color: #35567d;
  font-size: 50px;
  line-height: 54px;
  letter-spacing: -2px; }

.section__text {
  padding-top: 10px;
  font-size: 18px;
  line-height: 25px; }

.video-play {
  padding-top: 35px;
  color: #35567d; }

.video-play__btn {
  font-family: sans-serif;
  font-size: 30px;
  width: 62px;
  height: 62px;
  line-height: 60px;
  vertical-align: middle;
  text-align: center;
  display: inline-block;
  color: #35567d;
  border: 2px solid #35567d;
  border-radius: 50%;
  cursor: pointer; }
  .video-play__btn:focus {
    border: 2px solid #35567d; }
  .video-play__btn .icon-play {
    padding-left: 7px; }

.video-play__label {
  text-transform: uppercase;
  font-size: 12px;
  margin-left: 10px;
  letter-spacing: 1px;
  cursor: pointer; }

.implants__left-wrapper {
  float: left;
  width: 500px;
  margin-top: 303px; }

.advantages__text {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  font-size: 16px;
  padding-left: 35px;
  border-left: 1px solid #bfbfbf;
  color: #2e3436;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .advantages__text:hover {
    color: #bb2d38; }

.advantages__title {
  padding: 3px 0 3px 35px;
  display: block;
  border-left: 2px solid #35567d;
  -webkit-transition: all nones ease 0s;
  transition: all nones ease 0s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.advantages__list {
  color: #35567d;
  margin-top: 20px;
  position: relative; }
  .advantages__list li {
    font-size: 22px;
    margin: 7px 0;
    line-height: 28px; }
    .advantages__list li.active {
      border-left: none;
      padding-left: 0;
      margin-bottom: 20px; }
      .advantages__list li.active .advantages__text {
        opacity: 1;
        visibility: visible;
        max-height: 200px; }
      .advantages__list li.active .advantages__title {
        font-size: 22px;
        color: #bb2d38;
        border-left: 2px solid #bb2d38;
        padding-bottom: 15px; }
    .advantages__list li:last-child {
      margin-bottom: 0; }
    .advantages__list li a {
      cursor: pointer;
      -webkit-transition: all 0.2s ease 0s;
      transition: all 0.2s ease 0s; }
      .advantages__list li a:hover {
        color: #bb2d38; }

.guided-surgery {
  position: relative;
  padding-top: 90px;
  padding-bottom: 170px;
  background-size: 788px !important; }
  .guided-surgery .circle {
    position: absolute;
    border: 2px solid #898989;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    right: 4px;
    top: 32px; }
  .guided-surgery .active .advantages__title, .guided-surgery .active .advantages__text:hover {
    color: #fe0014 !important;
    border-color: #fe0014 !important; }
  .guided-surgery .section__title {
    color: #f8f8f8;
    letter-spacing: 0; }
  .guided-surgery .section__text {
    color: #fff;
    margin-top: 10px;
    opacity: 0.85; }
  .guided-surgery .advantages__title {
    font-size: 20px !important;
    line-height: 38px; }
    .guided-surgery .advantages__title:hover {
      color: #fe0014 !important; }
  .guided-surgery .advantages__text {
    color: #9fa1a3;
    padding-top: 10px;
    line-height: 23px;
    border-left: 1px solid #4e5050 !important; }
    .guided-surgery .advantages__text:hover {
      color: #bb2d38; }
  .guided-surgery .advantages__list {
    color: #fff;
    margin-top: 25px; }
    .guided-surgery .advantages__list a {
      border-left: 2px solid #fff; }

.guided-surgery__top {
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translate(-50%, -100%);
  max-width: 100%; }

.guided-surgery__left-wrapper {
  width: 400px;
  float: left; }

.guided-surgery__right-wrapper {
  width: 500px;
  padding-top: 22px;
  float: right; }

.guided-surgery__video {
  width: 525px;
  position: relative; }
  .guided-surgery__video .video-play {
    padding-top: 172px;
    padding-left: 5px;
    float: left;
    text-align: center; }
    .guided-surgery__video .video-play span {
      color: #fff;
      display: block;
      text-align: center;
      margin-top: 10px;
      line-height: normal;
      font-size: 12px;
      text-transform: uppercase; }
  .guided-surgery__video .video-play__btn {
    border: 2px solid #fff;
    color: #fff; }

.all-on-four__top {
  position: relative;
  z-index: 8;
  margin-bottom: 150px; }

.guided-surgery__svg {
  position: absolute;
  bottom: 55px;
  right: 22px; }

.circle__inner {
  position: absolute;
  border: 2px solid #898989;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%); }

.circle__dot-inner {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%); }

.all-on-four {
  padding-top: 155px;
  position: relative;
  background: #f2f2f2 no-repeat top center;
  background-size: cover;
  margin-bottom: -0.3%; }
  .all-on-four .container {
    z-index: 1; }
  .all-on-four .circle {
    border: 2px solid #898989;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background: #fff;
    display: block; }
  .all-on-four .advantages__list {
    margin-top: 22px; }

.all-on-four__bottom-wrapper {
  position: relative; }

.all-on-four__text-bottom {
  font-size: 18px;
  line-height: 26px;
  position: absolute;
  bottom: 71%;
  left: 0;
  width: 100%;
  text-align: center; }
  .all-on-four__text-bottom p {
    width: 57%;
    margin-left: 28%;
    text-align: left; }

.all-on-four__gray-layer {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-98%);
  z-index: 4;
  width: 100%;
  height: 125px; }

.all-on-four__bottom-img {
  width: 100%;
  height: auto !important; }

.all-on-four__tooth {
  position: absolute;
  right: 0;
  top: 230px; }

.all-on-four__left-wrapper {
  width: 250px;
  float: left; }
  .all-on-four__left-wrapper .section__title {
    letter-spacing: 0; }
  .all-on-four__left-wrapper .section__text {
    margin-top: 5px;
    padding-right: 5px; }

.all-on-four__right-wrapper {
  width: 370px;
  float: right; }

.all-on-four__img-wrapper {
  float: left;
  padding-top: 50px;
  position: relative; }
  .all-on-four__img-wrapper button {
    width: 45px;
    position: relative;
    z-index: 1; }
  .all-on-four__img-wrapper .icon-plus {
    color: #eb0000;
    font-size: 18px;
    vertical-align: middle;
    line-height: 26px;
    text-align: center; }
    .all-on-four__img-wrapper .icon-plus:before {
      margin-left: 1px; }

.all-on-four__img-btn-1 {
  position: absolute;
  top: 60%;
  left: 9.5%; }

.all-on-four__img-btn-2 {
  position: absolute;
  top: 40%;
  left: 27%; }

.all-on-four__img-btn-3 {
  position: absolute;
  top: 33%;
  left: 53%; }

.all-on-four__img-btn-4 {
  position: absolute;
  top: 57%;
  left: 63%; }

.all-on-four__img-btn-5 {
  position: absolute;
  top: 64%;
  right: 9.5%; }

.all-on-four__img {
  width: 415px;
  height: auto;
  margin-left: 10px;
  margin-top: 100px; }

@-webkit-keyframes fadeinout {
  0%,100% {
    opacity: 0; }
  50% {
    opacity: 1; } }
@keyframes fadeinout {
  0%,100% {
    opacity: 0; }
  50% {
    opacity: 1; } }
.all-on-four__modal {
  width: 540px;
  position: absolute;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  left: -2000%;
  bottom: 75px;
  -webkit-transition: opacity 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in;
  -ms-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in; }
  .all-on-four__modal.open {
    left: -20px;
    opacity: 1;
    visibility: visible; }

.all-on-four__modal-inner {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }

.all-on-four__modal-img {
  width: 100%;
  height: auto; }

.all-on-four__modal-svg {
  position: absolute;
  bottom: -40px;
  left: 47px;
  right: 0;
  z-index: 1; }

.all-on-four__modal-text {
  padding: 7px 15px 12px 20px;
  line-height: 21px; }

.our-partners {
  position: relative;
  padding-top: 25px;
  padding-bottom: 65px;
  background-color: #161d20; }

.our-partners__title {
  line-height: 60px;
  font-size: 50px;
  font-family: "Oranienbaum", sans-serif;
  color: #fff;
  text-align: center; }

.our-partners__img-wrapper {
  margin-top: 10px;
  border: 1px solid #2e3436;
  padding: 20px 50px 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  .our-partners__img-wrapper a {
    display: block;
    float: left;
    height: 50px;
    margin-right: 100px; }
  .our-partners__img-wrapper .our-partners__img--last {
    margin-right: 0; }

/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer {
  position: relative;
  background-color: #161d20;
  padding-top: 60px;
  padding-bottom: 85px;
  color: #7e8284;
  font-family: sans-serif; }
  .footer input {
    background-color: transparent;
    border: 1px solid #2e3436;
    height: 45px;
    font-family: sans-serif;
    font-size: 14px; }

.footer__bg {
  position: absolute;
  top: -55px;
  left: -50px; }

.footer__title {
  color: #fff;
  font-size: 24px;
  line-height: 40px;
  font-family: "Oranienbaum", sans-serif; }

.footer__contact {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding-right: 25px; }

.footer__contact-list {
  display: inline-block;
  font-size: 17px;
  padding-top: 20px;
  text-align: left; }
  .footer__contact-list li {
    padding: 8px 10px 8px 0; }
  .footer__contact-list i {
    display: block;
    float: left;
    font-size: 25px;
    line-height: 25px;
    width: 30px;
    margin-right: 30px;
    text-align: center; }
  .footer__contact-list .icon-mobile {
    font-size: 30px;
    margin-top: 5px; }
  .footer__contact-list .icon-location {
    font-size: 27px;
    margin-top: 3px; }
  .footer__contact-list span {
    display: block;
    float: left;
    width: 180px; }
    .footer__contact-list span a {
      display: block;
      -webkit-transition: all 0.2s ease 0s;
      transition: all 0.2s ease 0s; }
      .footer__contact-list span a:hover {
        color: #fff; }

.footer__wrapper {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding-left: 25px; }

.footer__working-hours-list {
  padding-top: 20px; }
  .footer__working-hours-list li {
    font-size: 17px;
    line-height: 29px; }

.footer__social {
  margin-top: 45px; }

.footer__social-title {
  font-size: 24px;
  color: #fff; }

.footer__social-list {
  margin-top: 20px;
  display: inline-block; }
  .footer__social-list li {
    float: left;
    margin-right: 10px; }
    .footer__social-list li:last-child {
      margin-right: 0 !important; }
  .footer__social-list a {
    background-color: #9fa1a3;
    color: #161d20;
    font-size: 18px;
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .footer__social-list a:hover {
      background: #fff; }

.footer__social-item--last {
  margin-right: 0; }

/* Bottom meta layout: combine notfall + copyright/privacy */
.footer__bottom-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom-meta .notfall {
  text-align: left;
  margin: 0;
  color: #9fa1a3;
  font-size: 16px;
}
.footer__copyright-wrapper {
  color: #9fa1a3;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__privacy a {
  color: #9fa1a3;
  -webkit-transition: color .2s;
  transition: color .2s;
}
.footer__privacy a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 768px) {
  .footer__bottom-meta { flex-direction: column; align-items: flex-start; }
  .footer__bottom-meta .notfall { margin-bottom: 10px; }
}

.footer__form-wrapper {
  float: right;
  width: 440px; }

.footer__form {
  margin-top: 20px;
  position: relative; }
  .footer__form .spinner {
    position: absolute;
    visibility: hidden;
    top: 0;
    left: -1000%;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    display: block;
    z-index: 1;
    -webkit-transition: opacity 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in;
    -ms-transition: opacity 0.3s ease-in;
    -o-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in; }
  .footer__form .background {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: -1000%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 29, 32, 0.5);
    -webkit-transition: opacity 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in;
    -ms-transition: opacity 0.3s ease-in;
    -o-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in; }
  .footer__form.loading .spinner, .footer__form.loading .background {
    visibility: visible;
    opacity: 1;
    left: 0; }

.footer__input-name {
  float: left;
  padding: 0 15px;
  color: inherit; }

.footer__input-email {
  color: inherit;
  float: right;
  padding: 0 15px; }

.footer__input-name, .footer__input-email {
  width: 48.5%; }

.footer__message {
  background-color: transparent;
  border: 1px solid #2e3436;
  width: 100%;
  color: inherit;
  font-size: 14px;
  font-family: sans-serif;
  margin-top: 7px;
  padding: 15px;
  height: 110px;
  resize: none; }

.footer__submit-wrapper {
  padding-top: 3px; }

.footer__file {
  display: none; }

.footer__file-label {
  height: 45px;
  display: block;
  float: left;
  font-size: 14px;
  font-family: sans-serif;
  border: 1px solid #2e3436;
  width: 48.5%;
  line-height: 43px;
  vertical-align: middle;
  padding: 0 15px;
  position: relative;
  cursor: pointer; }

.footer__file-btn {
  color: #fff;
  background-color: #35567d;
  height: calc(100% + 2px);
  width: 55px;
  display: block;
  line-height: 5px;
  position: absolute;
  right: -1px;
  top: -1px;
  letter-spacing: 1px;
  padding-bottom: 5px;
  pointer-events: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .footer__file-btn:hover {
    background: #416b9c; }

.footer__submit {
  float: right;
  color: #fff;
  height: 45px;
  width: 48.5%;
  font-family: sans-serif;
  background: #35567d;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .footer__submit:hover {
    background: #416b9c; }

.footer__bottom-wrapper {
  position: relative;
  text-align: center;
  border-top: 1px solid #353c3f;
  border-bottom: 1px solid #353c3f;
  padding: 23px 0;
  margin-top: 85px; }

.footer__top-wrapper {
  display: flex; }

.footer__bottom-list {
  display: flex;
  justify-content: space-around;
  width: 100%;
  z-index: 1;
  position: relative; }
  .footer__bottom-list li {
    float: none;
    color: #9fa1a3;
    font-family: sans-serif;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    text-align: center;
    flex: 1;
    white-space: nowrap;
    padding: 0 10px; }
  .footer__bottom-list a {
    display: inline-block;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s; }
    .footer__bottom-list a:hover {
      color: #fff; }

.footer__bottom-item--last {
  margin-left: 0; }

.footer__copyright-wrapper {
  text-align: center; }

.footer__copyright {
  display: inline-block;
  font-family: sans-serif; }

.callback__input-info {
  margin-top: 20px;
  font-style: italic;
  line-height: 26px; }

.notfall {
  text-align: center;
  margin: 35px 0;
  line-height: 30px; }
  .notfall .title {
    margin-right: 20px;
    font-weight: bold; }

.working-hours__mobile {
  font-size: 18px;
  font-weight: bold;
  margin-left: 5px; }

.tm {
  font-size: 7px;
  vertical-align: top;
  margin-top: -7px;
  display: inline-block; }

.xdsoft_datetimepicker {
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506);
  background: #fff;
  border-bottom: 1px solid #bbb;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 8px;
  padding-left: 0;
  padding-top: 2px;
  position: absolute;
  z-index: 9999;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: none; }

.xdsoft_datetimepicker.xdsoft_rtl {
  padding: 8px 0 8px 8px; }

.xdsoft_datetimepicker iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 210px;
  background: transparent;
  border: none; }

/*For IE8 or lower*/
.xdsoft_datetimepicker button {
  border: none !important; }

.xdsoft_noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }

.xdsoft_noselect::selection {
  background: transparent; }

.xdsoft_noselect::-moz-selection {
  background: transparent; }

.xdsoft_datetimepicker.xdsoft_inline {
  display: inline-block;
  position: static;
  box-shadow: none; }

.xdsoft_datetimepicker * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

.xdsoft_datetimepicker .xdsoft_datepicker, .xdsoft_datetimepicker .xdsoft_timepicker {
  display: none; }

.xdsoft_datetimepicker .xdsoft_datepicker.active, .xdsoft_datetimepicker .xdsoft_timepicker.active {
  display: block; }

.xdsoft_datetimepicker .xdsoft_datepicker {
  width: 224px;
  float: left;
  margin-left: 8px; }

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0; }

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker {
  width: 256px; }

.xdsoft_datetimepicker .xdsoft_timepicker {
  width: 58px;
  float: left;
  text-align: center;
  margin-left: 8px;
  margin-top: 0; }

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0; }

.xdsoft_datetimepicker .xdsoft_datepicker.active + .xdsoft_timepicker {
  margin-top: 8px;
  margin-bottom: 3px; }

.xdsoft_datetimepicker .xdsoft_monthpicker {
  position: relative;
  text-align: center; }

.xdsoft_datetimepicker .xdsoft_label i,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC); }

.xdsoft_datetimepicker .xdsoft_label i {
  opacity: 0.5;
  background-position: -92px -19px;
  display: inline-block;
  width: 9px;
  height: 20px;
  vertical-align: middle; }

.xdsoft_datetimepicker .xdsoft_prev {
  float: left;
  background-position: -20px 0; }

.xdsoft_datetimepicker .xdsoft_today_button {
  float: left;
  background-position: -70px 0;
  margin-left: 5px; }

.xdsoft_datetimepicker .xdsoft_next {
  float: right;
  background-position: 0 0; }

.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_today_button {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0 none;
  cursor: pointer;
  display: block;
  height: 30px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  outline: medium none;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
  min-width: 0; }

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
  float: none;
  background-position: -40px -15px;
  height: 15px;
  width: 30px;
  display: block;
  margin-left: 14px;
  margin-top: 7px; }

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev,
.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next {
  float: none;
  margin-left: 0;
  margin-right: 14px; }

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  background-position: -40px 0;
  margin-bottom: 7px;
  margin-top: 0; }

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  height: 151px;
  overflow: hidden;
  border-bottom: 1px solid #ddd; }

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: center;
  border-collapse: collapse;
  cursor: pointer;
  border-bottom-width: 0;
  height: 25px;
  line-height: 25px; }

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:first-child {
  border-top-width: 0; }

.xdsoft_datetimepicker .xdsoft_today_button:hover,
.xdsoft_datetimepicker .xdsoft_next:hover,
.xdsoft_datetimepicker .xdsoft_prev:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; }

.xdsoft_datetimepicker .xdsoft_label {
  display: inline;
  position: relative;
  z-index: 9999;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
  float: left;
  width: 182px;
  text-align: center;
  cursor: pointer; }

.xdsoft_datetimepicker .xdsoft_label:hover > span {
  text-decoration: underline; }

.xdsoft_datetimepicker .xdsoft_label:hover i {
  opacity: 1.0; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select {
  border: 1px solid #ccc;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 101;
  display: none;
  background: #fff;
  max-height: 160px;
  overflow-y: hidden; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect {
  right: -7px; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect {
  right: 2px; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #fff;
  background: #ff8000; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
  padding: 2px 10px 2px 5px;
  text-decoration: none !important; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #33aaff;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700; }

.xdsoft_datetimepicker .xdsoft_month {
  width: 100px;
  text-align: right; }

.xdsoft_datetimepicker .xdsoft_calendar {
  clear: both; }

.xdsoft_datetimepicker .xdsoft_year {
  width: 48px;
  margin-left: 5px; }

.xdsoft_datetimepicker .xdsoft_calendar table {
  border-collapse: collapse;
  width: 100%; }

.xdsoft_datetimepicker .xdsoft_calendar td > div {
  padding-right: 5px; }

.xdsoft_datetimepicker .xdsoft_calendar th {
  height: 25px; }

.xdsoft_datetimepicker .xdsoft_calendar td, .xdsoft_datetimepicker .xdsoft_calendar th {
  width: 14.2857142%;
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: right;
  vertical-align: middle;
  padding: 0;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px; }

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td, .xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th {
  width: 12.5%; }

.xdsoft_datetimepicker .xdsoft_calendar th {
  background: #f1f1f1; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #33aaff; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #33aaff;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,
.xdsoft_datetimepicker .xdsoft_time_box > div > div.xdsoft_disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  cursor: default; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; }

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none !important; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled:hover {
  background: #33aaff !important;
  box-shadow: #178fe5 0 1px 3px 0 inset !important;
  color: #fff !important; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_disabled:hover {
  color: inherit	!important;
  background: inherit !important;
  box-shadow: inherit !important; }

.xdsoft_datetimepicker .xdsoft_calendar th {
  font-weight: 700;
  text-align: center;
  color: #999;
  cursor: default; }

.xdsoft_datetimepicker .xdsoft_copyright {
  color: #ccc !important;
  font-size: 10px;
  clear: both;
  float: none;
  margin-left: 8px; }

.xdsoft_datetimepicker .xdsoft_copyright a {
  color: #eee !important; }

.xdsoft_datetimepicker .xdsoft_copyright a:hover {
  color: #aaa !important; }

.xdsoft_time_box {
  position: relative;
  border: 1px solid #ccc; }

.xdsoft_scrollbar > .xdsoft_scroller {
  background: #ccc !important;
  height: 20px;
  border-radius: 3px; }

.xdsoft_scrollbar {
  position: absolute;
  width: 7px;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer; }

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar {
  left: 0;
  right: auto; }

.xdsoft_scroller_box {
  position: relative; }

.xdsoft_datetimepicker.xdsoft_dark {
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.3);
  background: #161d20;
  border-bottom: 1px solid #444;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  color: #ccc; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box {
  border-bottom: 1px solid #222; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #161d20;
  border-top: 1px solid #222;
  color: #999; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label {
  background-color: #161d20; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select {
  border: 1px solid #333;
  background: #161d20; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #000;
  background: #007fff; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #cc5500;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==); }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #161d20;
  border: 1px solid #222;
  color: #999; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #161d20; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today {
  color: inherit; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #35567d;
  box-shadow: #35567d 0 1px 3px 0 inset;
  color: #fff; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background: #35567d !important;
  color: #fff !important; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  color: #666; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright {
  color: #333 !important; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a {
  color: #111 !important; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover {
  color: #555 !important; }

.xdsoft_dark .xdsoft_time_box {
  border: 1px solid #333; }

.xdsoft_dark .xdsoft_scrollbar > .xdsoft_scroller {
  background: #333 !important; }

.xdsoft_datetimepicker .xdsoft_save_selected {
  display: block;
  border: 1px solid #dddddd !important;
  margin-top: 5px;
  width: 100%;
  color: #454551;
  font-size: 13px; }

.xdsoft_datetimepicker .blue-gradient-button {
  font-family: "museo-sans", "Book Antiqua", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #82878c;
  height: 28px;
  position: relative;
  padding: 4px 17px 4px 33px;
  border: 1px solid #d7d8da;
  background: -moz-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(73%, #f4f8fa));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fff 0%, #f4f8fa 73%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#f4f8fa',GradientType=0 );
  /* IE6-9 */ }

.xdsoft_datetimepicker .blue-gradient-button:hover, .xdsoft_datetimepicker .blue-gradient-button:focus, .xdsoft_datetimepicker .blue-gradient-button:hover span, .xdsoft_datetimepicker .blue-gradient-button:focus span {
  color: #454551;
  background: -moz-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4f8fa), color-stop(73%, #FFF));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f4f8fa 0%, #FFF 73%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f8fa', endColorstr='#FFF',GradientType=0 );
  /* IE6-9 */ }

/* Form
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }

.inputfile + label {
  max-width: 80%;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden; }

.inputfile:focus + label,
.inputfile.has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px; }

/* Fonts
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
@font-face {
  font-family: "Akkurat";
  src: url("/fonts/Akkurat/Akkurat.ttf");
  font-style: normal;
  font-weight: normal; }
@font-face {
  font-family: 'icons';
  src: url("/fonts/icon/icons.eot?60385612");
  src: url("/fonts/icon/icons.eot?60385612#iefix") format("embedded-opentype"), url("/fonts/icon/icons.woff2?60385612") format("woff2"), url("/fonts/icon/icons.woff?60385612") format("woff"), url("/fonts/icon/icons.ttf?60385612") format("truetype"), url("/fonts/icon/icons.svg?60385612#icons") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Icons
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.icon-play:before {
  content: '\e800'; }

/* '' */
.icon-plus:before {
  content: '\e801'; }

/* '' */
.icon-google:before {
  content: '\e802'; }

/* '' */
.icon-mobile:before {
  content: '\e803'; }

/* '' */
.icon-mail:before {
  content: '\e804'; }

/* '' */
.icon-doc:before {
  content: '\e805'; }

/* '' */
.icon-briefcase:before {
  content: '\e806'; }

/* '' */
.icon-cancel:before {
  content: '\e807'; }

/* '' */
.icon-menu-1:before {
  content: '\e808'; }

/* '' */
.icon-shape:before {
  content: '\e809'; }

/* '' */
.icon-down-micro:before {
  content: '\e80d'; }

/* '' */
.icon-menu:before {
  content: '\f008'; }

/* '' */
.icon-location:before {
  content: '\f031'; }

/* '' */
.icon-twitter:before {
  content: '\f099'; }

/* '' */
.icon-facebook-1:before {
  content: '\f09a'; }

/* '' */
.icon-linkedin:before {
  content: '\f0e1'; }

/* '' */
/* Modal
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.md-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 290px;
  max-height: 90%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  height: auto;
  z-index: 2000;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }
  .md-modal.md-video .md-content {
    padding: 0; }
  .md-modal.md-video video {
    display: block; }

.md-show {
  visibility: visible; }

.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 9;
  background: rgba(22, 29, 32, 0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }

.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible; }

.md-content {
  color: #fff;
  background: #161d20;
  position: relative;
  border-radius: 3px;
  margin: 0 auto;
  padding: 40px; }

.md-effect .md-content {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }

.md-show.md-effect .md-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.md-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9;
  width: 20px;
  color: #fff;
  font-size: 24px;
  cursor: pointer; }

.cv p {
  margin: 30px 0 !important;
  font-size: 16px;
  text-decoration: underline; }
.cv ul {
  margin-top: 20px;
  padding-left: 20px;
  list-style-type: disc; }

.md-modal__inner {
  font-family: sans-serif;
  font-weight: 100;
  text-align: justify; }
  .md-modal__inner b {
    font-weight: 100;
    text-decoration: underline; }
  .md-modal__inner p {
    margin-top: 10px; }
  .md-modal__inner h4 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 100;
    line-height: normal;
    text-align: left; }
  .md-modal__inner ul li {
    padding-bottom: 20px; }
    .md-modal__inner ul li:last-child {
      padding-bottom: 0; }
    .md-modal__inner ul li ul {
      padding-top: 20px;
      padding-left: 20px;
      list-style-type: disc; }

/* Notice
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.message {
  text-align: center;
  position: fixed;
  top: -300px;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s; }
  .message.open {
    top: 0; }

.message__inner {
  display: inline-block;
  padding: 15px 20px;
  background: #35567d;
  color: #edf1f7;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  font-size: 0.875rem; }

.message__inner--buttons {
  margin-top: 10px; }
  .message__inner--buttons button {
    border: none;
    outline: none;
    background: #223750;
    color: #fff;
    padding: 10px 15px;
    font-size: 0.75rem;
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .message__inner--buttons button:hover {
      background: #4e7fbb; }
    .message__inner--buttons button:last-child {
      margin-right: 0; }

.notice {
  display: none;
  position: absolute;
  z-index: 9999;
  max-width: 250px;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.2); }
  .notice div {
    background: #35567d;
    color: #fff;
    position: relative;
    padding: 10px 15px;
    font-size: 0.75rem;
    line-height: 20px; }
    .notice div:before {
      content: "\e80d";
      font-family: "icons";
      color: #35567d;
      position: absolute;
      font-size: 32px !important; }
  .notice .triangle-top:before {
    top: -13px !important;
    left: 20px !important;
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg); }
  .notice .triangle-left:before {
    left: -11px;
    transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg); }
  .notice .triangle-bottom:before {
    bottom: -13px !important;
    left: 20px !important; }
  .notice .triangle-right:before {
    right: -11px;
    transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -moz-transform: rotate(270deg); }

#email_error span {
  background: #ff5858; }

/* Responsive
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
@media all and (min-width: 1600px) {
  .all-on-four__top {
    margin-bottom: 0; } }
@media all and (max-width: 1500px) {
  .all-on-four__bottom-wrapper {
    margin-top: -10%; } }
@media all and (max-width: 1070px) {
  .all-on-four__right-wrapper {
    width: 100%; }

  .all-on-four__img {
    margin-left: 0; }

  .all-on-four__modal {
    width: 210px; }

  .all-on-four__top {
    margin-bottom: 0; }

  .all-on-four__tooth {
    top: initial;
    bottom: 100px; }

  .dr-beat__img {
    display: none; }

  .dr-beat__wrapper {
    width: auto;
    float: none;
    z-index: 0;
    padding-bottom: 270px; }

  .dr-beat__inner {
    margin-left: 70px; }

  .dr-beat__text {
    text-align: justify; }

  .dr-beat__red-layer {
    display: none; }

  .dr-beat__competencies {
    width: calc(100% + 30px);
    left: -15px;
    bottom: 0;
    padding: 20px 85px;
    background: #bb2d38;
    justify-content: space-between; }

  .guided-surgery__left-wrapper {
    width: 100%; }

  .guided-surgery__right-wrapper {
    width: 100%;
    padding-top: 100px;
    text-align: center; }

  .guided-surgery {
    padding-bottom: 90px;
    background-position: 205px 375px !important; }
    .guided-surgery .advantages__title {
      line-height: normal; }

  .guided-surgery__video {
    margin-top: 250px; }

  .all-on-four {
    padding-top: 70px; }

  .all-on-four__left-wrapper {
    width: 100%;
    float: none; }

  .all-on-four__img-wrapper {
    width: 432px;
    float: none;
    margin: 0 auto; }

  .footer__top-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center; }

  .footer-top__item {
    width: 100%;
    max-width: 440px;
    margin: 0 0 70px; }
    .footer-top__item:first-child {
      margin-bottom: 0; }

  .footer__social {
    margin-top: 70px; }

  .footer {
    padding: 30px 0; }

  .implants {
    padding: 50px 0 170px 0; }

  .implant__left-img {
    position: relative;
    top: initial;
    left: initial;
    width: 100%;
    max-width: 286px;
    margin: 0 auto;
    display: block; }

  .implant__right-img {
    position: relative;
    top: initial;
    right: initial;
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 451px; }

  .implants__right-wrapper {
    float: none;
    width: 100%;
    margin: 30px 0 70px; }

  .implants__left-wrapper {
    width: 100%;
    float: none;
    margin-top: 70px; }

  .advantages__list li {
    text-align: center; }

  .advantages__list li {
    margin-bottom: 20px; }

  .all-on-four__bottom-wrapper {
    margin-top: 0; }

  .all-on-four__text-bottom {
    position: relative;
    bottom: initial;
    width: 100%;
    text-align: center;
    line-height: 32px;
    margin-top: 70px; }
    .all-on-four__text-bottom p {
      text-align: justify;
      padding: 0 15px;
      width: 100%;
      margin-left: 0; }

  .all-on-four__bottom-img {
    margin: 0; }

  .footer__social-title {
    margin-bottom: 5px; }

  .footer__file-label {
    text-align: left; }

  .our-partners__img-wrapper {
    padding-left: 40px; }
    .our-partners__img-wrapper a:last-child {
      padding-right: 40px; }

  .our-partners {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: -1px; }

  .footer__bottom-list {
    display: flex;
    justify-content: center;
    flex-direction: column; }
    .footer__bottom-list li {
      margin: 0 0 30px; }
      .footer__bottom-list li:last-child {
        margin-bottom: 0; }

  #mobile-menu {
    display: block;
    line-height: 24px;
    font-size: 24px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    #mobile-menu:hover {
      color: #bb2d38; }

  .section__title {
    text-align: center;
    margin-bottom: 15px; }

  .section__text {
    text-align: center;
    line-height: 32px; }

  .header__lang {
    font-size: 22px; }
    .header__lang a {
      line-height: 24px; }
    .header__lang span {
      height: 24px;
      margin: 0 15px; }

  .header__menu {
    position: fixed;
    top: 0;
    left: -150%;
    background: #161d20;
    color: #fff;
    z-index: 999;
    width: 80%;
    max-width: 350px;
    height: 100%;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .header__menu li {
      float: none;
      padding: 0;
      margin: 0;
      border-bottom: 1px solid #353c3f; }
      .header__menu li:last-child {
        display: block;
        border: none;
        padding: 0;
        position: absolute;
        top: 0;
        left: 100%; }
        .header__menu li:last-child button {
          padding: 15px 25px;
          color: #fff;
          font-size: 32px;
          cursor: pointer; }
      .header__menu li a {
        color: #fff !important;
        display: block;
        padding: 30px 20px;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }

  .footer__social-list li {
    margin-right: 20px; }

  .open-menu .header__menu {
    left: 0; }
  .open-menu .md-overlay {
    opacity: 1;
    visibility: visible; }

  .advantages__list li.active .advantages__text {
    line-height: 30px; }

  .implants__right-wrapper, .all-on-four__right-wrapper {
    text-align: center; }

  .video-play {
    display: inline-block; }

  .footer__contact-list span {
    line-height: 24px; } }
@media all and (max-width: 768px) {
  .implants {
    padding-bottom: 130px; }

  .all-on-four {
    margin-bottom: -1%; }

  .all-on-four__bottom-img {
    bottom: 0; }

  .dr-beat__competencies {
    flex-direction: column;
    position: relative;
    margin-top: 50px;
    left: 0;
    margin-left: -15px;
    text-align: center;
    padding: 35px 15px; }

  .dr-beat__competencies-list {
    display: inline-block; }
    .dr-beat__competencies-list li {
      margin-bottom: 15px;
      text-align: left; }

  .dr-beat__competencies-wrapper {
    margin: 0 0 40px;
    display: inline-block; }

  .dr-beat__competencies-title {
    line-height: normal;
    margin-bottom: 25px; }

  .dr-beat .icon-sso_logo {
    margin-top: 0;
    align-self: center; }

  .header__icon-menu {
    top: 20%; }

  .dr-beat__wrapper {
    padding-bottom: 0; }

  .guided-surgery {
    padding-bottom: 70px; }

  .all-on-four__gray-layer {
    height: auto; }

  .dr-beat__competencies-wrapper {
    text-align: left; }

  .dr-beat__competencies-title {
    text-align: center; }

  .all-on-four__img-btn-3 .all-on-four__modal {
    left: -57px; }
  .all-on-four__img-btn-3 .all-on-four__modal-svg {
    left: 83px; }

  .all-on-four__img-btn-4 .all-on-four__modal {
    left: -92px; }
  .all-on-four__img-btn-4 .all-on-four__modal-svg {
    left: 118px; }

  .all-on-four__img-btn-5 .all-on-four__modal {
    right: -28px;
    left: initial; }
  .all-on-four__img-btn-5 .all-on-four__modal-svg {
    left: initial;
    right: 20px; } }
@media all and (max-width: 600px) {
  .guided-surgery__video {
    width: 100%; }

  .md-content {
    padding: 40px 20px; }

  .guided-surgery__svg {
    width: calc(100% - 150px); }

  .our-partners__title {
    font-size: 36px; }

  .header__icon-menu {
    position: relative;
    top: initial;
    left: initial;
    display: flex;
    justify-content: center;
    margin-top: 40px; }
    .header__icon-menu li {
      color: #2e3436;
      border-color: #2e3436;
      width: 50px !important;
      max-width: none !important;
      border-radius: 0;
      margin: 0; }
      .header__icon-menu li:first-child {
        border-left: 2px solid #2e3436;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px; }
      .header__icon-menu li:last-child {
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px; }

  .dr-beat__inner {
    margin-left: 0;
    text-align: center; }

  .dr-beat__sub-title {
    font-size: 34px;
    margin-top: 10px; }

  .guided-surgery__svg {
    width: calc(100% - 120px); }

  .guided-surgery__video {
    margin-top: 80px; }

  .guided-surgery {
    background-position: 155px 395px !important; }

  .section__text {
    text-align: justify; }

  .advantages__list li {
    margin-bottom: 30px; }
    .advantages__list li.active .advantages__title {
      padding-bottom: 12px; }

  .advantages__text {
    text-align: justify;
    padding-left: 25px; }

  .advantages__title {
    padding-left: 25px;
    text-align: left; }

  .advantages__list li.active .advantages__text {
    max-height: 500px; } }
@media all and (max-width: 480px) {
  .dr-beat__sub-title {
    font-size: 28px; }

  .all-on-four {
    margin-bottom: -1.5%; }

  .header__logo img {
    width: 100%; }

  .section__title {
    font-size: 34px; }

  .guided-surgery__video .video-play {
    padding-top: 120px; }

  .guided-surgery {
    padding-top: 70px;
    background-position: 40px 490px !important; }

  .all-on-four__img-wrapper {
    width: 290px;
    padding-top: 20px; }

  .all-on-four__img {
    width: 100%;
    margin: 0; }

  .footer__bg {
    width: 100%; }

  .footer__bottom-wrapper {
    margin-top: 50px; }

  .header__top-links {
    width: auto;
    flex-shrink: 0;
    margin-left: 35px; }

  .header__lang {
    margin-left: 30px; }

  .header__icon-menu {
    margin-top: 50px; }

  .header__lang {
    display: none; }

  #lang-mobile {
    display: block;
    border: none;
    font-size: 22px;
    font-family: sans-serif;
    font-weight: 100;
    background: none;
    margin-left: 25px; }

  .header__container {
    padding: 0 15px; }

  .all-on-four__img-btn-1 {
    top: 44%; }

  .all-on-four__img-btn-2 {
    top: 17%;
    left: 26%; }

  .all-on-four__img-btn-3 {
    top: 9%;
    left: 51%; }
    .all-on-four__img-btn-3 .all-on-four__modal {
      left: -57px; }
    .all-on-four__img-btn-3 .all-on-four__modal-svg {
      left: 83px; }

  .all-on-four__img-btn-4 {
    top: 38%; }
    .all-on-four__img-btn-4 .all-on-four__modal {
      left: -92px; }
    .all-on-four__img-btn-4 .all-on-four__modal-svg {
      left: 118px; }

  .all-on-four__img-btn-5 {
    top: 50%;
    right: 5%; }
    .all-on-four__img-btn-5 .all-on-four__modal {
      right: -28px;
      left: initial; }
    .all-on-four__img-btn-5 .all-on-four__modal-svg {
      left: initial;
      right: 20px; } }
@media all and (max-width: 400px) {
  .guided-surgery {
    background-position: 0 center !important; }

  .guided-surgery__svg {
    width: calc(100% - 100px); }

  .guided-surgery__video .video-play {
    padding-top: 110px; }

  .header__menu {
    font-size: 16px; }

  .dr-beat__title {
    font-size: 46px; }

  .implants {
    padding-bottom: 100px; } }

/*# sourceMappingURL=main.css.map */
