.modal__popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.modal__popup .popup__content {
  position: relative;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translatex(-50%) translatey(-50%);
  width: 85%;
  max-width: 800px;
  padding: 50px;
  border: 1px solid #f7f7f7;
  border-radius: 10px;
}
.modal__popup .popup__content .popup__button {
  margin-top: 50px;
}
.modal__popup .popup__content .popup__button a {
  background: transparent;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  border: 2px solid #9c1234;
  position: relative;
}
.modal__popup .popup__content .popup__button a:before {
  background: #9c1234;
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  max-width: 100%;
  transition: max-width 0.4s ease;
}
.modal__popup .popup__content .popup__button a:hover {
  color: #9c1234;
}
.modal__popup .popup__content .popup__button a:hover:before {
  max-width: 0;
}

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