<style>

.applyhlbgpopup {
    background: var(--green0);
    border-radius: 14px;
    padding: 30px 50px;
}

.notice-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-overlay {
  position: fixed;
  top: 15px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  margin-top: 50px;
}

.notice-box {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  position: relative;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  font-family: Arial, sans-serif;
}

.popup-box {
  background: #ffffff;
  padding: 20px 0px;
  border-radius: 12px;
  position: relative;
  width: 90%;
  max-width: 950px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  font-family: Arial, sans-serif;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.notice-content h2 {
  margin-top: 0;
  font-size: 22px;
  color: #222;
}

.notice-content p {
  font-size: 16px;
  color: #555;
  margin: 15px 0 0 0;
}

.popup-content h2 {
  margin-top: 0;
  font-size: 22px;
  color: #222;
}

.popup-content p {
  font-size: 16px;
  color: #555;
  margin: 15px 0 0 0;
}

#important-popup-overlay {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

#important-popup {
	position: relative;
    max-width: 650px;
    width: 90%;
}

#important-popup img {
    width: 100%;
    height: auto;
    display: block;
}

#important-popup-close {
    position: absolute;
    top: 45px;
    right: 40px;
    font-size: 25px;
    color: #ffffff;
    background: rgb(255,0,0);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

@media (min-width: 1398px) {
    #important-popup-overlay {
        top: 70px;
    }
}

.notice-overlay{
	display: none;
}
.popup-overlay{
	display: none;
}


</style>