/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 05 2025 | 10:33:15 */
/* затемнение фона */
.lity { background: rgba(0,0,0,.75) !important; }

/* убираем лишние подложки/тени */
.lity-wrap, .lity-container, .lity-content {
  background: transparent !important;
  box-shadow: none !important;
}

/* крестик закрытия */
.lity-close {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.6); /* изначально тёмный */
  border-radius: 6px;

  color: #fff !important;
  font-size: 22px !important;
  line-height: 1;

  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  z-index: 9999;
}

/* при наведении фон меняется на зелёный и масштабируется вся кнопка */
.lity-close:hover {
  background: #2C9347 !important;
  transform: scale(1.15); /* увеличивается ВСЯ кнопка */
  box-shadow: 0 4px 10px rgba(0,0,0,.35);
}

