<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2) !important;
  padding: 35px !important;
  border: 2px solid #fff !important;
  border-radius: 20px/50px;
  background-clip: padding-box !important;
  text-align: center !important;
  overflow: hidden !important;
}


.overlay {
  position: fixed !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #083d59;
  border-radius: 30px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h4{ color:#e2b923 !important; padding-bottom: 20px !important;}

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #e2b923;
}
.popup .close:hover {
  color: #f5f5f7;
}
.popup .content {
  height: 495px !important;
  overflow: hidden;
  background: #FFF;
  text-align: center;
  border-radius: 20px;

}
.popup iframe{
  width: 95%;
height: 100%;
}

@media screen and (min-device-width: 200px) and (max-device-width: 480px){
  .box{
    width: 90%;
  }
  .popup{
    width: 90%;
  }
}
@media screen and (min-device-width: 481px) and (max-device-width: 960px){
  .box{
    width: 50% !important;
  }
  .popup{
    width: 50% !important;
  }
}
@media screen and (min-device-width: 961px) and (max-device-width: 1200px){
  .box{
    width: 20% !important;
  }
  .popup{
    width: 20% !important;
  }
}
@media screen and (min-device-width: 1201px) and (max-device-width: 2000px){
  .box{
    width: 30% !important;
  }
  .popup{
    width: 30% !important;
  }
}
</pre></body></html>