[data-popup],
[data-popup-close],
.popup-container {
  cursor: pointer;
  /*for ios*/ }

.popup-open {
  overflow: hidden; }
  .popup-open.is-fixed {
    position: fixed; }

.popup-container {
  display: none;
  overflow: hidden;
  position: fixed;
  padding: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .popup-container.active {
    display: table;
    table-layout: fixed;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto; }

.popup {
  position: relative;
  width: 100%;
  max-width: 545px; }

.popup-content {
  position: relative;
  padding: 20px 50px;
  background-color: #ffffff;
  box-shadow: 0px 2px 10px rgba(28, 32, 39, 0.15);
  -webkit-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0; }
  .popup-content:hover {
    box-shadow: 0px 3px 15px rgba(28, 32, 39, 0.3); }

.popup-content .popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1; }

.popup-close {
  position: relative;
  width: 34px;
  height: 34px;
  background: none;
  margin: 0px;
  padding: 0px; }
  .popup-close:before, .popup-close:after {
    content: '';
    position: absolute;
    top: 17px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #393c3e;
    -webkit-transition: background 0.3s ease 0s;
    transition: background 0.3s ease 0s; }
  .popup-close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .popup-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .popup-close:hover:before, .popup-close:hover:after {
    background: #1e79c2; }

.popup-title {
  font-size: 1.875rem;
  line-height: 1;
  text-align: center; }

.popup-body {
  padding: 15px 0 0; }

.cancel-btn {
  font-size: 1.125rem;
  line-height: 1.38889;
  text-decoration: underline; }
  .cancel-btn:hover {
    text-decoration: none; }

.response-popup {
  text-align: center; }
  .response-popup .popup-content {
    display: table;
    width: 100%;
    height: 300px;
    padding: 0; }

.response-popup-title {
  font-size: 2.25rem;
  line-height: 1.11111;
  text-transform: uppercase; }

.response-popup-message {
  padding: 25px 0px 0px;
  font-size: 1rem;
  line-height: 1.5625; }

.response-popup-cell {
  display: table-cell;
  vertical-align: middle;
  padding: 25px 50px; }
