.info-modal {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(17,34,54,0.4);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: center;
}

.info-modal:after {
  content: "";
  height: 100%;
  width: 1px;
  display: inline-block;
  vertical-align: middle;
}

.info-modal__content {
  position: relative;
  width: 95%;
  max-width: 710px;
  margin: 30px 0;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  background-color: #009ef0;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #F9FAFC;
  box-shadow: 0 3px 3px 3px rgba(0, 0, 0, 0.4);
}

.info-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: none;
  border: 0 none;
  cursor: pointer;
}

.info-modal__close:before,
.info-modal__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  margin: -1px 0 0 -12px;
  border-radius: 2px;
  background-color: #ffffff;
}

.info-modal__close:before {
  transform: rotate(45deg);
}
.info-modal__close:after {
  transform: rotate(-45deg);
}

.info-modal__image {
  display: block;
  width: 100%;
  height: auto;
}

.info-modal__footer {
  padding: 25px 0 30px;
  text-align: center;
}

.info-modal__button {
  display: inline-block;
  vertical-align: top;
  background-color: #FF7E00;
  color: #ffffff;
  font-family: "FixelDisplay-Regular";
  font-weight: normal;
  font-size: 1.6rem;
  text-transform: none;
  border-radius: 36px;
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 15px;
  padding-left: 40px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s background-color ease-in-out;
}

@media (hover: hover) {
  .info-modal__button:hover {
    color: #ffffff;
    background-color: #112236;
  }
}