/* Универсальный класс для HTML в Zero Block на 100% высоты */
.zb-h100.tn-elem .tn-atom__html {
    height: 100% !important;
}

.zb-h100.tn-elem .tn-atom__html > * {
    height: 100% !important;
}

/* Универсальный класс для HTML в Zero Block на 50% высоты */
.zb-h50.tn-elem .tn-atom__html {
    height: 50% !important;
}

.zb-h50.tn-elem .tn-atom__html > * {
    height: 50% !important;
}

/* Высота из JS-переменной */
.zb-vh.tn-elem .tn-atom__html {
    height: calc(var(--zbvh, 1vh) * 30) !important;
}

.zb-vh.tn-elem .tn-atom__html > * {
    height: 30% !important;
}