.sample-popup {
  position: fixed;
  height: 100%;
  width: 100%;
  overflow: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  -ms-flex-align: start;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  z-index: 1000000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sample-popup.opened {
  opacity: 1;
  visibility: visible;
}
.sample-popup .sample-popup-in {
  text-align: left;
  position: relative;
  flex: 0 0 auto;
  margin: auto;
  max-width: 100%;
  box-sizing: border-box;
  display: inline-block;
  width: 430px;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.13);
  position: relative;
  text-align: center;
  color: #000;
  font-weight: normal;
}
.sample-popup .sample-popup-title {
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 15px;
}
.sample-popup .sample-popup-text {
  font-size: 16px;
  margin: 0 0 15px;
}
.sample-popup .sample-popup-text *:first-child {
  margin-top: 0;
}
.sample-popup .sample-popup-text *:last-child {
  margin-bottom: 0;
}
.sample-popup .sample-popup-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.sample-popup .sample-popup-btns a {
  text-decoration: none;
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  font-size: 14px;
}
.sample-popup .sample-popup-btns a.popup-no {
  background: #f24941;
}
.sample-popup .sample-popup-btns a.popup-yes {
  background: #02d3eb;
}
@media (max-width: 430px) {
  .sample-popup {
    padding: 10px;
  }
  .sample-popup .sample-popup-in {
    padding: 18px;
  }
  .sample-popup .sample-popup-text {
    font-size: 14px;
  }
}
