/**************************************************
  HEADING
****************************************************/
.heading-multimedia .play-button {
  top: 50%;
  left: 50%;
  margin-top: -2.5rem;
  margin-left: -2.5rem;
}

#hero.no-pattern .oval-pattern:nth-of-type(2n) {
  display: none;
}

/**************************************************
  BANNER-NEWS
****************************************************/
.banner-news .font-unineue b,
.banner-news .font-unineue strong {
  font-family: "Unineue";
  font-weight: bold;
}

/**************************************************
  POPUP-COMPONENT
****************************************************/
.popup-container {
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 60;
}

.popup-container.open {
  opacity: 1;
  pointer-events: auto;
}
.popup-container.open .background-layer {
  opacity: 0.6;
  pointer-events: auto;
}
.products-popup {
  top: 20vh;
  height: 80vh;
}
.open .products-popup {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1)
    both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.people-popup {
  height: 90vh;
  left: 5vw;
  top: 5vh;
  width: 90vw;
}
.open .people-popup {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1)
    both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (min-width: 1024px) {
  .products-popup {
    height: 70vh;
    top: 30vh;
  }
  .people-popup {
    left: 10vw;
    width: 80vw;
    height: 70vh;
    top: 15vh;
  }
}

@media screen and (max-height: 900px) {
  .products-popup {
    height: 80vh;
    top: 20vh;
  }
  .products-popup span.font-unineue-ultralight {
    font-size: 3.5rem !important;
    /* padding-top: 0 !important; */
  }
  .products-popup .popup-product-image-container {
    height: 120px !important;
    width: 120px !important;
  }
}

/**************************************************
  NEXT-COMPONENT
****************************************************/
.next-container h4 {
  color: #afb1b3;
  transition: color 0s ease;
}
.next-container:hover h4 {
  color: #1c1c1b;
  transition: color 0.3s ease;
}

/**************************************************
  FILTERS-COMPONENT
****************************************************/

.singleFilter > span:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 0px;
  height: 2px;
  background-color: #1c1c1b;
  transition: 0.3s ease-out;
}
.singleFilter.active > span:after {
  width: 100%;
}

/**************************************************
  PEOPLE-COMPONENT
****************************************************/
.img-left-0-container {
  width: calc(100% - 8.33%);
}

@media screen and (min-width: 640px) {
  .img-left-0-container {
    width: calc(33.333333% + 10vw);
  }

  .img-left-0-text {
    padding-right: 10vw;
  }
}

/**************************************************
  AVATAR-TEXT
**************************************************/
.card-list-item:after {
  content: "/\a0";
}

.card-list-item:last-child:after {
  content: "";
}

@media screen and (min-width: 640px) {
  .card-list-item:after {
    content: "";
  }
}

/**************************************************
  CONTACT-FORM
**************************************************/
.contact-img {
  display: none;
}
.contact-link.font-unineue-heavy {
  color: #1c1c1b !important;
}

@media screen and (min-width: 768px) {
  .contact-img {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .contact-link.font-unineue-heavy {
    color: #888a8b !important;
  }
  .contact-link.font-unineue-heavy:hover {
    color: #1c1c1b !important;
  }
}

/**************************************************
  GALLERY-COLUMN
****************************************************/

.gallery-column > div:not(:first-child) {
  margin-top: -20px;
}

.gallery-column > div {
  width: 45%;
}

/**************************************************
  CLOCKS
****************************************************/

.clock {
  /* background: #fff; */
  width: 108px;
  height: 108px;
  margin: 8% auto 0;
  border-radius: 50%;
  border: 6px solid #c8102e;
  position: relative;
  /* box-shadow: 0 2vw 4vw -1vw rgba(0, 0, 0, 0.8); */
}

.clock .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1c1c1b;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  z-index: 10;
  /* box-shadow: 0 2px 4px -1px black; */
}

.clock .hour-hand {
  position: absolute;
  z-index: 5;
  width: 3px;
  height: 25px;
  background: #1c1c1b;
  top: 23px;
  transform-origin: 50% 25px;
  left: 50px;
  margin-left: -4px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.clock .minute-hand {
  position: absolute;
  z-index: 6;
  width: 2px;
  height: 40px;
  background: #1c1c1b;
  top: 9px;
  left: 50px;
  margin-left: -3px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  transform-origin: 50% 40px;
}

.clock .second-hand {
  position: absolute;
  z-index: 7;
  width: 2px;
  height: 45px;
  background: #c8102e;
  top: 3px;
  left: 50px;
  margin-left: -3px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  transform-origin: 50% 45px;
}

.clock .diallines {
  position: absolute;
  z-index: 2;
  width: 2px;
  height: 15px;
  background: #666;
  left: 50%;
  margin-left: -1px;
  transform-origin: 50% 150px;
  opacity: 0;
}
.clock .diallines:nth-of-type(5n) {
  position: absolute;
  z-index: 2;
  width: 4px;
  height: 25px;
  background: #666;
  left: 50%;
  margin-left: -1px;
  transform-origin: 50% 150px;
}

/**************************************************
  DISCLAIMER-POPUP
****************************************************/

.disclaimer-container {
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 60;
}

.disclaimer-container.open {
  opacity: 1;
  pointer-events: auto;
}
.disclaimer-container.open .background-layer {
  opacity: 0.6;
  pointer-events: auto;
}
.disclaimer {
  height: 90vh;
  left: 5vw;
  top: 5vh;
  width: 90vw;
}
.open .disclaimer {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1)
    both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.top-shadow {
  -webkit-box-shadow: 0px -10px 50px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px -10px 50px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px -10px 50px 0px rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (min-width: 1024px) {
  .top-shadow {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .disclaimer {
    height: 70vh;
    top: 15vh;
  }

  .opacity-container {
    -webkit-mask-image: -webkit-gradient(
      linear,
      left 75%,
      left bottom,
      from(rgba(0, 0, 0, 1)),
      to(rgba(0, 0, 0, 0))
    );
  }
}

@media screen and (min-width: 1024px) and (max-height: 900px) {
  .disclaimer {
    height: 80vh;
    top: 10vh;
  }
}

/**************************************************
  DISCLAIMER
****************************************************/
/* #disclaimer-surgeons {
  background-image: url("images/general/surgeons.svg"),
    url("images/general/oval-pattern.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right bottom, -33vw 40vh;
  background-size: 50% auto, contain;
}

@media screen and (min-width: 1024px) {
  #disclaimer-surgeons {
    background-image: url("images/general/surgeons.svg"),
      url("images/general/oval-pattern.png"),
      url("images/general/oval-pattern.png");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: right bottom, -33vw center, center 40vh;
    background-size: auto 65%, contain, contain;
  }
  .disclaimer {
    background-image: url("images/general/oval-pattern.png"),
      url("images/general/oval-pattern.png");
    background-repeat: no-repeat, no-repeat;
    background-position: -33vw 40vh, right -20vh;
    background-size: contain, contain;
  }
} */

/**************************************************
  LOGIN POPUP
****************************************************/
.login-container {
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 60;
}

.login-container.open {
  opacity: 1;
  pointer-events: auto;
}
.login-container.open .background-layer {
  opacity: 0.6;
  pointer-events: auto;
}
.login {
  height: 90vh;
  left: 5vw;
  top: 5vh;
  width: 90vw;
}
.open .login {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1)
    both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

#login-wrapper .group input::placeholder {
  letter-spacing: normal;
}

@media screen and (min-width: 1024px) {
  .login {
    height: 70vh;
    top: 15vh;
    width: 70vw;
    left: 15vw;
    /* background-image: url("images/general/oval-pattern.png"),
      url("images/general/oval-pattern.png");
    background-repeat: no-repeat, no-repeat;
    background-position: -33vw 40vh, 40vw -20vh;
    background-size: contain, contain; */
  }
}

@media screen and (min-width: 1024px) and (max-height: 900px) {
  .login {
    height: 80vh;
    top: 10vh;
  }
}

/****** container video youtube iframe (for example whylima) ******/
.container-video-youtube {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
}
.container-video-youtube iframe,
.container-video-youtube object,
.container-video-youtube embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/**************************************************
  JOB DETAIL POPUP
****************************************************/
.job-popup-container ul {
  list-style: disc;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
}
.job-popup-container ul li::marker {
  color: #c8102e;
}
