.modal {
  z-index: 9999;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.danger {
  color: #970101;
}
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 1119px;
  width: 100%;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.modal .close-btn {
  background: #ccc;
}
.modal .confirm-btn {
  background: #007bff;
  color: white;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  padding: 20px;
  z-index: 9999;
}
.menu-open {
  right: 0;
}
.no-scroll {
  overflow: hidden;
}
.overlay-active {
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
}
.menu-icon {
  width: 44px;
  height: 44px;
  transition: 1s all;
  transform-origin: 50% 50%;
  transform: rotate(0deg);
  position: relative;
  background-color: unset;
  border: unset;
  cursor: pointer;
}
.menu-icon span,
.menu-icon:before,
.menu-icon:after {
  content: "";
  width: 100%;
  height: 15%;
  background: #FC800A;
  position: absolute;
  border-radius: 10px;
  transition: 0.8s all;
  transform-origin: 100% 100%;
  left: 0;
}
.menu-icon:before {
  transform-origin: 0% 0%;
  top: 0;
}
.menu-icon span {
  top: 43%;
}
.menu-icon:after {
  top: 85%;
}
.menu-active {
  transform: rotate(180deg);
}
.menu-active:before {
  transform: rotate(45deg);
  left: 20%;
  top: -8%;
}
.menu-active span,
.menu-active:after {
  transform: rotate(-45deg);
  left: -10%;
  top: -12%;
}
.header_close {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  color: white;
  text-align: center;
}
.fullscreen img {
  max-width: 90vw;
  max-height: 80vh;
}
.fullscreen p {
  margin-top: 10px;
  font-size: 18px;
}
.zoom-image {
  cursor: pointer;
}
/*# sourceMappingURL=lib.css.map */