/* POPUP */
.popup {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,.7);
}

.popup__close,
.popup__content {
  position: absolute;
}

.popup__content {
  width: 90%;
  max-width: 650px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  border: 2px solid #C52F31;
  border-radius: 25px;
  background-color: #fff;
}

.popup__close {
  padding: 8px 12px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -o-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  background-color: #000;
}

.popup__header {
  padding: 50px 0;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  background: transparent url(./img/expediente-electronico-popup-bg.png) no-repeat center -2px;
}

.popup__header,
.popup__headline {
  margin-bottom: 0 !important;
}

.popup__close,
h2.popup__headline,
a.popup__link,
a:active.popup__link
a:visited.popup__link {
  color: #fff !important;
}

.popup__headline {
  font-size: 25px;
  line-height: 1.1 !important;
}

.popup__headline,
.popup__link {
  font-weight: bold;
}

.popup__headline .bigger {
  font-size: 1.68em;
}

.popup__text {
  font-size: 16px;
  color: #262424;
}

.popup__link {
  display: inline-block;
  padding: 8px;
  font-size: 17px;
  background-color: #C52F31;
}

.popup__img {
  max-width: 100%;
}

@media (max-width: 600px) {
  .popup__text br {
    display: none;
  }

  .popup__headline {
    font-size: 20px;
  }

  .popup__headline,
  .popup__text {
    padding-left: 10px;
    padding-right: 10px;
  }
}