/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 30 2026 | 17:46:00 */
/* Общие стили для отключения outline */
:active, :hover, :focus, input {
    outline: 0;
    outline-offset: 0;
}

/* Отключение выделения текста для всех элементов 
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}*/

/* Отключение подтягивания номеров телефонов на числовых полях для iPhone */
body {
    font-feature-settings: 'pnum' on, 'lnum' on;
}

/* CSS-переменные */
:root {
    --dark: #1f3335;
    --white: #fff;
}


#top {
	display: none;
}

/* Отступы между абзацами в текстовом поле ACF */
br {
    display: block;
    content: "";
    margin-bottom: 1em;
}

/* Общие стили для элементов внутри .wpcf7 */
.wpcf7 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 10px;/* Правильный отступ между полями и ошибками!!! */
	width: 100%;
}

/*  Адаптация в статье блога старого caption без ломания пропорций для изображений*/
.wp-caption {
  max-width: 100% !important;
  width: auto !important;
  box-sizing: border-box;
}
.wp-caption img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
}
.wp-caption-text {
  font-size: 14px;
  line-height: 1.5;
}

/*  Отступы ячеек таблицы в статье блога*/
.post-content-single.w-richtext table {
	width: 100%;
}
.post-content-single.w-richtext table td {
	padding: 5px 15px;
}
