/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 13 2025 | 03:50:14 */
.spoiler-block {
  position: relative;
  overflow: hidden;
  max-height: 500px;
  transition: max-height 0.6s ease;
}

/* Вид в редакторе */
#elementor-preview .spoiler-block {
  max-height: 2000px!important;
}

/* Раскрытие */
.spoiler-block.open, #elementor-preview {
  max-height: 2000px;
}

/* Градиент снизу */
.spoiler-block .spoiler-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background: linear-gradient(to top, white, rgba(255,255,255,0));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Градиент исчезает при открытии */
.spoiler-block.open .spoiler-gradient {
  opacity: 0;
}

/* Кнопка */
.spoiler-toggle-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: none;
  border: 2px solid #e00000; /* красная рамка */
  border-radius: 8px;
  color: #e00000;
  font-family: inherit;
  font-size: 16px;
  font-weight: bold;
  text-transform: none;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.2;
  text-align: center;
}

.spoiler-toggle-btn:hover {
  background: #e00000;
  color: #fff;
}

.spoiler-toggle-btn:focus,
.spoiler-toggle-btn:active {
  outline: none;
  box-shadow: none;
  background: none;
  color: #e00000; /* ← восстановим красный цвет текста */
}