/* compiled by scssphp 1.12.1 on Tue, 17 Jun 2025 07:22:15 +0000 (0.027s) */

#popup_window {
  padding: 10px;
  background: #267E8A;
  cursor: pointer;
  color: #FCFCFC;
  margin: 200px 0px 0px 200px;
}
.popup-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(255, 255, 255, 0.85);
  top: 0;
  left: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.overlay body {
  overflow: hidden;
}
.overlay .popup-overlay {
  opacity: 1;
  left: 0;
}
.popup {
  position: fixed;
  top: 25%;
  left: 50%;
  z-index: -9999;
}
.popup .popup-body {
  background: #ffffff;
  opacity: 0;
  height: 400px;
  width: 800px;
  margin-left: -400px;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  position: relative;
  -webkit-box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.25);
  border: 1px solid #e9e9e9;
}
.popup .popup-exit {
  cursor: pointer;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: -150px;
  right: -195px;
  background: #0ff;
}
.popup .popup-content {
  padding: 20px;
  height: 400px;
  overflow-y: auto;
}
.popup .popup-content p {
  font-size: 13px;
  text-align: justify;
}
.popup .popup-content .popup-title {
  font-size: 24px;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 10px;
}
.popup.visible, .popup.transitioning {
  z-index: 9999;
}
.popup.visible .popup-body {
  opacity: 1;
}
