.popup {
  display: flex;
  display: -ms-flexbox;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  overflow-x: hidden;
  overflow-y: auto;
}
.popup.in {
  opacity: 1;
  visibility: visible;
}
.popup.in .popup-body {
  margin-top: 0;
}
.popup .close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}
.popup .popup-body {
  position: relative;
  background: #fff;
  flex-direction: column;
  max-width: 726px;
  width: 100%;
  margin: 0 15px;
  padding: 40px;
  border-radius: 20px;
  margin-top: -50px;
  transition: all 0.3s;
}
.popup .popup-body p {
  line-height: 1.5;
}
.popup .title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.popup .copy-link {
  position: relative;
  background: #3e3e3e;
  color: #fff;
  border-radius: 4px;
  padding: 12px;
}
.popup .copy-link a {
  opacity: 0.8;
  transition: opacity 0.3s;
}
.popup .copy-link a:hover {
  opacity: 1;
}
.popup .copy-link img {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 6px;
  right: 10px;
  z-index: 1;
}
.popup .share-title {
  font-weight: 700;
  margin-bottom: 15px;
  padding-top: 15px;
}
.popup .field-wrapper {
  position: relative;
  padding-right: 120px;
}
.popup input[type="text"],
.popup input[type="email"] {
  width: 100%;
  height: 48px;
  display: block;
  background: #093466;
  color: #fff;
  border: none;
  padding: 12px;
}
.popup input[type="text"]::placeholder,
.popup input[type="email"]::placeholder {
  color: #fff;
}
.popup input[type="text"]:-ms-input-placeholder,
.popup input[type="email"]:-ms-input-placeholder {
  color: #fff;
}
.popup input[type="text"]::-ms-input-placeholder,
.popup input[type="email"]::-ms-input-placeholder {
  color: #fff;
}
.popup .btn-send {
  min-width: 100px;
  background-color: #07284f;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  font-weight: 500;
  padding: 12px 17px 13px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.popup .btn-send:hover {
  background-color: #093466;
}
