#allrecords .uc-h2txt h2,
#allrecords h2.uc-h2txt {
  font-size: 25px !important;
}
@media (max-width: 980px) {
  #allrecords h2.uc-h2txt {
    font-size: 25px !important;
  }
}

@media (max-width: 640px) {
  #allrecords h2.uc-h2txt {
    font-size: 25px !important;
  }
}

#allrecords .uc-h3txt h3,
#allrecords h3.uc-h3txt {
  font-size: 20px !important;
}
@media (max-width: 980px) {
  #allrecords h3.uc-h3txt {
    font-size: 20px !important;
  }
}

@media (max-width: 640px) {
  #allrecords h3.uc-h3txt {
    font-size: 20px !important;
  }
}



.soz-contact-block {
    margin: 40px 0;
    padding: 28px 32px;
    background: #e9ff08;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}

.soz-contact-title {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #111111;
    text-align: center;
}

.soz-contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.soz-contact-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    min-height: 52px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #111111;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.soz-contact-item:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

@media (max-width: 767px) {
    .soz-contact-block {
        padding: 22px 18px;
    }

    .soz-contact-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .soz-contact-links {
        flex-direction: column;
        align-items: stretch;
    }

    .soz-contact-item {
        width: 100%;
        text-align: center;
    }
}



/* =========================================================
   Адаптивная таблица-аккордеон для Tilda
   Все классы изолированы префиксом dm-tblacc-826
   ========================================================= */

.dm-tblacc-826 {
    width: calc(100% - 40px);
    max-width: 795px;
    margin: 30px auto;
    box-sizing: border-box;
    font-family: "Manrope", Arial, sans-serif;
    color: #161616;
}

.dm-tblacc-826,
.dm-tblacc-826 * {
    box-sizing: border-box;
}

.dm-tblacc-826__details {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

/* Заголовок аккордеона */
.dm-tblacc-826__summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    width: 100%;
    padding: 20px 24px;

    cursor: pointer;
    list-style: none;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #161616;

    background: #ffffff;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.dm-tblacc-826__summary::-webkit-details-marker {
    display: none;
}

.dm-tblacc-826__summary::marker {
    display: none;
    content: "";
}

.dm-tblacc-826__summary:hover {
    background: #f6f7f9;
}

/* Правая часть заголовка */
.dm-tblacc-826__control {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;

    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: #6b7280;
}

.dm-tblacc-826__action::before {
    content: "Показать";
}

.dm-tblacc-826__details[open] .dm-tblacc-826__action::before {
    content: "Скрыть";
}

/* Стрелка */
.dm-tblacc-826__arrow {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;

    border-radius: 50%;
    background: #f1f3f5;

    transition:
        transform 0.25s ease,
        background-color 0.2s ease;
}

.dm-tblacc-826__arrow::before,
.dm-tblacc-826__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    background: #161616;
    border-radius: 2px;
}

.dm-tblacc-826__arrow::before {
    transform: translate(-80%, -50%) rotate(45deg);
}

.dm-tblacc-826__arrow::after {
    transform: translate(-20%, -50%) rotate(-45deg);
}

.dm-tblacc-826__details[open] .dm-tblacc-826__arrow {
    transform: rotate(180deg);
    background: #e9ecef;
}

/* Область с таблицей */
.dm-tblacc-826__content {
    padding: 0;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.dm-tblacc-826__details[open] .dm-tblacc-826__content {
    animation: dmTblAcc826Open 0.22s ease;
}

@keyframes dmTblAcc826Open {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Горизонтальный скролл на маленьких экранах */
.dm-tblacc-826__scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

/* =========================================================
   Стили самой таблицы
   ========================================================= */

.dm-tblacc-826__scroll table {
    width: 100% !important;
    margin: 0 !important;

    border: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #282828;

    background: #ffffff;
}

/* Убираем стандартные отступы параграфов Tilda */
.dm-tblacc-826__scroll table p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Ячейки */
.dm-tblacc-826__scroll table td,
.dm-tblacc-826__scroll table th {
    padding: 15px 18px !important;

    text-align: left;
    vertical-align: top;

    border: 0 !important;
    border-right: 1px solid #e5e7eb !important;
    border-bottom: 1px solid #e5e7eb !important;

    background: #ffffff;

    overflow-wrap: anywhere;
    word-break: normal;
}

/* Последняя колонка */
.dm-tblacc-826__scroll table td:last-child,
.dm-tblacc-826__scroll table th:last-child {
    border-right: 0 !important;
}

/* Последняя строка */
.dm-tblacc-826__scroll table tr:last-child td,
.dm-tblacc-826__scroll table tr:last-child th {
    border-bottom: 0 !important;
}

/* Первая строка используется как шапка */
.dm-tblacc-826__scroll table tr:first-child td,
.dm-tblacc-826__scroll table tr:first-child th {
    padding-top: 17px !important;
    padding-bottom: 17px !important;

    font-weight: 700;
    color: #161616;

    background: #f1f3f5;
}

/* Лёгкое выделение строки при наведении */
@media (hover: hover) {
    .dm-tblacc-826__scroll table tr:not(:first-child):hover td {
        background: #fafafa;
    }
}

/* =========================================================
   Планшеты
   ========================================================= */

@media screen and (max-width: 959px) {

    .dm-tblacc-826 {
        width: calc(100% - 40px);
        max-width: 795px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .dm-tblacc-826__summary {
        padding: 18px 20px;
        font-size: 17px;
    }

    .dm-tblacc-826__scroll table {
        font-size: 14px;
    }

    .dm-tblacc-826__scroll table td,
    .dm-tblacc-826__scroll table th {
        padding: 14px 16px !important;
    }
}

/* =========================================================
   Мобильные
   ========================================================= */

@media screen and (max-width: 639px) {

    .dm-tblacc-826 {
        width: calc(100% - 30px);
        margin-top: 22px;
        margin-bottom: 22px;
    }

    .dm-tblacc-826__details {
        border-radius: 12px;
    }

    .dm-tblacc-826__summary {
        padding: 16px;
        gap: 12px;

        font-size: 16px;
        line-height: 1.35;
    }

    .dm-tblacc-826__action {
        display: none;
    }

    .dm-tblacc-826__arrow {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    /*
       На мобильном широкая таблица прокручивается горизонтально.
       Это надежнее, чем ломать строки таблицы в карточки.
    */
    .dm-tblacc-826__scroll table {
        min-width: 620px;
        font-size: 14px;
    }

    .dm-tblacc-826__scroll table td,
    .dm-tblacc-826__scroll table th {
        padding: 13px 14px !important;
    }
}