.overlay_pop .wrapper {
  position: absolute;
  max-width: 480px;
  top: 50%;
  left: 50%;
  /*width: 100%;*/
  padding: 40px 30px;
  background: #fff;
  border-radius: 15px;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
  -webkit-box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.06);
          box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.06);
  -webkit-transition: opacity 0.2s 0s ease-in-out,
 -webkit-transform 0.2s 0s ease-in-out;
  transition: opacity 0.2s 0s ease-in-out,
 -webkit-transform 0.2s 0s ease-in-out;
  transition: opacity 0.2s 0s ease-in-out,
 transform 0.2s 0s ease-in-out;
  transition: opacity 0.2s 0s ease-in-out,
 transform 0.2s 0s ease-in-out,
 -webkit-transform 0.2s 0s ease-in-out;
}

.overlay_pop .wrapper.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.overlay_pop .wrapper .content,
.overlay_pop .content .warn-icon,
.overlay_pop .warn-icon .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.overlay_pop .wrapper .content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.overlay_pop .content .warn-icon {
  height: 115px;
  width: 115px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#9b27ca), color-stop(0%, #9927cf), color-stop(100%, #d33639), to(#f92121));
  background: linear-gradient(#9b27ca 0%, #9927cf 0%, #d33639 100%, #f92121 100%);
}

.overlay_pop .warn-icon .icon {
  height: 100px;
  width: 100px;
  background: #fff;
  border-radius: inherit;
}

.overlay_pop .warn-icon .icon i {
  background: -webkit-gradient(linear, left top, left bottom, from(#9b27ca), color-stop(0%, #9927cf), color-stop(100%, #d33639), to(#f92121));
  background: linear-gradient(#9b27ca 0%, #9927cf 0%, #d33639 100%, #f92121 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
}

.overlay_pop .content h2, .content .h2 {
  margin-top: 35px;
  font-size: 32px;
}

.overlay_pop .content p {
  font-size: 19px;
  text-align: center;
  margin-top: 20px;
}

.overlay_pop .btn {
  width: 223px;
}

.btn {
  height: 57px;
  /*width: 223px;*/
  margin-top: 30px;
  border-radius: 50px !important;
  position: relative;
  overflow: hidden;
}

.overlay_pop .btn .bg-layer {
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(135deg, #9b27ca, #d33639, #9b27ca, #d33639);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.overlay_pop .btn:hover .bg-layer {
  left: 0;
}

.overlay_pop .content button {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: none;
  font-size: 18px;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
}

.overlay_pop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
}

.overlay_pop.active {
  visibility: visible !important;
  position: fixed !important;
  z-index: 99 !important;
}
