.easy-popup {
  position: relative;
  display: inline-block;
  background: #fff;
  width: calc(100% - 20px);
  max-width: 550px;
  min-height: 130px;
  margin: 50px 10px;
  border-radius: 10px;
  vertical-align: middle;
  overflow: hidden;
  box-shadow: 0 0 15px #fff;
  -webkit-transform: translateZ(0px);
}
.easy-popup button,
.easy-popup input[type="submit"] {
  display: inline-block;
  margin: auto;
  background: #34991b;
  border-radius: 6px;
  font: bold 18px Tahoma;
  color: #fff;
  height: 35px;
  padding: 0 35px;
  cursor: pointer;
  transition: all 250ms;
  border: none;
}
.easy-popup button:hover,
.easy-popup input[type="submit"]:hover {
  opacity: 0.7;
}
.easy-popup .input_wrapper {
  margin-bottom: 10px;
}
.easy-popup .button_wrapper button {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}
.easy-popup .closing_button {
  margin-top: 10px;
}
body.easy-popup_overflow,
html.easy-popup_overflow {
  overflow: hidden !important;
  height: 100vh;
  width: 100%;
  position: fixed;
}
body.easy-popup_overflow.easy-popup_ios,
html.easy-popup_overflow.easy-popup_ios {
  height: auto;
  position: relative;
  pointer-events: none;
}
body.easy-popup_overflow.easy-popup_ios > div[style]:not([class]),
html.easy-popup_overflow.easy-popup_ios > div[style]:not([class]) {
  pointer-events: auto;
}
.easy-popup-tint {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh !important;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  vertical-align: middle;
}
.easy-popup_ios .easy-popup-tint {
  position: relative;
  height: auto !important;
  pointer-events: auto;
}
.easy-popup-tint::after {
  display: inline-block;
  height: 100%;
  content: '';
  vertical-align: middle;
}
.easy-popup-tint.is_loading .easy-popup__loading {
  visibility: visible;
  z-index: 10001;
}
body .easy-popup-tint {
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
}
.easy-popup-tint input,
.easy-popup-tint button {
  -webkit-transform: translateZ(0px);
}
.easy-popup__loading {
  visibility: hidden;
  background: center center / 50px no-repeat rgba(255, 255, 255, 0.7);
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all 150ms;
}
.easy-popup__heading {
  height: 43px;
  background: #34991b;
  font: bold 30px/45px Arial;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 0 17px;
  margin: auto;
}
.easy-popup__body {
  padding: 12px 17px 27px;
}
.easy-popup__closer {
  position: absolute;
  width: 25px;
  height: 25px;
  right: 5px;
  top: 8px;
  cursor: pointer;
  transition: all 280ms;
}
.easy-popup__closer > div {
  position: absolute;
  left: 11px;
  width: 3px;
  height: 25px;
  background: #fff;
  border-radius: 3px;
  transition: all 280ms;
}
.easy-popup__closer > div:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.easy-popup__closer > div:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.easy-popup__closer:hover {
  -webkit-transform: scale3d(1.3, 1.3, 0.2);
  transform: scale3d(1.3, 1.3, 0.2);
}
.easy-popup__closer:hover > div {
  background: #9cd1d4;
}
.easy-popup__text {
  margin-bottom: 16px;
  text-align: center;
}
@-webkit-keyframes easyPopupShow {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes easyPopupShow {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes easyPopupClose {
  from {
    opacity: 1;
  }
  90% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes easyPopupClose {
  from {
    opacity: 1;
  }
  90% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
