.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.7); */
  background: rgba(40, 40, 40, 0.8);
  backdrop-filter: blur(7.5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  text-align: center;
}

.modal_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.modal-title.title {
  margin-bottom: 30px;
}

.modal-title svg {
  height: 130px;
  width: auto;
}

.mod_text {
  color: #ffffff;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 28px;
}

.blue_btn {
  background: linear-gradient(147.11deg, #2617ad -40.61%, #960b3e 161.23%);
  border-radius: 500px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  padding: 16px;
  border: none;
  min-width: 190px;
  line-height: 1;
}

.blue_btn.white {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  padding: 14px;
}

.modal_warn {
  color: #ffffff;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 65px;
}
.text_sorry {
  font-size: 36px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
  position: relative;
  text-transform: uppercase;
}


@media screen and (max-width: 480px) {
  .modal-title img {
    height: 40px;
  }
  .mod_text {
    font-size: 17px;
  }
  .modal-title.title {
    margin-bottom: 15px;
  }
  .modal_warn {
    margin-top: 30px;
    font-size: 14px;
  }
}