@import url("https://use.typekit.net/unm8qfb.css");
.portal-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(51, 51, 51, 0.98);
  z-index: 999;
  transition: all 0.25s;
}
.portal-popup.open {
  opacity: 0;
  display: none;
}
.portal-popup img {
  max-width: 340px;
  width: 100%;
  margin: auto;
  display: block;
  margin-bottom: 40px;
}
.portal-popup .inner-pop {
  border-top: 5px solid #0661AA;
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 600px;
  padding: 75px;
  padding-top: 35px;
  padding-bottom: 50px;
  background-color: #fff;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 767px) {
  .portal-popup .inner-pop {
    width: 90%;
    padding: 30px;
  }
}
.portal-popup .title-m {
  color: #333333;
  font-family: roboto, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 21px;
  text-align: center;
  margin-bottom: 25px;
}
.portal-popup .btn-sm {
  border: 1px solid #555555;
  color: #555555;
  font-family: industry, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  display: table;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 9px;
  border-radius: 3px;
  transition: all 0.25s;
  background-color: #fff;
  display: block;
  margin: auto;
  margin-bottom: 15px;
  max-width: 160px;
  cursor: pointer;
}
.portal-popup .btn-sm:last-child {
  margin-bottom: 0px;
}
.portal-popup .btn-sm:hover {
  background-color: rgba(85, 85, 85, 0.1);
  text-decoration: none;
}
.portal-popup .pop-content {
  transition: all 0.25s;
}
.portal-popup .pop-hidden-content {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.25s;
  left: -1000px;
}
.portal-popup .pop-hidden-content p {
  margin-bottom: 0px;
}
.portal-popup .pop-hidden-content.open {
  opacity: 1;
}
.portal-popup.closed .pop-content {
  opacity: 0;
}
.portal-popup.closed .pop-hidden-content {
  opacity: 1;
  z-index: 99;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
