.custom-popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  display: none;
}

.custom-popup {
  width: 526px;
  position: relative;
  top:50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border-radius: 10px;
  padding: 15px 20px;
  background-color: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
  max-width: calc(100% - 30px);
}

.custom-popup:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}


.custom-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.custom-popup-close svg {
  width: 20px;
  height: 20px;
}

.custom-popup-button {
  padding: 10px;
  white-space: nowrap;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.custom-popup-button-style-1,
.custom-popup-button-style-1:hover {
  background-color: #1E73BE!important;
  color: white!important;
  border: 1px solid #1E73BE!important;
}

.custom-popup-button-style-2,
.custom-popup-button-style-2:hover {
  background-color: #f9f9f9!important;
  color: #333333!important;
  border: 1px solid #f2f2f2!important;
}

.custom-popup-button-small {
  padding-left: 20px;
  padding-right: 20px;
}

.custom-popup-title {
  font-size: 15px;
  color: #222222;
  padding-right: 50px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.custom-popup-body {
  font-size: 12px;
  color: #222222;
  margin-bottom: 15px;
}

.custom-popup-footer {
  text-align: center;
}

.custom-popup-footer > .custom-popup-button:first-child {
  margin-left: 0;
}

.custom-popup-footer > .custom-popup-button:last-child {
  margin-right: 0;
}