- ID da verificação
- 0e3e8209-d522-4126-ab46-f6ecfa11770eConcluído
- URL enviado:
- https://vk.com/wall-224095492_88
- Relatório concluído:
Links · 0 encontrado(s)
Os links de saída identificados na página
Variáveis JavaScript · 504 encontrada(s)
Variáveis JavaScript globais carregadas no objeto janela de uma página são variáveis declaradas fora das funções e acessíveis de qualquer lugar no código dentro do escopo atual
Nome | Tipo |
---|---|
0 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
onSpaReady | function |
spaReady | function |
onLayoutReady | function |
layoutReady | function |
vk | object |
cur | object |
Mensagens de registro do console · 5 encontrada(s)
Mensagens registradas no console web
Tipo | Categoria | Log |
---|---|---|
log | other |
|
verbose | dom |
|
error | security |
|
info | other |
|
warning | other |
|
HTML
O corpo HTML bruto da página
<!DOCTYPE html><html prefix="og: http://ogp.me/ns#" lang="en" dir="ltr" style="--scroll-fixed-width: 960px; --layout-width: 960px;"><head class="push_notifier_supported"><meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="/images/icons/favicons/fav_logo.ico?7">
<link rel="preconnect" href="https://login.vk.com">
<link rel="preconnect" href="https://api.vk.com">
<link rel="apple-touch-icon" href="/images/icons/pwa/apple/default.png?15">
<meta http-equiv="content-type" content="text/html; charset=windows-1251">
<meta property="og:title" content="Wall posts "><meta property="og:site_name" content="VK"><meta property="og:description" content="Hacking programları, hackerlar, pentesterlar ve güvenlik araştırmacıları için hazırlanmış bir hacking araçları listesidir."><meta property="og:url" content="https://vk.com/wall-224095492_88"><meta property="og:type" content="website"><meta http-equiv="origin-trial" content="AiJEtxZTdbmRu3zkrD0Bg/GvReuip5r0aklN7tIrw1Yit01/+j7PNlJFAyMMo/vqqNVvDmRsGCPGfVtNn5ookQ8AAABueyJvcmlnaW4iOiJodHRwczovL3ZrLmNvbTo0NDMiLCJmZWF0dXJlIjoiRG9jdW1lbnRQaWN0dXJlSW5QaWN0dXJlQVBJIiwiZXhwaXJ5IjoxNjk0MTMxMTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZX0="><meta name="description" content="Hacking programları, hackerlar, pentesterlar ve güvenlik araştırmacıları için hazırlanmış bir hacking araçları listesidir."><meta name="theme-color" content="#ffffff">
<meta name="color-scheme" content="light">
<title>Hacking programları, hackerlar, pentesterlar.. | Ahmet Çadırcı | VK</title>
<noscript><meta http-equiv="refresh" content="0; URL=/badbrowser.php"></noscript>
<script type="text/javascript" async="" src="https://top-fwz1.mail.ru/js/code.js"></script><script type="text/javascript">window.__eagerRequests__={};</script>
<script nomodule="">;try{/*nomodule*/
(function () {
'use strict';
// eslint-disable-next-line no-restricted-syntax
function nomodule({ needRedirect }) {
// eslint-disable-next-line no-restricted-globals
const xhr = new XMLHttpRequest();
xhr.open('GET', '/badbrowser_stat.php?act=nomodule');
xhr.send();
if (needRedirect) {
window.location.replace('/badbrowser.php');
}
window.nomodules = true;
}
return nomodule;
})()({"needRedirect":false});} catch (e) {e.__inline_tag = "nomodule.js"; e.name = `[nomodule.js] ${e.name}`; throw e;};</script>
<script type="text/javascript">;try{/*challenge*/
(function () {
'use strict';
// eslint-disable-next-line no-restricted-syntax
function challenge({ isEnabled }) {
if (!isEnabled) {
return;
}
let isRedirectRequested = false;
function redirect(target) {
if (!isRedirectRequested) {
isRedirectRequested = true;
window.location.href = target;
}
}
function getRedirectTarget(parameter) {
return `${parameter}=${encodeURIComponent(window.location.href)}`;
}
const observer = new PerformanceObserver((list)=>{
for (const entry of list.getEntries()){
if (entry.serverTiming) {
for (const serverEntry of entry.serverTiming){
if (serverEntry.name !== 'challenge') {
return;
}
const { origin } = new URL(entry.name);
redirect(origin + serverEntry.description + '?' + getRedirectTarget('back'));
}
}
}
});
observer.observe({
entryTypes: [
'navigation',
'resource'
]
});
}
return challenge;
})()({"isEnabled":false});} catch (e) {e.__inline_tag = "challenge.js"; e.name = `[challenge.js] ${e.name}`; throw e;};</script>
<script type="text/javascript">;try{/*spaReady*/
(function () {
'use strict';
function htmlDecode(input) {
const doc = new DOMParser().parseFromString(input, 'text/html');
return doc.documentElement.textContent;
}
function addBodyAttributes(attrsObj) {
for(const key in attrsObj){
if (attrsObj.hasOwnProperty(key)) {
const value = htmlDecode(attrsObj[key]);
if (document.body.hasAttribute(key) && key === 'class') {
document.body.setAttribute(key, document.body.getAttribute(key) + ' ' + value);
} else {
document.body.setAttribute(key, value);
}
}
}
}
function moveTemplateElementToHead(templateId) {
const prevElement = document.getElementById(templateId);
if (!prevElement || prevElement.tagName !== 'TEMPLATE') {
console.warn('Previous element is not <template>');
return;
}
document.head.appendChild(prevElement.content);
document.currentScript.remove();
prevElement.remove();
}
function initFlushController() {
window.FlushController = {
moveTemplateElementToHead,
addBodyAttributes
};
document.addEventListener('DOMContentLoaded', ()=>{
delete window.FlushController;
});
}
// eslint-disable-next-line no-restricted-syntax
function spaReady() {
initFlushController();
function createReadySignal(event) {
const state = {
isReady: false,
onReadyCallbacks: []
};
window[`on${event[0].toUpperCase()}${event.slice(1)}`] = (callback)=>{
state.onReadyCallbacks.push(callback);
if (state.isReady) {
callback();
}
};
window[event] = ()=>{
if (!state.isReady) {
state.isReady = true;
window.dispatchEvent(new CustomEvent(event));
}
for (let callback of state.onReadyCallbacks){
callback();
}
};
}
createReadySignal('spaReady');
createReadySignal('layoutReady');
}
return spaReady;
})()({});} catch (e) {e.__inline_tag = "spaReady.js"; e.name = `[spaReady.js] ${e.name}`; throw e;};</script>
<style>
body{background:var(--vkui--color_background);color:var(--vkui--color_text_primary);margin:0;padding:0;direction:ltr;font-size:var(--vkui--font_text--font_size--compact);font-family:var(--palette-vk-font,-apple-system,BlinkMacSystemFont,'Roboto','Helvetica Neue',Geneva,"Noto Sans Armenian","Noto Sans Bengali","Noto Sans Cherokee","Noto Sans Devanagari","Noto Sans Ethiopic","Noto Sans Georgian","Noto Sans Hebrew","Noto Sans Kannada","Noto Sans Khmer","Noto Sans Lao","Noto Sans Osmanya","Noto Sans Tamil","Noto Sans Telugu","Noto Sans Thai",arial,Tahoma,verdana,sans-serif);line-height:1.154;font-weight:400;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}
[dir=rtl] body{direction:rtl;unicode-bidi:embed}
body.firefox #page_wrap{position:relative;width:100%;overflow:hidden}
a{color:var(--vkui--color_text_link);text-decoration:none;cursor:pointer}
b a,a b{color:var(--vkui--color_text_link)}
a:hover{text-decoration:underline}
img{border:0;color:transparent}
img.emoji_css{color:var(--black)}
form{margin:0;padding:0}
a .num_delim{vertical-align:baseline!important}
.blind_label{position:absolute;width:1px;height:1px;clip:rect(1px,1px,1px,1px);opacity:0;overflow:hidden;outline:0}
div#utils{top:-30px;position:absolute;height:20px;overflow:hidden}
div#utils iframe{width:1px;height:1px;border:0;overflow:hidden}
#page_layout{padding:0 15px;margin:0 auto;position:relative;width:960px}
a.button_link:hover,a.button_blue:hover,a.button_gray:hover,a.button_red:hover,a.button_orange:hover{text-decoration:none}
.flat_button,.button_gray button,.button_blue button,.button_red button,.button_orange button{padding:7px 16px 8px;margin:0;font-size:12.5px;display:inline-block;zoom:1;cursor:pointer;white-space:nowrap;outline:0;font-family:var(--palette-vk-font,-apple-system,BlinkMacSystemFont,'Roboto','Helvetica Neue',Geneva,"Noto Sans Armenian","Noto Sans Bengali","Noto Sans Cherokee","Noto Sans Devanagari","Noto Sans Ethiopic","Noto Sans Georgian","Noto Sans Hebrew","Noto Sans Kannada","Noto Sans Khmer","Noto Sans Lao","Noto Sans Osmanya","Noto Sans Tamil","Noto Sans Telugu","Noto Sans Thai",arial,Tahoma,verdana,sans-serif);vertical-align:top;line-height:15px;text-align:center;text-decoration:none;background:0 0;background-color:var(--vkui--color_background_accent_themed);color:var(--vkui--color_text_contrast_themed);border:0;border-radius:var(--vkui--size_border_radius--regular);box-sizing:border-box}
.flat_button::-moz-focus-inner,.button_blue button::-moz-focus-inner,.button_red button::-moz-focus-inner,.button_orange button::-moz-focus-inner,.button_gray button::-moz-focus-inner{border:0}
.flat_button:hover,.flat_button.hover,.button_blue button:hover,.button_blue button.hover{opacity:.88;text-decoration:none}
.flat_button.flat_button_loading,.flat_button.secondary.flat_button_loading{background:0 0;overflow:hidden;text-indent:-9999px;position:relative}
.flat_button.flat_button_loading:hover,.flat_button.secondary.flat_button_loading:hover{background:0 0}
.flat_button.flat_button_loading::before,.flat_button.secondary.flat_button_loading::before{content:"";position:absolute;display:inline-block;width:16px;height:16px;animation-name:round_spinner;animation-duration:700ms;animation-iteration-count:infinite;animation-timing-function:linear;background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2399a2ad%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A);background-size:16px;background-position:center;background-repeat:no-repeat;display:block;top:50%;left:50%;margin:-8px}
[dir=rtl] .flat_button.flat_button_loading::before,[dir=rtl] .flat_button.secondary.flat_button_loading::before{left:auto;right:50%}
[scheme=vkcom_dark] .flat_button.flat_button_loading::before,.flat_button.secondary.flat_button_loading::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23939393%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A)}
.flat_button:active,.flat_button.active,.button_blue button:active,.button_blue button.active{opacity:.88;padding-top:8px;padding-bottom:7px}
.flat_button.secondary,.button_gray button{background-color:var(--vkui--color_background_secondary_alpha);color:var(--vkui--color_text_accent_themed)}
.flat_button.black,.flat_button.secondary.black{background-color:#3f3f3f;color:var(--white)}
.flat_button.black:hover,.flat_button.secondary.black:hover{background-color:#464646}
.flat_button.black:active,.flat_button.secondary.black:active{background-color:#464646}
.flat_button.secondary.button_light,.box_controls .flat_button.secondary{background-color:transparent;color:var(--vkui--vkontakte_button_tertiary_foreground)}
.flat_button.secondary.button_light:hover,.box_controls .flat_button.secondary:hover{background-color:var(--vkui--color_background_secondary_alpha)}
.flat_button.secondary:hover,.flat_button.secondary.hover,.button_gray button:hover,.button_gray button.hover{color:var(--vkui--color_text_accent_themed);background-color:var(--vkui--color_background_secondary_alpha--hover)}
.flat_button.secondary:active,.button_gray button:active{color:var(--vkui--color_text_accent_themed);background-color:var(--vkui--color_background_secondary_alpha--hover);opacity:.88}
.flat_button.show_similar{margin-left:10px}
[dir=rtl] .flat_button.show_similar{margin-left:0;margin-right:10px}
.flat_button.flat_button_tertiary{background-color:var(--vkui--color_transparent);color:var(--vkui--vkontakte_button_tertiary_foreground)}
.flat_button.flat_button_tertiary:hover,.flat_button.flat_button_tertiary.hover{background-color:var(--vkui--color_background_secondary_alpha)}
.flat_button.flat_button_tertiary:active,.flat_button.flat_button_tertiary.active{opacity:.88}
.button_wide{display:block}
.flat_button.button_wide,.button_wide button{width:100%;padding-left:3px;padding-right:3px}
button.flat_btn_lock,.flat_button.flat_btn_lock{pointer-events:none}
.flat_button.button_disabled:hover,.flat_button.button_disabled:active{background-color:var(--blue_400);cursor:default;pointer-events:none}
.flat_button.secondary.button_disabled:hover,.flat_button.secondary.button_disabled:active{background-color:var(--light_blue_40);cursor:default}
.link_lock,.flat_button.button_disabled{pointer-events:none}
.flat_button.button_indent+.flat_button{margin-left:10px}
[dir=rtl] .flat_button.button_indent+.flat_button{margin-left:0;margin-right:10px}
:root{--spinner-animation:rotate360 0.7s linear infinite}
@keyframes rotate360{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes skeleton-iso{0%{transform:translateX(calc(var(--skeleton-gradient-width, 300px)*-1))}to{transform:translateX(0)}}
.SkeletonIso{--skeleton-gradient-width:300px;--skeleton-animation-duration:1.5s;--color-skeleton-from:var(--skeleton-from, var(--vkui--color_skeleton_from));--color-skeleton-to:var(--skeleton-to, var(--vkui--color_skeleton_to));background-color:var(--color-skeleton-from, var(--vkui--color_skeleton_from));max-width:100%;border-radius:6px;display:inline-flex;flex-shrink:0;line-height:1;position:relative;overflow:hidden;visibility:visible;z-index:1}
.SkeletonIso .SkeletonIso{--color-skeleton-from:var(--vkui--color_background_content);--color-skeleton-to:var(--vkui--color_background_tertiary)}
.SkeletonIso .SkeletonIso .SkeletonIso{--color-skeleton-from:var(--vkui--color_skeleton_from);--color-skeleton-to:var(--vkui--color_skeleton_to)}
.SkeletonIso .SkeletonIso--borderRadiusDefault{border-radius:var(--vkui--size_border_radius--regular)}
.SkeletonIso .SkeletonIso--borderRadiusPaper{border-radius:var(--vkui--size_border_radius_paper--regular)}
.SkeletonIso .SkeletonIso--borderRadiusPromo{border-radius:var(--vkui--size_border_radius_promo--regular)}
.SkeletonIso::after{content:" ";display:block;position:absolute;top:0;left:0;right:0;height:100%;width:calc(100% + var(--skeleton-gradient-width, 300px));background-image:linear-gradient(to right,var(--color-skeleton-from, var(--vkui--color_skeleton_from))0,var(--color-skeleton-to, var(--vkui--color_skeleton_to)) calc(var(--skeleton-gradient-width, 300px)*.5),var(--color-skeleton-from, var(--vkui--color_skeleton_from)) calc(var(--skeleton-gradient-width, 300px)*.75));background-size:var(--skeleton-gradient-width, 300px) 100%;background-attachment:fixed;animation-name:skeleton-iso;animation-direction:normal;animation-iteration-count:infinite;animation-duration:var(--skeleton-animation-duration, 1.5s);animation-timing-function:ease-in-out}
[dir=rtl] .SkeletonIso::after{background-image:linear-gradient(to left,var(--color-skeleton-from, var(--vkui--color_skeleton_from))0,var(--color-skeleton-to, var(--vkui--color_skeleton_to)) calc(var(--skeleton-gradient-width, 300px)*.5),var(--color-skeleton-from, var(--vkui--color_skeleton_from)) calc(var(--skeleton-gradient-width, 300px)*.75));animation-direction:reverse}
:root{--flat-checkbox-line-height:1.27em;--flat-checkbox-disabled-opacity:0.6;--flat-checkbox-margin:0 7px 0 0;--flat-checkbox-size:16px}
body.firefox .checkbox::before{margin-top:0}
[scheme=vkcom_dark] .checkbox::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.05%202.53C4.79%202.13%205.52%202%207.13%202h5.74c1.61%200%202.34.14%203.08.53.65.35%201.17.87%201.52%201.52.4.74.53%201.47.53%203.08v5.74c0%201.61-.14%202.34-.53%203.08a3.64%203.64%200%2001-1.52%201.52c-.74.4-1.47.53-3.08.53H7.13c-1.61%200-2.34-.14-3.08-.53a3.64%203.64%200%2001-1.52-1.52c-.4-.74-.53-1.47-.53-3.08V7.13c0-1.61.14-2.34.53-3.08a3.65%203.65%200%20011.52-1.52zm3.08.97c-1.53%200-1.96.14-2.38.36a2.15%202.15%200%2000-.9.9c-.21.4-.35.84-.35%202.37v5.74c0%201.53.14%201.96.36%202.38.2.39.5.69.9.9.4.21.84.35%202.37.35h5.74c1.53%200%201.96-.14%202.38-.36.39-.2.69-.5.9-.9.21-.4.35-.84.35-2.37V7.13c0-1.53-.14-1.96-.36-2.38a2.15%202.15%200%2000-.9-.9c-.4-.21-.84-.35-2.37-.35H7.13z%22%20fill%3D%22%23656565%22%2F%3E%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .checkbox.on::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M2.44%204.18C2%205.04%202%206.16%202%208.4v3.2c0%202.24%200%203.36.44%204.22a4%204%200%20001.74%201.74c.86.44%201.98.44%204.22.44h3.2c2.24%200%203.36%200%204.22-.44a4%204%200%20001.74-1.74c.44-.86.44-1.98.44-4.22V8.4c0-2.24%200-3.36-.44-4.22a4%204%200%2000-1.74-1.74C14.96%202%2013.84%202%2011.6%202H8.4c-2.24%200-3.36%200-4.22.44a4%204%200%2000-1.74%201.74zm12.2%203.8a.9.9%200%2010-1.28-1.27L8.7%2011.38%206.64%209.33a.9.9%200%2000-1.28%201.27l2.7%202.69a.9.9%200%20001.27%200l5.3-5.3z%22%20fill%3D%22%2371aaeb%22%2F%3E%3C%2Fsvg%3E)}
.checkbox.dark::before,[scheme=vkcom_dark] .checkbox.dark::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.05%202.53C4.79%202.13%205.52%202%207.13%202h5.74c1.61%200%202.34.14%203.08.53.65.35%201.17.87%201.52%201.52.4.74.53%201.47.53%203.08v5.74c0%201.61-.14%202.34-.53%203.08a3.64%203.64%200%2001-1.52%201.52c-.74.4-1.47.53-3.08.53H7.13c-1.61%200-2.34-.14-3.08-.53a3.64%203.64%200%2001-1.52-1.52c-.4-.74-.53-1.47-.53-3.08V7.13c0-1.61.14-2.34.53-3.08a3.65%203.65%200%20011.52-1.52zm3.08.97c-1.53%200-1.96.14-2.38.36a2.15%202.15%200%2000-.9.9c-.21.4-.35.84-.35%202.37v5.74c0%201.53.14%201.96.36%202.38.2.39.5.69.9.9.4.21.84.35%202.37.35h5.74c1.53%200%201.96-.14%202.38-.36.39-.2.69-.5.9-.9.21-.4.35-.84.35-2.37V7.13c0-1.53-.14-1.96-.36-2.38a2.15%202.15%200%2000-.9-.9c-.4-.21-.84-.35-2.37-.35H7.13z%22%20fill%3D%22%23b2b2b2%22%2F%3E%3C%2Fsvg%3E)}
.checkbox.dark.on::before,[scheme=vkcom_dark] .checkbox.dark.on::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M2.44%204.18C2%205.04%202%206.16%202%208.4v3.2c0%202.24%200%203.36.44%204.22a4%204%200%20001.74%201.74c.86.44%201.98.44%204.22.44h3.2c2.24%200%203.36%200%204.22-.44a4%204%200%20001.74-1.74c.44-.86.44-1.98.44-4.22V8.4c0-2.24%200-3.36-.44-4.22a4%204%200%2000-1.74-1.74C14.96%202%2013.84%202%2011.6%202H8.4c-2.24%200-3.36%200-4.22.44a4%204%200%2000-1.74%201.74zm12.2%203.8a.9.9%200%2010-1.28-1.27L8.7%2011.38%206.64%209.33a.9.9%200%2000-1.28%201.27l2.7%202.69a.9.9%200%20001.27%200l5.3-5.3z%22%20fill%3D%22%23b2b2b2%22%2F%3E%3C%2Fsvg%3E)}
.HeaderNav{margin:0;padding:0;display:flex;height:inherit}
.HeaderNav__item{list-style:none;display:flex;align-items:center}
.HeaderNav__item--logo{position:relative}
.HeaderNav__item--gap{padding-right:15px}
[dir=rtl] .HeaderNav__item--gap{padding-right:0;padding-left:15px}
.HeaderNav__item:first-child{padding:0}
.HeaderNav__btns{display:flex}
.HeaderNav__audio{flex-grow:1;min-width:240px}
.HeaderNav__search{margin:0 auto;flex-grow:4;display:none}
body.index_page .TopSearch{display:none}
.ts_cont_wrap{position:absolute;top:var(--header-height);background:var(--vkui--color_background_modal);z-index:800;border-radius:0 0 4px 4px;box-shadow:0 1px 4px var(--black_alpha16);overflow:hidden;display:none;left:177px;width:232px;border:1px solid var(--vkui--color_separator_primary);box-sizing:border-box}
[dir=rtl] .ts_cont_wrap{left:auto;right:177px}
.ts_cont_wrap:empty{border:0;box-shadow:none}
.TopHomeLink{width:165px;height:100%;display:flex;align-items:center;margin:0 0 0-2px;color:var(--vkui--color_text_primary)}
[dir=rtl] .TopHomeLink{margin:0-2px 0 0}
.TopHomeLink:active{margin-top:1px}
body.WideScreenAppPage .TopHomeLink>svg{height:24px}
.LeftMenu__item{position:relative}
.LeftMenu__item--withRedDot::before{content:"";display:block;position:absolute;top:5px;left:18px;width:6px;height:6px;border-radius:50%;border:solid 1px var(--vkui--color_background);background-color:var(--vkui--color_accent_red);z-index:1;pointer-events:none}
[dir=rtl] .LeftMenu__item--withRedDot::before{left:auto;right:18px}
.LeftMenu__itemLink{color:var(--vkui--color_text_primary);border:0;display:flex;white-space:nowrap;align-items:center;border-radius:4px;height:var(--left-menu-row-height);width:var(--left-menu-item-width, 164px);padding:0 6px;box-sizing:border-box}
.LeftMenu__itemLink object{flex-shrink:0}
.LeftMenu__itemLink:hover{background:var(--vkui--vkontakte_background_hover_alpha);text-decoration:none}
.LeftMenu__itemLabel{vertical-align:baseline;height:var(--left-menu-row-height);line-height:var(--left-menu-row-height);font-size:var(--vkui--font_text--font_size--compact);overflow:hidden;text-overflow:ellipsis;flex-grow:1}
.LeftMenu__item--withBlueDot .LeftMenu__itemLabel::after{content:"";display:inline-block;position:relative;bottom:1px;left:6px;width:6px;height:6px;border-radius:50%;background-color:var(--blue_bright);z-index:1;pointer-events:none}
[dir=rtl] .LeftMenu__item--withBlueDot .LeftMenu__itemLabel::after{left:auto;right:6px}
.LeftMenu__icon{display:flex;align-items:center;justify-content:center;margin-right:10px;color:var(--vkui--color_icon_accent)}
[dir=rtl] .LeftMenu__icon{margin-right:0;margin-left:10px}
.LeftMenu__icon>svg{max-height:var(--left-menu-icon-size);max-width:var(--left-menu-icon-size)}
.LeftMenu__customIcon{position:relative}
.LeftMenu__customIconImage{width:var(--left-menu-icon-size);height:var(--left-menu-icon-size);display:block}
.LeftMenu__customIcon::after{content:"";display:block;position:absolute;top:0;width:20px;height:20px;border:solid 1px var(--vkui--color_image_border_alpha);box-sizing:border-box}
.LeftMenu__customIcon--type-app .LeftMenu__customIconImage,.LeftMenu__customIcon--type-app::after{border-radius:5px}
.LeftMenu__customIcon--type-group .LeftMenu__customIconImage,.LeftMenu__customIcon--type-group::after{border-radius:50%}
.LeftMenu__settings{float:left;position:relative;width:22px;height:var(--left-menu-row-height);margin:calc(var(--left-menu-row-height)*-1)0 0-22px;cursor:pointer;opacity:0;z-index:4}
[dir=rtl] .LeftMenu__settings{float:right;margin:calc(var(--left-menu-row-height)*-1) -22px 0 0}
.LeftMenu__settings,.LeftMenu__settingsIn{transition:opacity .2s ease}
body.no_sett .LeftMenu__settings{display:none}
.LeftMenu__settingsIn{width:14px;height:14px;position:absolute;opacity:.5;top:0;bottom:0;left:0;right:0;margin:auto;color:var(--vkui--vkontakte_color_icon_outline_medium)}
.LeftMenu__settingsIn svg{display:block;width:inherit;height:inherit}
.LeftMenu__item:hover .LeftMenu__settings{opacity:1;transition-delay:700ms}
.LeftMenu__item:hover .LeftMenu__settings:hover{transition-delay:0ms}
.LeftMenu__item:hover .LeftMenu__settings:hover .LeftMenu__settingsIn{opacity:1}
.LeftMenu__separator{margin:9px 8px 9px 36px;height:1px;background-color:var(--vkui--color_separator_primary)}
[dir=rtl] .LeftMenu__separator{margin:9px 36px 9px 8px}
.LeftMenu__moreAppsContainer{max-height:0;transition:max-height .2s ease-in-out;overflow:hidden;margin:0;padding:0;width:164px}
.LeftMenu__moreAppsContainer--shown{max-height:300px}
.LeftMenu__item--showMoreApps{transition:max-height .05s ease-in-out;transition-delay:.15s;max-height:initial}
.LeftMenu__item--showMoreAppsHidden{display:none;max-height:0;transition-delay:0s}
.LeftMenuAppPromo{color:var(--vkui--color_text_secondary);line-height:15px;margin:14px 0 0 0;text-align:left;display:flex;align-items:center;font-size:var(--vkui--font_text--font_size--compact)}
[dir=rtl] .LeftMenuAppPromo{text-align:right}
.LeftMenuAppPromo__icon{width:20px;height:20px}
.LeftMenuAppPromo__link{color:var(--vkui--color_text_secondary);margin-left:10px}
[dir=rtl] .LeftMenuAppPromo__link{margin-left:0;margin-right:10px}
.LeftMenuLegacySkeleton__item{height:30px;padding:0 24px 0 6px;display:flex;align-items:center}
[dir=rtl] .LeftMenuLegacySkeleton__item{padding:0 6px 0 24px}
.LeftMenuLegacySkeleton__icon{margin-right:10px}
[dir=rtl] .LeftMenuLegacySkeleton__icon{margin-right:0;margin-left:10px}
.LeftMenuLegacySkeleton__label{flex:1}
a.left_count_wrap:hover{text-decoration:none}
body.sf .left_count_wrap .left_count{line-height:var(--left-menu-counter-height)}
.LegalRecommendationsLinkLeftMenuAuthorized{font-size:var(--vkui--font_caption1--font_size--regular);line-height:1.33333}
.LegalRecommendationsLinkLeftMenuAuthorized__link{display:inline-block;color:var(--vkui--color_text_secondary)}
.top_nav_link{display:inline-block;white-space:nowrap;line-height:var(--header-height);height:var(--header-height);overflow:hidden;padding:0 var(--top) -profile-padding-left;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--vkui--color_text_primary)}
body.index_page .top_nav_link--hidden-on-index-page{display:none}
.top_nav_link:hover{background-color:var(--vkui--vkontakte_background_hover_alpha);text-decoration:none}
.top_nav_link.active{background-color:var(--vkui--color_transparent--active);text-decoration:none}
.top_nav_link.active .top_profile_arrow{opacity:.9}
.top_nav_link.top_profile_link{padding-right:var(--top) -profile-padding-right;display:flex;align-items:center;font-size:14px;height:100%}
[dir=rtl] .top_nav_link.top_profile_link{padding-right:0;padding-left:var(--top) -profile-padding-right}
@keyframes top_audio_play_loading{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes page-bottom-banner-intro{0%{transform:translateY(100%)}to{transform:translateY(0)}}
.page_block{position:relative;background:var(--vkui--color_background_content);border-radius:var(--vkui--size_border_radius_paper--regular);box-shadow:var(--page-block-shadow);margin:var(--page-block-offset, 15px)0 0}
.page_block.new_posting{background:unset;border-radius:unset;box-shadow:unset}
.page_block.page_block_header_outer{border-radius:var(--vkui--size_border_radius_paper--regular) var(--vkui--size_border_radius_paper--regular)0 0}
.page_block.page_block_header_outer .pg_pages{position:absolute;top:0;right:14px;z-index:1}
[dir=rtl] .page_block.page_block_header_outer .pg_pages{right:auto;left:14px}
.page_block.page_block_header_outer .pg_in{padding:19px 6px 18px;font-size:calc(var(--vkui--font_text--font_size--compact) + 1px)}
.page_block:empty{display:none}
.page_block:last-child{margin-bottom:15px}
.narrow_column .page_block:last-child{margin-bottom:0}
.page_block.hide{display:none}
a.page_block_header:hover .header_side_link{text-decoration:underline}
#box_layer .box_x_button,#layer_wrap .box_x_button{float:right;padding:13px;color:var(--vkui--color_icon_contrast);cursor:pointer;outline:0;border-radius:50%;position:absolute;top:0;right:-56px}
[dir=rtl] #box_layer .box_x_button,[dir=rtl] #layer_wrap .box_x_button{float:left;right:auto;left:-56px}
#box_layer .box_x_button::before,#layer_wrap .box_x_button::before{content:"";position:absolute;transform:translate(-50%);left:50%;top:9px;border-radius:50%;width:28px;height:28px;background:var(--vkui--color_overlay_primary)}
[dir=rtl] #box_layer .box_x_button::before,[dir=rtl] #layer_wrap .box_x_button::before{transform:translate(50%);left:auto;right:50%}
#box_layer .box_x_button:hover::before,#layer_wrap .box_x_button:hover::before{background:var(--vkui--color_overlay_primary--hover)}
[scheme=vkcom_dark] .box_loading .box_x_button::after{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23939393%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A)}
[scheme=vkcom_dark] .box_body.box_loading_empty::before,.wk_wiki_content.box_loading_empty::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23939393%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A)}
[scheme=vkcom_dark] .box_controls .progress{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23939393%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A)}
.flat_button .pr{margin-top:6px}
button.flat_button .pr{margin-top:0}
.flat_button .pr_bt{background-color:currentColor}
body.mac .pr_bt{transform:translateZ(0)}
@keyframes pr_bt_anim{0%{opacity:.2}30%{opacity:1}to{opacity:.2}}
.PortalNavigation{position:relative;display:none;align-items:center;justify-content:center;width:48px;height:48px;color:var(--vkui--vkontakte_color_icon_outline_medium);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}
.PortalNavigation:hover,.PortalNavigation--expanded{background-color:var(--vkui--vkontakte_background_hover_alpha)}
.PortalNavigation__icon{position:absolute;top:0;left:0;display:flex;justify-content:center;align-items:center;width:48px;height:48px;background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22912%22%20height%3D%2248%22%3E%3Cpath%20d%3D%22M15%2017h18m-18%207h18m-18%207h18%22%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M63.2%2016.9l18%20.3%22%2F%3E%3Cpath%20d%3D%22M63%2023.8l18%20.4%22%20stroke-dasharray%3D%2217.689159687132978%2C0.3108403212742205%22%20stroke-dashoffset%3D%2217.8%22%2F%3E%3Cpath%20d%3D%22M62.9%2030.7l18%20.5%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M111.8%2016.5l17.8%201.5%22%2F%3E%3Cpath%20d%3D%22M111%2023l18%202%22%20stroke-dasharray%3D%2216.468101339419338%2C1.5318986696738015%22%20stroke-dashoffset%3D%2217.2%22%2F%3E%3Cpath%20d%3D%22M110.5%2029.6l17.6%202.2%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M161.1%2016l17.2%203.6%22%2F%3E%3Cpath%20d%3D%22M159.3%2021.6l17.4%204.8%22%20stroke-dasharray%3D%2213.74142751008033%2C4.258572487955329%22%20stroke-dashoffset%3D%2215.9%22%2F%3E%3Cpath%20d%3D%22M158%2027.4l16.6%205.6%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M211.2%2015.5l15.6%207.1%22%2F%3E%3Cpath%20d%3D%22M208.3%2019.3l15.4%209.4%22%20stroke-dasharray%3D%229.769468689454618%2C8.2305313218919%22%20stroke-dashoffset%3D%2213.9%22%2F%3E%3Cpath%20d%3D%22M206.3%2023.6l13.4%2010.6%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M261.9%2015.6L274%2026.8%22%2F%3E%3Cpath%20d%3D%22M258.9%2016.6L269%2031.4%22%20stroke-dasharray%3D%226.367569860710451%2C11.63243014053529%22%20stroke-dashoffset%3D%2212.2%22%2F%3E%3Cpath%20d%3D%22M257%2019l6.1%2015.5%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M312%2016.3l7.5%2014.4%22%2F%3E%3Cpath%20d%3D%22M310.8%2015l2.4%2018%22%20stroke-dasharray%3D%224.039896398870185%2C13.96010359650381%22%20stroke-dashoffset%3D%2211%22%2F%3E%3Cpath%20d%3D%22M310%2016.6l-3.5%2015.8%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M361.4%2016.9l2.7%2015.8%22%2F%3E%3Cpath%20d%3D%22M362.5%2015.4l-5%2017.2%22%20stroke-dasharray%3D%222.477678262175472%2C15.522321736513133%22%20stroke-dashoffset%3D%2210.2%22%2F%3E%3Cpath%20d%3D%22M362.7%2017.2l-10.9%2012%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M410.3%2017.2l-1.1%2016%22%2F%3E%3Cpath%20d%3D%22M413.2%2016.6l-10.4%2014.8%22%20stroke-dasharray%3D%221.4260358982153791%2C16.57396410107406%22%20stroke-dashoffset%3D%229.7%22%2F%3E%3Cpath%20d%3D%22M413.6%2019.5L399%2026%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M459%2017.3l-4%2015.8%22%2F%3E%3Cpath%20d%3D%22M462.9%2018.2L449%2029.8%22%20stroke-dasharray%3D%220.7313807383768801%2C17.268619253886623%22%20stroke-dashoffset%3D%229.4%22%2F%3E%3Cpath%20d%3D%22M463%2022L447%2023.6%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M507.8%2017.4l-6.4%2015.2%22%2F%3E%3Cpath%20d%3D%22M511.8%2019.6l-15.6%208.8%22%20stroke-dasharray%3D%220.299544558043689%2C17.70045543620457%22%20stroke-dashoffset%3D%229.1%22%2F%3E%3Cpath%20d%3D%22M511.6%2024.2l-16.3-2.4%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M556.3%2017.5l-8%2014.5%22%2F%3E%3Cpath%20d%3D%22M560.4%2020.8l-16.8%206.4%22%20stroke-dasharray%3D%220.0695885428635155%2C17.930411460962084%22%20stroke-dashoffset%3D%229%22%2F%3E%3Cpath%20d%3D%22M559.5%2026L544%2020.5%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M604.8%2017.6l-9.3%2013.8%22%2F%3E%3Cpath%20d%3D%22M608.7%2021.8l-17.4%204.4%22%20stroke-dasharray%3D%220%2C18.000000002675254%22%20stroke-dashoffset%3D%229%22%2F%3E%3Cpath%20d%3D%22M607.3%2027.3l-14.8-7.7%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M653.2%2017.7L643%2031%22%2F%3E%3Cpath%20d%3D%22M656.9%2022.5l-17.8%203%22%20stroke-dasharray%3D%220%2C18.00000000360036%22%20stroke-dashoffset%3D%229%22%2F%3E%3Cpath%20d%3D%22M655%2028.3L641%2019%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M701.5%2017.8l-11%2012.8%22%2F%3E%3Cpath%20d%3D%22M705%2023.1L687%2025%22%20stroke-dasharray%3D%220%2C17.999999998271708%22%20stroke-dashoffset%3D%229%22%2F%3E%3Cpath%20d%3D%22M702.6%2029l-13.3-10.4%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M749.7%2018l-11.4%2012.3%22%2F%3E%3Cpath%20d%3D%22M753%2023.5l-18%201%22%20stroke-dasharray%3D%220%2C18.000000003854534%22%20stroke-dashoffset%3D%229%22%2F%3E%3Cpath%20d%3D%22M750.3%2029.5l-12.7-11.2%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M797.9%2018L786%2030%22%2F%3E%3Cpath%20d%3D%22M801%2023.8l-18%20.4%22%20stroke-dasharray%3D%220%2C18.000000000543643%22%20stroke-dashoffset%3D%229%22%2F%3E%3Cpath%20d%3D%22M798.2%2029.8L785.8%2018%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M846%2018l-12%2012%22%2F%3E%3Cpath%20d%3D%22M849%2024h-18%22%20stroke-dasharray%3D%220%2C18.000000004518093%22%20stroke-dashoffset%3D%229%22%2F%3E%3Cpath%20d%3D%22M846%2030l-12-12%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23818c99%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M894%2018l-12%2012%22%2F%3E%3Cpath%20d%3D%22M897%2024h-18%22%20stroke-dasharray%3D%220%2C18%22%20stroke-dashoffset%3D%229%22%2F%3E%3Cpath%20d%3D%22M894%2030l-12-12%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);background-repeat:no-repeat;transition:background-position .15s .1s steps(18);background-position:0 0}
[dir=rtl] .PortalNavigation__icon{left:auto;right:0;background-position:100%0}
.VKVideoLogo{display:none;width:110px;height:24px;margin-right:115px;color:var(--vkui--color_text_primary)}
[dir=rtl] .VKVideoLogo{margin-right:0;margin-left:115px}
.anonym .VKVideoLogo{margin-right:163px}
[dir=rtl] .anonym .VKVideoLogo{margin-right:0;margin-left:163px}
.VKVideoLogo:active{margin-top:1px}
.page_block .no_rows{padding:30px 50px}
.wall_text .audio_pl_snippet,.copy_quote .audio_pl_snippet,.im_msg_media .audio_pl_snippet{margin-top:15px}
.wall_text .audio_pl_snippet2,.wl_post .audio_pl_snippet2,.copy_quote .audio_pl_snippet2,.im_msg_media .audio_pl_snippet2{margin-top:15px}
.Post--redesign .audio_pl_snippet2{margin-top:var(--post-large-spacing-tb, 12px);margin-bottom:0}
[scheme=vkcom_dark] .audio_pl_snippet2 .audio_pl_snippet__header_button_add::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2248%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m0%200h24v24h-24z%22%20opacity%3D%22.4%22%2F%3E%3Cpath%20d%3D%22m13%2011h7a1%201%200%200%201%200%202h-7v7a1%201%200%200%201%20-2%200v-7h-7a1%201%200%200%201%200-2h7v-7a1%201%200%200%201%202%200z%22%20fill%3D%22%2376787a%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22m0%2024h24v24h-24z%22%20opacity%3D%22.4%22%2F%3E%3Cpath%20d%3D%22m5%2037%204%204%2010-10%22%20stroke%3D%22%2376787a%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .audio_pl_snippet2 .audio_pl_snippet__action_btn_add::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2248%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m0%200h24v24h-24z%22%20opacity%3D%22.4%22%2F%3E%3Cpath%20d%3D%22m13%2011h7a1%201%200%200%201%200%202h-7v7a1%201%200%200%201%20-2%200v-7h-7a1%201%200%200%201%200-2h7v-7a1%201%200%200%201%202%200z%22%20fill%3D%22%2376787a%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22m0%2024h24v24h-24z%22%20opacity%3D%22.4%22%2F%3E%3Cpath%20d%3D%22m5%2037%204%204%2010-10%22%20stroke%3D%22%2376787a%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .audio_pl_snippet2 .audio_pl_snippet__action_btn_share::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m0%200h24v24h-24z%22%2F%3E%3Cpath%20d%3D%22m13%208.75v-4.348a.417.417%200%200%201%20.687-.318l8.94%207.598a.417.417%200%200%201%200%20.636l-8.94%207.598a.417.417%200%200%201%20-.687-.318v-4.348c-5.361%200-9.16%201.04-11.398%203.121a.25.25%200%200%201%20-.413-.241c1.496-6.253%205.434-9.38%2011.811-9.38z%22%20stroke%3D%22%2376787a%22%20stroke-width%3D%221.8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)}
.post .replies .audio_pl_snippet2:last-child,.search_results .post .audio_pl_snippet2:last-child,.wl_post .reply .audio_pl_snippet2:last-child{margin-bottom:5px!important}
.Post--redesign .MusicAuthor_attach_preview,.MusicAuthorSnippet{margin-top:var(--post-large-spacing-tb, 12px)}
.post .replies .MusicAuthorSnippet:last-child,.search_results .post .MusicAuthorSnippet:last-child{margin-bottom:5px!important}
a.audio_row{display:block;text-decoration:none}
[scheme=vkcom_dark] .audio_row.audio_hq .audio_row__duration::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2211%22%20viewBox%3D%220%200%2015%2011%22%20width%3D%2215%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m702%2020v-2h-1v5h1v-2h2v-1zm-4-3.4935615c0-.831983.663886-1.5064385%201.493096-1.5064385h12.013808c.824614%200%201.493096.6715406%201.493096%201.5064385v7.987123c0%20.831983-.663886%201.5064385-1.493096%201.5064385h-12.013808c-.824614%200-1.493096-.6715406-1.493096-1.5064385zm6%201.4935615v5h1v-5zm2%201v3h1v-3zm3%204v1h1v-1zm0-4v3h1v-3zm-2-1v1h2v-1zm0%204v1h2v-1z%22%20fill%3D%22%2376787a%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate\(-698%20-15\)%22%2F%3E%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .audio_row.audio_explicit:not(.audio_with_legal_notice) .audio_row__duration::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2211%22%20viewBox%3D%220%200%2011%2011%22%20width%3D%2211%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m1%202.506v5.988a1.5%201.5%200%200%200%201.491%201.506h6.019c.827%200%201.49-.674%201.49-1.506v-5.988a1.5%201.5%200%200%200%20-1.491-1.506h-6.019c-.827%200-1.49.674-1.49%201.506zm4%202.494v-1h2v-1h-3v5h3v-1h-2v-1h2v-1zm-5-2.494a2.496%202.496%200%200%201%202.491-2.506h6.019a2.5%202.5%200%200%201%202.49%202.506v5.988a2.496%202.496%200%200%201%20-2.491%202.506h-6.019a2.5%202.5%200%200%201%20-2.49-2.506z%22%20fill%3D%22%2376787a%22%20fill-opacity%3D%22.7%22%2F%3E%3C%2Fsvg%3E)}
.blind_label._audio_row__play_btn{width:48px;height:48px}
.redesign_web .CatalogSection--divided .audio_recoms_audios_block.audio_w_covers .audio_row{margin-left:-4px}
[dir=rtl] .redesign_web .CatalogSection--divided .audio_recoms_audios_block.audio_w_covers .audio_row{margin-left:0;margin-right:-4px}
.top_audio_layer_place{align-self:flex-end}
.wall_post_cont .audio_pl_snippet{margin-top:15px}
:root{--header-height:48px;--left-menu-row-height:30px;--left-menu-icon-size:20px}
.fl_l{float:left}
[dir=rtl] .fl_l{float:right}
.fl_r{float:right}
[dir=rtl] .fl_r{float:left}
input[type=text],input[type=submit],input[type=button],input[type=search],input[type=password],input[type~=text],input[type~=search],input[type~=password],input[type~=email],input.text,input.search,.fakeinput,textarea,input.big_text,input.file,div[contenteditable=true]{font-size:var(--vkui--font_text--font_size--compact);font-family:var(--palette-vk-font,-apple-system,BlinkMacSystemFont,'Roboto','Helvetica Neue',Geneva,"Noto Sans Armenian","Noto Sans Bengali","Noto Sans Cherokee","Noto Sans Devanagari","Noto Sans Ethiopic","Noto Sans Georgian","Noto Sans Hebrew","Noto Sans Kannada","Noto Sans Khmer","Noto Sans Lao","Noto Sans Osmanya","Noto Sans Tamil","Noto Sans Telugu","Noto Sans Thai",arial,Tahoma,verdana,sans-serif);outline:0;box-shadow:none}
input[type=text]::-moz-focus-inner,input[type=submit]::-moz-focus-inner,input[type=button]::-moz-focus-inner,input[type=search]::-moz-focus-inner,input[type=password]::-moz-focus-inner,input[type~=text]::-moz-focus-inner,input[type~=search]::-moz-focus-inner,input[type~=password]::-moz-focus-inner,input[type~=email]::-moz-focus-inner,input.text::-moz-focus-inner,input.search::-moz-focus-inner,.fakeinput::-moz-focus-inner,textarea::-moz-focus-inner,input.big_text::-moz-focus-inner,input.file::-moz-focus-inner,div[contenteditable=true]::-moz-focus-inner{border:0;padding:0}
input[type=text]::-ms-clear,input[type=submit]::-ms-clear,input[type=button]::-ms-clear,input[type=search]::-ms-clear,input[type=password]::-ms-clear,input[type~=text]::-ms-clear,input[type~=search]::-ms-clear,input[type~=password]::-ms-clear,input[type~=email]::-ms-clear,input.text::-ms-clear,input.search::-ms-clear,.fakeinput::-ms-clear,textarea::-ms-clear,input.big_text::-ms-clear,input.file::-ms-clear,div[contenteditable=true]::-ms-clear{display:none}
input.text,input.search,input.big_text,input.dark,.fakeinput,div[contenteditable=true],textarea{background:var(--vkui--color_field_background);-webkit-appearance:none;border-radius:0}
input.text:focus,input.search:focus,input.big_text:focus,input.dark:focus,.fakeinput:focus,div[contenteditable=true]:focus,textarea:focus{border-color:var(--vkui--color_field_border_alpha);outline:0}
input.text:focus::-ms-input-placeholder,input.search:focus::-ms-input-placeholder,input.big_text:focus::-ms-input-placeholder,input.dark:focus::-ms-input-placeholder,.fakeinput:focus::-ms-input-placeholder,div[contenteditable=true]:focus::-ms-input-placeholder,textarea:focus::-ms-input-placeholder{color:var(--gray_300)}
input.text:focus::placeholder,input.search:focus::placeholder,input.big_text:focus::placeholder,input.dark:focus::placeholder,.fakeinput:focus::placeholder,div[contenteditable=true]:focus::placeholder,textarea:focus::placeholder,input.text:focus~.placeholder .ph_content,input.search:focus~.placeholder .ph_content,input.big_text:focus~.placeholder .ph_content,input.dark:focus~.placeholder .ph_content,.fakeinput:focus~.placeholder .ph_content,div[contenteditable=true]:focus~.placeholder .ph_content,textarea:focus~.placeholder .ph_content{color:var(--gray_300)}
input.text::-ms-input-placeholder,input.search::-ms-input-placeholder,input.big_text::-ms-input-placeholder,input.dark::-ms-input-placeholder,.fakeinput::-ms-input-placeholder,div[contenteditable=true]::-ms-input-placeholder,textarea::-ms-input-placeholder{color:var(--vkui--color_text_secondary);-ms-transition:color .2s ease;transition:color .2s ease;padding:1px;opacity:1}
input.text::placeholder,input.search::placeholder,input.big_text::placeholder,input.dark::placeholder,.fakeinput::placeholder,div[contenteditable=true]::placeholder,textarea::placeholder,input.text~.placeholder .ph_content,input.search~.placeholder .ph_content,input.big_text~.placeholder .ph_content,input.dark~.placeholder .ph_content,.fakeinput~.placeholder .ph_content,div[contenteditable=true]~.placeholder .ph_content,textarea~.placeholder .ph_content{color:var(--vkui--color_text_secondary);transition:color .2s ease;padding:1px;opacity:1}
input.text,input.search,input.big_text,input.dark,.fakeinput,div[contenteditable=true],textarea,input.text~.placeholder .ph_input,input.search~.placeholder .ph_input,input.big_text~.placeholder .ph_input,input.dark~.placeholder .ph_input,.fakeinput~.placeholder .ph_input,div[contenteditable=true]~.placeholder .ph_input,textarea~.placeholder .ph_input{color:var(--vkui--color_text_primary);padding:3px 5px;margin:0;border:1px solid var(--vkui--color_field_border_alpha)}
input.text~.placeholder .ph_input,input.search~.placeholder .ph_input,input.big_text~.placeholder .ph_input,input.dark~.placeholder .ph_input,.fakeinput~.placeholder .ph_input,div[contenteditable=true]~.placeholder .ph_input,textarea~.placeholder .ph_input{border-color:transparent;line-height:16px}
input.big_text{height:35px;border-radius:var(--vkui--size_border_radius--regular)}
input.big_text:-ms-input-placeholder{padding-left:12px}
[dir=rtl] input.big_text:-ms-input-placeholder{padding-left:0;padding-right:12px}
input.big_text,input.big_text~.placeholder .ph_input{font-size:14px;padding:6px 12px 8px;box-sizing:border-box}
input.big_text~.placeholder .ph_input{line-height:19px}
input.dark,textarea.dark,.fakeinput.dark,div[contenteditable=true],input.dark~.placeholder .ph_input,textarea.dark~.placeholder .ph_input,.fakeinput.dark~.placeholder .ph_input,div[contenteditable=true]~.placeholder .ph_input{padding:5px 9px 7px;border-radius:var(--vkui--size_border_radius--regular);box-sizing:border-box}
input.dark{height:30px;background-color:var(--vkui--color_field_background)}
input.dark[disabled]{opacity:.4}
input.search{background:var(--white)url(/images/magglass.png)no-repeat 3px 4px;padding-left:17px}
[dir=rtl] input.search{background:var(--white)url(/images/magglass.png)no-repeat right 3px top 4px;padding-left:0;padding-right:17px}
input.file{margin:0}
input.disabled,textarea.disabled{color:var(--gray_500);-webkit-text-fill-color:var(--gray_500);-webkit-opacity:1;background-color:var(--steel_gray_40);border-color:var(--steel_gray_120)}
input.disabled{background-color:var(--vkui--color_field_background);border-color:var(--vkui--color_field_border_alpha);opacity:.4}
#page_header_cont{position:fixed;height:var(--header-height);width:100%;left:0;top:0;z-index:120;direction:ltr}
[dir=rtl] #page_header_cont{left:auto;right:0;direction:rtl}
body.mac #page_header_cont{transform:translateZ(0);border:0}
#page_header_wrap{direction:ltr;height:inherit}
[dir=rtl] #page_header_wrap{direction:rtl}
#page_header{position:relative;height:inherit;margin:0 auto;font-size:12.5px;padding:0 15px;background-color:var(--vkui--color_header_background)}
#page_layout,#page_header{width:var(--layout-width)}
.page_header_wrap,#page_header{max-width:100%}
#page_header_cont{background-color:var(--vkui--color_header_background);border-bottom:1px solid var(--vkui--color_separator_secondary)}
a.unl:hover,a.homelink:hover{text-decoration:underline}
.top_back_link{position:absolute;top:0;left:0;width:200px;display:none!important;padding:12px 10px 15px;height:13px;margin:0;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:var(--vkui--font_text--font_size--compact);color:var(--light_blue_40);text-shadow:0 1px 0 var(--light_blue_700)}
[dir=rtl] .top_back_link{left:auto;right:0}
#page_body{font-size:var(--vkui--font_text--font_size--compact);width:631px;margin-top:var(--header-height)}
#page_body .tickets_header .Post--redesignTextV3 .wall_post_text{font-size:var(--vkui--font_text--font_size--compact)}
#wrap_between{height:0;overflow:hidden}
* html #content{height:1%}
.footer_wrap{line-height:1.36em;padding:26px 0 35px;text-align:center;width:795px;box-sizing:border-box;border-top:1px solid var(--vkui--color_separator_primary);margin-top:40px}
.footer_wrap:empty{padding:var(--page-block-offset, 15px)0 0}
.footer_wrap.simple{margin:0;width:auto;clear:both}
.footer_wrap.simple .footer_links{display:none}
.footer_nav{color:var(--vkui--color_text_subhead);display:flex;justify-content:space-between}
.footer_lang_link{padding:2px 5px}
.footer_lang_link:last-child{padding-right:0}
[dir=rtl] .footer_lang_link:last-child{padding-right:0;padding-left:0}
.footer_bench{padding-top:5px;font-size:11px}
.bnav_a{padding:2px 5px}
.side_bar{width:149px;top:0;z-index:11;position:relative}
.body_im .side_bar,.side_bar.sticky_top_force,.side_bar.sticky_top{position:fixed;position:-webkit-sticky;position:sticky;top:0!important}
.side_bar_inner{z-index:10;width:var(--sidebar-width, 164px);padding:12px 0 10px;margin-top:var(--header-height)}
body.firefox #page_wrap{overflow:visible}
body.body_im.firefox.layers_showing #page_wrap,body.body_im.firefox.layers_shown #page_wrap{overflow:hidden}
.side_bar .inl_bl{vertical-align:baseline}
.side_bar .WideSeparator{margin:22px 8px 0 0;padding-top:14px;border-top:1px solid var(--vkui--color_separator_primary)}
[dir=rtl] .side_bar .WideSeparator{margin:22px 0 0 8px}
.side_bar_nav_wrap{width:inherit;margin:0 0 10px -6px}
[dir=rtl] .side_bar_nav_wrap{margin:0-6px 10px 0}
.side_bar_ol{list-style:none;margin:0;padding:0}
.side_bar_ol.side_bar_ol__mourning{--vkui--color_icon_accent:var(--vkui--color_icon_medium)}
.side_bar_nav_wrap+.WideSeparator{margin-top:12px;padding-top:0}
.side_bar .WideSeparator.WideSeparator--legalRecommendationsLink{margin:14px 8px 14px 0;padding:0}
[dir=rtl] .side_bar .WideSeparator.WideSeparator--legalRecommendationsLink{margin:14px 0 14px 8px}
.left_menu_nav_wrap .ui_actions_menu_icons,[scheme=vkcom_dark] .left_menu_nav_wrap .ui_actions_menu_icons{position:static;display:inline;background:0 0;width:auto;height:auto;top:auto;right:auto}
[dir=rtl] .left_menu_nav_wrap .ui_actions_menu_icons,[dir=rtl] [scheme=vkcom_dark] .left_menu_nav_wrap .ui_actions_menu_icons{right:auto;left:auto}
.clear_fix::after{content:".";display:block;height:0;font-size:0;line-height:0;clear:both;visibility:hidden}
* html .clear_fix{height:1%}
.clear_fix{display:block}
.clear{float:none;clear:both}
.scroll_fix{position:relative;text-align:left}
[dir=rtl] .scroll_fix{text-align:right;direction:rtl}
ol.numbered,ul.listing{padding-left:30px}
[dir=rtl] ol.numbered,[dir=rtl] ul.listing{padding-left:0;padding-right:30px}
ol.numbered li,ul.listing li{padding:4px 0 4px 3px}
[dir=rtl] ol.numbered li,[dir=rtl] ul.listing li{padding:4px 3px 4px 0}
ul.listing li span{color:var(--vkui--color_text_primary)}
#stl_left{display:none;z-index:3;position:fixed;top:0;bottom:0;left:0}
[dir=rtl] #stl_left{left:auto;right:0}
body.mac #stl_left,body.mac #stl_side{transform:translateZ(0)}
#stl_left:hover,#stl_left.over{text-decoration:none;opacity:1}
body.no_stl #stl_bg{display:none}
#stl_left .down{background-position:left -15px}
[dir=rtl] #stl_left .down{background-position:right -15px}
#stl_left .back{background-position:left -30px}
[dir=rtl] #stl_left .back{background-position:right -30px}
#stl_bg{height:100%;width:114px;padding-top:60px;opacity:.5;transition:background-color 200ms linear,opacity 200ms linear}
#stl_side{z-index:10;display:none;position:fixed}
#top_back_link{padding-left:25px;background:url(/images/backlink.gif?4)no-repeat left -85px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:none}
[dir=rtl] #top_back_link{padding-left:0;padding-right:25px;background:url(/images/backlink.gif?4)no-repeat right -85px}
#top_back_link:active{background-position:left -84px}
[dir=rtl] #top_back_link:active{background-position:right -84px}
body.mac #layer_stl .fixed{transform:translateZ(0)}
#layer_bg,#box_layer_bg,#layer_wrap,#box_layer_wrap{top:0;left:0;width:100%;height:100%;z-index:500;overflow:hidden;display:none}
[dir=rtl] #layer_bg,[dir=rtl] #box_layer_bg,[dir=rtl] #layer_wrap,[dir=rtl] #box_layer_wrap{left:auto;right:0}
#box_layer_bg,#box_layer_wrap{z-index:1000}
#box_layer_bg{background:var(--black);opacity:.7}
@-moz-document url-prefix(){#box_layer_bg{background:url(/images/layer_bg_black.png);opacity:1!important}}
#layer_wrap,#box_layer_wrap{overflow:auto}
#layer_wrap{overflow-x:hidden;overflow-y:auto}
#box_layer_wrap.box_layer_hidden,.box_layer_hidden{left:-10000px;top:-10000px;visibility:hidden}
[dir=rtl] #box_layer_wrap.box_layer_hidden,[dir=rtl] .box_layer_hidden{left:auto;right:-10000px}
.quick_login{padding:11px 0 0 0;width:149px}
.quick_login .label{padding:0 0 8px;color:var(--vkui--color_text_subhead);font-size:12.5px;font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}
.quick_login .labeled{padding-bottom:13px}
.quick_login input.dark{width:149px}
.quick_login .forgot{padding-top:16px;text-align:center}
.quick_login .checkbox{padding-bottom:10px;text-align:left;display:none}
[dir=rtl] .quick_login .checkbox{text-align:right}
.quick_login .submit{position:absolute;color:var(--white);border:0;padding:0;margin:0;background:var(--white);top:-8000px}
.quick_login_button{margin-top:2px}
.quick_reg_button{margin-top:10px}
.quick_login--vkid{padding-top:13px}
[scheme=vkcom_dark] .summary_tab_x{filter:invert(1)}
[scheme=vkcom_dark] .summary_tab_sel .summary_tab_x{filter:invert(1)}
ul.t0{width:605px}
ul.t0,ul.t0 li{list-style-type:none;margin:0;padding:0}
ul.t0 li{float:left;text-align:center}
[dir=rtl] ul.t0 li{float:right}
ul.t0 li.active_link a,ul.t0 li.active_link a b,ul.t0 li.active_link a:hover{background:var(--light_blue_500);color:var(--white)}
ul.t0 li a:hover{background:var(--light_blue_80);color:var(--blue_600);text-decoration:none}
ul.t0 a{float:left;padding:0 0 5px;margin-right:5px;text-decoration:none;background-color:var(--white);max-width:250px}
[dir=rtl] ul.t0 a{float:right;margin-right:0;margin-left:5px}
ul.t0 a span.count{color:var(--blue_600);margin-bottom:-1px;padding:0 10px 0 4px;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-style:normal!important;font-size:.9em;display:none}
[dir=rtl] ul.t0 a span.count{padding:0 4px 0 10px}
ul.t0 li.active_link a span.count{color:var(--white)}
ul.t0 li.count a span.count{display:inline-block;vertical-align:baseline}
ul.t0 li.count .tab_word{margin:0 0 0 10px}
[dir=rtl] ul.t0 li.count .tab_word{margin:0 10px 0 0}
ul.t0 .tab_word{margin:0 10px;font-weight:400;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;max-width:230px;display:block;_display:inline;line-height:1.19em;overflow:hidden;text-overflow:ellipsis}
ul.t0 .t_r{float:right;padding-top:5px}
[dir=rtl] ul.t0 .t_r{float:left}
ul.t0 .t_r a{margin:0;padding:0}
ul.t0 .t_r a:hover{text-decoration:underline;background:var(--white)}
ul.t0 li a{outline:0}
ul.t0 li a:hover b.tl1,ul.t0 li a:hover b.tl2{background-color:var(--light_blue_80)}
ul.t0 li.active_link a b.tl1,ul.t0 li.active_link a:hover b.tl1{background-color:var(--light_blue_500);border-width:0 1px}
ul.t0 li.active_link a b.tl1 b,ul.t0 li.active_link a:hover b.tl1 b{display:block;height:1px;background:var(--light_blue_500);overflow:hidden;margin:0;border:1px solid var(--light_blue_300);border-width:0 1px}
ul.t0 li.active_link a b.tl2,ul.t0 li.active_link a:hover b.tl2{background-color:var(--light_blue_500);border-color:var(--light_blue_300)}
body.mac #pg_fixed{transform:translateZ(0)}
div.top_result_header{font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.09em;padding-bottom:5px}
div.top_result_baloon a{color:var(--sky_80);font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
a.ts_contact,a.ts_search_link{position:relative;display:block;white-space:nowrap;overflow:hidden;text-decoration:none}
a.ts_contact.active,a.ts_search_link.active{background:var(--vkui--vkontakte_background_hover_alpha)}
a.ts_search_link_sep{border-bottom:1px solid var(--vkui--color_separator_primary)}
a.ts_contact{height:34px;padding:8px 10px}
a.ts_search_link{height:30px;padding:0 12px;display:flex;align-items:center;color:var(--vkui--vkontakte_color_text_name);font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}
.post_author .page_verified,.post_author .page_top_author,.feed_notifications .page_verified,.feed_notifications .page_top_author,.top_tt_important .page_verified,.top_tt_important .page_top_author,.top_notify_cont .page_verified,.top_notify_cont .page_top_author,.reply_author .page_verified,.reply_author .page_top_author,.ts_cont_wrap .page_verified,.ts_cont_wrap .page_top_author{display:inline-block;margin-left:5px;margin-bottom:-3px;padding:7px 12px 7px 0}
[dir=rtl] .post_author .page_verified,[dir=rtl] .post_author .page_top_author,[dir=rtl] .feed_notifications .page_verified,[dir=rtl] .feed_notifications .page_top_author,[dir=rtl] .top_tt_important .page_verified,[dir=rtl] .top_tt_important .page_top_author,[dir=rtl] .top_notify_cont .page_verified,[dir=rtl] .top_notify_cont .page_top_author,[dir=rtl] .reply_author .page_verified,[dir=rtl] .reply_author .page_top_author,[dir=rtl] .ts_cont_wrap .page_verified,[dir=rtl] .ts_cont_wrap .page_top_author{margin-left:0;margin-right:5px;padding:7px 0 7px 12px}
.mark_top_verified .post_author .page_verified,.mark_top_verified .post_author .page_top_author,.mark_top:not(.mark_top_blocked) .post_author .page_top_author,.mark_verified .post_author .page_verified{display:inline}
.post_author .page_verified,.reply_author .page_verified,.feed_notifications .page_verified,.top_tt_important .page_verified,.top_notify_cont .page_verified,.ts_cont_wrap .page_verified{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2012%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m2.25%206.75%202.25%202.25%205.25-5.25%22%20fill%3D%22none%22%20stroke%3D%22%235c9ce6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E)no-repeat 0 center}
[dir=rtl] .post_author .page_verified,[dir=rtl] .reply_author .page_verified,[dir=rtl] .feed_notifications .page_verified,[dir=rtl] .top_tt_important .page_verified,[dir=rtl] .top_notify_cont .page_verified,[dir=rtl] .ts_cont_wrap .page_verified{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%2012%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m2.25%206.75%202.25%202.25%205.25-5.25%22%20fill%3D%22none%22%20stroke%3D%22%235c9ce6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E)no-repeat 100%center}
.ts_cont_wrap .page_verified{top:1px}
body[data-useragent=safari] .verified_label-inline .page_verified.page_verified-icon svg{position:relative;bottom:1px}
.post_author .page_top_author,.reply_author .page_top_author,.feed_notifications .page_top_author,.top_tt_important .page_top_author,.top_notify_cont .page_top_author,.ts_cont_wrap .page_top_author{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2214%22%20viewBox%3D%220%200%2011%2014%22%20width%3D%2211%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate\(-1\)%22%3E%3Cpath%20d%3D%22m0%200h14v14h-14z%22%2F%3E%3Cpath%20d%3D%22m6.02327945.03752809c-.20932086.15807863-.37794372.28356305-.50586859.37645327-3.30598031%202.4005748-4.50349111%205.7963721-4.51741086%208.20881376%200%203.18649178%202.35697401%205.37720488%205.49960602%205.37720488%203.14263202%200%205.46035758-2.1911016%205.49960598-5.37720488.0109471-.88866226-.0651226-2.95481489-2.01006066-5.42328497-.55461396-.70390312-1.02977722-1.1860891-1.42548978-1.44655795l-.00001986.00003016c-.09282351-.06109897-.21760234-.03538116-.27870132.05744235-.02554479.03880846-.03687232.08526121-.03205962.13147237.02228026.21393295.05032014.479791.08411964.79757416.18889737%201.7760144-.69393499%202.59883823-1.90078883%202.41718393-1.16682835-.17562971-1.92680483-1.8099876-.19640853-4.52896058.05278827-.08294625.09601147-.20688774.12966958-.37182445l.00004951.0000101c.02416152-.11840006-.0522339-.23396905-.17063396-.25813058-.06153233-.01255671-.12549366.00193165-.17560872.03977843z%22%20fill%3D%22%23f05c44%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);margin-bottom:-2px}
.mark_top_verified .post_author .page_top_author.page_verified,.mark_top_verified .reply_author .page_top_author.page_verified,.mark_top_verified .feed_notifications .page_top_author.page_verified,.mark_top_verified .top_tt_important .page_top_author.page_verified,.mark_top_verified .top_notify_cont .page_top_author.page_verified,.mark_top_verified .ts_cont_wrap .page_top_author.page_verified{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2214%22%20viewBox%3D%220%200%2011%2014%22%20width%3D%2211%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate\(-1\)%22%3E%3Cpath%20d%3D%22m0%200h14v14h-14z%22%2F%3E%3Cpath%20d%3D%22m6.02327945.03752809c-.20932086.15807863-.37794372.28356305-.50586859.37645327-3.30598031%202.4005748-4.50349111%205.7963721-4.51741086%208.20881376%200%203.18649178%202.35697401%205.37720488%205.49960602%205.37720488%203.14263202%200%205.46035758-2.1911016%205.49960598-5.37720488.0109471-.88866226-.0651226-2.95481489-2.01006066-5.42328497-.55461396-.70390312-1.02977722-1.1860891-1.42548978-1.44655795l-.00001986.00003016c-.09282351-.06109897-.21760234-.03538116-.27870132.05744235-.02554479.03880846-.03687232.08526121-.03205962.13147237.02228026.21393295.05032014.479791.08411964.79757416.18889737%201.7760144-.69393499%202.59883823-1.90078883%202.41718393-1.16682835-.17562971-1.92680483-1.8099876-.19640853-4.52896058.05278827-.08294625.09601147-.20688774.12966958-.37182445l.00004951.0000101c.02416152-.11840006-.0522339-.23396905-.17063396-.25813058-.06153233-.01255671-.12549366.00193165-.17560872.03977843z%22%20fill%3D%22%23f05c44%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22m4.25%208.75%201.75%201.75%203-3%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.3%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)}
.ts_cont_wrap .page_top_author{top:1px}
.wide_column{position:relative;width:100%}
.narrow_column_wrap{position:relative;width:var(--narrow-column-width, 230px)}
.narrow_column{width:var(--narrow-column-width, 230px)}
.narrow_column.fixed{z-index:3}
.narrow_column .PageBlock:last-child{margin-bottom:0}
body.mac .narrow_column.fixed{transform:translateZ(0)}
.wide_column_left .wide_column_wrap{margin-right:calc(var(--narrow-column-width, 230px) + var(--page-block-offset, 15px))}
[dir=rtl] .wide_column_left .wide_column_wrap{margin-right:0;margin-left:calc(var(--narrow-column-width, 230px) + var(--page-block-offset, 15px))}
.wide_column_left .wide_column{float:left}
[dir=rtl] .wide_column_left .wide_column{float:right}
.wide_column_left .narrow_column_wrap{float:right}
[dir=rtl] .wide_column_left .narrow_column_wrap{float:left}
[scheme=vkcom_dark] .round_spinner_big{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23939393%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A)}
[scheme=vkcom_dark] .round_spinner{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23939393%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A)}
[scheme=vkcom_dark] .round_spinner_small{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23939393%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A)}
@keyframes round_spinner{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}
.flat_button.ui_load_more_btn{padding:13px 0 14px;display:block;cursor:pointer;color:var(--vkui--color_text_link);background-color:inherit;border-top:1px solid var(--vkui--color_separator_primary);border-radius:0 0 var(--vkui--size_border_radius--regular) var(--vkui--size_border_radius--regular);transition:background-color 40ms linear}
.page_block .flat_button.ui_load_more_btn{border-radius:0 0 var(--vkui--size_border_radius_paper--regular) var(--vkui--size_border_radius_paper--regular)}
.flat_button.ui_load_more_btn:hover{background-color:var(--vkui--vkontakte_background_hover_alpha)}
.flat_button.ui_load_more_btn.smaller{padding:10px 0 11px}
.flat_button.ui_load_more_btn.box_bottom_btn{margin:20px -25px -20px}
.flat_button.ui_load_more_btn.without_hover:hover{background-color:transparent;text-decoration:underline}
.flat_button.ui_load_more_btn.with_arrow::after{margin-left:2px;display:inline-block;content:"";background:url(/images/icons/search_arrow.png)no-repeat 0 0;height:11px;width:6px;vertical-align:middle}
[dir=rtl] .flat_button.ui_load_more_btn.with_arrow::after{margin-left:0;margin-right:2px;background:url(/images/icons/search_arrow.png)no-repeat 100%0}
@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.flat_button.ui_load_more_btn.with_arrow::after{background-image:url(/images/icons/search_arrow_2x.png);background-size:6px 10px}}
.flat_button.ui_load_more_btn.flat_btn_lock.with_arrow::after{display:none!important}
.flat_button.ui_load_more_btn .ui_load_more_btn_label{display:inline-block;overflow:hidden;max-width:100%;vertical-align:top;text-overflow:ellipsis;box-sizing:border-box}
.flat_button.ui_load_more_btn.with_arrow .ui_load_more_btn_label{padding:0 28px;margin:0-28px}
.flat_button.ui_load_more_btn.with_arrow.box_bottom_btn .ui_load_more_btn_label{padding:0 33px;margin:0-33px}
button.ui_load_more_btn{width:100%}
.hidden_override{display:none!important}
#top_audio_layer_place{display:inline-block;position:relative;top:1px}
.visually-hidden{position:absolute!important;clip:rect(1px,1px,1px,1px);padding:0!important;border:0!important;height:1px!important;width:1px!important;overflow:hidden}
:root{--azure_a100:#0077ff;--azure_300:#397dcc;--azure_a400:#2a6fbd;--azure_a500:#2363aa;--black:#000000;--black_alpha4:rgba(0, 0, 0, 0.04);--black_alpha8:rgba(0, 0, 0, 0.08);--black_alpha12:rgba(0, 0, 0, 0.12);--black_alpha16:rgba(0, 0, 0, 0.16);--black_alpha24:rgba(0, 0, 0, 0.24);--black_alpha36:rgba(0, 0, 0, 0.36);--black_alpha40:rgba(0, 0, 0, 0.40);--black_alpha48:rgba(0, 0, 0, 0.48);--black_alpha56:rgba(0, 0, 0, 0.56);--black_alpha72:rgba(0, 0, 0, 0.72);--black_alpha88:rgba(0, 0, 0, 0.88);--black_blue10:#000c1a;--black_blue24:#001c3d;--black_blue24_alpha8:rgba(0, 28, 61, 0.08);--black_blue24_alpha24:rgba(0, 28, 61, 0.24);--black_blue30_alpha66:rgba(0, 36, 77, 0.66);--black_blue45_alpha10:rgba(0, 57, 115, 0.10);--blue_400:#5181b8;--blue_a400:#447bba;--blue_400_alpha20:rgba(81, 129, 184, 0.20);--blue_400_alpha48:rgba(81, 129, 184, 0.49);--blue_420:#4a76a8;--blue_550:#346297;--blue_600:#2a5885;--blue_640:#224b7a;--blue_800:#1d3a5c;--blue_980_alpha12:rgba(0, 20, 51, 0.12);--blue_bright:#5c9ce6;--brown_gold:#9e8f72;--brown_light:#c2b79f;--gold_200:#f4e7c3;--gold_250:#e3d3ac;--gold_300:#d1c097;--gold_400:#ab9871;--gold_500:#857250;--gray_20:#f9f9f9;--gray_40:#f5f5f5;--gray_70:#555555;--gray_100:#e1e3e6;--gray_100_alpha60:rgba(225, 227, 230, 0.60);--gray_200:#cccccc;--gray_300:#b2b2b2;--gray_400:#939393;--gray_500:#828282;--gray_600:#656565;--gray_700:#555555;--gray_700_alpha60:rgba(85, 85, 85, 0.60);--gray_750:#424242;--gray_800:#333333;--gray_800_alpha72:rgba(51, 51, 51, 0.72);--gray_800_alpha88:rgba(51, 51, 51, 0.88);--gray_850:#292929;--gray_900:#222222;--gray_900_alpha16:rgba(34, 34, 34, 0.16);--gray_900_alpha72:rgba(34, 34, 34, 0.72);--gray_900_alpha88:rgba(34, 34, 34, 0.88);--gray_940:#141414;--gray_960:#0a0a0a;--green_alpha16:rgba(75, 179, 75, 0.16);--green_350:#4bb34b;--green_400:#43a843;--green_600:#1b7a1b;--green_light:#def0d3;--green_nice:#3dcc4b;--light_blue_40:#e5ebf1;--light_blue_40_alpha72:rgba(229, 235, 241, 0.72);--light_blue_80:#dfe6ed;--light_blue_100:#dae2ea;--light_blue_300:#9eb4c8;--light_blue_400:#7996b2;--light_blue_500:#577ca1;--light_blue_700:#45688e;--light_blue_A300:#8fadc8;--neon_pink:#f45fff;--orange:#ffa000;--orange_tint:#f9b54f;--orange_light:#ffc062;--orange_fire:#f05c44;--orange_prominent:#ff724c;--raspberry_pink:#e03fab;--raspberry_pink_light:#f060c0;--purple:#735ce6;--purple_light:#937ff5;--pink:#e6457a;--pink_light:#faebeb;--red:#e64646;--red_alpha16:rgba(230, 70, 70, 0.16);--red_alpha12:rgba(230, 70, 70, 0.12);--red_dark:#db3b3b;--red_light:#ff5c5c;--red_nice:#ff3347;--sky_60:#cce9ff;--sky_80:#b2deff;--sky_100:#99d3ff;--sky_200:#70c1ff;--sky_300:#71aaeb;--steel_gray_10:#fafbfc;--steel_gray_20:#f7f8fa;--steel_gray_40:#f0f2f5;--steel_gray_50:#eeeff1;--steel_gray_60:#edeef0;--steel_gray_80:#e7e8ec;--steel_gray_100:#dce1e6;--steel_gray_120:#d3d9de;--steel_gray_140:#c5d0db;--steel_gray_200:#aeb7c2;--steel_gray_200_alpha12:rgba(174, 183, 194, 0.12);--steel_gray_200_alpha16:rgba(174, 183, 194, 0.16);--steel_gray_300:#99a2ad;--steel_gray_400:#818c99;--steel_gray_500:#6f7985;--steel_gray_540:#626d7a;--steel_gray_600:#4e5966;--steel_gray_A540:#55677d;--steel_gray_A540_alpha64:rgba(85, 103, 125, 0.64);--transparent_black:rgba(0, 0, 0, 0.00);--transparent_white:rgba(255, 255, 255, 0.00);--turquoise:#63b9ba;--violet:#792ec0;--violet_dark:#1f1b2c;--violet_light:#a393f5;--violet_muted:#4b4d61;--white:#ffffff;--white_alpha72:rgba(255, 255, 255, 0.72);--white_alpha64:rgba(255, 255, 255, 0.64);--white_alpha48:rgba(255, 255, 255, 0.48);--white_alpha40:rgba(255, 255, 255, 0.40);--white_alpha24:rgba(255, 255, 255, 0.24);--white_alpha16:rgba(255, 255, 255, 0.16);--white_alpha12:rgba(255, 255, 255, 0.12);--white_alpha8:rgba(255, 255, 255, 0.08);--white_alpha4:rgba(255, 255, 255, 0.04);--white_blue20:#cce4ff;--white_blue32:#add3ff;--yellow:#ffc107;--yellow_light:#faefd2;--yellow_alpha16:rgba(255, 202, 99, 0.16);--yellow_overlight:#fff2d6;--lavender_100:#e6e9ff;--lavender_200:#ccd3ff;--lavender_300:#adb8ff;--lavender_700:#5965b3;--lavender_800:#404980;--lavender_900:#262b4d}
:root{--palette-vk-font:-apple-system, BlinkMacSystemFont, Roboto, Open Sans, Helvetica Neue, 'Noto Sans Armenian', 'Noto Sans Bengali', 'Noto Sans Cherokee', 'Noto Sans Devanagari', 'Noto Sans Ethiopic', 'Noto Sans Georgian', 'Noto Sans Hebrew', 'Noto Sans Kannada', 'Noto Sans Khmer', 'Noto Sans Lao', 'Noto Sans Osmanya', 'Noto Sans Tamil', 'Noto Sans Telugu', 'Noto Sans Thai', sans-serif}
@keyframes fadeIn{0%{opacity:0}to{opacity:100%}}
[scheme=vkcom_dark] .EditableLabel::after,[scheme=vkcom_dark] .EditableLabel:hover::after,[scheme=vkcom_dark] .EditableLabel--editing::after{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20d%3D%22M7.5%202.2l2.4%202.4-5.7%205.7c-.5.5-1.1.9-1.8%201.1l-2.1.6c-.1%200-.3%200-.3-.2v-.1l.6-1.9c.2-.7.6-1.3%201.1-1.8l5.8-5.8zm.7-.7l1.2-1.2c.4-.4%201-.4%201.4%200l.9.9c.4.4.4%201%200%201.4l-1.2%201.2-2.3-2.3z%22%20fill%3D%22%23828282%22%2F%3E%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .EditableLabel__save{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%2371AAEB%22%20d%3D%22M10%2016c-.3%200-.5-.1-.7-.3l-3.5-3.5c-.4-.4-.4-1%200-1.4s1-.4%201.4%200l2.8%202.8%206.3-6.3c.4-.4%201-.4%201.4%200s.4%201%200%201.4l-7%207c-.2.2-.4.3-.7.3z%22%2F%3E%3C%2Fsvg%3E)center no-repeat}
@keyframes ModalPreloaderAnimation{0%{opacity:.2}30%{opacity:1}to{opacity:.2}}
@keyframes Progress__highlight{0%{opacity:.2}30%{opacity:1}to{opacity:.2}}
@keyframes rotator{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}
body{--vkui--size_border_radius--regular:8px;--vkui--size_border_radius_paper--regular:12px;--vkui--size_check_border_radius--regular:4px;--vkui--size_button_large_height--regular:44px;--vkui--size_button_large_height--compact:36px;--vkui--size_button_medium_height--regular:36px;--vkui--size_button_medium_height--compact:32px;--vkui--size_button_small_height--regular:30px;--vkui--size_button_small_height--compact:28px;--wide-column-width:550px;--narrow-column-width:230px;--boxes-box-shadow:0 2px 10px var(--black_alpha40);--online-badge-background:var(--vkui--color_background_content);--page-block-shadow:0 1px 0 0 var(--vkui--color_separator_primary), 0 0 0 1px var(--vkui--color_separator_secondary);--page-block-offset:15px;--page-block-header-height:54px;--page-block-header-button-margin-top:14px;--page-block-header-font-size:16px;--h2-font-size:16px}
body.redesign_web{--narrow-column-width:345px;--page-block-shadow:0 0 0 var(--vkui--size_border--regular) var(--vkui--color_separator_primary);--page-block-offset:16px;--page-block-header-height:62px;--page-block-header-button-margin-top:17px;--page-block-header-font-size:15px;--h2-font-size:15px}
body.redesign_web_legacy_width{--narrow-column-width:230px;--page-block-offset:15px}
:root,[scheme=vkcom_light],.vkui--vkBase--light,.vkui--vkCom--light{--vkui--theme_name:'vkontakteCom';--vkui--theme_name_base:'vkontakteCom';--vkui--gradient_black:rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 15%, rgba(0, 0, 0, 0.08) 30%, rgba(0, 0, 0, 0.32) 70%, rgba(0, 0, 0, 0.38) 85%, rgba(0, 0, 0, 0.4) 100%;--vkui--gradient_white:rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 15%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0.95) 85%, rgba(255, 255, 255, 1) 100%;--vkui--gradient_tint:rgba(249, 249, 249, 0) 0%, rgba(249, 249, 249, 0.05) 15%, rgba(249, 249, 249, 0.2) 30%, rgba(249, 249, 249, 0.8) 70%, rgba(249, 249, 249, 0.95) 85%, rgba(249, 249, 249, 1) 100%;--vkui--gradient:rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 15%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0.95) 85%, rgba(255, 255, 255, 1) 100%;--vkui--elevation1:0px 0px 2px rgba(0, 0, 0, 0.03), 0px 2px 2px rgba(0, 0, 0, 0.06);--vkui--elevation1_invert_y:0px 0px 2px rgba(0, 0, 0, 0.03), 0px -2px 2px rgba(0, 0, 0, 0.06);--vkui--elevation2:0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 4px rgba(0, 0, 0, 0.06);--vkui--elevation3:0px 0px 2px rgba(0, 0, 0, 0.08), 0px 4px 16px rgba(0, 0, 0, 0.08);--vkui--elevation4:0px 0px 8px rgba(0, 0, 0, 0.12), 0px 16px 16px rgba(0, 0, 0, 0.16);--vkui--font_family_fallbacks:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_family_accent:"VK Sans Display", -apple-system, system-ui, "Helvetica Neue", Roboto, sans-serif;--vkui--font_family_base:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_weight_accent1:600;--vkui--font_weight_accent2:500;--vkui--font_weight_accent3:400;--vkui--font_weight_base1:600;--vkui--font_weight_base2:500;--vkui--font_weight_base3:400;--vkui--font_display_title1--font_size--regular:23px;--vkui--font_display_title1--line_height--regular:28px;--vkui--font_display_title1--font_family--regular:"VK Sans Display", -apple-system, system-ui, "Helvetica Neue", Roboto, sans-serif;--vkui--font_display_title1--font_weight--regular:600;--vkui--font_display_title2--font_size--regular:21px;--vkui--font_display_title2--line_height--regular:26px;--vkui--font_display_title2--font_family--regular:"VK Sans Display", -apple-system, system-ui, "Helvetica Neue", Roboto, sans-serif;--vkui--font_display_title2--font_weight--regular:600;--vkui--font_display_title2--font_size--compact:22px;--vkui--font_display_title2--line_height--compact:24px;--vkui--font_display_title2--font_family--compact:"VK Sans Display", -apple-system, system-ui, "Helvetica Neue", Roboto, sans-serif;--vkui--font_display_title2--font_weight--compact:600;--vkui--font_display_title3--font_size--regular:19px;--vkui--font_display_title3--line_height--regular:24px;--vkui--font_display_title3--font_family--regular:"VK Sans Display", -apple-system, system-ui, "Helvetica Neue", Roboto, sans-serif;--vkui--font_display_title3--font_weight--regular:600;--vkui--font_display_title4--font_size--regular:17px;--vkui--font_display_title4--line_height--regular:22px;--vkui--font_display_title4--font_family--regular:"VK Sans Display", -apple-system, system-ui, "Helvetica Neue", Roboto, sans-serif;--vkui--font_display_title4--font_weight--regular:600;--vkui--font_title1--font_size--regular:24px;--vkui--font_title1--line_height--regular:28px;--vkui--font_title1--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_title1--font_weight--regular:600;--vkui--font_title2--font_size--regular:20px;--vkui--font_title2--line_height--regular:24px;--vkui--font_title2--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_title2--font_weight--regular:600;--vkui--font_title3--font_size--regular:17px;--vkui--font_title3--line_height--regular:22px;--vkui--font_title3--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_title3--font_weight--regular:600;--vkui--font_headline1--font_size--regular:16px;--vkui--font_headline1--line_height--regular:20px;--vkui--font_headline1--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_headline1--font_weight--regular:500;--vkui--font_headline1--font_size--compact:14px;--vkui--font_headline1--line_height--compact:18px;--vkui--font_headline2--font_size--regular:15px;--vkui--font_headline2--line_height--regular:20px;--vkui--font_headline2--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_headline2--font_weight--regular:500;--vkui--font_headline2--font_size--compact:14px;--vkui--font_headline2--line_height--compact:20px;--vkui--font_text--font_size--regular:16px;--vkui--font_text--line_height--regular:20px;--vkui--font_text--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_text--font_weight--regular:400;--vkui--font_text--font_size--compact:13px;--vkui--font_text--line_height--compact:16px;--vkui--font_paragraph--font_size--regular:15px;--vkui--font_paragraph--line_height--regular:20px;--vkui--font_paragraph--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_paragraph--font_weight--regular:400;--vkui--font_subhead--font_size--regular:14px;--vkui--font_subhead--line_height--regular:18px;--vkui--font_subhead--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_subhead--font_weight--regular:400;--vkui--font_subhead--font_size--compact:14px;--vkui--font_subhead--line_height--compact:18px;--vkui--font_footnote--font_size--regular:13px;--vkui--font_footnote--line_height--regular:16px;--vkui--font_footnote--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_footnote--font_weight--regular:400;--vkui--font_footnote_caps--font_size--regular:13px;--vkui--font_footnote_caps--line_height--regular:16px;--vkui--font_footnote_caps--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_footnote_caps--font_weight--regular:400;--vkui--font_footnote_caps--text_transform--regular:uppercase;--vkui--font_caption1--font_size--regular:12px;--vkui--font_caption1--line_height--regular:14px;--vkui--font_caption1--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_caption1--font_weight--regular:400;--vkui--font_caption1_caps--font_size--regular:12px;--vkui--font_caption1_caps--line_height--regular:14px;--vkui--font_caption1_caps--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_caption1_caps--font_weight--regular:600;--vkui--font_caption1_caps--text_transform--regular:uppercase;--vkui--font_caption2--font_size--regular:11px;--vkui--font_caption2--line_height--regular:14px;--vkui--font_caption2--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_caption2--font_weight--regular:400;--vkui--font_caption2_caps--font_size--regular:11px;--vkui--font_caption2_caps--line_height--regular:14px;--vkui--font_caption2_caps--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_caption2_caps--font_weight--regular:600;--vkui--font_caption2_caps--text_transform--regular:uppercase;--vkui--font_caption3--font_size--regular:9px;--vkui--font_caption3--line_height--regular:12px;--vkui--font_caption3--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_caption3--font_weight--regular:400;--vkui--font_caption3_caps--font_size--regular:9px;--vkui--font_caption3_caps--line_height--regular:12px;--vkui--font_caption3_caps--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_caption3_caps--font_weight--regular:600;--vkui--font_caption3_caps--text_transform--regular:uppercase;--vkui--size_select_icon_padding--regular:6px;--vkui--size_select_icon_padding--compact:7px;--vkui--size_popup_base_padding--regular:32px;--vkui--size_popup_base_padding--compact:20px;--vkui--size_popup_header_padding--regular:24px;--vkui--size_popup_header_padding--compact:16px;--vkui--size_label_horizontal_margin--regular:16px;--vkui--size_border_radius--regular:8px;--vkui--size_border_radius_rounded--regular:48px;--vkui--size_check_border_radius--regular:4px;--vkui--size_border_radius_paper--regular:12px;--vkui--size_border_radius_promo--regular:20px;--vkui--size_field_height--regular:44px;--vkui--size_field_height--compact:36px;--vkui--size_search_height--regular:36px;--vkui--size_search_height--compact:32px;--vkui--size_button_large_height--regular:44px;--vkui--size_button_large_height--compact:36px;--vkui--size_button_medium_height--regular:36px;--vkui--size_button_medium_height--compact:32px;--vkui--size_button_small_height--regular:30px;--vkui--size_button_small_height--compact:28px;--vkui--size_checkbox--regular:16px;--vkui--size_arrow--regular:8px;--vkui--size_arrow_promo--regular:40px;--vkui--size_popup_small--regular:448px;--vkui--size_popup_medium--regular:680px;--vkui--size_popup_large--regular:880px;--vkui--size_field_horizontal_padding--regular:12px;--vkui--size_button_padding_horizontal--regular:12px;--vkui--size_arrow_padding--regular:12px;--vkui--size_tooltip_margin--regular:8px;--vkui--size_icon_u_i--regular:16px;--vkui--size_avatar_x_s--regular:24px;--vkui--size_avatar_s--regular:32px;--vkui--size_avatar_m--regular:48px;--vkui--size_avatar_l--regular:96px;--vkui--size_avatar_x_l--regular:128px;--vkui--size_badge_x_s--regular:12px;--vkui--size_badge_s--regular:16px;--vkui--size_badge_m--regular:24px;--vkui--size_badge_l--regular:44px;--vkui--size_badge_x_l--regular:56px;--vkui--size_cardgrid_padding--regular:8px;--vkui--size_card_border_radius--regular:8px;--vkui--size_cardgrid_padding_vertical--regular:8px;--vkui--size_base_padding_horizontal--regular:12px;--vkui--size_base_padding_vertical--regular:12px;--vkui--size_button_group_gap_space--regular:1px;--vkui--size_button_group_gap_small--regular:8px;--vkui--size_button_group_gap_medium--regular:12px;--vkui--size_option_hierarchy--regular:32px;--vkui--size_switch_height--regular:10px;--vkui--size_switch_height--compact:10px;--vkui--size_switch_width--regular:27px;--vkui--size_switch_width--compact:27px;--vkui--size_switch_pin--regular:16px;--vkui--size_switch_pin--compact:16px;--vkui--size_panel_header_height--compact:48px;--vkui--size_panel_header_height--regular:48px;--vkui--size_button_base_small_padding_horizontal--regular:16px;--vkui--size_button_base_medium_padding_horizontal--regular:16px;--vkui--size_button_base_large_padding_horizontal--regular:20px;--vkui--size_button_base_small_padding_horizontal_icon--regular:12px;--vkui--size_button_base_medium_padding_horizontal_icon--regular:12px;--vkui--size_button_base_large_padding_horizontal_icon--regular:16px;--vkui--size_button_tertiary_small_padding_horizontal--regular:12px;--vkui--size_button_tertiary_medium_padding_horizontal--regular:12px;--vkui--size_button_tertiary_large_padding_horizontal--regular:16px;--vkui--size_button_tertiary_small_padding_horizontal_icon--regular:8px;--vkui--size_button_tertiary_medium_padding_horizontal_icon--regular:8px;--vkui--size_button_tertiary_large_padding_horizontal_icon--regular:12px;--vkui--size_button_minimum_width--regular:80px;--vkui--size_form_item_padding_vertical--regular:8px;--vkui--size_split_col_padding_horizontal--regular:16px;--vkui--size_subnavigation_bar_gap--regular:8px;--vkui--size_subnavigation_bar_padding_vertical--regular:12px;--vkui--size_border1x--regular:1px;--vkui--size_border2x--regular:0.5px;--vkui--size_border3x--regular:0.33px;--vkui--spacing_size_3xs:2px;--vkui--spacing_size_2xs:2px;--vkui--spacing_size_xs:4px;--vkui--spacing_size_s:6px;--vkui--spacing_size_m:8px;--vkui--spacing_size_l:10px;--vkui--spacing_size_xl:12px;--vkui--spacing_size_2xl:16px;--vkui--spacing_size_3xl:20px;--vkui--spacing_size_4xl:24px;--vkui--animation_duration_l:0.4s;--vkui--animation_duration_m:0.2s;--vkui--animation_duration_s:0.1s;--vkui--animation_easing_default:cubic-bezier(0.3, 0.3, 0.5, 1);--vkui--animation_easing_platform:cubic-bezier(0.4, 0, 0.2, 1);--vkui--opacity_disable:0.4;--vkui--opacity_disable_accessibility:0.64;--vkui--z_index_modal:99;--vkui--z_index_popout:100;--vkui--theme_inherits_from:'vkCom';--vkui--vkontakte_gradient_aquamarine_blue:#7df1fa, #2bb4d6;--vkui--vkontakte_gradient_blue:#66ccff, #3f8ae0;--vkui--vkontakte_gradient_candy:#ff99cc, #e52e6a;--vkui--vkontakte_gradient_crimson:#ff7373, #e53949, #bf1c38;--vkui--vkontakte_gradient_disco:#ffb726, #ff2693, #8122e0, #2693ff;--vkui--vkontakte_gradient_emerald:#00d948, #0d8046;--vkui--vkontakte_gradient_gray:#c1cad6, #878f99;--vkui--vkontakte_gradient_green:#6cd97e, #12b312;--vkui--vkontakte_gradient_lagoon:#2bd9d9, #5c9ce6;--vkui--vkontakte_gradient_lavender:#928fff, #4b47b2;--vkui--vkontakte_gradient_marine:#2ee54d, #0d7eff;--vkui--vkontakte_gradient_midnight:#73d0ff, #3885e1, #0032a6;--vkui--vkontakte_gradient_orange:#ffbf80, #e66b2e;--vkui--vkontakte_gradient_pink:#ff8880, #e62e6b;--vkui--vkontakte_gradient_purple:#a393f5, #735ce6;--vkui--vkontakte_gradient_raspberry_pink:#ff80d5, #e645b1;--vkui--vkontakte_gradient_red:#ff7583, #e62e40;--vkui--vkontakte_gradient_retrowave:#30f2b1, #5967ff, #ff26a5;--vkui--vkontakte_gradient_sunset:#ffd24d, #f26549, #e62e6b;--vkui--vkontakte_gradient_turquoise:#8ae6e6, #12b3b3;--vkui--vkontakte_gradient_twilight:#ff4d87, #9f40ff, #3399ff;--vkui--vkontakte_gradient_unicorn:#ff99cc, #a179f2, #5ca1e6;--vkui--vkontakte_gradient_violet:#d3a6ff, #903fe0;--vkui--vkontakte_gradient_yellow:#ffc44d, #f07300;--vkui--vkontakte_gradient_yellow_bright:#ffd54f, #e7a902;--vkui--vkontakte_gradient_halloween_orange:#cb1e3b, #f05c44, #ffa000;--vkui--vkontakte_gradient_halloween_violet:#ffa000, #cd4c4b, #792ec0;--vkui--vkontakte_gradient_new_year:#bb64e4, #805bd7, #2866d5;--vkui--vkontakte_gradient_frost:#4fa0ff, #016cea;--vkui--vkontakte_gradient_valentine:#ff8a65, #f25383, #8f13db;--vkui--vkontakte_gradient_warm_valentine:#f3386a, #ff819e;--vkui--vkontakte_gradient_sberkot:#9df19d, #31c2a7, #21a19a, #107f8c;--vkui--vkontakte_gradient_mable:#d9f4ff, #d9f4ff;--vkui--vkontakte_gradient_womens_day:#ff99cc, #e52e6a;--vkui--font_headline--font_size--regular:16px;--vkui--font_headline--line_height--regular:20px;--vkui--font_headline--font_family--regular:-apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;--vkui--font_headline--font_weight--regular:500;--vkui--font_headline--font_size--compact:14px;--vkui--font_headline--line_height--compact:18px;--vkui--colors_scheme:light;--vkui--color_background_accent:#447bba;--vkui--color_background_accent--hover:#4177b5;--vkui--color_background_accent--active:#3f72b0;--vkui--color_background_accent_themed:#447bba;--vkui--color_background_accent_themed--hover:#4177b5;--vkui--color_background_accent_themed--active:#3f72b0;--vkui--color_background_accent_themed_alpha:rgba(68, 123, 186, 0.12);--vkui--color_background_accent_themed_alpha--hover:rgba(68, 123, 186, 0.16);--vkui--color_background_accent_themed_alpha--active:rgba(68, 123, 186, 0.2);--vkui--color_background_accent_tint:#5a9eff;--vkui--color_background_accent_tint--hover:#5698f7;--vkui--color_background_accent_tint--active:#5393ef;--vkui--color_background_accent_alternative:#447bba;--vkui--color_background_accent_alternative--hover:#4177b5;--vkui--color_background_accent_alternative--active:#3f72b0;--vkui--color_background:#edeef0;--vkui--color_background--hover:#e4e5e9;--vkui--color_background--active:#dadce2;--vkui--color_background_content:#ffffff;--vkui--color_background_content--hover:#f5f5f7;--vkui--color_background_content--active:#ebecef;--vkui--color_background_secondary:#f0f2f5;--vkui--color_background_secondary--hover:#e6e9ee;--vkui--color_background_secondary--active:#dde0e6;--vkui--color_background_secondary_alpha:rgba(235, 242, 250, 0.99);--vkui--color_background_secondary_alpha--hover:rgba(223, 234, 246, 0.99);--vkui--color_background_secondary_alpha--active:rgba(213, 226, 241, 0.99);--vkui--color_background_tertiary:#fafbfc;--vkui--color_background_tertiary--hover:#f0f2f4;--vkui--color_background_tertiary--active:#e6e8ed;--vkui--color_background_tertiary_alpha:rgba(0, 0, 0, 0.03);--vkui--color_background_tertiary_alpha--hover:rgba(0, 0, 0, 0.07);--vkui--color_background_tertiary_alpha--active:rgba(0, 0, 0, 0.11);--vkui--color_background_contrast:#ffffff;--vkui--color_background_contrast--hover:#f5f5f7;--vkui--color_background_contrast--active:#ebecef;--vkui--color_background_contrast_secondary_alpha:rgba(255, 255, 255, 0.20);--vkui--color_background_contrast_secondary_alpha--hover:rgba(255, 255, 255, 0.24);--vkui--color_background_contrast_secondary_alpha--active:rgba(255, 255, 255, 0.28);--vkui--color_background_contrast_inverse:#333333;--vkui--color_background_contrast_inverse--hover:#313233;--vkui--color_background_contrast_inverse--active:#2f3034;--vkui--color_background_contrast_themed:#ffffff;--vkui--color_background_contrast_themed--hover:#f5f5f7;--vkui--color_background_contrast_themed--active:#ebecef;--vkui--color_background_modal:#ffffff;--vkui--color_background_modal--hover:#f5f5f7;--vkui--color_background_modal--active:#ebecef;--vkui--color_background_modal_inverse:#2d2d2e;--vkui--color_background_modal_inverse--hover:#2b2c2f;--vkui--color_background_modal_inverse--active:#292b2f;--vkui--color_background_positive:#4bb34b;--vkui--color_background_positive--hover:#48ac4a;--vkui--color_background_positive--active:#45a64a;--vkui--color_background_positive_tint:#e8f9e8;--vkui--color_background_positive_tint--hover:#dff0e1;--vkui--color_background_positive_tint--active:#d5e6da;--vkui--color_background_warning:#fff2d6;--vkui--color_background_warning--hover:#f5e9d0;--vkui--color_background_warning--active:#ebe0ca;--vkui--color_background_negative:#e64646;--vkui--color_background_negative--hover:#dd4446;--vkui--color_background_negative--active:#d44245;--vkui--color_background_negative_tint:#faebeb;--vkui--color_background_negative_tint--hover:#f0e2e4;--vkui--color_background_negative_tint--active:#e6d9dd;--vkui--color_background_info_tint:#deeeff;--vkui--color_background_info_tint--hover:#d5e5f7;--vkui--color_background_info_tint--active:#ccdcef;--vkui--color_field_background:#f7f8fa;--vkui--color_field_background--hover:#edeff2;--vkui--color_field_background--active:#e3e5eb;--vkui--color_header_background:#ffffff;--vkui--color_header_background--hover:#f5f5f7;--vkui--color_header_background--active:#ebecef;--vkui--color_text_accent:#447bba;--vkui--color_text_accent--hover:#4177b5;--vkui--color_text_accent--active:#3f72b0;--vkui--color_text_accent_themed:#3770b1;--vkui--color_text_accent_themed--hover:#356cac;--vkui--color_text_accent_themed--active:#3368a8;--vkui--color_text_primary:#000000;--vkui--color_text_primary--hover:#000102;--vkui--color_text_primary--active:#000105;--vkui--color_text_primary_invariably:#333333;--vkui--color_text_primary_invariably--hover:#313233;--vkui--color_text_primary_invariably--active:#2f3034;--vkui--color_text_secondary:#818c99;--vkui--color_text_secondary--hover:#7c8795;--vkui--color_text_secondary--active:#778292;--vkui--color_text_subhead:#626d7a;--vkui--color_text_subhead--hover:#5e6978;--vkui--color_text_subhead--active:#5a6675;--vkui--color_text_tertiary:#99a2ad;--vkui--color_text_tertiary--hover:#939ca9;--vkui--color_text_tertiary--active:#8d96a4;--vkui--color_text_contrast:#ffffff;--vkui--color_text_contrast--hover:#f5f5f7;--vkui--color_text_contrast--active:#ebecef;--vkui--color_text_contrast_themed:#ffffff;--vkui--color_text_contrast_themed--hover:#f5f5f7;--vkui--color_text_contrast_themed--active:#ebecef;--vkui--color_text_positive:#4bb34b;--vkui--color_text_positive--hover:#48ac4a;--vkui--color_text_positive--active:#45a64a;--vkui--color_text_negative:#e64646;--vkui--color_text_negative--hover:#dd4446;--vkui--color_text_negative--active:#d44245;--vkui--color_text_link:#2a5885;--vkui--color_text_link--hover:#285582;--vkui--color_text_link--active:#27527f;--vkui--color_text_link_themed:#2a5885;--vkui--color_text_link_themed--hover:#285582;--vkui--color_text_link_themed--active:#27527f;--vkui--color_text_link_tint:#71aaeb;--vkui--color_text_link_tint--hover:#6ca4e4;--vkui--color_text_link_tint--active:#689edd;--vkui--color_text_link_visited:#4986cc;--vkui--color_text_link_visited--hover:#4681c6;--vkui--color_text_link_visited--active:#437dc1;--vkui--color_text_muted:#333333;--vkui--color_text_muted--hover:#313233;--vkui--color_text_muted--active:#2f3034;--vkui--color_link_contrast:#ffffff;--vkui--color_link_contrast--hover:#f5f5f7;--vkui--color_link_contrast--active:#ebecef;--vkui--color_icon_accent:#447bba;--vkui--color_icon_accent--hover:#4177b5;--vkui--color_icon_accent--active:#3f72b0;--vkui--color_icon_accent_themed:#3770b1;--vkui--color_icon_accent_themed--hover:#356cac;--vkui--color_icon_accent_themed--active:#3368a8;--vkui--color_icon_primary:#2c2d2e;--vkui--color_icon_primary--hover:#2a2c2f;--vkui--color_icon_primary--active:#282b2f;--vkui--color_icon_primary_invariably:#333333;--vkui--color_icon_primary_invariably--hover:#313233;--vkui--color_icon_primary_invariably--active:#2f3034;--vkui--color_icon_medium:#6f7985;--vkui--color_icon_medium--hover:#6b7582;--vkui--color_icon_medium--active:#66717f;--vkui--color_icon_medium_alpha:rgba(0, 0, 0, 0.48);--vkui--color_icon_medium_alpha--hover:rgba(0, 0, 0, 0.52);--vkui--color_icon_medium_alpha--active:rgba(0, 0, 0, 0.56);--vkui--color_icon_secondary:#99a2ad;--vkui--color_icon_secondary--hover:#939ca9;--vkui--color_icon_secondary--active:#8d96a4;--vkui--color_icon_secondary_alpha:rgba(0, 0, 0, 0.36);--vkui--color_icon_secondary_alpha--hover:rgba(0, 0, 0, 0.4);--vkui--color_icon_secondary_alpha--active:rgba(0, 0, 0, 0.44);--vkui--color_icon_tertiary:#aeb7c2;--vkui--color_icon_tertiary--hover:#a7b0bd;--vkui--color_icon_tertiary--active:#a0aab7;--vkui--color_icon_tertiary_alpha:rgba(0, 0, 0, 0.24);--vkui--color_icon_tertiary_alpha--hover:rgba(0, 0, 0, 0.28);--vkui--color_icon_tertiary_alpha--active:rgba(0, 0, 0, 0.32);--vkui--color_icon_contrast:#ffffff;--vkui--color_icon_contrast--hover:#f5f5f7;--vkui--color_icon_contrast--active:#ebecef;--vkui--color_icon_contrast_themed:#ffffff;--vkui--color_icon_contrast_themed--hover:#f5f5f7;--vkui--color_icon_contrast_themed--active:#ebecef;--vkui--color_icon_contrast_secondary:#f2f3f5;--vkui--color_icon_contrast_secondary--hover:#e8eaee;--vkui--color_icon_contrast_secondary--active:#dfe1e6;--vkui--color_icon_positive:#4bb34b;--vkui--color_icon_positive--hover:#48ac4a;--vkui--color_icon_positive--active:#45a64a;--vkui--color_icon_warning:#f8a01c;--vkui--color_icon_warning--hover:#ee9a1d;--vkui--color_icon_warning--active:#e4941f;--vkui--color_icon_negative:#e64646;--vkui--color_icon_negative--hover:#dd4446;--vkui--color_icon_negative--active:#d44245;--vkui--color_stroke_accent:#447bba;--vkui--color_stroke_accent--hover:#4177b5;--vkui--color_stroke_accent--active:#3f72b0;--vkui--color_stroke_accent_themed:#3770b1;--vkui--color_stroke_accent_themed--hover:#356cac;--vkui--color_stroke_accent_themed--active:#3368a8;--vkui--color_separator_primary:#dce1e6;--vkui--color_separator_primary--hover:#d3d9df;--vkui--color_separator_primary--active:#cad0d8;--vkui--color_separator_primary2x:#cbcccd;--vkui--color_separator_primary2x--hover:#c3c4c7;--vkui--color_separator_primary2x--active:#bbbdc1;--vkui--color_separator_primary3x:#bebfc1;--vkui--color_separator_primary3x--hover:#b6b8bc;--vkui--color_separator_primary3x--active:#afb1b6;--vkui--color_separator_primary_alpha:rgba(0, 0, 0, 0.12);--vkui--color_separator_primary_alpha--hover:rgba(0, 0, 0, 0.16);--vkui--color_separator_primary_alpha--active:rgba(0, 0, 0, 0.2);--vkui--color_separator_secondary:#e7e8ec;--vkui--color_separator_secondary--hover:#dedfe5;--vkui--color_separator_secondary--active:#d5d7de;--vkui--color_stroke_positive:#4bb34b;--vkui--color_stroke_positive--hover:#48ac4a;--vkui--color_stroke_positive--active:#45a64a;--vkui--color_stroke_negative:#e64646;--vkui--color_stroke_negative--hover:#dd4446;--vkui--color_stroke_negative--active:#d44245;--vkui--color_stroke_contrast:#ffffff;--vkui--color_stroke_contrast--hover:#f5f5f7;--vkui--color_stroke_contrast--active:#ebecef;--vkui--color_image_border_alpha:rgba(0, 0, 0, 0.08);--vkui--color_image_border_alpha--hover:rgba(0, 0, 0, 0.12);--vkui--color_image_border_alpha--active:rgba(0, 0, 0, 0.16);--vkui--color_field_border_alpha:rgba(0, 0, 0, 0.12);--vkui--color_field_border_alpha--hover:rgba(0, 0, 0, 0.24);--vkui--color_field_border_alpha--active:rgba(0, 0, 0, 0.36);--vkui--color_accent_blue:#5181b8;--vkui--color_accent_blue--hover:#4e7cb3;--vkui--color_accent_blue--active:#4b78ae;--vkui--color_accent_gray:#aeb7c2;--vkui--color_accent_gray--hover:#a7b0bd;--vkui--color_accent_gray--active:#a0aab7;--vkui--color_accent_red:#ff3347;--vkui--color_accent_red--hover:#f53247;--vkui--color_accent_red--active:#eb3046;--vkui--color_accent_orange_fire:#f05c44;--vkui--color_accent_orange_fire--hover:#e65944;--vkui--color_accent_orange_fire--active:#dd5643;--vkui--color_accent_orange:#ffa000;--vkui--color_accent_orange--hover:#f59a02;--vkui--color_accent_orange--active:#eb9405;--vkui--color_accent_orange_peach:#f9b54f;--vkui--color_accent_orange_peach--hover:#efae4e;--vkui--color_accent_orange_peach--active:#e5a84e;--vkui--color_accent_lime:#bff74f;--vkui--color_accent_lime--hover:#b7ee4e;--vkui--color_accent_lime--active:#b0e54e;--vkui--color_accent_green:#4bb34b;--vkui--color_accent_green--hover:#48ac4a;--vkui--color_accent_green--active:#45a64a;--vkui--color_accent_cyan:#7cf4dc;--vkui--color_accent_cyan--hover:#77ebd6;--vkui--color_accent_cyan--active:#72e2cf;--vkui--color_accent_azure:#3f8ae0;--vkui--color_accent_azure--hover:#3c85d9;--vkui--color_accent_azure--active:#3a80d3;--vkui--color_accent_purple:#735ce6;--vkui--color_accent_purple--hover:#6e59df;--vkui--color_accent_purple--active:#6a56d8;--vkui--color_accent_violet:#792ec0;--vkui--color_accent_violet--hover:#742dbb;--vkui--color_accent_violet--active:#6f2cb6;--vkui--color_accent_raspberry_pink:#e03fab;--vkui--color_accent_raspberry_pink--hover:#d73da7;--vkui--color_accent_raspberry_pink--active:#ce3ba2;--vkui--color_accent_pink:#f685ff;--vkui--color_accent_pink--hover:#ec80f7;--vkui--color_accent_pink--active:#e27cef;--vkui--color_accent_secondary:#3f8ae0;--vkui--color_accent_secondary--hover:#3c85d9;--vkui--color_accent_secondary--active:#3a80d3;--vkui--color_overlay_primary:rgba(0, 0, 0, 0.40);--vkui--color_overlay_primary--hover:rgba(0, 0, 0, 0.44);--vkui--color_overlay_primary--active:rgba(0, 0, 0, 0.48);--vkui--color_overlay_secondary:rgba(44, 45, 46, 0.5);--vkui--color_overlay_secondary--hover:rgba(44, 45, 46, 0.54);--vkui--color_overlay_secondary--active:rgba(44, 45, 46, 0.58);--vkui--color_avatar_overlay:rgba(0, 0, 0, 0.60);--vkui--color_avatar_overlay--hover:rgba(0, 0, 0, 0.64);--vkui--color_avatar_overlay--active:rgba(0, 0, 0, 0.68);--vkui--color_avatar_overlay_inverse_alpha:rgba(255, 255, 255, 0.85);--vkui--color_avatar_overlay_inverse_alpha--hover:rgba(255, 255, 255, 0.89);--vkui--color_avatar_overlay_inverse_alpha--active:rgba(255, 255, 255, 0.93);--vkui--color_action_sheet_text:#3f8ae0;--vkui--color_action_sheet_text--hover:#3c85d9;--vkui--color_action_sheet_text--active:#3a80d3;--vkui--color_image_placeholder:#f2f3f5;--vkui--color_image_placeholder--hover:#e8eaee;--vkui--color_image_placeholder--active:#dfe1e6;--vkui--color_image_placeholder_alpha:rgba(0, 28, 61, 0.08);--vkui--color_image_placeholder_alpha--hover:rgba(0, 28, 61, 0.12);--vkui--color_image_placeholder_alpha--active:rgba(0, 28, 61, 0.16);--vkui--color_skeleton_from:#f0f2f5;--vkui--color_skeleton_from--hover:#e6e9ee;--vkui--color_skeleton_from--active:#dde0e6;--vkui--color_skeleton_to:#e7e8ec;--vkui--color_skeleton_to--hover:#dedfe5;--vkui--color_skeleton_to--active:#d5d7de;--vkui--color_button_text:#346297;--vkui--color_button_text--hover:#325f93;--vkui--color_button_text--active:#305b90;--vkui--color_button_icon:#346297;--vkui--color_button_icon--hover:#325f93;--vkui--color_button_icon--active:#305b90;--vkui--color_button_stroke:#346297;--vkui--color_button_stroke--hover:#325f93;--vkui--color_button_stroke--active:#305b90;--vkui--color_write_bar_icon:#818c99;--vkui--color_write_bar_icon--hover:#7c8795;--vkui--color_write_bar_icon--active:#778292;--vkui--color_write_bar_input_background:#ffffff;--vkui--color_write_bar_input_background--hover:#f5f5f7;--vkui--color_write_bar_input_background--active:#ebecef;--vkui--color_write_bar_input_border:#d3d9de;--vkui--color_write_bar_input_border--hover:#cbd1d8;--vkui--color_write_bar_input_border--active:#c2c9d1;--vkui--color_write_bar_input_border_alpha:rgba(0, 0, 0, 0.08);--vkui--color_write_bar_input_border_alpha--hover:rgba(0, 0, 0, 0.12);--vkui--color_write_bar_input_border_alpha--active:rgba(0, 0, 0, 0.16);--vkui--color_track_background:#d3d9de;--vkui--color_track_background--hover:#cbd1d8;--vkui--color_track_background--active:#c2c9d1;--vkui--color_track_buffer:#447bba;--vkui--color_track_buffer--hover:#4177b5;--vkui--color_track_buffer--active:#3f72b0;--vkui--color_search_field_background:#edeef0;--vkui--color_search_field_background--hover:#e4e5e9;--vkui--color_search_field_background--active:#dadce2;--vkui--color_panel_header_icon:#447bba;--vkui--color_panel_header_icon--hover:#4177b5;--vkui--color_panel_header_icon--active:#3f72b0;--vkui--color_segmented_control:#ffffff;--vkui--color_segmented_control--hover:#f5f5f7;--vkui--color_segmented_control--active:#ebecef;--vkui--color_tabbar_text_inactive:#99a2ad;--vkui--color_tabbar_text_inactive--hover:#939ca9;--vkui--color_tabbar_text_inactive--active:#8d96a4;--vkui--color_transparent:transparent;--vkui--color_transparent--hover:rgba(0, 16, 61, 0.04);--vkui--color_transparent--active:rgba(0, 16, 61, 0.08);--vkui--vkontakte_color_snippet_border_alpha:rgba(0, 0, 0, 0.12);--vkui--vkontakte_color_snippet_border_alpha--hover:rgba(0, 0, 0, 0.16);--vkui--vkontakte_color_snippet_border_alpha--active:rgba(0, 0, 0, 0.2);--vkui--vkontakte_color_snippet_background:#ffffff;--vkui--vkontakte_color_snippet_background--hover:#f5f5f7;--vkui--vkontakte_color_snippet_background--active:#ebecef;--vkui--vkontakte_color_modal_card_border_alpha:rgba(0, 0, 0, 0);--vkui--vkontakte_color_modal_card_border_alpha--hover:rgba(0, 0, 0, 0.04);--vkui--vkontakte_color_modal_card_border_alpha--active:rgba(0, 0, 0, 0.08);--vkui--vkontakte_color_landing_snippet_border_alpha:rgba(0, 0, 0, 0.12);--vkui--vkontakte_color_landing_snippet_border_alpha--hover:rgba(0, 0, 0, 0.16);--vkui--vkontakte_color_landing_snippet_border_alpha--active:rgba(0, 0, 0, 0.2);--vkui--vkontakte_color_action_sheet_separator_alpha:rgba(0, 0, 0, 0.12);--vkui--vkontakte_color_action_sheet_separator_alpha--hover:rgba(0, 0, 0, 0.16);--vkui--vkontakte_color_action_sheet_separator_alpha--active:rgba(0, 0, 0, 0.2);--vkui--vkontakte_color_input_border:#d3d9de;--vkui--vkontakte_color_input_border--hover:#cbd1d8;--vkui--vkontakte_color_input_border--active:#c2c9d1;--vkui--vkontakte_color_search_bar_background:#e5ebf1;--vkui--vkontakte_color_search_bar_background--hover:#dce2ea;--vkui--vkontakte_color_search_bar_background--active:#d3d9e3;--vkui--vkontakte_color_search_bar_field_tint:#818c99;--vkui--vkontakte_color_search_bar_field_tint--hover:#7c8795;--vkui--vkontakte_color_search_bar_field_tint--active:#778292;--vkui--vkontakte_background_hover_alpha:rgba(174, 183, 194, 0.12);--vkui--vkontakte_background_hover_alpha--hover:rgba(174, 183, 194, 0.16);--vkui--vkontakte_background_hover_alpha--active:rgba(174, 183, 194, 0.2);--vkui--vkontakte_color_accent_alternate:#0077ff;--vkui--vkontakte_color_accent_alternate--hover:#0073f7;--vkui--vkontakte_color_accent_alternate--active:#006fef;--vkui--vkontakte_color_background_suggestions:#ffffff;--vkui--vkontakte_color_background_suggestions--hover:#f5f5f7;--vkui--vkontakte_color_background_suggestions--active:#ebecef;--vkui--vkontakte_color_background_keyboard:#dce1e6;--vkui--vkontakte_color_background_keyboard--hover:#d3d9df;--vkui--vkontakte_color_background_keyboard--active:#cad0d8;--vkui--vkontakte_color_content_placeholder_icon:#b2b2b2;--vkui--vkontakte_color_content_placeholder_icon--hover:#abacad;--vkui--vkontakte_color_content_placeholder_icon--active:#a4a5a9;--vkui--vkontakte_color_content_tint_foreground:#939393;--vkui--vkontakte_color_content_tint_foreground--hover:#8d8e90;--vkui--vkontakte_color_content_tint_foreground--active:#87898c;--vkui--vkontakte_color_text_name:#2a5885;--vkui--vkontakte_color_text_name--hover:#285582;--vkui--vkontakte_color_text_name--active:#27527f;--vkui--vkontakte_color_control_background:#edeef0;--vkui--vkontakte_color_control_background--hover:#e4e5e9;--vkui--vkontakte_color_control_background--active:#dadce2;--vkui--vkontakte_color_control_foreground:#447bba;--vkui--vkontakte_color_control_foreground--hover:#4177b5;--vkui--vkontakte_color_control_foreground--active:#3f72b0;--vkui--vkontakte_color_control_tint_muted:#828282;--vkui--vkontakte_color_control_tint_muted--hover:#7d7d7f;--vkui--vkontakte_color_control_tint_muted--active:#78797c;--vkui--vkontakte_color_header_search_field_background:#edeef0;--vkui--vkontakte_color_header_search_field_background--hover:#e4e5e9;--vkui--vkontakte_color_header_search_field_background--active:#dadce2;--vkui--vkontakte_color_header_search_field_tint:#818c99;--vkui--vkontakte_color_header_search_field_tint--hover:#7c8795;--vkui--vkontakte_color_header_search_field_tint--active:#778292;--vkui--vkontakte_color_header_tab_active_indicator:#397dcc;--vkui--vkontakte_color_header_tab_active_indicator--hover:#3779c6;--vkui--vkontakte_color_header_tab_active_indicator--active:#3474c1;--vkui--vkontakte_color_icon_outline_medium:#818c99;--vkui--vkontakte_color_icon_outline_medium--hover:#7c8795;--vkui--vkontakte_color_icon_outline_medium--active:#778292;--vkui--vkontakte_color_icon_outline_secondary:#99a2ad;--vkui--vkontakte_color_icon_outline_secondary--hover:#939ca9;--vkui--vkontakte_color_icon_outline_secondary--active:#8d96a4;--vkui--vkontakte_color_skeleton_shimmer_from:#ffffff;--vkui--vkontakte_color_skeleton_shimmer_from--hover:#f5f5f7;--vkui--vkontakte_color_skeleton_shimmer_from--active:#ebecef;--vkui--vkontakte_color_alpha_skeleton_shimmer_to:transparent;--vkui--vkontakte_color_alpha_skeleton_shimmer_to--hover:rgba(0, 16, 61, 0.04);--vkui--vkontakte_color_alpha_skeleton_shimmer_to--active:rgba(0, 16, 61, 0.08);--vkui--vkontakte_color_loader_background:#edeef0;--vkui--vkontakte_color_loader_background--hover:#e4e5e9;--vkui--vkontakte_color_loader_background--active:#dadce2;--vkui--vkontakte_color_loader_tint:#828282;--vkui--vkontakte_color_loader_tint--hover:#7d7d7f;--vkui--vkontakte_color_loader_tint--active:#78797c;--vkui--vkontakte_color_music_playback_icon:#000000;--vkui--vkontakte_color_music_playback_icon--hover:#000102;--vkui--vkontakte_color_music_playback_icon--active:#000105;--vkui--vkontakte_color_status_background:#edeef0;--vkui--vkontakte_color_status_background--hover:#e4e5e9;--vkui--vkontakte_color_status_background--active:#dadce2;--vkui--vkontakte_color_placeholder_icon_foreground_primary:#99a2ad;--vkui--vkontakte_color_placeholder_icon_foreground_primary--hover:#939ca9;--vkui--vkontakte_color_placeholder_icon_foreground_primary--active:#8d96a4;--vkui--vkontakte_color_placeholder_icon_foreground_secondary:#aeb7c2;--vkui--vkontakte_color_placeholder_icon_foreground_secondary--hover:#a7b0bd;--vkui--vkontakte_color_placeholder_icon_foreground_secondary--active:#a0aab7;--vkui--vkontakte_color_placeholder_icon_tint:#1d3a5c;--vkui--vkontakte_color_placeholder_icon_tint--hover:#1c385b;--vkui--vkontakte_color_placeholder_icon_tint--active:#1b375a;--vkui--vkontakte_color_poll_option_background:#447bba;--vkui--vkontakte_color_poll_option_background--hover:#4177b5;--vkui--vkontakte_color_poll_option_background--active:#3f72b0;--vkui--vkontakte_color_tabbar_active_icon:#447bba;--vkui--vkontakte_color_tabbar_active_icon--hover:#4177b5;--vkui--vkontakte_color_tabbar_active_icon--active:#3f72b0;--vkui--vkontakte_color_tabbar_background:#f7f8fa;--vkui--vkontakte_color_tabbar_background--hover:#edeff2;--vkui--vkontakte_color_tabbar_background--active:#e3e5eb;--vkui--vkontakte_color_tabbar_inactive_icon:#99a2ad;--vkui--vkontakte_color_tabbar_inactive_icon--hover:#939ca9;--vkui--vkontakte_color_tabbar_inactive_icon--active:#8d96a4;--vkui--vkontakte_color_tabbar_tablet_text_secondary:#818c99;--vkui--vkontakte_color_tabbar_tablet_text_secondary--hover:#7c8795;--vkui--vkontakte_color_tabbar_tablet_text_secondary--active:#778292;--vkui--vkontakte_color_toolbar_attach_background_from:#dce1e6;--vkui--vkontakte_color_toolbar_attach_background_from--hover:#d3d9df;--vkui--vkontakte_color_toolbar_attach_background_from--active:#cad0d8;--vkui--vkontakte_color_splash_screen_icon:#dce1e6;--vkui--vkontakte_color_splash_screen_icon--hover:#d3d9df;--vkui--vkontakte_color_splash_screen_icon--active:#cad0d8;--vkui--vkontakte_color_icon_name:#8fadc8;--vkui--vkontakte_color_icon_name--hover:#89a7c2;--vkui--vkontakte_color_icon_name--active:#84a0bd;--vkui--vkontakte_color_panel_tab_active_text:#4e5966;--vkui--vkontakte_color_panel_tab_active_text--hover:#4b5664;--vkui--vkontakte_color_panel_tab_active_text--active:#485363;--vkui--vkontakte_color_background_text_alpha:rgba(81, 129, 184, 0.2);--vkui--vkontakte_color_background_text_alpha--hover:rgba(81, 129, 184, 0.24);--vkui--vkontakte_color_background_text_alpha--active:rgba(81, 129, 184, 0.28);--vkui--vkontakte_color_modal_card_header_close:#000000;--vkui--vkontakte_color_modal_card_header_close--hover:#000102;--vkui--vkontakte_color_modal_card_header_close--active:#000105;--vkui--vkontakte_im_bubble_button_outgoing_background_alpha:rgba(255, 255, 255, 0.72);--vkui--vkontakte_im_bubble_button_outgoing_background_alpha--hover:rgba(255, 255, 255, 0.76);--vkui--vkontakte_im_bubble_button_outgoing_background_alpha--active:rgba(255, 255, 255, 0.8);--vkui--vkontakte_im_bubble_button_foreground:#000000;--vkui--vkontakte_im_bubble_button_foreground--hover:#000102;--vkui--vkontakte_im_bubble_button_foreground--active:#000105;--vkui--vkontakte_im_bubble_incoming_highlighted:#d3d9de;--vkui--vkontakte_im_bubble_incoming_highlighted--hover:#cbd1d8;--vkui--vkontakte_im_bubble_incoming_highlighted--active:#c2c9d1;--vkui--vkontakte_im_bubble_gift_background:#f4e7c3;--vkui--vkontakte_im_bubble_gift_background--hover:#eadebe;--vkui--vkontakte_im_bubble_gift_background--active:#e0d6b8;--vkui--vkontakte_im_bubble_gift_background_highlighted:#e3d3ac;--vkui--vkontakte_im_bubble_gift_background_highlighted--hover:#dacba8;--vkui--vkontakte_im_bubble_gift_background_highlighted--active:#d1c3a3;--vkui--vkontakte_im_bubble_outgoing_alternate:#ffffff;--vkui--vkontakte_im_bubble_outgoing_alternate--hover:#f5f5f7;--vkui--vkontakte_im_bubble_outgoing_alternate--active:#ebecef;--vkui--vkontakte_im_attach_tint:#447bba;--vkui--vkontakte_im_attach_tint--hover:#4177b5;--vkui--vkontakte_im_attach_tint--active:#3f72b0;--vkui--vkontakte_im_reply_separator:#2a5885;--vkui--vkontakte_im_reply_separator--hover:#285582;--vkui--vkontakte_im_reply_separator--active:#27527f;--vkui--vkontakte_im_toolbar_voice_msg_background:#99a2ad;--vkui--vkontakte_im_toolbar_voice_msg_background--hover:#939ca9;--vkui--vkontakte_im_toolbar_voice_msg_background--active:#8d96a4;--vkui--vkontakte_color_im_forward_line_alpha:rgba(0, 20, 51, 0.12);--vkui--vkontakte_color_im_forward_line_alpha--hover:rgba(0, 20, 51, 0.16);--vkui--vkontakte_color_im_forward_line_alpha--active:rgba(0, 20, 51, 0.2);--vkui--vkontakte_color_im_bubble_border_alternate_highlighted_alpha:rgba(204, 204, 204, 1);--vkui--vkontakte_color_im_bubble_border_alternate_highlighted_alpha--hover:#c4c4c6;--vkui--vkontakte_color_im_bubble_border_alternate_highlighted_alpha--active:#bcbdc1;--vkui--vkontakte_color_im_bubble_incoming:#edeef0;--vkui--vkontakte_color_im_bubble_incoming--hover:#e4e5e9;--vkui--vkontakte_color_im_bubble_incoming--active:#dadce2;--vkui--vkontakte_color_im_bubble_incoming_alternate:#ffffff;--vkui--vkontakte_color_im_bubble_incoming_alternate--hover:#f5f5f7;--vkui--vkontakte_color_im_bubble_incoming_alternate--active:#ebecef;--vkui--vkontakte_color_im_bubble_incoming_expiring:#e6e9ff;--vkui--vkontakte_color_im_bubble_incoming_expiring--hover:#dde0f7;--vkui--vkontakte_color_im_bubble_incoming_expiring--active:#d4d8ef;--vkui--vkontakte_color_im_bubble_outgoing:#cce4ff;--vkui--vkontakte_color_im_bubble_outgoing--hover:#c4dcf7;--vkui--vkontakte_color_im_bubble_outgoing--active:#bcd3ef;--vkui--vkontakte_color_im_bubble_outgoing_expiring_highlighted:#adb8ff;--vkui--vkontakte_color_im_bubble_outgoing_expiring_highlighted--hover:#a6b1f7;--vkui--vkontakte_color_im_bubble_outgoing_expiring_highlighted--active:#9fabef;--vkui--vkontakte_color_im_bubble_gift_text:#857250;--vkui--vkontakte_color_im_bubble_gift_text--hover:#806e4f;--vkui--vkontakte_color_im_bubble_gift_text--active:#7a6a4e;--vkui--vkontakte_color_im_bubble_gift_text_secondary:#ab9871;--vkui--vkontakte_color_im_bubble_gift_text_secondary--hover:#a4936f;--vkui--vkontakte_color_im_bubble_gift_text_secondary--active:#9d8d6d;--vkui--vkontakte_color_im_text_name:#2a5885;--vkui--vkontakte_color_im_text_name--hover:#285582;--vkui--vkontakte_color_im_text_name--active:#27527f;--vkui--vkontakte_button_muted_background:#e5ebf1;--vkui--vkontakte_button_muted_background--hover:#dce2ea;--vkui--vkontakte_button_muted_background--active:#d3d9e3;--vkui--vkontakte_button_tertiary_background:rgba(0, 0, 0, 0);--vkui--vkontakte_button_tertiary_background--hover:rgba(0, 0, 0, 0.04);--vkui--vkontakte_button_tertiary_background--active:rgba(0, 0, 0, 0.08);--vkui--vkontakte_button_tertiary_foreground:#346297;--vkui--vkontakte_button_tertiary_foreground--hover:#325f93;--vkui--vkontakte_button_tertiary_foreground--active:#305b90;--vkui--vkontakte_float_button_foreground:#99a2ad;--vkui--vkontakte_float_button_foreground--hover:#939ca9;--vkui--vkontakte_float_button_foreground--active:#8d96a4;--vkui--vkontakte_landing_background:#ffffff;--vkui--vkontakte_landing_background--hover:#f5f5f7;--vkui--vkontakte_landing_background--active:#ebecef;--vkui--vkontakte_im_bubble_incoming_alternate_highlighted:#f7f8fa;--vkui--vkontakte_im_bubble_incoming_alternate_highlighted--hover:#edeff2;--vkui--vkontakte_im_bubble_incoming_alternate_highlighted--active:#e3e5eb;--vkui--vkontakte_im_bubble_incoming_expiring_highlighted:#ccd3ff;--vkui--vkontakte_im_bubble_incoming_expiring_highlighted--hover:#c4cbf7;--vkui--vkontakte_im_bubble_incoming_expiring_highlighted--active:#bcc3ef;--vkui--vkontakte_im_bubble_outgoing_highlighted:#add3ff;--vkui--vkontakte_im_bubble_outgoing_highlighted--hover:#a6cbf7;--vkui--vkontakte_im_bubble_outgoing_highlighted--active:#9fc3ef;--vkui--vkontakte_landing_secondary_button_background:rgba(0, 57, 115, 0.102);--vkui--vkontakte_landing_secondary_button_background--hover:rgba(0, 57, 115, 0.14);--vkui--vkontakte_landing_secondary_button_background--active:rgba(0, 57, 115, 0.18);--vkui--vkontakte_stories_skeleton_loader_background:#cccccc;--vkui--vkontakte_stories_skeleton_loader_background--hover:#c4c4c6;--vkui--vkontakte_stories_skeleton_loader_background--active:#bcbdc1}
[scheme=vkcom_dark],.vkui--vkBase--dark,.vkui--vkCom--dark{--vkui--theme_name:'vkontakteComDark';--vkui--gradient_tint:rgba(32, 32, 33, 0) 0%, rgba(32, 32, 33, 0.05) 15%, rgba(32, 32, 33, 0.2) 30%, rgba(32, 32, 33, 0.8) 70%, rgba(32, 32, 33, 0.95) 85%, rgba(32, 32, 33, 1) 100%;--vkui--gradient:rgba(25, 25, 26, 0) 0%, rgba(25, 25, 26, 0.05) 15%, rgba(25, 25, 26, 0.2) 30%, rgba(25, 25, 26, 0.8) 70%, rgba(25, 25, 26, 0.95) 85%, rgba(25, 25, 26, 1) 100%;--vkui--elevation1:0px 0px 2px 0px rgba(0, 0, 0, 0.10), 0px 2px 2px 0px rgba(0, 0, 0, 0.20);--vkui--elevation1_invert_y:0px 0px 2px 0px rgba(0, 0, 0, 0.10), 0px -2px 2px 0px rgba(0, 0, 0, 0.20);--vkui--elevation2:0px 4px 8px 0px rgba(0, 0, 0, 0.15), 0px 0px 4px 0px rgba(0, 0, 0, 0.20);--vkui--elevation3:0px 0px 2px 0px rgba(0, 0, 0, 0.30), 0px 4px 16px 0px rgba(0, 0, 0, 0.30);--vkui--elevation4:0px 0px 8px 0px rgba(0, 0, 0, 0.10), 0px 16px 16px 0px rgba(0, 0, 0, 0.20);--vkui--theme_inherits_from:'vkComDark';--vkui--colors_scheme:dark;--vkui--color_background_accent:#71aaeb;--vkui--color_background_accent--hover:#77adec;--vkui--color_background_accent--active:#7cb1ed;--vkui--color_background_accent_themed:#e1e3e6;--vkui--color_background_accent_themed--hover:#d8dbdf;--vkui--color_background_accent_themed--active:#cfd2d8;--vkui--color_background_accent_themed_alpha:rgba(255, 255, 255, 0.2);--vkui--color_background_accent_themed_alpha--hover:rgba(255, 255, 255, 0.24);--vkui--color_background_accent_themed_alpha--active:rgba(255, 255, 255, 0.28);--vkui--color_background_accent_tint--hover:#61a2ff;--vkui--color_background_accent_tint--active:#67a6ff;--vkui--color_background_accent_alternative:#71aaeb;--vkui--color_background_accent_alternative--hover:#77adec;--vkui--color_background_accent_alternative--active:#7cb1ed;--vkui--color_background:#141414;--vkui--color_background--hover:#1d1d1d;--vkui--color_background--active:#272727;--vkui--color_background_content:#222222;--vkui--color_background_content--hover:#2b2b2b;--vkui--color_background_content--active:#343434;--vkui--color_background_secondary:#333333;--vkui--color_background_secondary--hover:#3b3b3b;--vkui--color_background_secondary--active:#434343;--vkui--color_background_secondary_alpha:rgba(255, 255, 255, 0.10);--vkui--color_background_secondary_alpha--hover:rgba(255, 255, 255, 0.12);--vkui--color_background_secondary_alpha--active:rgba(255, 255, 255, 0.14);--vkui--color_background_tertiary:#292929;--vkui--color_background_tertiary--hover:#323232;--vkui--color_background_tertiary--active:#3a3a3a;--vkui--color_background_tertiary_alpha:rgba(255, 255, 255, 0.03);--vkui--color_background_tertiary_alpha--hover:rgba(255, 255, 255, 0.07);--vkui--color_background_tertiary_alpha--active:rgba(255, 255, 255, 0.11);--vkui--color_background_contrast--hover:#ebedf0;--vkui--color_background_contrast--active:#d7d8db;--vkui--color_background_contrast_secondary_alpha:rgba(255, 255, 255, 0.2);--vkui--color_background_contrast_inverse--hover:#3b3b3b;--vkui--color_background_contrast_inverse--active:#434343;--vkui--color_background_contrast_themed:#323232;--vkui--color_background_contrast_themed--hover:#3a3a3a;--vkui--color_background_contrast_themed--active:#424242;--vkui--color_background_modal:#292929;--vkui--color_background_modal--hover:#323232;--vkui--color_background_modal--active:#3a3a3a;--vkui--color_background_modal_inverse:#ffffff;--vkui--color_background_modal_inverse--hover:#ebedf0;--vkui--color_background_modal_inverse--active:#d7d8db;--vkui--color_background_positive--hover:#52b652;--vkui--color_background_positive--active:#59b959;--vkui--color_background_positive_tint:#2f422f;--vkui--color_background_positive_tint--hover:#374a37;--vkui--color_background_positive_tint--active:#405140;--vkui--color_background_warning:#473315;--vkui--color_background_warning--hover:#4e3b1e;--vkui--color_background_warning--active:#564328;--vkui--color_background_negative:#ff5c5c;--vkui--color_background_negative--hover:#ff6363;--vkui--color_background_negative--active:#ff6969;--vkui--color_background_negative_tint:#522e2e;--vkui--color_background_negative_tint--hover:#593636;--vkui--color_background_negative_tint--active:#603f3f;--vkui--color_background_info_tint:#1c3954;--vkui--color_background_info_tint--hover:#25415b;--vkui--color_background_info_tint--active:#2e4962;--vkui--color_field_background:#292929;--vkui--color_field_background--hover:#323232;--vkui--color_field_background--active:#3a3a3a;--vkui--color_header_background:#222222;--vkui--color_header_background--hover:#2b2b2b;--vkui--color_header_background--active:#343434;--vkui--color_text_accent:#71aaeb;--vkui--color_text_accent--hover:#77adec;--vkui--color_text_accent--active:#7cb1ed;--vkui--color_text_accent_themed:#e1e3e6;--vkui--color_text_accent_themed--hover:#e2e4e7;--vkui--color_text_accent_themed--active:#e3e5e8;--vkui--color_text_primary:#e1e3e6;--vkui--color_text_primary--hover:#e2e4e7;--vkui--color_text_primary--active:#e3e5e8;--vkui--color_text_primary_invariably--hover:#3b3b3b;--vkui--color_text_primary_invariably--active:#434343;--vkui--color_text_secondary:#828282;--vkui--color_text_secondary--hover:#878787;--vkui--color_text_secondary--active:#8c8c8c;--vkui--color_text_subhead:#939393;--vkui--color_text_subhead--hover:#979797;--vkui--color_text_subhead--active:#9c9c9c;--vkui--color_text_tertiary:#656565;--vkui--color_text_tertiary--hover:#6b6b6b;--vkui--color_text_tertiary--active:#717171;--vkui--color_text_contrast--hover:#ebedf0;--vkui--color_text_contrast--active:#d7d8db;--vkui--color_text_contrast_themed:#222222;--vkui--color_text_contrast_themed--hover:#2b2b2b;--vkui--color_text_contrast_themed--active:#343434;--vkui--color_text_positive--hover:#52b652;--vkui--color_text_positive--active:#59b959;--vkui--color_text_negative:#ff5c5c;--vkui--color_text_negative--hover:#ff6363;--vkui--color_text_negative--active:#ff6969;--vkui--color_text_link:#71aaeb;--vkui--color_text_link--hover:#77adec;--vkui--color_text_link--active:#7cb1ed;--vkui--color_text_link_themed:#939393;--vkui--color_text_link_themed--hover:#979797;--vkui--color_text_link_themed--active:#9c9c9c;--vkui--color_text_link_tint--hover:#77adec;--vkui--color_text_link_tint--active:#7cb1ed;--vkui--color_text_link_visited--hover:#508bce;--vkui--color_text_link_visited--active:#5890d0;--vkui--color_text_muted:#cccccc;--vkui--color_text_muted--hover:#cecece;--vkui--color_text_muted--active:#d0d0d0;--vkui--color_link_contrast--hover:#ebedf0;--vkui--color_link_contrast--active:#d7d8db;--vkui--color_icon_accent:#71aaeb;--vkui--color_icon_accent--hover:#77adec;--vkui--color_icon_accent--active:#7cb1ed;--vkui--color_icon_accent_themed:#e1e3e6;--vkui--color_icon_accent_themed--hover:#e2e4e7;--vkui--color_icon_accent_themed--active:#e3e5e8;--vkui--color_icon_primary:#e1e3e6;--vkui--color_icon_primary--hover:#e2e4e7;--vkui--color_icon_primary--active:#e3e5e8;--vkui--color_icon_primary_invariably:#333333;--vkui--color_icon_primary_invariably--hover:#3b3b3b;--vkui--color_icon_primary_invariably--active:#434343;--vkui--color_icon_medium:#939393;--vkui--color_icon_medium--hover:#979797;--vkui--color_icon_medium--active:#9c9c9c;--vkui--color_icon_medium_alpha:rgba(255, 255, 255, 0.48);--vkui--color_icon_medium_alpha--hover:rgba(255, 255, 255, 0.52);--vkui--color_icon_medium_alpha--active:rgba(255, 255, 255, 0.56);--vkui--color_icon_secondary:#828282;--vkui--color_icon_secondary--hover:#878787;--vkui--color_icon_secondary--active:#8c8c8c;--vkui--color_icon_secondary_alpha:rgba(255, 255, 255, 0.40);--vkui--color_icon_secondary_alpha--hover:rgba(255, 255, 255, 0.44);--vkui--color_icon_secondary_alpha--active:rgba(255, 255, 255, 0.48);--vkui--color_icon_tertiary:#656565;--vkui--color_icon_tertiary--hover:#6b6b6b;--vkui--color_icon_tertiary--active:#717171;--vkui--color_icon_tertiary_alpha:rgba(255, 255, 255, 0.24);--vkui--color_icon_tertiary_alpha--hover:rgba(255, 255, 255, 0.28);--vkui--color_icon_tertiary_alpha--active:rgba(255, 255, 255, 0.32);--vkui--color_icon_contrast:#e1e3e6;--vkui--color_icon_contrast--hover:#e2e4e7;--vkui--color_icon_contrast--active:#e3e5e8;--vkui--color_icon_contrast_themed:#222222;--vkui--color_icon_contrast_themed--hover:#2b2b2b;--vkui--color_icon_contrast_themed--active:#343434;--vkui--color_icon_contrast_secondary--hover:#f3f3f5;--vkui--color_icon_contrast_secondary--active:#f3f4f6;--vkui--color_icon_positive--hover:#52b652;--vkui--color_icon_positive--active:#59b959;--vkui--color_icon_warning:#edb055;--vkui--color_icon_warning--hover:#eeb35c;--vkui--color_icon_warning--active:#eeb663;--vkui--color_icon_negative:#ff5c5c;--vkui--color_icon_negative--hover:#ff6363;--vkui--color_icon_negative--active:#ff6969;--vkui--color_stroke_accent:#71aaeb;--vkui--color_stroke_accent--hover:#77adec;--vkui--color_stroke_accent--active:#7cb1ed;--vkui--color_stroke_accent_themed:#e1e3e6;--vkui--color_stroke_accent_themed--hover:#e2e4e7;--vkui--color_stroke_accent_themed--active:#e3e5e8;--vkui--color_separator_primary:#363738;--vkui--color_separator_primary--hover:#3e3f40;--vkui--color_separator_primary--active:#464748;--vkui--color_separator_primary2x:#444546;--vkui--color_separator_primary2x--hover:#4b4c4d;--vkui--color_separator_primary2x--active:#535455;--vkui--color_separator_primary3x:#505253;--vkui--color_separator_primary3x--hover:#57595a;--vkui--color_separator_primary3x--active:#5e6061;--vkui--color_separator_primary_alpha:rgba(255, 255, 255, 0.12);--vkui--color_separator_primary_alpha--hover:rgba(255, 255, 255, 0.16);--vkui--color_separator_primary_alpha--active:rgba(255, 255, 255, 0.2);--vkui--color_separator_secondary:#292929;--vkui--color_separator_secondary--hover:#323232;--vkui--color_separator_secondary--active:#3a3a3a;--vkui--color_stroke_positive--hover:#52b652;--vkui--color_stroke_positive--active:#59b959;--vkui--color_stroke_negative:#ff5c5c;--vkui--color_stroke_negative--hover:#ff6363;--vkui--color_stroke_negative--active:#ff6969;--vkui--color_stroke_contrast:#ffffff;--vkui--color_stroke_contrast--hover:#ebedf0;--vkui--color_stroke_contrast--active:#d7d8db;--vkui--color_image_border_alpha:rgba(255, 255, 255, 0.08);--vkui--color_image_border_alpha--hover:rgba(255, 255, 255, 0.12);--vkui--color_image_border_alpha--active:rgba(255, 255, 255, 0.16);--vkui--color_field_border_alpha:rgba(255, 255, 255, 0.12);--vkui--color_field_border_alpha--hover:rgba(255, 255, 255, 0.16);--vkui--color_field_border_alpha--active:rgba(255, 255, 255, 0.2);--vkui--color_accent_blue:#397dcc;--vkui--color_accent_blue--hover:#4182ce;--vkui--color_accent_blue--active:#4987d0;--vkui--color_accent_gray--hover:#b1bac4;--vkui--color_accent_gray--active:#b4bdc7;--vkui--color_accent_red--hover:#ff3b4e;--vkui--color_accent_red--active:#ff4356;--vkui--color_accent_orange_fire--hover:#f1634b;--vkui--color_accent_orange_fire--active:#f16953;--vkui--color_accent_orange--hover:#ffa40a;--vkui--color_accent_orange--active:#ffa814;--vkui--color_accent_orange_peach:#ffc062;--vkui--color_accent_orange_peach--hover:#ffc368;--vkui--color_accent_orange_peach--active:#ffc56f;--vkui--color_accent_lime:#caf96c;--vkui--color_accent_lime--hover:#ccf972;--vkui--color_accent_lime--active:#cef978;--vkui--color_accent_green:#4bb34b;--vkui--color_accent_green--hover:#52b652;--vkui--color_accent_green--active:#59b959;--vkui--color_accent_cyan:#55f1d2;--vkui--color_accent_cyan--hover:#5cf2d4;--vkui--color_accent_cyan--active:#63f2d6;--vkui--color_accent_azure:#5d9ee9;--vkui--color_accent_azure--hover:#63a2ea;--vkui--color_accent_azure--active:#6aa6eb;--vkui--color_accent_purple:#937ff5;--vkui--color_accent_purple--hover:#9784f5;--vkui--color_accent_purple--active:#9c89f6;--vkui--color_accent_violet:#a94fff;--vkui--color_accent_violet--hover:#ac56ff;--vkui--color_accent_violet--active:#b05dff;--vkui--color_accent_raspberry_pink:#f060c0;--vkui--color_accent_raspberry_pink--hover:#f166c3;--vkui--color_accent_raspberry_pink--active:#f16dc5;--vkui--color_accent_pink:#f899ff;--vkui--color_accent_pink--hover:#f89dff;--vkui--color_accent_pink--active:#f9a1ff;--vkui--color_accent_secondary--hover:#478fe1;--vkui--color_accent_secondary--active:#4e93e2;--vkui--color_overlay_secondary:rgba(55, 56, 57, 0.5);--vkui--color_overlay_secondary--hover:rgba(55, 56, 57, 0.54);--vkui--color_overlay_secondary--active:rgba(55, 56, 57, 0.58);--vkui--color_action_sheet_text:#71aaeb;--vkui--color_action_sheet_text--hover:#77adec;--vkui--color_action_sheet_text--active:#7cb1ed;--vkui--color_image_placeholder:#2a2b2c;--vkui--color_image_placeholder--hover:#333334;--vkui--color_image_placeholder--active:#3b3c3d;--vkui--color_image_placeholder_alpha:rgba(241, 247, 255, 0.08);--vkui--color_image_placeholder_alpha--hover:rgba(241, 247, 255, 0.12);--vkui--color_image_placeholder_alpha--active:rgba(241, 247, 255, 0.16);--vkui--color_skeleton_from:#292929;--vkui--color_skeleton_from--hover:#323232;--vkui--color_skeleton_from--active:#3a3a3a;--vkui--color_skeleton_to:#333333;--vkui--color_skeleton_to--hover:#3b3b3b;--vkui--color_skeleton_to--active:#434343;--vkui--color_button_text:#e1e3e6;--vkui--color_button_text--hover:#e2e4e7;--vkui--color_button_text--active:#e3e5e8;--vkui--color_button_icon:#e1e3e6;--vkui--color_button_icon--hover:#e2e4e7;--vkui--color_button_icon--active:#e3e5e8;--vkui--color_button_stroke:#e1e3e6;--vkui--color_button_stroke--hover:#e2e4e7;--vkui--color_button_stroke--active:#e3e5e8;--vkui--color_write_bar_icon:#e1e3e6;--vkui--color_write_bar_icon--hover:#e2e4e7;--vkui--color_write_bar_icon--active:#e3e5e8;--vkui--color_write_bar_input_background:#424242;--vkui--color_write_bar_input_background--hover:#4a4a4a;--vkui--color_write_bar_input_background--active:#515151;--vkui--color_write_bar_input_border:#555555;--vkui--color_write_bar_input_border--hover:#5c5c5c;--vkui--color_write_bar_input_border--active:#636363;--vkui--color_write_bar_input_border_alpha:rgba(255, 255, 255, 0.8);--vkui--color_write_bar_input_border_alpha--hover:rgba(255, 255, 255, 0.84);--vkui--color_write_bar_input_border_alpha--active:rgba(255, 255, 255, 0.88);--vkui--color_track_background:#828282;--vkui--color_track_background--hover:#878787;--vkui--color_track_background--active:#8c8c8c;--vkui--color_track_buffer:#ffffff;--vkui--color_track_buffer--hover:#ebedf0;--vkui--color_track_buffer--active:#d7d8db;--vkui--color_search_field_background:#424242;--vkui--color_search_field_background--hover:#4a4a4a;--vkui--color_search_field_background--active:#515151;--vkui--color_panel_header_icon:#71aaeb;--vkui--color_panel_header_icon--hover:#77adec;--vkui--color_panel_header_icon--active:#7cb1ed;--vkui--color_segmented_control:#626364;--vkui--color_segmented_control--hover:#68696a;--vkui--color_segmented_control--active:#6f6f70;--vkui--color_tabbar_text_inactive:#76787a;--vkui--color_tabbar_text_inactive--hover:#7b7d7f;--vkui--color_tabbar_text_inactive--active:#818385;--vkui--color_transparent--hover:rgba(255, 255, 255, 0.04);--vkui--color_transparent--active:rgba(255, 255, 255, 0.08);--vkui--vkontakte_color_snippet_border_alpha:rgba(255, 255, 255, 0.16);--vkui--vkontakte_color_snippet_border_alpha--hover:rgba(255, 255, 255, 0.2);--vkui--vkontakte_color_snippet_border_alpha--active:rgba(255, 255, 255, 0.24);--vkui--vkontakte_color_snippet_background:#272727;--vkui--vkontakte_color_snippet_background--hover:#303030;--vkui--vkontakte_color_snippet_background--active:#383838;--vkui--vkontakte_color_modal_card_border_alpha:rgba(255, 255, 255, 0.12);--vkui--vkontakte_color_modal_card_border_alpha--hover:rgba(255, 255, 255, 0.16);--vkui--vkontakte_color_modal_card_border_alpha--active:rgba(255, 255, 255, 0.2);--vkui--vkontakte_color_landing_snippet_border_alpha:rgba(255, 255, 255, 0.16);--vkui--vkontakte_color_landing_snippet_border_alpha--hover:rgba(255, 255, 255, 0.2);--vkui--vkontakte_color_landing_snippet_border_alpha--active:rgba(255, 255, 255, 0.24);--vkui--vkontakte_color_action_sheet_separator_alpha:rgba(255, 255, 255, 0.16);--vkui--vkontakte_color_action_sheet_separator_alpha--hover:rgba(255, 255, 255, 0.2);--vkui--vkontakte_color_action_sheet_separator_alpha--active:rgba(255, 255, 255, 0.24);--vkui--vkontakte_color_input_border:#555555;--vkui--vkontakte_color_input_border--hover:#5c5c5c;--vkui--vkontakte_color_input_border--active:#636363;--vkui--vkontakte_color_search_bar_background:#222222;--vkui--vkontakte_color_search_bar_background--hover:#2b2b2b;--vkui--vkontakte_color_search_bar_background--active:#343434;--vkui--vkontakte_color_search_bar_field_tint:#b2b2b2;--vkui--vkontakte_color_search_bar_field_tint--hover:#b5b5b5;--vkui--vkontakte_color_search_bar_field_tint--active:#b8b8b8;--vkui--vkontakte_background_hover_alpha:rgba(255, 255, 255, 0.08);--vkui--vkontakte_background_hover_alpha--hover:rgba(255, 255, 255, 0.12);--vkui--vkontakte_background_hover_alpha--active:rgba(255, 255, 255, 0.16);--vkui--vkontakte_color_accent_alternate:#ffffff;--vkui--vkontakte_color_accent_alternate--hover:#ebedf0;--vkui--vkontakte_color_accent_alternate--active:#d7d8db;--vkui--vkontakte_color_background_suggestions:#333333;--vkui--vkontakte_color_background_suggestions--hover:#3b3b3b;--vkui--vkontakte_color_background_suggestions--active:#434343;--vkui--vkontakte_color_background_keyboard:#333333;--vkui--vkontakte_color_background_keyboard--hover:#3b3b3b;--vkui--vkontakte_color_background_keyboard--active:#434343;--vkui--vkontakte_color_content_placeholder_icon--hover:#b5b5b5;--vkui--vkontakte_color_content_placeholder_icon--active:#b8b8b8;--vkui--vkontakte_color_content_tint_foreground--hover:#979797;--vkui--vkontakte_color_content_tint_foreground--active:#9c9c9c;--vkui--vkontakte_color_text_name:#e1e3e6;--vkui--vkontakte_color_text_name--hover:#e2e4e7;--vkui--vkontakte_color_text_name--active:#e3e5e8;--vkui--vkontakte_color_control_background:#555555;--vkui--vkontakte_color_control_background--hover:#5c5c5c;--vkui--vkontakte_color_control_background--active:#636363;--vkui--vkontakte_color_control_foreground:#e1e3e6;--vkui--vkontakte_color_control_foreground--hover:#e2e4e7;--vkui--vkontakte_color_control_foreground--active:#e3e5e8;--vkui--vkontakte_color_control_tint_muted:#939393;--vkui--vkontakte_color_control_tint_muted--hover:#979797;--vkui--vkontakte_color_control_tint_muted--active:#9c9c9c;--vkui--vkontakte_color_header_search_field_background:#424242;--vkui--vkontakte_color_header_search_field_background--hover:#4a4a4a;--vkui--vkontakte_color_header_search_field_background--active:#515151;--vkui--vkontakte_color_header_search_field_tint:#b2b2b2;--vkui--vkontakte_color_header_search_field_tint--hover:#b5b5b5;--vkui--vkontakte_color_header_search_field_tint--active:#b8b8b8;--vkui--vkontakte_color_header_tab_active_indicator--hover:#4182ce;--vkui--vkontakte_color_header_tab_active_indicator--active:#4987d0;--vkui--vkontakte_color_icon_outline_medium:#b2b2b2;--vkui--vkontakte_color_icon_outline_medium--hover:#b5b5b5;--vkui--vkontakte_color_icon_outline_medium--active:#b8b8b8;--vkui--vkontakte_color_icon_outline_secondary:#939393;--vkui--vkontakte_color_icon_outline_secondary--hover:#979797;--vkui--vkontakte_color_icon_outline_secondary--active:#9c9c9c;--vkui--vkontakte_color_skeleton_shimmer_from:#222222;--vkui--vkontakte_color_skeleton_shimmer_from--hover:#2b2b2b;--vkui--vkontakte_color_skeleton_shimmer_from--active:#343434;--vkui--vkontakte_color_alpha_skeleton_shimmer_to--hover:rgba(255, 255, 255, 0.04);--vkui--vkontakte_color_alpha_skeleton_shimmer_to--active:rgba(255, 255, 255, 0.08);--vkui--vkontakte_color_loader_background:#555555;--vkui--vkontakte_color_loader_background--hover:#5c5c5c;--vkui--vkontakte_color_loader_background--active:#636363;--vkui--vkontakte_color_loader_tint--hover:#878787;--vkui--vkontakte_color_loader_tint--active:#8c8c8c;--vkui--vkontakte_color_music_playback_icon:#ffffff;--vkui--vkontakte_color_music_playback_icon--hover:#ebedf0;--vkui--vkontakte_color_music_playback_icon--active:#d7d8db;--vkui--vkontakte_color_status_background:#222222;--vkui--vkontakte_color_status_background--hover:#2b2b2b;--vkui--vkontakte_color_status_background--active:#343434;--vkui--vkontakte_color_placeholder_icon_foreground_primary:#939393;--vkui--vkontakte_color_placeholder_icon_foreground_primary--hover:#979797;--vkui--vkontakte_color_placeholder_icon_foreground_primary--active:#9c9c9c;--vkui--vkontakte_color_placeholder_icon_foreground_secondary:#656565;--vkui--vkontakte_color_placeholder_icon_foreground_secondary--hover:#6b6b6b;--vkui--vkontakte_color_placeholder_icon_foreground_secondary--active:#717171;--vkui--vkontakte_color_placeholder_icon_tint:#ffffff;--vkui--vkontakte_color_placeholder_icon_tint--hover:#ebedf0;--vkui--vkontakte_color_placeholder_icon_tint--active:#d7d8db;--vkui--vkontakte_color_poll_option_background:#ffffff;--vkui--vkontakte_color_poll_option_background--hover:#ebedf0;--vkui--vkontakte_color_poll_option_background--active:#d7d8db;--vkui--vkontakte_color_tabbar_active_icon:#ffffff;--vkui--vkontakte_color_tabbar_active_icon--hover:#ebedf0;--vkui--vkontakte_color_tabbar_active_icon--active:#d7d8db;--vkui--vkontakte_color_tabbar_background:#333333;--vkui--vkontakte_color_tabbar_background--hover:#3b3b3b;--vkui--vkontakte_color_tabbar_background--active:#434343;--vkui--vkontakte_color_tabbar_inactive_icon:#828282;--vkui--vkontakte_color_tabbar_inactive_icon--hover:#878787;--vkui--vkontakte_color_tabbar_inactive_icon--active:#8c8c8c;--vkui--vkontakte_color_tabbar_tablet_text_secondary:#828282;--vkui--vkontakte_color_tabbar_tablet_text_secondary--hover:#878787;--vkui--vkontakte_color_tabbar_tablet_text_secondary--active:#8c8c8c;--vkui--vkontakte_color_toolbar_attach_background_from:#828282;--vkui--vkontakte_color_toolbar_attach_background_from--hover:#878787;--vkui--vkontakte_color_toolbar_attach_background_from--active:#8c8c8c;--vkui--vkontakte_color_splash_screen_icon:#333333;--vkui--vkontakte_color_splash_screen_icon--hover:#3b3b3b;--vkui--vkontakte_color_splash_screen_icon--active:#434343;--vkui--vkontakte_color_icon_name:#b2b2b2;--vkui--vkontakte_color_icon_name--hover:#b5b5b5;--vkui--vkontakte_color_icon_name--active:#b8b8b8;--vkui--vkontakte_color_panel_tab_active_text:#e1e3e6;--vkui--vkontakte_color_panel_tab_active_text--hover:#e2e4e7;--vkui--vkontakte_color_panel_tab_active_text--active:#e3e5e8;--vkui--vkontakte_color_modal_card_header_close:#ffffff;--vkui--vkontakte_color_modal_card_header_close--hover:#ebedf0;--vkui--vkontakte_color_modal_card_header_close--active:#d7d8db;--vkui--vkontakte_im_bubble_button_outgoing_background_alpha:rgba(255, 255, 255, 0.24);--vkui--vkontakte_im_bubble_button_outgoing_background_alpha--hover:rgba(255, 255, 255, 0.28);--vkui--vkontakte_im_bubble_button_outgoing_background_alpha--active:rgba(255, 255, 255, 0.32);--vkui--vkontakte_im_bubble_button_foreground:#e1e3e6;--vkui--vkontakte_im_bubble_button_foreground--hover:#e2e4e7;--vkui--vkontakte_im_bubble_button_foreground--active:#e3e5e8;--vkui--vkontakte_im_bubble_incoming_highlighted:#656565;--vkui--vkontakte_im_bubble_incoming_highlighted--hover:#6b6b6b;--vkui--vkontakte_im_bubble_incoming_highlighted--active:#717171;--vkui--vkontakte_im_bubble_gift_background:#857250;--vkui--vkontakte_im_bubble_gift_background--hover:#8a7857;--vkui--vkontakte_im_bubble_gift_background--active:#8f7d5e;--vkui--vkontakte_im_bubble_gift_background_highlighted:#ab9871;--vkui--vkontakte_im_bubble_gift_background_highlighted--hover:#ae9c77;--vkui--vkontakte_im_bubble_gift_background_highlighted--active:#b2a07c;--vkui--vkontakte_im_bubble_outgoing_alternate:#555555;--vkui--vkontakte_im_bubble_outgoing_alternate--hover:#5c5c5c;--vkui--vkontakte_im_bubble_outgoing_alternate--active:#636363;--vkui--vkontakte_im_attach_tint:#ffffff;--vkui--vkontakte_im_attach_tint--hover:#ebedf0;--vkui--vkontakte_im_attach_tint--active:#d7d8db;--vkui--vkontakte_im_reply_separator:#ffffff;--vkui--vkontakte_im_reply_separator--hover:#ebedf0;--vkui--vkontakte_im_reply_separator--active:#d7d8db;--vkui--vkontakte_im_toolbar_voice_msg_background:#555555;--vkui--vkontakte_im_toolbar_voice_msg_background--hover:#5c5c5c;--vkui--vkontakte_im_toolbar_voice_msg_background--active:#636363;--vkui--vkontakte_color_im_forward_line_alpha:rgba(255, 255, 255, 0.24);--vkui--vkontakte_color_im_forward_line_alpha--hover:rgba(255, 255, 255, 0.28);--vkui--vkontakte_color_im_forward_line_alpha--active:rgba(255, 255, 255, 0.32);--vkui--vkontakte_color_im_bubble_border_alternate_highlighted_alpha:rgba(0, 0, 0, 0.00);--vkui--vkontakte_color_im_bubble_border_alternate_highlighted_alpha--hover:rgba(0, 0, 0, 0.04);--vkui--vkontakte_color_im_bubble_border_alternate_highlighted_alpha--active:rgba(0, 0, 0, 0.08);--vkui--vkontakte_color_im_bubble_incoming:#333333;--vkui--vkontakte_color_im_bubble_incoming--hover:#3b3b3b;--vkui--vkontakte_color_im_bubble_incoming--active:#434343;--vkui--vkontakte_color_im_bubble_incoming_alternate:#333333;--vkui--vkontakte_color_im_bubble_incoming_alternate--hover:#3b3b3b;--vkui--vkontakte_color_im_bubble_incoming_alternate--active:#434343;--vkui--vkontakte_color_im_bubble_incoming_expiring:#262b4d;--vkui--vkontakte_color_im_bubble_incoming_expiring--hover:#2f3354;--vkui--vkontakte_color_im_bubble_incoming_expiring--active:#373c5b;--vkui--vkontakte_color_im_bubble_outgoing:#555555;--vkui--vkontakte_color_im_bubble_outgoing--hover:#5c5c5c;--vkui--vkontakte_color_im_bubble_outgoing--active:#636363;--vkui--vkontakte_color_im_bubble_outgoing_expiring_highlighted:#5965b3;--vkui--vkontakte_color_im_bubble_outgoing_expiring_highlighted--hover:#606bb6;--vkui--vkontakte_color_im_bubble_outgoing_expiring_highlighted--active:#6671b9;--vkui--vkontakte_color_im_bubble_gift_text:#ffffff;--vkui--vkontakte_color_im_bubble_gift_text--hover:#ebedf0;--vkui--vkontakte_color_im_bubble_gift_text--active:#d7d8db;--vkui--vkontakte_color_im_bubble_gift_text_secondary:#e3d3ac;--vkui--vkontakte_color_im_bubble_gift_text_secondary--hover:#e4d5af;--vkui--vkontakte_color_im_bubble_gift_text_secondary--active:#e5d7b3;--vkui--vkontakte_color_im_text_name:#71aaeb;--vkui--vkontakte_color_im_text_name--hover:#77adec;--vkui--vkontakte_color_im_text_name--active:#7cb1ed;--vkui--vkontakte_button_muted_background:#333333;--vkui--vkontakte_button_muted_background--hover:#3b3b3b;--vkui--vkontakte_button_muted_background--active:#434343;--vkui--vkontakte_button_tertiary_foreground:#e1e3e6;--vkui--vkontakte_button_tertiary_foreground--hover:#e2e4e7;--vkui--vkontakte_button_tertiary_foreground--active:#e3e5e8;--vkui--vkontakte_float_button_foreground:#b2b2b2;--vkui--vkontakte_float_button_foreground--hover:#b5b5b5;--vkui--vkontakte_float_button_foreground--active:#b8b8b8;--vkui--vkontakte_landing_background:#222222;--vkui--vkontakte_landing_background--hover:#2b2b2b;--vkui--vkontakte_landing_background--active:#343434;--vkui--vkontakte_im_bubble_incoming_alternate_highlighted:#656565;--vkui--vkontakte_im_bubble_incoming_alternate_highlighted--hover:#6b6b6b;--vkui--vkontakte_im_bubble_incoming_alternate_highlighted--active:#717171;--vkui--vkontakte_im_bubble_incoming_expiring_highlighted:#404980;--vkui--vkontakte_im_bubble_incoming_expiring_highlighted--hover:#485085;--vkui--vkontakte_im_bubble_incoming_expiring_highlighted--active:#4f588a;--vkui--vkontakte_im_bubble_outgoing_highlighted:#656565;--vkui--vkontakte_im_bubble_outgoing_highlighted--hover:#6b6b6b;--vkui--vkontakte_im_bubble_outgoing_highlighted--active:#717171;--vkui--vkontakte_landing_secondary_button_background:rgba(255, 255, 255, 0.16);--vkui--vkontakte_landing_secondary_button_background--hover:rgba(255, 255, 255, 0.2);--vkui--vkontakte_landing_secondary_button_background--active:rgba(255, 255, 255, 0.24);--vkui--vkontakte_stories_skeleton_loader_background:#555555;--vkui--vkontakte_stories_skeleton_loader_background--hover:#5c5c5c;--vkui--vkontakte_stories_skeleton_loader_background--active:#636363}
:root,.vkui--vkBase--light,.vkui--vkBase--dark,.vkui--vkCom--light,.vkui--vkCom--dark,[scheme=vkcom_light],[scheme=vkcom_dark],[scheme=bright_light],[scheme=space_gray]{--vkui--font_headline1--font_size--compact:14px;--vkui--font_headline1--line_height--compact:18px;--vkui--font_text--font_size--compact:13px;--vkui--font_text--line_height--compact:16px;--vkui--size_base_padding_horizontal--regular:12px;--vkui--size_form_item_padding_vertical--regular:8px;--vkui--z_index_popout:1100}
.vkui--vkBase--light:not(.vkuiInternalModalBox),.vkui--vkCom--light:not(.vkuiInternalModalBox),[scheme=vkcom_light]:not(.vkuiInternalModalBox){--vkui--color_field_background:var(--white)}
.vkui--vkBase--light,.vkui--vkCom--light,[scheme=vkcom_light]{--vkui--color_image_placeholder:var(--black_blue24_alpha8)}
.vkui--vkBase--dark,.vkui--vkCom--dark,[scheme=vkcom_dark]{--vkui--color_image_placeholder:var(--white_alpha8)}
:root{--vkui_internal--tabbar_height:48px;--vkui_internal--grid_avatar_image_offset:2px;--vkui_internal--slider_thumb_size:28px;--vkui_internal--side_cell_gap:calc(var(--vkui--size_base_padding_horizontal--regular) - var(--vkui--spacing_size_s));--vkui_internal--panel_header_height:var(--vkui--size_panel_header_height--regular);--vkui_internal--outline_width:2px;--vkui_internal--outline:var(--vkui_internal--outline_width,2px) solid var(--vkui--color_stroke_accent);--vkui_internal--outline-reset:var(--vkui_internal--outline_width) solid transparent;--vkui_internal--popover_safe_zone_padding:8px;--vkui_internal--white:#fff;--vkui_internal--safe_area_inset_top:0px;--vkui_internal--safe_area_inset_right:0px;--vkui_internal--safe_area_inset_bottom:0px;--vkui_internal--safe_area_inset_left:0px;--vkui_internal--duration:0.7s;--vkui_internal--z_index_cell_dragging:100;--vkui_internal--z_index_tabs:2;--vkui_internal--z_index_fixed_layout:3;--vkui_internal--z_index_panel_header_context:4;--vkui_internal--z_index_panel_header_fade:5;--vkui_internal--z_index_pull_to_refresh:9;--vkui_internal--z_index_panel_header:10;--vkui_internal--z_index_split_layout_panel_header:11;--vkui_internal--z_index_tappable_state:0;--vkui_internal--z_index_tappable_element:1;--vkui_internal--z_index_banner_background:0;--vkui_internal--z_index_banner_content:1;--vkui_internal--z_index_banner_hover:2;--vkui_internal--z_index_form_field_element:1;--vkui_internal--z_index_form_field_border:2;--vkui_internal--z_index_form_field_status:3;--vkui_internal--z_index_form_field_border_hover:4;--vkui_internal--z_index_form_field_focus:5;--vkui_internal--z_index_form_field_side:6;--vkui_internal--z_index_image_base_overlay:0;--vkui_internal--z_index_image_base_border:1;--vkui_internal--z_index_image_base_badge:2;--vkui_internal--z_index_horizontal_scroll_arrow:1;--vkui_internal--row_gap:0px;--vkui_internal--column_gap:0px}
@supports (padding-top:constant(safe-area-inset-top)){:root{--vkui_internal--safe_area_inset_top:constant(safe-area-inset-top);--vkui_internal--safe_area_inset_right:constant(safe-area-inset-right);--vkui_internal--safe_area_inset_bottom:constant(safe-area-inset-bottom);--vkui_internal--safe_area_inset_left:constant(safe-area-inset-left)}}
@supports (padding-top:constant(safe-area-inset-top)){[dir=rtl]:root{--vkui_internal--safe_area_inset_right:constant(safe-area-inset-left);--vkui_internal--safe_area_inset_left:constant(safe-area-inset-right)}}
@supports (padding-top:env(safe-area-inset-top)){:root{--vkui_internal--safe_area_inset_top:env(safe-area-inset-top);--vkui_internal--safe_area_inset_right:env(safe-area-inset-right);--vkui_internal--safe_area_inset_bottom:env(safe-area-inset-bottom);--vkui_internal--safe_area_inset_left:env(safe-area-inset-left)}}
@supports (padding-top:env(safe-area-inset-top)){[dir=rtl]:root{--vkui_internal--safe_area_inset_right:env(safe-area-inset-left);--vkui_internal--safe_area_inset_left:env(safe-area-inset-right)}}
:root{--vkui--size_border--regular:var(--vkui--size_border1x--regular)}
@media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx){:root{--vkui--size_border--regular:var(--vkui--size_border2x--regular)}}
@media (-webkit-min-device-pixel-ratio:3),(min-resolution:3dppx){:root{--vkui--size_border--regular:var(--vkui--size_border3x--regular)}}
@keyframes vkuianimation-outline-offset{0%{outline-offset:var(--vkui_internal--outline_offset_from)}to{outline-offset:var(--vkui_internal--outline_offset_to)}}
@keyframes vkuianim-fade-in{0%{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}
@keyframes vkuianim-fade-out{0%{opacity:1}to{opacity:0}}
@keyframes vkuianimation-wave{0%{opacity:1;transform:scale(1)}30%{opacity:1}to{opacity:0;transform:scale(8)}}
.vkuiInternalPanelHeader~* .vkuiFixedLayout--vertical-top:not(.vkuiInternalPanelHeader__fixed),.vkuiInternalPanelHeader~.vkuiFixedLayout--vertical-top{top:calc(var(--vkui_internal--panel_header_height) + var(--vkui_internal--safe_area_inset_top))}
@keyframes vkuiroot-animation-hide-back{0%{opacity:1;transform:none}to{opacity:var(--vkui_internal--root_animation_opacity_initial);transform:var(--vkui_internal--root_animation_transform_initial)}}
@keyframes vkuiroot-animation-show-forward{0%{opacity:var(--vkui_internal--root_animation_opacity_initial);transform:var(--vkui_internal--root_animation_transform_initial)}to{opacity:1;transform:none}}
@keyframes vkuiroot-ios-overlay-animation-show-back{0%{opacity:.3}to{opacity:0}}
@keyframes vkuiroot-ios-overlay-animation-hide-forward{0%{opacity:0}to{opacity:.3}}
@keyframes vkuianimation-view-prev-back{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(var(--vkui_internal--view_animation_translateY_initial))}}
@keyframes vkuianimation-view-next-forward{0%{opacity:0;transform:translateY(var(--vkui_internal--view_animation_translateY_initial))}to{opacity:1;transform:translateY(0)}}
@keyframes vkuianimation-ios-next-forward{0%{transform:translate3d(100%,0,0)}to{transform:translateZ(0)}}
@keyframes vkuianimation-ios-next-back{0%{transform:translate3d(-50%,0,0)}to{transform:translateZ(0)}}
@keyframes vkuianimation-ios-prev-forward{0%{transform:translateZ(0)}to{transform:translate3d(-50%,0,0)}}
@keyframes vkuianimation-ios-prev-back{0%{transform:translateZ(0)}to{transform:translate3d(100%,0,0)}}
@keyframes vkuianimation-ios-overlay-fade-in{0%{opacity:0}to{opacity:.3}}
@keyframes vkuianimation-ios-overlay-fade-out{0%{opacity:.3}to{opacity:0}}
@keyframes vkuianimation-panelheadercontext-translate-in{0%{transform:translateY(-100%)}to{transform:translateY(0)}}
@keyframes vkuianimation-panelheadercontext-translate-out{0%{transform:translateY(0)}to{transform:translateY(-100%)}}
@keyframes vkuianimation-panelheadercontext-fade-in{0%{opacity:0}to{opacity:1}}
@keyframes vkuianimation-panelheadercontext-fade-out{0%{opacity:1}to{opacity:0}}
@keyframes vkuianimation-full-fade-in{0%{opacity:0}to{opacity:1}}
@keyframes vkuianimation-full-fade-out{0%{opacity:1}to{opacity:0}}
@keyframes vkuianimation-alert-scale-up{0%{opacity:0;transform:scale(var(--vkui_internal--alert_animation_scale_initial))}to{opacity:1;transform:scale(1)}}
@keyframes vkuianimation-alert-scale-down{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(var(--vkui_internal--alert_animation_scale_initial))}}
.vkuiActionSheetItemRadio__input~*{display:none}
.vkuiActionSheetItemRadio__input:checked~*{display:block}
@keyframes vkuianimation-actionsheet-slide-up{0%{opacity:var(--vkui_internal--actionsheet_animation_opacity_initial);transform:translateY(var(--vkui_internal--actionsheet_animation_translateY_initial))}to{opacity:1;transform:translateY(0)}}
@keyframes vkuianimation-actionsheet-slide-down{0%{opacity:1;transform:translateY(0)}to{opacity:var(--vkui_internal--actionsheet_animation_opacity_initial);transform:translateY(var(--vkui_internal--actionsheet_animation_translateY_initial))}}
@keyframes vkuiscreen-spinner-icon-done{0%{stroke-dashoffset:50}to{stroke-dashoffset:0}}
@keyframes vkuiscreen-spinner-intro{0%{opacity:0}to{opacity:1}}
@keyframes vkuianimation-snackbar-slide-in{0%{opacity:0;transform:var(--vkui_internal--snackbar_animation_from)}to{opacity:1;transform:translateZ(0)}}
@keyframes vkuianimation-snackbar-slide-out{0%{opacity:1;transform:var(--vkui_internal--snackbar_animation_to)}to{opacity:0;transform:var(--vkui_internal--snackbar_animation_from)}}
@keyframes vkuianimation-snackbar-fade-in{0%{opacity:0}to{opacity:1}}
@keyframes vkuianimation-snackbar-fade-out{0%{opacity:1}to{opacity:0}}
@keyframes vkuianimation-modalroot-fade-in{0%{opacity:0}to{opacity:1}}
.vkuiInternalPanelHeader--vkcom+* .vkuiGroup:first-of-type,.vkuiInternalPanelHeader--vkcom~.vkuiGroup:first-of-type{border-top-left-radius:0;border-top-right-radius:0;position:relative;top:-1px}
@keyframes vkuipull-to-refresh-to-refreshing{0%{transform:scale(1)}30%{transform:scale(.6)}90%{transform:scale(1.1)}to{transform:scale(1)}}
@keyframes vkuiptr-rotator{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
@keyframes vkuianimation-accordion-expand{0%{height:0}to{height:var(--vkui_internal--AccordionContent_height)}}
@keyframes vkuianimation-accordion-collapse{0%{height:var(--vkui_internal--AccordionContent_height)}to{height:0}}
@keyframes vkuianimation-accordion-fade-in{0%{height:var(--vkui_internal--AccordionContent_height);opacity:0}50%{height:var(--vkui_internal--AccordionContent_height);opacity:0}to{height:var(--vkui_internal--AccordionContent_height);opacity:1}}
@keyframes vkuianimation-accordion-fade-out{0%{height:var(--vkui_internal--AccordionContent_height);opacity:1}50%{height:var(--vkui_internal--AccordionContent_height);opacity:0}to{height:var(--vkui_internal--AccordionContent_height);opacity:0}}
@keyframes vkuiskeleton{0%{transform:translateX(0)}to{transform:translateX(var(--vkui_internal--skeleton_width))}}
a.vkuiTappable:hover{text-decoration:none}
a.vkuiLink.vkuiTappable:hover{text-decoration:underline}
@font-face{font-family:"Noto Sans Armenian";src:local("NotoSansArmenian"),local("Noto Sans Armenian"),url(/fonts/NotoSansArmenian-Regular.woff)format("woff");unicode-range:U+531-556,U+559-55F,U+561-587,U+589-58A,U+58F,U+FB13-FB17}
@font-face{font-family:"Noto Sans Bengali";src:local("NotoSansBengali"),local("Noto Sans Bengali"),url(/fonts/NotoSansBengali-Regular.woff)format("woff");unicode-range:U+AD,U+D7,U+F7,U+964-965,U+981-983,U+985-98C,U+98F-990,U+993-9A8,U+9AA-9B0,U+9B2,U+9B6-9B9,U+9BC-9C4,U+9C7-9C8,U+9CB-9CE,U+9D7,U+9DC-9DD,U+9DF-9E3,U+9E6-9FB,U+200B-200D,U+2013-2014,U+2018-2019,U+201C-201D,U+2026,U+20B9,U+2212,U+25CC}
@font-face{font-family:"Noto Sans Cherokee";src:local("NotoSansCherokee"),local("Noto Sans Cherokee"),url(/fonts/NotoSansCherokee-Regular.woff)format("woff");unicode-range:U+13A0-13F4}
@font-face{font-family:"Noto Sans Devanagari";src:local("NotoSansDevanagari"),local("Noto Sans Devanagari"),url(/fonts/NotoSansDevanagari-Regular.woff)format("woff");unicode-range:U+AF,U+D7,U+F7,U+2BC,U+901-939,U+93C-94D,U+950-954,U+958-972,U+97B-97F,U+200B-200D,U+2013-2014,U+2018-2019,U+201C-201D,U+2026,U+20B9,U+2212,U+25CC}
@font-face{font-family:"Noto Sans Ethiopic";src:local("NotoSansEthiopic"),local("Noto Sans Ethiopic"),url(/fonts/NotoSansEthiopic-Regular.woff)format("woff");unicode-range:U+1200-1248,U+124A-124D,U+1250-1256,U+1258,U+125A-125D,U+1260-1288,U+128A-128D,U+1290-12B0,U+12B2-12B5,U+12B8-12BE,U+12C0,U+12C2-12C5,U+12C8-12D6,U+12D8-1310,U+1312-1315,U+1318-135A,U+135D-137C,U+1380-1399,U+2D80-2D96,U+2DA0-2DA6,U+2DA8-2DAE,U+2DB0-2DB6,U+2DB8-2DBE,U+2DC0-2DC6,U+2DC8-2DCE,U+2DD0-2DD6,U+2DD8-2DDE,U+AB01-AB06,U+AB09-AB0E,U+AB11-AB16,U+AB20-AB26,U+AB28-AB2E}
@font-face{font-family:"Noto Sans Georgian";src:local("NotoSansGeorgian"),local("Noto Sans Georgian"),url(/fonts/NotoSansGeorgian-Regular.woff)format("woff");unicode-range:U+10A0-10C5,U+10D0-10FC,U+2D00-2D25}
@font-face{font-family:"Noto Sans Hebrew";src:local("NotoSansHebrew"),local("Noto Sans Hebrew"),url(/fonts/NotoSansHebrew-Regular.woff)format("woff");unicode-range:U+591-5C7,U+5D0-5EA,U+5F0-5F4,U+20AA,U+25CC,U+FB1D-FB36,U+FB38-FB3C,U+FB3E,U+FB40-FB41,U+FB43-FB44,U+FB46-FB4F}
@font-face{font-family:"Noto Sans Kannada";src:local("NotoSansKannada"),local("Noto Sans Kannada"),url(/fonts/NotoSansKannada-Regular.woff)format("woff");unicode-range:U+AD,U+D7,U+F7,U+964-965,U+C82-C83,U+C85-C8C,U+C8E-C90,U+C92-CA8,U+CAA-CB3,U+CB5-CB9,U+CBC-CC4,U+CC6-CC8,U+CCA-CCD,U+CD5-CD6,U+CDE,U+CE0-CE3,U+CE6-CEF,U+CF1-CF2,U+200B-200D,U+2013-2014,U+2018-2019,U+201C-201D,U+2026,U+20B9,U+2212,U+25CC}
@font-face{font-family:"Noto Sans Khmer";src:local("NotoSansKhmer"),local("Noto Sans Khmer"),url(/fonts/NotoSansKhmer-Regular.woff)format("woff");unicode-range:U+AB,U+AD,U+BB,U+1780-17DD,U+17E0-17E9,U+17F0-17F9,U+19E0-19FF,U+200B}
@font-face{font-family:"Noto Sans Lao";src:local("NotoSansLao"),local("Noto Sans Lao"),url(/fonts/NotoSansLao-Regular.woff)format("woff");unicode-range:U+AD,U+37E,U+E81-E82,U+E84,U+E87-E88,U+E8A,U+E8D,U+E94-E97,U+E99-E9F,U+EA1-EA3,U+EA5,U+EA7,U+EAA-EAB,U+EAD-EB9,U+EBB-EBD,U+EC0-EC4,U+EC6,U+EC8-ECD,U+ED0-ED9,U+EDC-EDF}
@font-face{font-family:"Noto Sans Osmanya";src:local("NotoSansOsmanya"),local("Noto Sans Osmanya"),url(/fonts/NotoSansOsmanya-Regular.woff)format("woff");unicode-range:U+10480-1049D,U+104A0-104A9}
@font-face{font-family:"Noto Sans Tamil";src:local("NotoSansTamil"),local("Noto Sans Tamil"),url(/fonts/NotoSansTamil-Regular.woff)format("woff");unicode-range:U+AD,U+D7,U+F7,U+964-965,U+B82-B83,U+B85-B8A,U+B8E-B90,U+B92-B95,U+B99-B9A,U+B9C,U+B9E-B9F,U+BA3-BA4,U+BA8-BAA,U+BAE-BB9,U+BBE-BC2,U+BC6-BC8,U+BCA-BCD,U+BD0,U+BD7,U+BE6-BFA,U+200B-200D,U+2013-2014,U+2018-2019,U+201C-201D,U+2026,U+20B9,U+2212,U+25CC}
@font-face{font-family:"Noto Sans Telugu";src:local("NotoSansTelugu"),local("Noto Sans Telugu"),url(/fonts/NotoSansTelugu-Regular.woff)format("woff");unicode-range:U+AD,U+D7,U+F7,U+964-965,U+C01-C03,U+C05-C0C,U+C0E-C10,U+C12-C28,U+C2A-C33,U+C35-C39,U+C3D-C44,U+C46-C48,U+C4A-C4D,U+C55-C56,U+C58-C59,U+C60-C63,U+C66-C6F,U+C78-C7F,U+200B-200D,U+2013-2014,U+2018-2019,U+201C-201D,U+2026,U+20B9,U+2212,U+25CC}
@font-face{font-family:"Noto Sans Thai";src:local("NotoSansThai"),local("Noto Sans Thai"),url(/fonts/NotoSansThai-Regular.woff)format("woff");unicode-range:U+E01-E3A,U+E3F-E5B,U+200B-200D,U+25CC}
@font-face{font-family:"Roboto";font-style:normal;font-weight:400;font-display:swap;src:url(/fonts/roboto400.woff)format("woff")}
@font-face{font-family:"Roboto";font-style:normal;font-weight:300;font-display:swap;src:url(/fonts/roboto300.woff)format("woff")}
@font-face{font-family:"Roboto";font-style:normal;font-weight:500;font-display:swap;src:url(/fonts/roboto500.woff)format("woff")}
@font-face{font-family:"Roboto";font-style:normal;font-weight:700;font-display:swap;src:url(/fonts/roboto700.woff)format("woff")}
@keyframes vkitSkeleton__skeleton--HCaQY{0%{transform:translateX(calc(var(--skeleton-gradient-width, 300px)*-1))}to{transform:translateX(0)}}
@keyframes vkitOnboardingMarkedTooltip__fadeIn--LB29L{to{transform:rotate(var(--onboarding-tooltip-content-tilt-degree, 0deg)) translateY(0);visibility:visible;opacity:1}}
@keyframes vkitOnboardingMarkedTooltip__fadeOut--VtXI6{to{visibility:visible;opacity:0;transform:rotate(0) translateY(var(--onboarding-tooltip-content-animation-start, 0%))}}
@keyframes vkitRightMenuItemSpinner__spinner-rotator--7L9tP{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}
.AvatarRich{flex-shrink:0;box-sizing:border-box;position:relative;display:block;border-radius:50%;--avatar-rich-stroke-width:2px;--avatar-rich-nft-frame-width:2px}
.AvatarRich__background{color:var(--vkui--color_image_placeholder);background:currentColor;background-size:cover}
.AvatarRich__img{position:relative;display:block;width:100%;height:100%;border:0;border-radius:inherit;object-fit:cover}
.AvatarRich__background,.AvatarRich__children,.AvatarRich--shadow::after,.AvatarRich__badge--shadow::before{position:absolute;left:0;top:0;width:100%;height:100%;border-radius:inherit}
[dir=rtl] .AvatarRich__background,[dir=rtl] .AvatarRich__children,[dir=rtl] .AvatarRich--shadow::after,[dir=rtl] .AvatarRich__badge--shadow::before{left:auto;right:0}
.AvatarRich:not(.AvatarRich--nft) .AvatarRich__children{border-radius:50%;overflow:hidden}
.AvatarRich--shadow::after{content:"";box-shadow:inset 0 0 0 var(--vkui--size_border--regular) var(--vkui--color_image_border_alpha)}
.AvatarRichContainer{position:relative}
.vkitLeftMenuOld__rootNarrow--0C1Vj{width:34px}
.vkitLeftMenuOld__container--I1650{margin:0;padding:0}
.vkitLeftMenuOld__separator--A0cnk{margin:9px 8px 9px 36px}
[dir=rtl] .vkitLeftMenuOld__separator--A0cnk{margin:9px 36px 9px 8px}
.vkitLeftMenuOld__rootNarrow--0C1Vj .vkitLeftMenuOld__separator--A0cnk{margin-left:0;margin-right:0}
.vkitLeftMenuSection__hiddenItems--M6uYW{width:var(--left-menu-item-width, 164px)}
.vkitLeftMenuItem__container--p1yDy{position:relative;list-style:none}
.vkitLeftMenuItem__item--qlG6N.vkitLeftMenuItem__item--qlG6N{display:flex;align-items:center;box-sizing:border-box;width:var(--left-menu-item-width, 164px);height:var(--left-menu-row-height, 30px);padding:0 6px;border-radius:4px}
.vkitLeftMenuItem__containerNarrow--ekm0j:not(:hover) .vkitLeftMenuItem__item--qlG6N{width:28px}
.vkitLeftMenuItem__containerNarrow--ekm0j:hover .vkitLeftMenuItem__item--qlG6N{background:var(--vkui--color_background_content);box-shadow:var(--vkui--elevation3)}
.vkitLeftMenuItem__icon--szYUW.vkitLeftMenuItem__icon--szYUW{position:relative;display:flex;align-items:center;margin-right:10px;color:var(--vkui--color_icon_accent)}
[dir=rtl] .vkitLeftMenuItem__icon--szYUW.vkitLeftMenuItem__icon--szYUW{margin-right:0;margin-left:10px}
.vkitLeftMenuItem__label--lndW2{display:flex;align-items:center;overflow:hidden;flex-grow:1;color:var(--vkui--color_text_primary)}
.vkitLeftMenuItem__containerNarrow--ekm0j:not(:hover) .vkitLeftMenuItem__label--lndW2{display:none}
.vkitLeftMenuItem__labelIn--NA8gK{max-width:100%;display:inline-flex;align-items:center}
.vkitLeftMenuItem__badge--gsDuM{margin-left:6px;display:inline-block;vertical-align:middle}
[dir=rtl] .vkitLeftMenuItem__badge--gsDuM{margin-left:0;margin-right:6px}
.vkitLeftMenuItem__counter--K6kGz{flex-shrink:0;min-width:var(--left-menu-counter-height, 20px);max-width:50px;padding:0 6px;box-sizing:border-box;background:var(--vkui--color_icon_secondary);color:var(--vkui--color_text_contrast);font-family:var(--vkui--font_family_base);font-size:11px;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:var(--left-menu-counter-height, 20px);border-radius:var(--vkui--size_border_radius_paper--regular);text-align:center;overflow:hidden;text-overflow:ellipsis;display:block;border:0;cursor:pointer;margin-left:4px}
[dir=rtl] .vkitLeftMenuItem__counter--K6kGz{margin-left:0;margin-right:4px}
.vkitLeftMenuItem__container--p1yDy:not(.vkitLeftMenuItem__containerNarrow--ekm0j) .vkitLeftMenuItem__container--p1yDy{margin-left:3px}
[dir=rtl] .vkitLeftMenuItem__container--p1yDy:not(.vkitLeftMenuItem__containerNarrow--ekm0j) .vkitLeftMenuItem__container--p1yDy{margin-left:0;margin-right:3px}
.vkitLeftMenuItem__containerNarrow--ekm0j .vkitLeftMenuItem__counter--K6kGz{--left-menu-counter-height:18px;position:absolute;left:15px;bottom:0;z-index:1;padding:0 4px}
[dir=rtl] .vkitLeftMenuItem__containerNarrow--ekm0j .vkitLeftMenuItem__counter--K6kGz{left:auto;right:15px}
.vkitLeftMenuItem__counterObject--ys4Vw{flex-shrink:0}
.vkitLeftMenuItem__settings--IYa9w.vkitLeftMenuItem__settings--IYa9w{top:0;right:calc(100% + var(--vkui--spacing_size_xs));position:absolute;width:-moz-fit-content;width:-webkit-fit-content;width:fit-content;height:100%;opacity:0;display:flex;align-items:center;color:var(--vkui--vkontakte_color_icon_outline_medium);transition:opacity var(--vkui--animation_duration_m) var(--vkui--animation_easing_default),color var(--vkui--animation_duration_m) var(--vkui--animation_easing_default)}
[dir=rtl] .vkitLeftMenuItem__settings--IYa9w.vkitLeftMenuItem__settings--IYa9w{right:auto;left:calc(100% + var(--vkui--spacing_size_xs))}
.vkitLeftMenuItem__container--p1yDy:hover .vkitLeftMenuItem__settings--IYa9w{opacity:var(--vkui--opacity_disable_accessibility);transition-delay:var(--vkui--animation_duration_l)}
.vkitLeftMenuItem__settingsHover--M0mZ3.vkitLeftMenuItem__settingsHover--M0mZ3.vkitLeftMenuItem__settingsHover--M0mZ3,.vkitLeftMenuItem__settingsActive--Ny5Vw.vkitLeftMenuItem__settingsActive--Ny5Vw.vkitLeftMenuItem__settingsActive--Ny5Vw{opacity:1;transition-delay:0s}
.vkitLeftMenuItem__settingsHover--M0mZ3{color:var(--vkui--vkontakte_color_icon_outline_medium--hover)}
.vkitLeftMenuItem__settingsActive--Ny5Vw{color:var(--vkui--vkontakte_color_icon_outline_medium--active)}
@keyframes vkitEqualizer__EqualizerAnimation--h6twa{0%{height:15%}to{height:var(--equalizer-max-height, 60%)}}
@keyframes vkitUserRecommendationItem__status-reveal--pxRbR{0%{opacity:0}to{opacity:1}}
a.vkitSubtitleLabel__label--BrkKg .vkitSubtitleLabel__labelText--A6GUQ:hover{text-decoration:underline}
@keyframes vkitOnboardingHighlighter__fadeIn--QDhSf{0%{-webkit-clip-path:rect(-10% -10% 110% -10%);clip-path:rect(-10% -10% 110% -10%)}to{-webkit-clip-path:rect(-10% 110% 110% -10%);clip-path:rect(-10% 110% 110% -10%)}}
@keyframes vkitOnboardingHighlighter__fadeOut--NdXED{0%{-webkit-clip-path:rect(-10% 110% 110% -10%);clip-path:rect(-10% 110% 110% -10%)}to{-webkit-clip-path:rect(-10% 110% 110% 110%);clip-path:rect(-10% 110% 110% 110%)}}
@keyframes vkitTicker__tickerLoop--e76zc{0%{transform:translateX(0)}to{transform:translateX(var(--music-overlay-badge-ticker-tick-width, 0))}}
@keyframes vkitIconMicrophoneIndicator__level--9qOxq{0%{-webkit-clip-path:inset(70%0 0);clip-path:inset(70%0 0)}5%{-webkit-clip-path:inset(40%0 0);clip-path:inset(40%0 0)}15%{-webkit-clip-path:inset(20%0 0);clip-path:inset(20%0 0)}30%{-webkit-clip-path:inset(80%0 0);clip-path:inset(80%0 0)}45%{-webkit-clip-path:inset(65%0 0);clip-path:inset(65%0 0)}60%{-webkit-clip-path:inset(55%0 0);clip-path:inset(55%0 0)}75%{-webkit-clip-path:inset(15%0 0);clip-path:inset(15%0 0)}90%{-webkit-clip-path:inset(45%0 0);clip-path:inset(45%0 0)}to{-webkit-clip-path:inset(0 0 0);clip-path:inset(0 0 0)}}
@keyframes vkitClipBadge__slide--yoO6w{0%{transform:translateX(0)}to{transform:translateX(calc(-50% - var(--clipbadge-ticker-space, 40px)/2))}}
@keyframes vkitOnboardingContentBadge__growshrink--HZewC{0%{opacity:0;max-width:0}25%,75%{opacity:1;max-width:300px}to{opacity:0;max-width:0}}
@keyframes vkitAudioPlaybackProgressBar__pendingAnimation--9bGwT{0%{background-position-x:-20px}to{background-position-x:0}}
@keyframes vkitAnimatedImageCardOverlay__overlayOut--OozEL{0%{opacity:0}to{opacity:1}}
@keyframes vkitSlice__sliceTransition--cC6Xm{0%{transform:translate(0)}to{transform:translate(var(--transition-final, 0))}}
@keyframes vkitSlicesPortion__animationIn--PZkN4{0%{transform:translate(var(--animation-in-start, 0))}to{transform:translate(var(--animation-in-final, 0))}}
.PostButtonReactions__icon{--reaction-button-icon-active-animation:page_post_like_animation 0.2s
ease-out;--reaction-button-icon-size:22px;--reaction-button-placeholder-icon-size:24px;position:relative;width:var(--reaction-button-placeholder-icon-size);height:var(--reaction-button-placeholder-icon-size);background-repeat:no-repeat;background-position:center;background-size:var(--reaction-button-icon-size)}
.PostButtonReactions--post .PostButtonReactions__title{max-width:200px;text-overflow:ellipsis}
.PostButtonReactions--post .PostButtonReactions__title--textual{margin-right:2px;position:relative;top:-1px}
[dir=rtl] .PostButtonReactions--post .PostButtonReactions__title--textual{margin-right:0;margin-left:2px}
.PostButtonReactions__title:empty{display:none}
.PostButtonReactions--post.PostButtonReactions--active .PostButtonReactions__title{color:var(--reaction-button-title-color-light, var(--vkui--color_text_secondary))}
[scheme=vkcom_dark] .PostButtonReactions--post.PostButtonReactions--active .PostButtonReactions__title{color:var(--reaction-button-title-color-dark, var(--vkui--color_text_secondary))}
.PostButtonReactions--post.PostButtonReactions--active{--post-bottom-action-background-color:var(
--reaction-button-background-color-light,
var(--vkui--color_background_secondary)
)}
[scheme=vkcom_dark] .PostButtonReactions--post.PostButtonReactions--active{--post-bottom-action-background-color:var(
--reaction-button-background-color-dark,
var(--vkui--color_background_secondary)
)}
.PostButtonReactionsContainer{position:relative}
:root{--article-content-width:720px}
.like_wrap{padding:0 var(--post-padding-lr, 20px)}
.like_wrap.lite{padding:0}
.like_cont{--like-cont-vertical-padding:12px;--like-cont-top-padding:var(--like-cont-vertical-padding);--like-cont-bottom-padding:var(--like-cont-vertical-padding);padding:var(--like-cont-top-padding)0 var(--like-cont-bottom-padding);display:flex;align-items:center;justify-content:space-between;position:relative;box-shadow:inset 0 1px var(--vkui--color_separator_secondary)}
.Post--redesign .like_cont{--like-cont-top-padding:12px;--like-cont-bottom-padding:12px}
.like_wrap.lite .like_cont{box-shadow:none;padding:0}
.like_btns{display:flex;align-items:center}
.like_btn .counter_anim_wrap,.PostBottomAction .counter_anim_wrap,.like_btn .counter_wrap,.PostBottomAction .counter_wrap{transition:width 100ms linear}
.like_btn.disabled,.PostBottomAction.disabled{pointer-events:none}
.like_wrap.lite .like_btn.like .like_button_icon{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%23818c99%22%20d%3D%22M10.96%202.5A4.036%204.036%200%200115%206.534c0%202.211-.884%203.316-4.52%206.14l-1.099.853a2.252%202.252%200%2001-2.762%200l-1.099-.853C1.884%209.85%201%208.745%201%206.534A4.036%204.036%200%20015.04%202.5c1.111%200%202.103.481%202.96%201.402.857-.92%201.849-1.402%202.96-1.402zM5.04%203.998A2.538%202.538%200%20002.5%206.534c0%201.588.653%202.404%203.94%204.957l1.1.854c.27.21.65.21.92%200l1.1-.854c3.287-2.553%203.94-3.37%203.94-4.957%200-1.4-1.137-2.536-2.54-2.536-.848%200-1.618.482-2.343%201.528l-.206.297a.5.5%200%2001-.822%200l-.206-.297C6.658%204.48%205.888%203.998%205.04%203.998z%22%2F%3E%3C%2Fsvg%3E);background-size:16px;background-position:center;width:16px;opacity:.8;height:13px}
[scheme=vkcom_dark] .like_wrap.lite .like_btn.like .like_button_icon{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%23b2b2b2%22%20d%3D%22M10.96%202.5A4.036%204.036%200%200115%206.534c0%202.211-.884%203.316-4.52%206.14l-1.099.853a2.252%202.252%200%2001-2.762%200l-1.099-.853C1.884%209.85%201%208.745%201%206.534A4.036%204.036%200%20015.04%202.5c1.111%200%202.103.481%202.96%201.402.857-.92%201.849-1.402%202.96-1.402zM5.04%203.998A2.538%202.538%200%20002.5%206.534c0%201.588.653%202.404%203.94%204.957l1.1.854c.27.21.65.21.92%200l1.1-.854c3.287-2.553%203.94-3.37%203.94-4.957%200-1.4-1.137-2.536-2.54-2.536-.848%200-1.618.482-2.343%201.528l-.206.297a.5.5%200%2001-.822%200l-.206-.297C6.658%204.48%205.888%203.998%205.04%203.998z%22%2F%3E%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .like_wrap.lite .like_btn.like.active .like_button_icon,.like_wrap.lite .like_btn.like.active .like_button_icon{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22like_16__Page-2%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20id%3D%22like_16__like_16%22%3E%3Cpath%20id%3D%22like_16__Bounds%22%20d%3D%22M0%200h16v16H0z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.08%202.5A3.92%203.92%200%200115%206.42c0%202.19-.88%203.28-4.6%206.18L8.73%2013.9c-.43.33-1.01.33-1.44%200L5.6%2012.6C1.88%209.7%201%208.6%201%206.42A3.92%203.92%200%20014.92%202.5c1.16%200%202.2.55%203.08%201.6.89-1.05%201.92-1.6%203.08-1.6z%22%20id%3D%22like_16__Mask%22%20fill%3D%22%23ff3347%22%20fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E)}
.like_wrap.lite .PostButtonReactions__title,.like_wrap.lite .like_button_label,.like_wrap.lite .like_button_count{color:var(--vkui--color_text_subhead);font-size:13px;font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;line-height:13px;height:13px;margin-left:4px}
[dir=rtl] .like_wrap.lite .PostButtonReactions__title,[dir=rtl] .like_wrap.lite .like_button_label,[dir=rtl] .like_wrap.lite .like_button_count{margin-left:0;margin-right:4px}
@keyframes page_post_like_animation{0%{transform:scale(1)}50%{transform:scale(1.15)}to{transform:scale(1)}}
.like_views{display:flex;align-items:center;white-space:nowrap}
.like_views:empty{display:none}
.like_views .counter_anim_wrap{height:14px;line-height:13px}
.like_views .counter_anim_wrap,.like_views .counter_wrap{transition:width 100ms linear}
.like_views--inActionPanel{height:14px;line-height:15px;color:var(--vkui--color_text_secondary);overflow:hidden}
.like_views__icon{display:flex;width:14px;height:14px;margin-right:6px;color:var(--vkui--color_icon_secondary)}
[dir=rtl] .like_views__icon{margin-right:0;margin-left:6px}
.like_views__icon>svg{width:100%;height:100%}
.like_wrap .ui_actions_menu_wrap{position:relative;line-height:16px;margin-left:21px}
[dir=rtl] .like_wrap .ui_actions_menu_wrap{margin-left:0;margin-right:21px}
.like_wrap .ui_actions_menu{margin-top:-15px!important;right:-27.5px!important}
[dir=rtl] .like_wrap .ui_actions_menu{right:auto!important;left:-27.5px!important}
.like_wrap .ui_actions_menu_top .ui_actions_menu{margin-bottom:-15px!important;display:flex!important;flex-direction:column-reverse}
.like_wrap .ui_actions_menu_top .ui_actions_menu .ui_actions_menu_item{flex:0 0 auto}
.like_wrap .ui_actions_menu_icons{position:static;display:inline-block;background:0 0;width:auto;height:auto;top:auto;right:auto}
[dir=rtl] .like_wrap .ui_actions_menu_icons{right:auto;left:auto}
.like_wrap .ui_actions_menu_more{color:var(--vkui--color_text_subhead);font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;white-space:nowrap;line-height:16px;font-size:14px;align-items:center}
.like_wrap .ui_actions_menu_more::after{display:inline-block;content:"";background:url(/images/svg_icons/more_outline_8.svg)no-repeat center/contain;width:8px;height:8px;opacity:.65;margin-left:4px}
[dir=rtl] .like_wrap .ui_actions_menu_more::after{margin-left:0;margin-right:4px}
.like_wrap .ui_actions_menu{width:220px}
.like_wrap .ui_actions_menu_more{text-decoration:none!important}
.wall_module .reply .like_wrap{float:right}
[dir=rtl] .wall_module .reply .like_wrap{float:left}
.wall_module .reply .like_btn,.wcomments_post_content .like_btn{height:auto!important;padding:10px!important;margin:-10px!important}
._counter_anim_container .counter_anim,.like_btn .counter_anim{position:static}
.narrow_column.narrow_redesign .page_photo.page_action_menu_groups .PageActionCell{margin-left:0;margin-right:0}
.narrow_column.narrow_redesign .page_photo.page_action_menu_groups .PageActionCellSeparator{margin-left:15px;margin-right:15px}
.post{--post-padding-lr:20px}
.post,.wl_post{--post-action-status-bar-vertical-padding:10px;--post-primary-attachments-margin-top:12px}
.Post--redesign .PostActionStatusBar--inPost{padding-top:var(--post-large-spacing-tb, 12px);padding-bottom:var(--post-large-spacing-tb, 12px)}
.post--withPostBottomAction .wall_post_cont:last-child .wall_post_text:last-child,.post--withActionStatusBar .wall_post_cont:last-child .wall_post_text:last-child{margin-bottom:8px}
.Post--redesign.post--withPostBottomAction .wall_post_cont:last-child .wall_post_text:last-child,.Post--redesign.post--withActionStatusBar .wall_post_cont:last-child .wall_post_text:last-child{margin-bottom:0}
.post--withPostBottomAction .wall_post_cont .media_desc__doc.PostMediaRowWithActionStatusBarSeparator:last-child{padding-bottom:12px}
.post--withPostBottomAction.post--withActionStatusBar .wall_post_cont .media_desc__doc.PostMediaRowWithActionStatusBarSeparator:last-child{box-shadow:inset 0-1px var(--vkui--color_separator_primary)}
.post--withPostBottomAction .wall_post_cont .media_desc--link.PostMediaRowWithActionStatusBarSeparator:last-child{padding-bottom:12px}
.post--withPostBottomAction.post--withActionStatusBar .wall_post_cont .media_desc--link.PostMediaRowWithActionStatusBarSeparator:last-child{box-shadow:inset 0-1px var(--vkui--color_separator_primary)}
.post--withPostBottomAction .Post__copyright:last-child{margin-bottom:0;padding-bottom:8px}
.post--withPostBottomAction .wall_signed:last-child{padding-bottom:8px}
.Post--redesign.post--withPostBottomAction .Post__copyright:last-child{margin-bottom:0;padding-bottom:0}
.post--withPostBottomAction.post--withActionStatusBar .wall_post_cont .Post__copyright:last-child{box-shadow:inset 0-1px var(--vkui--color_separator_primary)}
.Post--redesign.post--withPostBottomAction.post--withActionStatusBar .wall_post_cont .Post__copyright:last-child{padding-bottom:8px}
.Post--redesign.post--withPostBottomAction .wall_signed:last-child{padding-bottom:0}
.post--withPostBottomAction.post--withActionStatusBar .wall_post_cont .wall_signed:last-child{box-shadow:inset 0-1px var(--vkui--color_separator_primary)}
.Post--redesign.post--withPostBottomAction.post--withActionStatusBar .wall_post_cont .wall_signed:last-child{padding-bottom:8px}
.post--withPostBottomAction.post--withActionStatusBar .wall_post_cont .wall_audio_rows.PostMediaRowWithActionStatusBarSeparator:last-child::after{content:"";display:block;height:1px;margin-bottom:-1px;margin-left:calc(0px - var(--wall-audio-row-horizontal-margin, -10px));margin-right:calc(0px - var(--wall-audio-row-horizontal-margin, -10px));box-shadow:inset 0-1px var(--vkui--color_separator_primary)}
.PostBottomAction{position:relative;display:flex;align-items:center;box-sizing:border-box;cursor:pointer;height:32px;padding:4px 6px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none}
.PostBottomActionContainer:hover .PostBottomAction--transparent,.PostBottomAction--transparent:hover{--post-bottom-action-text-transparency:0.7}
.PostBottomActionContainer .PostBottomAction--transparent.PostButtonReactions--active,.PostBottomActionContainer .PostBottomAction--transparent.like.active,.PostBottomAction--transparent.PostButtonReactions--active,.PostBottomAction--transparent.like.active{--post-bottom-action-text-transparency:1}
.PostBottomAction--withBg{--post-bottom-action-background-color:var(--vkui--color_background_secondary);padding:4px 12px;background-color:var(--post-bottom-action-background-color);border-radius:32px}
a.PostBottomAction,a.PostBottomAction:hover,a.PostBottomAction:focus,a.PostBottomAction:active{text-decoration:none}
.PostBottomActionLikeBtns.like_cont{padding:var(--like-cont-top-padding)0 var(--like-cont-bottom-padding)}
.PostBottomActionLikeBtns--withBgButtons.like_cont{box-shadow:none}
.post--withPostBottomAction .PostBottomActionLikeBtns--withBgButtons .like_btns{--post-bottom-action-post-left-side-distance:16px;margin-left:calc(var(--post-bottom-action-post-left-side-distance) - var(--post-padding-lr))}
[dir=rtl] .post--withPostBottomAction .PostBottomActionLikeBtns--withBgButtons .like_btns{margin-left:0;margin-right:calc(var(--post-bottom-action-post-left-side-distance) - var(--post-padding-lr))}
.PostBottomAction--withBg::before{content:"";display:block;position:absolute;left:0;top:0;height:100%;width:100%;border-radius:inherit;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.02)),to(rgba(0,0,0,.02)));background-image:linear-gradient(rgba(0,0,0,.02),rgba(0,0,0,.02));opacity:0;transition:opacity 100ms ease-in-out}
[dir=rtl] .PostBottomAction--withBg::before{left:auto;right:0}
[scheme=vkcom_dark] .PostBottomAction--withBg::before{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.02)),to(rgba(255,255,255,.02)));background-image:linear-gradient(rgba(255,255,255,.02),rgba(255,255,255,.02))}
.PostBottomAction--withBg:focus::before,.PostBottomAction--withBg:hover::before{opacity:1}
.PostBottomAction--withBg:active::before{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.03)),to(rgba(0,0,0,.03)));background-image:linear-gradient(rgba(0,0,0,.03),rgba(0,0,0,.03));opacity:1}
[scheme=vkcom_dark] .PostBottomAction--withBg:active::before{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.03)),to(rgba(255,255,255,.03)));background-image:linear-gradient(rgba(255,255,255,.03),rgba(255,255,255,.03))}
.PostBottomActionLikeBtns--withBgButtons .like_btns>.PostBottomAction:not(:first-child),.PostBottomActionLikeBtns--withBgButtons .like_btns>.PostBottomActionContainer:not(:first-child){margin-left:8px}
[dir=rtl] .PostBottomActionLikeBtns--withBgButtons .like_btns>.PostBottomAction:not(:first-child),[dir=rtl] .PostBottomActionLikeBtns--withBgButtons .like_btns>.PostBottomActionContainer:not(:first-child){margin-left:0;margin-right:8px}
.PostBottomAction__icon{display:flex}
.PostBottomAction--withBg .PostBottomAction__icon{color:var(--vkui--vkontakte_color_icon_outline_secondary)}
.Post--redesign .PostBottomAction--withBg .PostBottomAction__icon{color:var(--vkui--vkontakte_color_icon_outline_medium)}
.PostBottomAction__count,.PostBottomAction__label{font-size:14px;line-height:16px;font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;color:var(--vkui--color_text_secondary);margin-left:4px;white-space:nowrap;transition:margin 100ms linear}
[dir=rtl] .PostBottomAction__count,[dir=rtl] .PostBottomAction__label{margin-left:0;margin-right:4px}
.Post--redesign .PostBottomAction__count,.Post--redesign .PostBottomAction__label{color:var(--vkui--color_text_subhead)}
.PostBottomAction__count--withBg,.PostBottomAction__label--withBg{font-size:13px;line-height:16px;font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;color:var(--vkui--color_text_secondary);position:relative}
.Post--redesign .PostBottomAction__count--withBg,.Post--redesign .PostBottomAction__label--withBg{color:var(--vkui--color_text_subhead)}
.PostBottomAction__count{font-variant-numeric:tabular-nums}
.PostButtonReactions__title._counter_anim_container,.PostBottomAction__count{height:16px;overflow:hidden}
.PostButtonReactions__title._counter_anim_container .counter_wrap,.PostBottomAction__count .counter_wrap{pointer-events:none}
.PostBottomAction.empty .PostBottomAction__count,.PostBottomAction--empty .PostBottomAction__count,.PostBottomAction__count:empty,.PostBottomAction__label:empty{margin-left:0}
[dir=rtl] .PostBottomAction.empty .PostBottomAction__count,[dir=rtl] .PostBottomAction--empty .PostBottomAction__count,[dir=rtl] .PostBottomAction__count:empty,[dir=rtl] .PostBottomAction__label:empty{margin-left:0;margin-right:0}
.PostBottomAction.like.active .PostBottomAction__count{color:var(--like-button-title-color-light, var(--vkui--color_accent_red))}
.PostBottomAction.like.active{--post-bottom-action-background-color:var(--like-button-background-color-light, var(--vkui--color_background_secondary))}
[scheme=vkcom_dark] .PostBottomAction.like.active{--post-bottom-action-background-color:var(--like-button-background-color-dark, var(--vkui--color_background_secondary))}
.PostBottomAction.like.active .PostBottomActionLikeIcon--inactive{display:none}
.PostBottomAction.like.active .PostBottomActionLikeIcon--active{display:flex}
.PostHeader{display:flex;flex-direction:row}
.PostHeader__avatar{margin-right:15px}
[dir=rtl] .PostHeader__avatar{margin-right:0;margin-left:15px}
.PostHeader--inPost{--post-header-padding-top:16px;align-items:flex-start;padding-top:var(--post-header-padding-top);padding-right:var(--post-padding-lr);padding-left:var(--post-padding-lr)}
.PostHeader--compact{display:flex;align-items:center}
.PostHeaderInfo{display:flex;flex-direction:column}
.PostHeaderInfo--inHeader{flex:1 1 auto;min-width:0;white-space:nowrap;margin-right:10px}
[dir=rtl] .PostHeaderInfo--inHeader{margin-right:0;margin-left:10px}
.PostHeaderInfo--inHeader.PostHeaderInfo--legacy{white-space:initial}
.PostHeaderActions{position:relative;display:flex;flex:0 0 auto}
.PostHeaderActions__action+.PostHeaderActions__action{margin-left:12px}
[dir=rtl] .PostHeaderActions__action+.PostHeaderActions__action{margin-left:0;margin-right:12px}
.PostHeaderActions__action{display:flex;align-items:center}
.Post--redesign .PostHeaderImgContainer--legacy{width:40px;height:40px}
.Post--redesign .PostHeaderImgContainer.PostHeaderImgContainer--inTooltip{width:var(--post-header-img-container-size, 72px);height:var(--post-header-img-container-size, 72px)}
.Post--redesign .PostHeader--legacy .post_img,.Post--redesign .PostHeader--compact .post_img{width:40px;height:40px}
.Post--redesign .PostHeader--compact .PostHeaderImgContainer--inTooltip .post_img{width:var(--post-header-img-container-size, 72px);height:var(--post-header-img-container-size, 72px)}
.Post--redesign .PostHeader--legacy .post_image_stories_unseen .post_img{margin:0}
.Post--redesign .PostHeaderImgContainer--legacy.PostHeaderImgContainer--inHeader,.Post--redesign .PostHeader__avatar{margin-right:12px}
[dir=rtl] .Post--redesign .PostHeaderImgContainer--legacy.PostHeaderImgContainer--inHeader,[dir=rtl] .Post--redesign .PostHeader__avatar{margin-right:0;margin-left:12px}
.Post--redesign .PostHeader--legacy{align-items:center}
.Post--redesign .PostHeaderInfo--legacy{padding-top:0}
.PostHeaderTitle{display:flex;align-items:center;max-width:100%;text-overflow:ellipsis;overflow:hidden}
.PostHeaderTitle__author{max-width:100%;font-size:13px;font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;line-height:16px;color:var(--vkui--color_text_link);margin:0;text-overflow:ellipsis;overflow:hidden;display:inherit}
.PostHeaderTitle__authorBlock{display:inline-flex;max-width:100%}
.PostHeaderTitle__authorLink{max-width:100%;display:inline-flex}
.PostHeaderTitle__authorName{text-overflow:ellipsis;overflow:hidden;max-width:100%}
.PostHeaderSubtitle{--post-header-subtitle-line-height:16px;font-size:13px;font-weight:400;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;line-height:var(--post-header-subtitle-line-height, 16px);color:var(--vkui--color_text_secondary);margin-top:2px;max-width:100%}
.PostHeaderSubtitle--layoutDefault{display:flex;text-overflow:ellipsis;overflow:hidden}
.PostHeaderSubtitle .PostHeaderSubtitle__link{color:inherit}
.PostHeaderSubtitle__item{text-overflow:ellipsis;overflow:hidden}
.PostHeaderSubtitle__item.PostHeaderSubtitle__item--positive{color:var(--vkui--color_text_positive)}
.PostHeaderSubtitle__item.PostHeaderSubtitle__item--accentBlue{color:var(--vkui--color_accent_blue)}
.PostHeaderSubtitle__item.PostHeaderSubtitle__item--accentOrange{color:var(--vkui--color_accent_orange)}
a.PostHeaderSubtitle__item{color:inherit}
a.PostHeaderSubtitle__item--blue{color:var(--vkui--color_text_link)}
.Post--redesign .PostHeader__coauthorAvatarWrapper .PostHeader__avatar{margin-right:0}
[dir=rtl] .Post--redesign .PostHeader__coauthorAvatarWrapper .PostHeader__avatar{margin-right:0;margin-left:0}
.wall_module{--post-reply-block-padding:12px;--post-reply-box-fix-padding:2px}
.wall_module .replies_wrap,.wall_module .wl_replies{border-radius:0 0 var(--vkui--size_border_radius_paper--regular) var(--vkui--size_border_radius_paper--regular)}
.wall_module .replies .replies_wrap{padding-bottom:var(--post-reply-block-padding, 12px)}
.wall_module .replies_wrap::after{display:block;content:"";height:1px;margin-top:-1px}
.wall_module .replies_list{padding:0;border-top:1px solid var(--vkui--color_separator_primary)}
.wall_module .replies_list:empty{border-top:0}
.wall_module .reply{--post-reply-line-height:14px;background-color:transparent;line-height:14px;padding:0 20px;border-top:1px solid transparent;border-bottom:1px solid transparent;margin-bottom:-1px;transition:border-color .2s ease}
.wall_module .reply .reply_wrap{padding:8px 0 10px}
.wall_module .reply~.reply .reply_wrap,.wall_module .reply~.reply .dld{border-top:1px solid var(--vkui--color_separator_primary);margin-top:-1px}
.wall_module .reply.reply_highlighted{background-color:var(--vkui--color_transparent--active);border-top:1px solid var(--vkui--color_separator_secondary);border-bottom:1px solid var(--vkui--color_separator_secondary)}
.wall_module .reply .reply_action{opacity:0;transition:visibility 100ms ease,opacity 100ms ease;outline:0}
.wall_module .reply .no_likes .like_icon{opacity:.35;transition:visibility 100ms ease,opacity 100ms ease}
.wall_module .reply:hover .like_wrap:hover .like_icon{opacity:.5}
.wall_module .reply:hover .like_wrap.my_like .like_icon{opacity:1}
.wall_module .reply:hover .reply_action{visibility:visible;opacity:.6}
.wall_module .reply .reply_action:focus,.wall_module .reply .reply_action:hover{opacity:1}
.wall_module .reply .reply_link_wrap{float:left}
[dir=rtl] .wall_module .reply .reply_link_wrap{float:right}
.wall_module .reply .reply_link_wrap+.reply_link_wrap{padding-left:8px}
[dir=rtl] .wall_module .reply .reply_link_wrap+.reply_link_wrap{padding-left:0;padding-right:8px}
.wall_module .reply .dld{padding:10px 20px 10px 44px;min-height:50px;line-height:50px}
[dir=rtl] .wall_module .reply .dld{padding:10px 44px 10px 20px}
.wall_module .reply .dld::before{content:" ";display:inline-block;height:100%;width:0;vertical-align:middle}
.wall_module .reply .dld .delete_all{margin-top:-1px}
.wall_module .reply .dld .delete_thread_wrap{margin-top:19px}
.wall_module .reply .dld_inner{display:inline-block;vertical-align:middle;line-height:1.462}
.wall_module .reply .dld_inner .wall_reasons_result{width:400px}
.wall_module .reply.reply_deleted .reply_img{background:url(/images/wall/deleted_avatar_50.png)no-repeat center;width:34px;height:34px}
@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.wall_module .reply.reply_deleted .reply_img{background-image:url(/images/wall/deleted_avatar_50_2x.png);background-size:50px 50px}}
@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.wall_module .reply.reply_deleted .reply_img{background-size:cover}}
.wall_module .reply.reply_deleted .reply_text{font-size:12.5px;color:var(--vkui--color_text_secondary);line-height:1.36;min-height:1.36em}
.wall_module .reply_highlight_updated_content,.wall_module .reply_highlight_updated{animation-timing-function:cubic-bezier(.37,0,.63,1);animation-name:ReplyUpdatedHighlight;animation-duration:3000ms;animation-iteration-count:1;animation-play-state:running}
.wall_module .reply_actions_wrap{position:relative;z-index:10}
.wall_module .reply_actions{height:11px;width:50px;padding-top:4px;position:absolute;right:0}
[dir=rtl] .wall_module .reply_actions{right:auto;left:0}
.wall_module .post_actions.post_actions_progress .reply_action{display:none}
.wall_module .reply_image{display:block;float:left;margin-top:2px}
[dir=rtl] .wall_module .reply_image{float:right}
.wall_module .reply_img{width:34px;height:34px;border-radius:50%;vertical-align:top}
.wall_module .reply_image_stories{position:relative}
.wall_module .reply_image_stories_unseen::after{content:"";width:100%;height:100%;position:absolute;top:0;left:0;border-radius:50%;box-shadow:0 0 0 2px var(--vkui--color_stroke_accent),inset 0 0 0 2px var(--vkui--color_background_content)}
[dir=rtl] .wall_module .reply_image_stories_unseen::after{left:auto;right:0}
.wall_module .reply_image_stories_unseen .reply_img{width:30px;height:30px;margin:2px}
.wall_module .reply_author{font-size:12.5px;line-height:1.36;color:var(--vkui--color_text_secondary);min-height:1.36em}
.wall_module .reply_pin_icon_pinned{float:left;width:12px;height:12px;padding-right:6px;color:var(--vkui--color_text_tertiary)}
[dir=rtl] .wall_module .reply_pin_icon_pinned{float:right;padding-right:0;padding-left:6px}
.wall_module .reply_pin_icon_pinned svg{display:inline-block;width:12px;height:12px}
.wall_module .reply_date{float:left;padding-right:8px;color:var(--vkui--color_text_secondary)}
[dir=rtl] .wall_module .reply_date{float:right;padding-right:0;padding-left:8px}
.wall_module .wall_reply_text{word-wrap:break-word;overflow:hidden;line-height:1.36}
.wall_module .reply_text{padding:1px 0 0}
.wall_module .reply_content{margin-left:44px;word-wrap:break-word;min-height:34px}
[dir=rtl] .wall_module .reply_content{margin-left:0;margin-right:44px}
.wall_module .reply_content .post_actions_wrap{margin-top:2px}
.wall_module .reply_thumb{position:relative;display:block;float:right;margin-left:20px;overflow:hidden;width:80px;vertical-align:top}
[dir=rtl] .wall_module .reply_thumb{float:left;margin-left:0;margin-right:20px}
.wall_module .reply_thumb_placeholder{border-radius:2px;position:relative;width:100%;height:0;padding-bottom:100%;color:var(--steel_gray_200);background:var(--steel_gray_40)}
.wall_module .reply_thumb_placeholder_icon{position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.wall_module .reply_thumb_img{width:80px;border-radius:2px}
.wall_module .reply_footer{font-size:12.5px;padding:3px 0 0;margin-bottom:-1px}
.wall_module .reply_to{color:var(--vkui--color_text_secondary)}
.wall_module .wd_lnk{color:var(--vkui--color_text_subhead)}
.wall_module .reply_wrap .page_media_link_desc_td div.page_media_link_desc{max-height:2.7em;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;text-overflow:ellipsis}
.wall_module .new_reply{display:none}
.wall_module .reply_box,.wall_module .reply_fakebox_wrap{border-radius:0 0 var(--vkui--size_border_radius_paper--regular) var(--vkui--size_border_radius_paper--regular);border-top:1px solid var(--vkui--color_separator_primary);margin-top:-1px}
.wall_module .reply_box .post_field_user_image,.wall_module .reply_fakebox_wrap .post_field_user_image{left:20px}
[dir=rtl] .wall_module .reply_box .post_field_user_image,[dir=rtl] .wall_module .reply_fakebox_wrap .post_field_user_image{left:auto;right:20px}
.wall_module .reply_form{zoom:1;position:relative}
.wall_module .reply_to_title{display:none;padding-top:6px;color:var(--vkui--color_text_secondary);white-space:nowrap;overflow:hidden;float:none!important}
.wall_module .reply_to_title .reply_to_label{overflow:hidden;text-overflow:ellipsis;padding-right:1px;text-align:right;line-height:16px}
[dir=rtl] .wall_module .reply_to_title .reply_to_label{padding-right:0;padding-left:1px;text-align:left}
.wall_module .reply_to_title .reply_to_cancel{display:inline-flex;align-items:center;width:12px;height:12px;margin:2px 0 0 3px;float:right;cursor:pointer;color:var(--vkui--color_icon_secondary)}
[dir=rtl] .wall_module .reply_to_title .reply_to_cancel{margin:2px 3px 0 0;float:left}
.wall_module .reply_box_photo{position:absolute;width:25px;height:25px;right:38px;top:4px;background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23828a99%22%20stroke-width%3D%221.7%22%3E%3Cpath%20d%3D%22m14.134%203.65c.853%200%201.46.278%201.988.899.017.019.494.61.66.815.228.281.674.536.945.536h.41c2.419%200%203.863%201.563%203.863%204.05v5.85c0%202.241-2%204.2-4.273%204.2h-11.454c-2.267%200-4.223-1.953-4.223-4.2v-5.85c0-2.496%201.4-4.05%203.814-4.05h.409c.271%200%20.717-.255.945-.536.166-.204.643-.796.66-.815.528-.621%201.135-.899%201.988-.899z%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223.85%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)center no-repeat;background-size:20px;cursor:pointer;opacity:.7;border:0;box-shadow:none}
[dir=rtl] .wall_module .reply_box_photo{right:auto;left:38px}
.wall_module .reply_box_photo:focus,.wall_module .reply_box_photo:hover{opacity:1}
.wall_module .reply_fake_emoji{position:absolute;right:9px;top:4px;background-color:transparent;border:0;box-shadow:none}
[dir=rtl] .wall_module .reply_fake_emoji{right:auto;left:9px}
.wall_module .reply_warn{padding:0 0 7px}
.wall_module .reply_box .reply_warn{padding-top:0;padding-bottom:15px}
.wall_module .wr_header,.wall_module .replies_open{font-size:12.5px;display:block;cursor:pointer;color:var(--vkui--color_text_accent_themed);background:var(--vkui--color_background_secondary_alpha);line-height:32px;border-radius:var(--vkui--size_border_radius--regular);text-align:center}
.wall_module .wr_header:hover,.wall_module .replies_open:hover{text-decoration:none}
.wall_module .wr_header{margin:15px 20px}
.wall_module .wr_header .pr{padding-top:14px}
.wall_module .wr_header~.reply{margin-top:-15px}
.wall_module .wr_header~.reply~.reply{margin-top:0}
.wall_module .reply_box_inner_wrap.fixed{z-index:200;box-shadow:0-1px 3px var(--vkui--color_separator_primary_alpha)}
.wall_module .reply_fakebox{vertical-align:top;overflow:hidden;max-height:52px;padding:16px 20px 16px 12px;padding-left:16px;border:0;border-radius:0 0 var(--vkui--size_border_radius_paper--regular) var(--vkui--size_border_radius_paper--regular);line-height:1.462;margin-left:48px;box-sizing:border-box;color:var(--vkui--color_text_secondary);cursor:text;resize:none}
[dir=rtl] .wall_module .reply_fakebox{padding:16px 12px 16px 20px;padding-left:0;padding-right:16px;margin-left:0;margin-right:48px}
.wall_module .reply_field_wrap{margin-left:48px}
[dir=rtl] .wall_module .reply_field_wrap{margin-left:0;margin-right:48px}
.wall_module .pv_reply_form .post_field_user_image{transition:none}
.wall_module .reply_box{background-color:var(--vkui--color_background_content)}
.wall_module .reply_box div.submit_post_field::-ms-input-placeholder,.wall_module .reply_box div.submit_post_field[contenteditable=true]::-ms-input-placeholder{color:var(--vkui--color_text_secondary);-ms-transition:opacity .1s ease;transition:opacity .1s ease}
.wall_module .reply_box div.submit_post_field::placeholder,.wall_module .reply_box div.submit_post_field[contenteditable=true]::placeholder,.wall_module .reply_box div.submit_post_field~.placeholder .ph_content,.wall_module .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_content{color:var(--vkui--color_text_secondary);transition:opacity .1s ease}
.wall_module .reply_box div.submit_post_field:focus::-ms-input-placeholder,.wall_module .reply_box div.submit_post_field[contenteditable=true]:focus::-ms-input-placeholder{opacity:0}
.wall_module .reply_box div.submit_post_field:focus::placeholder,.wall_module .reply_box div.submit_post_field[contenteditable=true]:focus::placeholder,.wall_module .reply_box div.submit_post_field:focus~.placeholder .ph_content,.wall_module .reply_box div.submit_post_field[contenteditable=true]:focus~.placeholder .ph_content{opacity:0}
.wall_module .reply_box div.submit_post_field,.wall_module .reply_box div.submit_post_field[contenteditable=true],.wall_module .reply_box div.submit_post_field~.placeholder .ph_input,.wall_module .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input{padding-left:16px}
[dir=rtl] .wall_module .reply_box div.submit_post_field,[dir=rtl] .wall_module .reply_box div.submit_post_field[contenteditable=true],[dir=rtl] .wall_module .reply_box div.submit_post_field~.placeholder .ph_input,[dir=rtl] .wall_module .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input{padding-left:0;padding-right:16px}
.wall_module .post_reply_tt_choose{padding:7px 15px}
.wall_module .post_reply_tt_choose>.radiobtn{margin:8px 0}
.wall_module .post_reply_tt_choose h3{margin:6px 0 11px}
.wall_module #wl_replies_wrap .wall_post_report_cont{border:0}
.wall_module #wl_post .emoji_tt_wrap{margin-right:-4px}
[dir=rtl] .wall_module #wl_post .emoji_tt_wrap{margin-right:0;margin-left:-4px}
.wall_module #wl_reply_form_inner .reply_box{position:relative}
.wall_module .reply_as_group_long{display:none}
.wall_module .reply_warn,.wall_module #like_repost_comment_warn{display:none;padding-top:5px;color:var(--vkui--color_text_muted)}
.wall_module #wl_reply_form .reply_warn{padding-top:0;padding-bottom:12px}
.wall_module .replies_side_wrap{position:absolute;right:20px;margin-top:62px;width:40px;opacity:0;z-index:1}
[dir=rtl] .wall_module .replies_side_wrap{right:auto;left:20px}
.wall_module .replies:hover .replies_side_wrap{opacity:1}
.wall_module .replies_side{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;color:var(--vkui--color_icon_secondary);box-shadow:0 0 0 1px var(--vkui--vkontakte_color_snippet_border_alpha);background-color:var(--vkui--color_background_modal);transition:opacity 100ms linear;cursor:pointer;opacity:0}
.wall_module .replies_side.replies_side_fixed{position:fixed;bottom:15px}
.wall_module .replies_side.replies_side_fixed:hover{opacity:1!important}
.wall_module .replies_side.replies_side_hidden{display:none}
.wall_module .replies_side_icon{color:var(--vkui--color_icon_secondary)}
.wall_module .replies_open{margin:0 20px 15px}
.wall_module .page_friend_reply_wrap{padding:0 20px}
.wall_module .page_friend_reply{padding:16px 0 12px;border-bottom:1px solid var(--vkui--color_separator_primary)}
.wall_module .page_friend_reply_ava{width:34px;height:34px;border-radius:50%}
.wall_module .page_friend_reply_cont{margin-left:44px;letter-spacing:-.1px}
[dir=rtl] .wall_module .page_friend_reply_cont{margin-left:0;margin-right:44px}
.wall_module .page_friend_reply_name{font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;line-height:15px}
.wall_module .page_friend_reply_date{font-size:12px;font-weight:400;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;color:var(--vkui--color_text_subhead);margin-left:3px;cursor:pointer}
[dir=rtl] .wall_module .page_friend_reply_date{margin-left:0;margin-right:3px}
.wall_module .page_friend_reply_date:hover{text-decoration:underline}
.wall_module .page_friend_reply_text{max-width:337px;word-wrap:break-word;line-height:17px;white-space:normal;margin-top:1px}
.wall_module .page_friend_reply_text_attachments{color:var(--blue_600);vertical-align:middle}
.wall_module .page_friend_reply_more_btn{text-align:center;padding:9px 0;display:block;line-height:17px}
.wall_module .like_tt_bottom_page_friend_reply{padding:0!important}
.wall_module .reply .wall_post_report_cont{border:0;border-left:1px solid var(--white)}
[dir=rtl] .wall_module .reply .wall_post_report_cont{border-left:none;border-right:1px solid var(--white)}
.wall_module .post_suggestions_show+.reply_box,.wall_module .post_suggestions_show+.reply_fakebox_wrap,.wall_module .wl_reply_form_fixed .post_suggestions_show+.reply_box,.wall_module .wl_reply_form_fixed .post_suggestions_show+.reply_fakebox_wrap{border-top:none}
.wall_module .reply_box_open .replies_wrap,.wall_module .reply_box_open .submit_post,.wall_module .reply_box_open .reply_form_image{display:block}
.wall_module .reply_box_open .submit_post_field,.wall_module .reply_box_open .submit_post_field~.placeholder .ph_input{height:auto;min-height:80px;max-height:none;padding-right:42px}
[dir=rtl] .wall_module .reply_box_open .submit_post_field,[dir=rtl] .wall_module .reply_box_open .submit_post_field~.placeholder .ph_input{padding-right:0;padding-left:42px}
.wall_module .reply_box_open .emoji_smile{display:block}
.wall_module .reply_action{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22cancel_16__Page-2%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20id%3D%22cancel_16__cancel_16%22%3E%3Cpath%20id%3D%22cancel_16__Rectangle%22%20d%3D%22M0%200h16v16H0z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M8%206.73l3.46-3.47a.9.9%200%20111.28%201.28L9.27%208l3.47%203.46a.9.9%200%2011-1.28%201.28L8%209.27l-3.46%203.47a.9.9%200%2011-1.28-1.28L6.73%208%203.26%204.54a.9.9%200%20011.28-1.28L8%206.73z%22%20id%3D%22cancel_16__Mask%22%20fill%3D%22%23818c99%22%20fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E);background-size:16px;background-position:center;opacity:0;cursor:pointer;height:16px;width:16px;margin-left:6px}
[dir=rtl] .wall_module .reply_action{margin-left:0;margin-right:6px}
.wall_module .reply_action.reply_clean_button{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2217%22%20viewBox%3D%220%200%2016%2017%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23EE5D4A%22%20fill-rule%3D%22evenodd%22%20d%3D%22M6%202H1a1%201%200%201%200%200%202h14a1%201%200%200%200%200-2h-5V1a1%201%200%200%200-1-1H7a1%201%200%200%200-1%201v1zM2%205h12v10a2%202%200%200%201-2%202H4a2%202%200%200%201-2-2V5zm3%202a1%201%200%200%200-1%201v6a1%201%200%200%200%202%200V8a1%201%200%200%200-1-1zm6%200a1%201%200%200%200-1%201v6a1%201%200%200%200%202%200V8a1%201%200%200%200-1-1zM8%207a1%201%200%200%200-1%201v6a1%201%200%200%200%202%200V8a1%201%200%200%200-1-1z%22%2F%3E%0A%3C%2Fsvg%3E)center no-repeat;background-size:11px}
.wall_module .reply_action.reply_edit_button,.wall_module .reply_action.post_edit_button{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20fill%3D%22none%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20width%3D%2216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22M12.54%201.66a1.95%201.95%200%2000-2.08.35c-.14.12-.3.27-.47.45L2.6%209.84c-.3.3-.52.53-.7.81-.15.25-.26.51-.32.8a9.6%209.6%200%2000-.07%201.9%201.25%201.25%200%20001.15%201.15h.37c.41%200%201.2%200%201.53-.08.28-.06.54-.17.79-.32.28-.17.51-.4.8-.7l7.4-7.4c.17-.17.32-.32.44-.46.13-.14.26-.3.35-.51a1.95%201.95%200%2000-.35-2.08c-.12-.14-.27-.3-.45-.46l-.03-.03a10.7%2010.7%200%2000-.46-.45%201.99%201.99%200%2000-.51-.35zm-.97%201.37a.45.45%200%2001.36%200l.13.1a9.99%209.99%200%2001.9.94c.06.11.06.24%200%20.36%200%200-.01.03-.1.12-.08.1-.2.22-.39.41l-.72.73-1.44-1.44.73-.72a9.99%209.99%200%2001.53-.5zM9.25%205.31l-5.54%205.54c-.37.37-.46.47-.53.58-.07.11-.12.24-.15.36a3.9%203.9%200%2000-.02.43c-.01.42-.02.63%200%20.68.03.05.04.06.1.09.04.02.25.01.67%200%20.2%200%20.37%200%20.43-.02.12-.03.25-.08.36-.15.1-.07.2-.16.58-.53l5.54-5.54z%22%20fill%3D%22%23818c99%22%20fill-rule%3D%22evenodd%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E)}
.wall_module .reply_action.reply_report_button{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10.0738%202.5L5.92622%202.5C5.79535%202.5%205.66984%202.55199%205.5773%202.64453L2.64453%205.57729C2.55199%205.66984%202.5%205.79535%202.5%205.92622L2.5%2010.0738C2.5%2010.2047%202.55199%2010.3302%202.64453%2010.4227L5.57729%2013.3555C5.66984%2013.448%205.79535%2013.5%205.92622%2013.5L10.0738%2013.5C10.2047%2013.5%2010.3302%2013.448%2010.4227%2013.3555L13.3555%2010.4227C13.448%2010.3302%2013.5%2010.2046%2013.5%2010.0738L13.5%205.92622C13.5%205.79535%2013.448%205.66984%2013.3555%205.5773L10.4227%202.64453C10.3302%202.55199%2010.2047%202.5%2010.0738%202.5ZM5.92622%201C5.39752%201%204.89048%201.21002%204.51664%201.58387L1.58387%204.51663C1.21002%204.89048%201%205.39752%201%205.92622V10.0738C1%2010.6025%201.21002%2011.1095%201.58387%2011.4834L4.51663%2014.4161C4.89048%2014.79%205.39752%2015%205.92622%2015L10.0738%2015C10.6025%2015%2011.1095%2014.79%2011.4834%2014.4161L14.4161%2011.4834C14.79%2011.1095%2015%2010.6025%2015%2010.0738L15%205.92622C15%205.39752%2014.79%204.89048%2014.4161%204.51664L11.4834%201.58387C11.1095%201.21002%2010.6025%201%2010.0738%201H5.92622Z%22%20fill%3D%22%2399A2AD%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8%204C8.41421%204%208.75%204.33579%208.75%204.75V8.25C8.75%208.66421%208.41421%209%208%209C7.58579%209%207.25%208.66421%207.25%208.25V4.75C7.25%204.33579%207.58579%204%208%204Z%22%20fill%3D%22%2399A2AD%22%2F%3E%0A%3Cpath%20d%3D%22M8.90001%2011.1C8.90001%2011.5971%208.49706%2012%208.00001%2012C7.50295%2012%207.10001%2011.5971%207.10001%2011.1C7.10001%2010.603%207.50295%2010.2%208.00001%2010.2C8.49706%2010.2%208.90001%2010.603%208.90001%2011.1Z%22%20fill%3D%22%2399A2AD%22%2F%3E%0A%3C%2Fsvg%3E)}
.wall_module .reply_action.reply_pin_button{color:var(--vkui--color_text_tertiary);background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23AEB7C2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.23%202.1l3.66%203.67c.23.22.07.63-.26.63h-.52a.9.9%200%2000-.64.26l-1.71%201.72a.9.9%200%2000-.26.63v3c0%20.55-.7.86-1.1.46l-2.3-2.3-3.58%203.57a.9.9%200%2011-1.26-1.27L5.83%208.9%203.54%206.6c-.4-.38-.11-1.1.46-1.1h2.99a.9.9%200%2000.63-.26l1.72-1.71a.9.9%200%2000.26-.63v-.53c0-.32.4-.5.63-.26z%22%2F%3E%3C%2Fsvg%3E)}
.wall_module .reply_action.reply_pin_active_button{color:var(--vkui--color_icon_accent);background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23AEB7C2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.23%202.1l3.66%203.67c.23.22.07.63-.26.63h-.52a.9.9%200%2000-.64.26l-1.71%201.72a.9.9%200%2000-.26.63v3c0%20.55-.7.86-1.1.46l-2.3-2.3-3.58%203.57a.9.9%200%2011-1.26-1.27L5.83%208.9%203.54%206.6c-.4-.38-.11-1.1.46-1.1h2.99a.9.9%200%2000.63-.26l1.72-1.71a.9.9%200%2000.26-.63v-.53c0-.32.4-.5.63-.26z%22%2F%3E%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .wall_module .reply_action{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22cancel_16__Page-2%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20id%3D%22cancel_16__cancel_16%22%3E%3Cpath%20id%3D%22cancel_16__Rectangle%22%20d%3D%22M0%200h16v16H0z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M8%206.73l3.46-3.47a.9.9%200%20111.28%201.28L9.27%208l3.47%203.46a.9.9%200%2011-1.28%201.28L8%209.27l-3.46%203.47a.9.9%200%2011-1.28-1.28L6.73%208%203.26%204.54a.9.9%200%20011.28-1.28L8%206.73z%22%20id%3D%22cancel_16__Mask%22%20fill%3D%22%23b2b2b2%22%20fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .wall_module .reply_action.reply_report_button{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10.0738%202.5L5.92622%202.5C5.79535%202.5%205.66984%202.55199%205.5773%202.64453L2.64453%205.57729C2.55199%205.66984%202.5%205.79535%202.5%205.92622L2.5%2010.0738C2.5%2010.2047%202.55199%2010.3302%202.64453%2010.4227L5.57729%2013.3555C5.66984%2013.448%205.79535%2013.5%205.92622%2013.5L10.0738%2013.5C10.2047%2013.5%2010.3302%2013.448%2010.4227%2013.3555L13.3555%2010.4227C13.448%2010.3302%2013.5%2010.2046%2013.5%2010.0738L13.5%205.92622C13.5%205.79535%2013.448%205.66984%2013.3555%205.5773L10.4227%202.64453C10.3302%202.55199%2010.2047%202.5%2010.0738%202.5ZM5.92622%201C5.39752%201%204.89048%201.21002%204.51664%201.58387L1.58387%204.51663C1.21002%204.89048%201%205.39752%201%205.92622V10.0738C1%2010.6025%201.21002%2011.1095%201.58387%2011.4834L4.51663%2014.4161C4.89048%2014.79%205.39752%2015%205.92622%2015L10.0738%2015C10.6025%2015%2011.1095%2014.79%2011.4834%2014.4161L14.4161%2011.4834C14.79%2011.1095%2015%2010.6025%2015%2010.0738L15%205.92622C15%205.39752%2014.79%204.89048%2014.4161%204.51664L11.4834%201.58387C11.1095%201.21002%2010.6025%201%2010.0738%201H5.92622Z%22%20fill%3D%22%2399A2AD%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8%204C8.41421%204%208.75%204.33579%208.75%204.75V8.25C8.75%208.66421%208.41421%209%208%209C7.58579%209%207.25%208.66421%207.25%208.25V4.75C7.25%204.33579%207.58579%204%208%204Z%22%20fill%3D%22%2399A2AD%22%2F%3E%0A%3Cpath%20d%3D%22M8.90001%2011.1C8.90001%2011.5971%208.49706%2012%208.00001%2012C7.50295%2012%207.10001%2011.5971%207.10001%2011.1C7.10001%2010.603%207.50295%2010.2%208.00001%2010.2C8.49706%2010.2%208.90001%2010.603%208.90001%2011.1Z%22%20fill%3D%22%2399A2AD%22%2F%3E%0A%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .wall_module .reply_action.reply_edit_button,[scheme=vkcom_dark] .wall_module .reply_action.post_edit_button{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20fill%3D%22none%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20width%3D%2216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22M12.54%201.66a1.95%201.95%200%2000-2.08.35c-.14.12-.3.27-.47.45L2.6%209.84c-.3.3-.52.53-.7.81-.15.25-.26.51-.32.8a9.6%209.6%200%2000-.07%201.9%201.25%201.25%200%20001.15%201.15h.37c.41%200%201.2%200%201.53-.08.28-.06.54-.17.79-.32.28-.17.51-.4.8-.7l7.4-7.4c.17-.17.32-.32.44-.46.13-.14.26-.3.35-.51a1.95%201.95%200%2000-.35-2.08c-.12-.14-.27-.3-.45-.46l-.03-.03a10.7%2010.7%200%2000-.46-.45%201.99%201.99%200%2000-.51-.35zm-.97%201.37a.45.45%200%2001.36%200l.13.1a9.99%209.99%200%2001.9.94c.06.11.06.24%200%20.36%200%200-.01.03-.1.12-.08.1-.2.22-.39.41l-.72.73-1.44-1.44.73-.72a9.99%209.99%200%2001.53-.5zM9.25%205.31l-5.54%205.54c-.37.37-.46.47-.53.58-.07.11-.12.24-.15.36a3.9%203.9%200%2000-.02.43c-.01.42-.02.63%200%20.68.03.05.04.06.1.09.04.02.25.01.67%200%20.2%200%20.37%200%20.43-.02.12-.03.25-.08.36-.15.1-.07.2-.16.58-.53l5.54-5.54z%22%20fill%3D%22%23b2b2b2%22%20fill-rule%3D%22evenodd%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .wall_module .reply_action.reply_pin_button{color:var(--vkui--color_text_tertiary);background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23AEB7C2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.23%202.1l3.66%203.67c.23.22.07.63-.26.63h-.52a.9.9%200%2000-.64.26l-1.71%201.72a.9.9%200%2000-.26.63v3c0%20.55-.7.86-1.1.46l-2.3-2.3-3.58%203.57a.9.9%200%2011-1.26-1.27L5.83%208.9%203.54%206.6c-.4-.38-.11-1.1.46-1.1h2.99a.9.9%200%2000.63-.26l1.72-1.71a.9.9%200%2000.26-.63v-.53c0-.32.4-.5.63-.26z%22%2F%3E%3C%2Fsvg%3E)}
[scheme=vkcom_dark] .wall_module .reply_action.reply_pin_active_button{color:var(--vkui--color_icon_accent);background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23AEB7C2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.23%202.1l3.66%203.67c.23.22.07.63-.26.63h-.52a.9.9%200%2000-.64.26l-1.71%201.72a.9.9%200%2000-.26.63v3c0%20.55-.7.86-1.1.46l-2.3-2.3-3.58%203.57a.9.9%200%2011-1.26-1.27L5.83%208.9%203.54%206.6c-.4-.38-.11-1.1.46-1.1h2.99a.9.9%200%2000.63-.26l1.72-1.71a.9.9%200%2000.26-.63v-.53c0-.32.4-.5.63-.26z%22%2F%3E%3C%2Fsvg%3E)}
@keyframes ReplyUpdatedHighlight{0%{background-color:var(--vkui--color_transparent--active)}to{background-color:var(--vkui--color_background_content)}}
.deep_active.Post--with_closed_comments_donut .replies_deep_collapse{visibility:hidden}
.deep_active.Post--with_closed_comments_donut .replies_next{display:none!important}
.deep_active.Post--with_closed_comments_donut .replies .replies_wrap_deep .replies_short_deep{display:none}
.reply_box.submit_post_box .emoji_smile_icon_vector,.reply_box_wrap .reply_fakebox_wrap .emoji_smile_icon_vector{background-repeat:no-repeat;background-size:20px;background-position:2px 2px}
[dir=rtl] .reply_box.submit_post_box .emoji_smile_icon_vector,[dir=rtl] .reply_box_wrap .reply_fakebox_wrap .emoji_smile_icon_vector{background-position:right 2px top 2px}
.reply_box.submit_post_box .emoji_smile_wrap,.reply_box_wrap .reply_fakebox_wrap .emoji_smile_wrap{right:10px;top:0;padding-top:5px}
[dir=rtl] .reply_box.submit_post_box .emoji_smile_wrap,[dir=rtl] .reply_box_wrap .reply_fakebox_wrap .emoji_smile_wrap{right:auto;left:10px}
.reply_send_button{display:flex;align-items:center;justify-content:center}
.ReplySendButtonIcon{display:flex;opacity:.7;color:var(--vkui--color_icon_secondary);transition:.15s}
.reply_send_button:not(.reply_send_disabled):not(.button_disabled):hover .ReplySendButtonIcon{opacity:1}
.reply_send_button.reply_send_disabled .ReplySendButtonIcon,.reply_send_button.button_disabled .ReplySendButtonIcon{opacity:.3}
.replies .reply.reply_inline{cursor:pointer}
.replies .reply.reply_inline:hover{background-color:var(--vkui--vkontakte_background_hover_alpha)}
.deep_active .replies .reply .reply_wrap,.deep_active .wl_replies_block_wrap .reply .reply_wrap,.deep_active.wall_module .replies .reply .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .reply .reply_wrap{margin-left:44px;border-top:1px solid var(--vkui--color_separator_primary);padding:7px 0}
[dir=rtl] .deep_active .replies .reply .reply_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .reply .reply_wrap,[dir=rtl] .deep_active.wall_module .replies .reply .reply_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply .reply_wrap{margin-left:0;margin-right:44px}
.deep_active .replies .reply:first-child .reply_wrap,.deep_active .wl_replies_block_wrap .reply:first-child .reply_wrap,.deep_active.wall_module .replies .reply:first-child .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .reply:first-child .reply_wrap{border-top:none}
.deep_active .replies .reply .like_btn,.deep_active .wl_replies_block_wrap .reply .like_btn,.deep_active.wall_module .replies .reply .like_btn,.deep_active.wall_module .wl_replies_block_wrap .reply .like_btn{transition:opacity 100ms ease}
.deep_active .replies .reply .like_btn.empty,.deep_active .wl_replies_block_wrap .reply .like_btn.empty,.deep_active.wall_module .replies .reply .like_btn.empty,.deep_active.wall_module .wl_replies_block_wrap .reply .like_btn.empty{opacity:0}
.deep_active .replies .reply:hover .like_btn,.deep_active .wl_replies_block_wrap .reply:hover .like_btn,.deep_active.wall_module .replies .reply:hover .like_btn,.deep_active.wall_module .wl_replies_block_wrap .reply:hover .like_btn{opacity:1}
.deep_active .replies .reply_image,.deep_active .wl_replies_block_wrap .reply_image,.deep_active.wall_module .replies .reply_image,.deep_active.wall_module .wl_replies_block_wrap .reply_image{margin-top:1px;margin-left:-44px}
[dir=rtl] .deep_active .replies .reply_image,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_image,[dir=rtl] .deep_active.wall_module .replies .reply_image,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_image{margin-left:0;margin-right:-44px}
.deep_active .replies .reply_content,.deep_active .wl_replies_block_wrap .reply_content,.deep_active.wall_module .replies .reply_content,.deep_active.wall_module .wl_replies_block_wrap .reply_content{margin-left:0}
[dir=rtl] .deep_active .replies .reply_content,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_content,[dir=rtl] .deep_active.wall_module .replies .reply_content,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_content{margin-left:0;margin-right:0}
.deep_active .replies .reply_footer,.deep_active .wl_replies_block_wrap .reply_footer,.deep_active.wall_module .replies .reply_footer,.deep_active.wall_module .wl_replies_block_wrap .reply_footer{padding:4px 0 0}
.deep_active .replies .reply_box,.deep_active .wl_replies_block_wrap .reply_box,.deep_active.wall_module .replies .reply_box,.deep_active.wall_module .wl_replies_block_wrap .reply_box,.deep_active .replies .reply_fakebox_wrap,.deep_active .wl_replies_block_wrap .reply_fakebox_wrap,.deep_active.wall_module .replies .reply_fakebox_wrap,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_wrap{border-top:none;margin-top:0}
.deep_active .replies .reply_box .post_field_user_image,.deep_active .wl_replies_block_wrap .reply_box .post_field_user_image,.deep_active.wall_module .replies .reply_box .post_field_user_image,.deep_active.wall_module .wl_replies_block_wrap .reply_box .post_field_user_image,.deep_active .replies .reply_fakebox_wrap .post_field_user_image,.deep_active .wl_replies_block_wrap .reply_fakebox_wrap .post_field_user_image,.deep_active.wall_module .replies .reply_fakebox_wrap .post_field_user_image,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_wrap .post_field_user_image{left:0;top:0}
[dir=rtl] .deep_active .replies .reply_box .post_field_user_image,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_box .post_field_user_image,[dir=rtl] .deep_active.wall_module .replies .reply_box .post_field_user_image,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_box .post_field_user_image,[dir=rtl] .deep_active .replies .reply_fakebox_wrap .post_field_user_image,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_fakebox_wrap .post_field_user_image,[dir=rtl] .deep_active.wall_module .replies .reply_fakebox_wrap .post_field_user_image,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_wrap .post_field_user_image{left:auto;right:0}
.deep_active .replies .reply_fakebox_wrap,.deep_active .wl_replies_block_wrap .reply_fakebox_wrap,.deep_active.wall_module .replies .reply_fakebox_wrap,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_wrap,.deep_active .replies .reply_text_wrapper,.deep_active .wl_replies_block_wrap .reply_text_wrapper,.deep_active.wall_module .replies .reply_text_wrapper,.deep_active.wall_module .wl_replies_block_wrap .reply_text_wrapper{position:relative;margin:12px 20px 12px}
.deep_active .replies .reply_fakebox_wrap,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_wrap,.deep_active .wl_replies_block_wrap .reply_fakebox_wrap,.deep_active .replies .reply_text_wrapper{margin-bottom:0}
.deep_active .replies .reply_text_wrapper,.deep_active .wl_replies_block_wrap .reply_text_wrapper{padding-bottom:var(--post-reply-box-fix-padding, 2px)}
.deep_active .wl_reply_form_wrap .reply_text_wrapper,.deep_active .wl_reply_form_wrap .reply_fakebox_wrap,.deep_active .reply_box_inner_wrap.fixed .reply_text_wrapper,.deep_active .reply_box_inner_wrap.fixed .reply_fakebox_wrap{margin-bottom:var(--post-reply-block-padding, 12px)}
.deep_active .replies .submit_post,.deep_active .wl_replies_block_wrap .submit_post,.deep_active.wall_module .replies .submit_post,.deep_active.wall_module .wl_replies_block_wrap .submit_post{display:block;border:0;background-color:var(--vkui--color_background_content);padding:0 20px}
.deep_active .replies .reply_media_preview,.deep_active .wl_replies_block_wrap .reply_media_preview,.deep_active.wall_module .replies .reply_media_preview,.deep_active.wall_module .wl_replies_block_wrap .reply_media_preview{border-bottom:none;margin:-2px 0 0 44px}
[dir=rtl] .deep_active .replies .reply_media_preview,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_media_preview,[dir=rtl] .deep_active.wall_module .replies .reply_media_preview,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_media_preview{margin:-2px 44px 0 0}
.deep_active .replies .reply_media_preview .page_attach_progress_wrap,.deep_active .wl_replies_block_wrap .reply_media_preview .page_attach_progress_wrap,.deep_active.wall_module .replies .reply_media_preview .page_attach_progress_wrap,.deep_active.wall_module .wl_replies_block_wrap .reply_media_preview .page_attach_progress_wrap{margin-left:0}
[dir=rtl] .deep_active .replies .reply_media_preview .page_attach_progress_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_media_preview .page_attach_progress_wrap,[dir=rtl] .deep_active.wall_module .replies .reply_media_preview .page_attach_progress_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_media_preview .page_attach_progress_wrap{margin-left:0;margin-right:0}
.deep_active .replies .wpe_wrap .media_preview_has_medias,.deep_active .wl_replies_block_wrap .wpe_wrap .media_preview_has_medias,.deep_active.wall_module .replies .wpe_wrap .media_preview_has_medias,.deep_active.wall_module .wl_replies_block_wrap .wpe_wrap .media_preview_has_medias{margin-left:0}
[dir=rtl] .deep_active .replies .wpe_wrap .media_preview_has_medias,[dir=rtl] .deep_active .wl_replies_block_wrap .wpe_wrap .media_preview_has_medias,[dir=rtl] .deep_active.wall_module .replies .wpe_wrap .media_preview_has_medias,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .wpe_wrap .media_preview_has_medias{margin-left:0;margin-right:0}
.deep_active .replies .replies_list,.deep_active .wl_replies_block_wrap .replies_list,.deep_active.wall_module .replies .replies_list,.deep_active.wall_module .wl_replies_block_wrap .replies_list{padding-top:10px}
.deep_active .replies .replies_list:empty,.deep_active .wl_replies_block_wrap .replies_list:empty,.deep_active.wall_module .replies .replies_list:empty,.deep_active.wall_module .wl_replies_block_wrap .replies_list:empty{border-top:1px solid var(--vkui--color_separator_secondary)}
.deep_active .replies .replies_list:empty+.reply_box_wrap .reply_box_inner_wrap:not(.fixed) .reply_fakebox_wrap,.deep_active .wl_replies_block_wrap .replies_list:empty+.reply_box_wrap .reply_box_inner_wrap:not(.fixed) .reply_fakebox_wrap,.deep_active.wall_module .replies .replies_list:empty+.reply_box_wrap .reply_box_inner_wrap:not(.fixed) .reply_fakebox_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_list:empty+.reply_box_wrap .reply_box_inner_wrap:not(.fixed) .reply_fakebox_wrap,.deep_active .replies .replies_list:empty+.reply_box_wrap .reply_text_wrapper,.deep_active .wl_replies_block_wrap .replies_list:empty+.reply_box_wrap .reply_text_wrapper,.deep_active.wall_module .replies .replies_list:empty+.reply_box_wrap .reply_text_wrapper,.deep_active.wall_module .wl_replies_block_wrap .replies_list:empty+.reply_box_wrap .reply_text_wrapper{margin-top:1px}
.deep_active .replies .submit_post_box .emoji_smile,.deep_active .wl_replies_block_wrap .submit_post_box .emoji_smile,.deep_active.wall_module .replies .submit_post_box .emoji_smile,.deep_active.wall_module .wl_replies_block_wrap .submit_post_box .emoji_smile{display:block}
.deep_active .replies .replies_deep_has_field+.reply .reply_wrap,.deep_active .wl_replies_block_wrap .replies_deep_has_field+.reply .reply_wrap,.deep_active.wall_module .replies .replies_deep_has_field+.reply .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_deep_has_field+.reply .reply_wrap{border-top:none}
.deep_active .replies .reply_box_wrap,.deep_active .wl_replies_block_wrap .reply_box_wrap,.deep_active.wall_module .replies .reply_box_wrap,.deep_active.wall_module .wl_replies_block_wrap .reply_box_wrap{display:flex;flex-direction:column;width:100%}
.deep_active .replies .reply_box_inner_wrap,.deep_active .wl_replies_block_wrap .reply_box_inner_wrap,.deep_active.wall_module .replies .reply_box_inner_wrap,.deep_active.wall_module .wl_replies_block_wrap .reply_box_inner_wrap{clear:both}
.deep_active .replies .reply_box_inner_wrap.fixed,.deep_active .wl_replies_block_wrap .reply_box_inner_wrap.fixed,.deep_active.wall_module .replies .reply_box_inner_wrap.fixed,.deep_active.wall_module .wl_replies_block_wrap .reply_box_inner_wrap.fixed{background-color:var(--vkui--color_background_content)}
.deep_active .replies .reply_field_wrap,.deep_active .wl_replies_block_wrap .reply_field_wrap,.deep_active.wall_module .replies .reply_field_wrap,.deep_active.wall_module .wl_replies_block_wrap .reply_field_wrap,.deep_active .replies .wl_reply_form_wrap .reply_field_wrap,.deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_field_wrap,.deep_active.wall_module .replies .wl_reply_form_wrap .reply_field_wrap,.deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_field_wrap{position:relative;margin:0 44px}
.deep_active .replies .reply_field_wrap .reply_field,.deep_active .wl_replies_block_wrap .reply_field_wrap .reply_field,.deep_active.wall_module .replies .reply_field_wrap .reply_field,.deep_active.wall_module .wl_replies_block_wrap .reply_field_wrap .reply_field,.deep_active .replies .wl_reply_form_wrap .reply_field_wrap .reply_field,.deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_field_wrap .reply_field,.deep_active.wall_module .replies .wl_reply_form_wrap .reply_field_wrap .reply_field,.deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_field_wrap .reply_field{border:1px solid var(--vkui--color_separator_primary);padding:9px 12px 10px;min-height:0;max-height:none;height:auto;border-radius:6px;line-height:15px}
.deep_active .replies .reply_fakebox_container,.deep_active .wl_replies_block_wrap .reply_fakebox_container,.deep_active.wall_module .replies .reply_fakebox_container,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_container{position:relative;margin:0 44px}
.deep_active .replies .reply_fakebox_container .reply_fake_emoji,.deep_active .wl_replies_block_wrap .reply_fakebox_container .reply_fake_emoji,.deep_active.wall_module .replies .reply_fakebox_container .reply_fake_emoji,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_container .reply_fake_emoji{top:5px;right:10px}
[dir=rtl] .deep_active .replies .reply_fakebox_container .reply_fake_emoji,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_fakebox_container .reply_fake_emoji,[dir=rtl] .deep_active.wall_module .replies .reply_fakebox_container .reply_fake_emoji,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_container .reply_fake_emoji{right:auto;left:10px}
.deep_active .replies .reply_fakebox_container .reply_box_photo,.deep_active .wl_replies_block_wrap .reply_fakebox_container .reply_box_photo,.deep_active.wall_module .replies .reply_fakebox_container .reply_box_photo,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_container .reply_box_photo{top:4px;right:38px}
[dir=rtl] .deep_active .replies .reply_fakebox_container .reply_box_photo,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_fakebox_container .reply_box_photo,[dir=rtl] .deep_active.wall_module .replies .reply_fakebox_container .reply_box_photo,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_container .reply_box_photo{right:auto;left:38px}
.deep_active .replies .reply_fakebox_container .reply_fake_more_attaches,.deep_active .wl_replies_block_wrap .reply_fakebox_container .reply_fake_more_attaches,.deep_active.wall_module .replies .reply_fakebox_container .reply_fake_more_attaches,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_container .reply_fake_more_attaches{position:absolute;top:4px;right:64px;width:25px;height:25px;background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m0%200h24v24h-24z%22%2F%3E%3Cpath%20d%3D%22m20.0291094%2015.0279907-5.384726%205.2303888c-2.5877049%202.513536-6.71408829%202.4838066-9.26530792-.0667538-2.6116233-2.6109485-2.61217034-6.8446794-.00122186-9.4563027.00760974-.0076117.01523784-.015205.02288425-.0227799l8.06657363-7.99110563c1.7601202-1.7436532%204.6004898-1.73030402%206.344143.02981623.0091252.00921136.0182104.01846224.0272554.02775238%201.7500823%201.79751906%201.7306631%204.66777042-.0435807%206.44144506l-8.1308667%208.12825806c-.8479169.8476448-2.20023168.9147308-3.12787932.1551687l-.1337127-.1094846c-.8947528-.7326277-1.02618115-2.0518803-.29355343-2.9466331.03855837-.047091.0791516-.0924786.12166404-.1360332l5.46733261-5.60136864%22%20stroke%3D%22%23828a99%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)no-repeat;background-size:18px;background-position:2px;opacity:.7;cursor:pointer;border:0;box-shadow:none}
[dir=rtl] .deep_active .replies .reply_fakebox_container .reply_fake_more_attaches,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_fakebox_container .reply_fake_more_attaches,[dir=rtl] .deep_active.wall_module .replies .reply_fakebox_container .reply_fake_more_attaches,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_container .reply_fake_more_attaches{right:auto;left:64px;background-position:right 2px top 50%}
.deep_active .replies .reply_fakebox,.deep_active .wl_replies_block_wrap .reply_fakebox,.deep_active.wall_module .replies .reply_fakebox,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox{position:relative;border:1px solid var(--vkui--vkontakte_color_input_border);border-radius:6px;padding:7px 12px 9px;line-height:16px;margin:0}
.deep_active .replies .post_replies_header+.replies_list:empty,.deep_active .wl_replies_block_wrap .post_replies_header+.replies_list:empty,.deep_active.wall_module .replies .post_replies_header+.replies_list:empty,.deep_active.wall_module .wl_replies_block_wrap .post_replies_header+.replies_list:empty{border-top:0}
.deep_active .replies .reply_box div.submit_post_field,.deep_active .wl_replies_block_wrap .reply_box div.submit_post_field,.deep_active.wall_module .replies .reply_box div.submit_post_field,.deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field,.deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field,.deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field,.deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field,.deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field,.deep_active .replies .reply_box div.submit_post_field[contenteditable=true],.deep_active .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active.wall_module .replies .reply_box div.submit_post_field[contenteditable=true],.deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]{line-height:16px;border-color:var(--vkui--vkontakte_color_input_border)}
.deep_active .replies .reply_box div.submit_post_field,.deep_active .wl_replies_block_wrap .reply_box div.submit_post_field,.deep_active.wall_module .replies .reply_box div.submit_post_field,.deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field,.deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field,.deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field,.deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field,.deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field,.deep_active .replies .reply_box div.submit_post_field[contenteditable=true],.deep_active .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active.wall_module .replies .reply_box div.submit_post_field[contenteditable=true],.deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],.deep_active .replies .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active .wl_replies_block_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active.wall_module .replies .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active .replies .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active.wall_module .replies .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input{min-height:34px;max-height:none;height:auto;padding:7px 90px 7px 13px}
[dir=rtl] .deep_active .replies .reply_box div.submit_post_field,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_box div.submit_post_field,[dir=rtl] .deep_active.wall_module .replies .reply_box div.submit_post_field,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field,[dir=rtl] .deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field,[dir=rtl] .deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field,[dir=rtl] .deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field,[dir=rtl] .deep_active .replies .reply_box div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active.wall_module .replies .reply_box div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active .replies .reply_box div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_box div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .replies .reply_box div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active .replies .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .replies .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,[dir=rtl] .deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,[dir=rtl] .deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input{padding:7px 13px 7px 90px}
.deep_active .replies .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active .wl_replies_block_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active.wall_module .replies .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field~.placeholder .ph_input,.deep_active .replies .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active.wall_module .replies .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true]~.placeholder .ph_input{line-height:18px}
.deep_active .replies .reply_box_more_attaches,.deep_active .wl_replies_block_wrap .reply_box_more_attaches,.deep_active.wall_module .replies .reply_box_more_attaches,.deep_active.wall_module .wl_replies_block_wrap .reply_box_more_attaches{position:absolute;top:4px;right:62px;width:25px;height:25px;background-color:transparent;border:0;box-shadow:none}
[dir=rtl] .deep_active .replies .reply_box_more_attaches,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_box_more_attaches,[dir=rtl] .deep_active.wall_module .replies .reply_box_more_attaches,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_box_more_attaches{right:auto;left:62px}
.deep_active .replies .reply_box_more_attaches::before,.deep_active .wl_replies_block_wrap .reply_box_more_attaches::before,.deep_active.wall_module .replies .reply_box_more_attaches::before,.deep_active.wall_module .wl_replies_block_wrap .reply_box_more_attaches::before{content:"";position:absolute;background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m0%200h24v24h-24z%22%2F%3E%3Cpath%20d%3D%22m20.0291094%2015.0279907-5.384726%205.2303888c-2.5877049%202.513536-6.71408829%202.4838066-9.26530792-.0667538-2.6116233-2.6109485-2.61217034-6.8446794-.00122186-9.4563027.00760974-.0076117.01523784-.015205.02288425-.0227799l8.06657363-7.99110563c1.7601202-1.7436532%204.6004898-1.73030402%206.344143.02981623.0091252.00921136.0182104.01846224.0272554.02775238%201.7500823%201.79751906%201.7306631%204.66777042-.0435807%206.44144506l-8.1308667%208.12825806c-.8479169.8476448-2.20023168.9147308-3.12787932.1551687l-.1337127-.1094846c-.8947528-.7326277-1.02618115-2.0518803-.29355343-2.9466331.03855837-.047091.0791516-.0924786.12166404-.1360332l5.46733261-5.60136864%22%20stroke%3D%22%23828a99%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.8%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)no-repeat;background-size:18px;width:20px;height:20px;top:4px;opacity:.7;cursor:pointer}
.deep_active .replies .reply_box_more_attaches:hover::before,.deep_active .wl_replies_block_wrap .reply_box_more_attaches:hover::before,.deep_active.wall_module .replies .reply_box_more_attaches:hover::before,.deep_active.wall_module .wl_replies_block_wrap .reply_box_more_attaches:hover::before{opacity:1}
.deep_active .replies .reply_box_more_attaches .ms_item_more,.deep_active .wl_replies_block_wrap .reply_box_more_attaches .ms_item_more,.deep_active.wall_module .replies .reply_box_more_attaches .ms_item_more,.deep_active.wall_module .wl_replies_block_wrap .reply_box_more_attaches .ms_item_more{padding:var(--media-more-tooltip-offset)0;margin-top:calc(var(--media-more-tooltip-offset)*-1);margin-bottom:calc(var(--media-more-tooltip-offset)*-1)}
.deep_active .replies .reply_box_more_attaches .ms_item_more .ms_item_more_label,.deep_active .wl_replies_block_wrap .reply_box_more_attaches .ms_item_more .ms_item_more_label,.deep_active.wall_module .replies .reply_box_more_attaches .ms_item_more .ms_item_more_label,.deep_active.wall_module .wl_replies_block_wrap .reply_box_more_attaches .ms_item_more .ms_item_more_label{background:0 0}
.deep_active .replies .reply_send_button,.deep_active .wl_replies_block_wrap .reply_send_button,.deep_active.wall_module .replies .reply_send_button,.deep_active.wall_module .wl_replies_block_wrap .reply_send_button{position:absolute;width:34px;height:34px;padding:0;top:0;right:-5px;text-align:left;cursor:pointer;border:0;background-color:transparent}
[dir=rtl] .deep_active .replies .reply_send_button,[dir=rtl] .deep_active .wl_replies_block_wrap .reply_send_button,[dir=rtl] .deep_active.wall_module .replies .reply_send_button,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .reply_send_button{right:auto;left:-5px;text-align:right}
.deep_active .replies .reply_send_button.reply_send_disabled,.deep_active .wl_replies_block_wrap .reply_send_button.reply_send_disabled,.deep_active.wall_module .replies .reply_send_button.reply_send_disabled,.deep_active.wall_module .wl_replies_block_wrap .reply_send_button.reply_send_disabled,.deep_active .replies .reply_send_button.button_disabled,.deep_active .wl_replies_block_wrap .reply_send_button.button_disabled,.deep_active.wall_module .replies .reply_send_button.button_disabled,.deep_active.wall_module .wl_replies_block_wrap .reply_send_button.button_disabled{cursor:default;opacity:1}
.deep_active .replies .reply_form_user_image,.deep_active .wl_replies_block_wrap .reply_form_user_image,.deep_active.wall_module .replies .reply_form_user_image,.deep_active.wall_module .wl_replies_block_wrap .reply_form_user_image{position:relative}
.deep_active .replies .reply_form_user_image .checkbox_official,.deep_active .wl_replies_block_wrap .reply_form_user_image .checkbox_official,.deep_active.wall_module .replies .reply_form_user_image .checkbox_official,.deep_active.wall_module .wl_replies_block_wrap .reply_form_user_image .checkbox_official{position:absolute;z-index:1;width:34px;height:34px;margin:0;opacity:0;overflow:unset}
.deep_active .replies .reply_form_user_image .checkbox_official .post_field_choose_image,.deep_active .wl_replies_block_wrap .reply_form_user_image .checkbox_official .post_field_choose_image,.deep_active.wall_module .replies .reply_form_user_image .checkbox_official .post_field_choose_image,.deep_active.wall_module .wl_replies_block_wrap .reply_form_user_image .checkbox_official .post_field_choose_image{width:34px;height:34px}
.deep_active .replies .reply_form_user_image:focus .checkbox_official,.deep_active .wl_replies_block_wrap .reply_form_user_image:focus .checkbox_official,.deep_active.wall_module .replies .reply_form_user_image:focus .checkbox_official,.deep_active.wall_module .wl_replies_block_wrap .reply_form_user_image:focus .checkbox_official,.deep_active .replies .reply_form_user_image:hover .checkbox_official,.deep_active .wl_replies_block_wrap .reply_form_user_image:hover .checkbox_official,.deep_active.wall_module .replies .reply_form_user_image:hover .checkbox_official,.deep_active.wall_module .wl_replies_block_wrap .reply_form_user_image:hover .checkbox_official{opacity:1}
.deep_active .replies .reply_fakebox_with_official .reply_fakebox_wrap_image .AvatarRich__img,.deep_active .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image .AvatarRich__img,.deep_active.wall_module .replies .reply_fakebox_with_official .reply_fakebox_wrap_image .AvatarRich__img,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image .AvatarRich__img,.deep_active .replies .reply_form_user_image .checkbox_official .AvatarRich__img,.deep_active .wl_replies_block_wrap .reply_form_user_image .checkbox_official .AvatarRich__img,.deep_active.wall_module .replies .reply_form_user_image .checkbox_official .AvatarRich__img,.deep_active.wall_module .wl_replies_block_wrap .reply_form_user_image .checkbox_official .AvatarRich__img{transition:filter .3s ease,opacity .3s ease}
.deep_active .replies .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active.wall_module .replies .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active .replies .reply_form_user_image .checkbox_official::after,.deep_active .wl_replies_block_wrap .reply_form_user_image .checkbox_official::after,.deep_active.wall_module .replies .reply_form_user_image .checkbox_official::after,.deep_active.wall_module .wl_replies_block_wrap .reply_form_user_image .checkbox_official::after{content:"";position:absolute;z-index:3;width:16px;height:12px;top:0;bottom:0;left:0;right:0;margin:auto;background:url("data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2212%22%20viewBox%3D%220%200%2016%2012%22%20width%3D%2216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate(-5329%20-343)%22%3E%3Cpath%20d%3D%22m0%200h5950v1266h-5950z%22%2F%3E%3Cg%20transform%3D%22translate(5329%20343)%22%3E%3Cpath%20d%3D%22m0%200h16v12h-16z%22%2F%3E%3Cpath%20d%3D%22m4.454%203.691a.9.9%200%201%200%20-1.108%201.419l4.096%203.203a.9.9%200%200%200%201.109%200l4.1-3.203a.9.9%200%201%200%20-1.108-1.418l-3.546%202.768-3.543-2.77z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E")no-repeat}
.deep_active .replies .reply_fakebox_with_official .reply_fakebox_wrap_image,.deep_active .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image,.deep_active.wall_module .replies .reply_fakebox_with_official .reply_fakebox_wrap_image,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image{position:relative;cursor:pointer}
.deep_active .replies .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active.wall_module .replies .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image::after{width:34px;height:34px;display:none;background-position:center;margin:0}
.deep_active .replies .reply_fakebox_with_official .reply_fakebox_wrap_image:hover .AvatarRich__img,.deep_active .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image:hover .AvatarRich__img,.deep_active.wall_module .replies .reply_fakebox_with_official .reply_fakebox_wrap_image:hover .AvatarRich__img,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image:hover .AvatarRich__img,.deep_active .replies .reply_form_user_image:hover .checkbox_official .AvatarRich__img,.deep_active .wl_replies_block_wrap .reply_form_user_image:hover .checkbox_official .AvatarRich__img,.deep_active.wall_module .replies .reply_form_user_image:hover .checkbox_official .AvatarRich__img,.deep_active.wall_module .wl_replies_block_wrap .reply_form_user_image:hover .checkbox_official .AvatarRich__img{filter:brightness(60%)}
.deep_active .replies .reply_fakebox_with_official .reply_fakebox_wrap_image:hover::after,.deep_active .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image:hover::after,.deep_active.wall_module .replies .reply_fakebox_with_official .reply_fakebox_wrap_image:hover::after,.deep_active.wall_module .wl_replies_block_wrap .reply_fakebox_with_official .reply_fakebox_wrap_image:hover::after{cursor:pointer;display:block}
.deep_active .replies .post_field_user_image,.deep_active .wl_replies_block_wrap .post_field_user_image,.deep_active.wall_module .replies .post_field_user_image,.deep_active.wall_module .wl_replies_block_wrap .post_field_user_image{width:34px;height:34px}
.deep_active .replies .media_preview,.deep_active .wl_replies_block_wrap .media_preview,.deep_active.wall_module .replies .media_preview,.deep_active.wall_module .wl_replies_block_wrap .media_preview{padding-top:0}
.deep_active .replies .reply_media_preview .media_preview,.deep_active .wl_replies_block_wrap .reply_media_preview .media_preview,.deep_active.wall_module .replies .reply_media_preview .media_preview,.deep_active.wall_module .wl_replies_block_wrap .reply_media_preview .media_preview{padding-bottom:0;margin:var(--post-reply-block-padding, 12px)0 0 0}
.deep_active .wl_replies_block_wrap .reply_media_preview .media_preview,.deep_active.wall_module .wl_replies_block_wrap .reply_media_preview .media_preview{padding-top:0}
.deep_active .replies .page_preview_photo_wrap,.deep_active .wl_replies_block_wrap .page_preview_photo_wrap,.deep_active.wall_module .replies .page_preview_photo_wrap,.deep_active.wall_module .wl_replies_block_wrap .page_preview_photo_wrap,.deep_active .replies .page_preview_video_wrap,.deep_active .wl_replies_block_wrap .page_preview_video_wrap,.deep_active.wall_module .replies .page_preview_video_wrap,.deep_active.wall_module .wl_replies_block_wrap .page_preview_video_wrap,.deep_active .replies .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,.deep_active .wl_replies_block_wrap .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,.deep_active.wall_module .replies .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,.deep_active.wall_module .wl_replies_block_wrap .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,.deep_active .replies .page_preview_graffiti_wrap,.deep_active .wl_replies_block_wrap .page_preview_graffiti_wrap,.deep_active.wall_module .replies .page_preview_graffiti_wrap,.deep_active.wall_module .wl_replies_block_wrap .page_preview_graffiti_wrap{position:relative;cursor:pointer;margin:0 10px 0 0}
[dir=rtl] .deep_active .replies .page_preview_photo_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .page_preview_photo_wrap,[dir=rtl] .deep_active.wall_module .replies .page_preview_photo_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .page_preview_photo_wrap,[dir=rtl] .deep_active .replies .page_preview_video_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .page_preview_video_wrap,[dir=rtl] .deep_active.wall_module .replies .page_preview_video_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .page_preview_video_wrap,[dir=rtl] .deep_active .replies .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,[dir=rtl] .deep_active.wall_module .replies .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,[dir=rtl] .deep_active .replies .page_preview_graffiti_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .page_preview_graffiti_wrap,[dir=rtl] .deep_active.wall_module .replies .page_preview_graffiti_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .page_preview_graffiti_wrap{margin:0 0 0 10px}
.deep_active .replies .page_preview_photo_wrap,.deep_active .wl_replies_block_wrap .page_preview_photo_wrap,.deep_active.wall_module .replies .page_preview_photo_wrap,.deep_active.wall_module .wl_replies_block_wrap .page_preview_photo_wrap,.deep_active .replies .page_preview_video_wrap,.deep_active .wl_replies_block_wrap .page_preview_video_wrap,.deep_active.wall_module .replies .page_preview_video_wrap,.deep_active.wall_module .wl_replies_block_wrap .page_preview_video_wrap,.deep_active .replies .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,.deep_active .wl_replies_block_wrap .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,.deep_active.wall_module .replies .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,.deep_active.wall_module .wl_replies_block_wrap .page_preview_doc_wrap.page_preview_doc_as_photo_wrap,.deep_active .replies .page_preview_graffiti_wrap,.deep_active .wl_replies_block_wrap .page_preview_graffiti_wrap,.deep_active.wall_module .replies .page_preview_graffiti_wrap,.deep_active.wall_module .wl_replies_block_wrap .page_preview_graffiti_wrap,.deep_active .replies .page_preview_doc_photo,.deep_active .wl_replies_block_wrap .page_preview_doc_photo,.deep_active.wall_module .replies .page_preview_doc_photo,.deep_active.wall_module .wl_replies_block_wrap .page_preview_doc_photo{max-width:45%;height:auto}
.deep_active .replies div.page_preview_photo,.deep_active .wl_replies_block_wrap div.page_preview_photo,.deep_active.wall_module .replies div.page_preview_photo,.deep_active.wall_module .wl_replies_block_wrap div.page_preview_photo,.deep_active .replies div.page_preview_video,.deep_active .wl_replies_block_wrap div.page_preview_video,.deep_active.wall_module .replies div.page_preview_video,.deep_active.wall_module .wl_replies_block_wrap div.page_preview_video,.deep_active .replies div.page_preview_graffiti,.deep_active .wl_replies_block_wrap div.page_preview_graffiti,.deep_active.wall_module .replies div.page_preview_graffiti,.deep_active.wall_module .wl_replies_block_wrap div.page_preview_graffiti,.deep_active .replies img.page_preview_video,.deep_active .wl_replies_block_wrap img.page_preview_video,.deep_active.wall_module .replies img.page_preview_video,.deep_active.wall_module .wl_replies_block_wrap img.page_preview_video,.deep_active .replies img.page_preview_graffiti,.deep_active .wl_replies_block_wrap img.page_preview_graffiti,.deep_active.wall_module .replies img.page_preview_graffiti,.deep_active.wall_module .wl_replies_block_wrap img.page_preview_graffiti,.deep_active .replies .page_preview_photo,.deep_active .wl_replies_block_wrap .page_preview_photo,.deep_active.wall_module .replies .page_preview_photo,.deep_active.wall_module .wl_replies_block_wrap .page_preview_photo{position:relative;width:auto;height:auto;max-width:100%}
.deep_active .replies .page_attach_progress_wrap,.deep_active .wl_replies_block_wrap .page_attach_progress_wrap,.deep_active.wall_module .replies .page_attach_progress_wrap,.deep_active.wall_module .wl_replies_block_wrap .page_attach_progress_wrap{margin-left:44px}
[dir=rtl] .deep_active .replies .page_attach_progress_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .page_attach_progress_wrap,[dir=rtl] .deep_active.wall_module .replies .page_attach_progress_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .page_attach_progress_wrap{margin-left:0;margin-right:44px}
.deep_active .replies .replies_next,.deep_active .wl_replies_block_wrap .replies_next,.deep_active.wall_module .replies .replies_next,.deep_active.wall_module .wl_replies_block_wrap .replies_next{display:inline-flex;margin:12px 20px 11px;font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}
.replies .replies_next.replies_next_inline{background:0 0;outline:0;border:0;color:var(--vkui--color_text_link);font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;padding:0;cursor:pointer;font-family:inherit;font-size:inherit}
.replies .replies_next.replies_next_inline:hover{text-decoration:underline}
.deep_active .replies .replies_next:first-child,.deep_active .wl_replies_block_wrap .replies_next:first-child,.deep_active.wall_module .replies .replies_next:first-child,.deep_active.wall_module .wl_replies_block_wrap .replies_next:first-child,.deep_active .replies .replies_next:first-child+.replies_next_loader,.deep_active .wl_replies_block_wrap .replies_next:first-child+.replies_next_loader,.deep_active.wall_module .replies .replies_next:first-child+.replies_next_loader,.deep_active.wall_module .wl_replies_block_wrap .replies_next:first-child+.replies_next_loader{margin-top:10px}
.deep_active .replies .replies_next.replies_next_pre_deleted,.deep_active .wl_replies_block_wrap .replies_next.replies_next_pre_deleted,.deep_active.wall_module .replies .replies_next.replies_next_pre_deleted,.deep_active.wall_module .wl_replies_block_wrap .replies_next.replies_next_pre_deleted{position:fixed;left:-1000px;top:-1000px}
[dir=rtl] .deep_active .replies .replies_next.replies_next_pre_deleted,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_next.replies_next_pre_deleted,[dir=rtl] .deep_active.wall_module .replies .replies_next.replies_next_pre_deleted,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_next.replies_next_pre_deleted{left:auto;right:-1000px}
.deep_active .replies .replies_next.replies_next_pre_deleted:first-child+.reply .reply_wrap,.deep_active .wl_replies_block_wrap .replies_next.replies_next_pre_deleted:first-child+.reply .reply_wrap,.deep_active.wall_module .replies .replies_next.replies_next_pre_deleted:first-child+.reply .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_next.replies_next_pre_deleted:first-child+.reply .reply_wrap{border-top:none}
.deep_active .replies .replies_next:only-child,.deep_active .wl_replies_block_wrap .replies_next:only-child,.deep_active.wall_module .replies .replies_next:only-child,.deep_active.wall_module .wl_replies_block_wrap .replies_next:only-child,.deep_active .replies .replies_next:first-child+.replies_next_loader:last-child,.deep_active .wl_replies_block_wrap .replies_next:first-child+.replies_next_loader:last-child,.deep_active.wall_module .replies .replies_next:first-child+.replies_next_loader:last-child,.deep_active.wall_module .wl_replies_block_wrap .replies_next:first-child+.replies_next_loader:last-child,.deep_active .replies .post_start_reply:first-child+.replies_next:last-child,.deep_active .wl_replies_block_wrap .post_start_reply:first-child+.replies_next:last-child,.deep_active.wall_module .replies .post_start_reply:first-child+.replies_next:last-child,.deep_active.wall_module .wl_replies_block_wrap .post_start_reply:first-child+.replies_next:last-child,.deep_active .replies .post_start_reply:first-child+.replies_next+.replies_next_loader:last-child,.deep_active .wl_replies_block_wrap .post_start_reply:first-child+.replies_next+.replies_next_loader:last-child,.deep_active.wall_module .replies .post_start_reply:first-child+.replies_next+.replies_next_loader:last-child,.deep_active.wall_module .wl_replies_block_wrap .post_start_reply:first-child+.replies_next+.replies_next_loader:last-child{margin-bottom:18px}
.deep_active .replies .post_start_reply:first-child+.replies_next_pre_deleted+.reply .reply_wrap,.deep_active .wl_replies_block_wrap .post_start_reply:first-child+.replies_next_pre_deleted+.reply .reply_wrap,.deep_active.wall_module .replies .post_start_reply:first-child+.replies_next_pre_deleted+.reply .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .post_start_reply:first-child+.replies_next_pre_deleted+.reply .reply_wrap,.deep_active .replies .post_start_reply:first-child+.reply .reply_wrap,.deep_active .wl_replies_block_wrap .post_start_reply:first-child+.reply .reply_wrap,.deep_active.wall_module .replies .post_start_reply:first-child+.reply .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .post_start_reply:first-child+.reply .reply_wrap{border-top:none}
.deep_active .replies .replies_next:not(.replies_next_pre_deleted)+.reply .reply_wrap,.deep_active .wl_replies_block_wrap .replies_next:not(.replies_next_pre_deleted)+.reply .reply_wrap,.deep_active.wall_module .replies .replies_next:not(.replies_next_pre_deleted)+.reply .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_next:not(.replies_next_pre_deleted)+.reply .reply_wrap,.deep_active .replies .replies_next_loader+.reply .reply_wrap,.deep_active .wl_replies_block_wrap .replies_next_loader+.reply .reply_wrap,.deep_active.wall_module .replies .replies_next_loader+.reply .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_next_loader+.reply .reply_wrap{border-top:none}
.deep_active .replies .replies_next_loader,.deep_active .wl_replies_block_wrap .replies_next_loader,.deep_active.wall_module .replies .replies_next_loader,.deep_active.wall_module .wl_replies_block_wrap .replies_next_loader{height:14px;margin:12px 20px 11px}
.deep_active .replies .wl_post_reply_form_forbidden,.deep_active .wl_replies_block_wrap .wl_post_reply_form_forbidden,.deep_active.wall_module .replies .wl_post_reply_form_forbidden,.deep_active.wall_module .wl_replies_block_wrap .wl_post_reply_form_forbidden{border:0}
.deep_active .replies .replies_wrap_deep,.deep_active .wl_replies_block_wrap .replies_wrap_deep,.deep_active.wall_module .replies .replies_wrap_deep,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep{position:relative;margin-left:64px;margin-right:20px;border-top:1px solid var(--vkui--color_separator_primary)}
[dir=rtl] .deep_active .replies .replies_wrap_deep,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep{margin-right:64px;margin-left:20px}
.deep_active .replies .replies_wrap_deep .replies_list_deep,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_list_deep,.deep_active.wall_module .replies .replies_wrap_deep .replies_list_deep,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_list_deep{margin-right:-20px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .replies_list_deep,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_list_deep,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .replies_list_deep,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_list_deep{margin-right:0;margin-left:-20px}
.deep_active .replies .replies_wrap_deep .reply_wrap,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_wrap,.deep_active.wall_module .replies .replies_wrap_deep .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_wrap{margin-left:32px;padding:7px 0}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_wrap,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_wrap{margin-left:0;margin-right:32px}
.deep_active .replies .replies_wrap_deep .reply:not(.reply_tt),.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt),.deep_active.wall_module .replies .replies_wrap_deep .reply:not(.reply_tt),.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt){padding-left:64px;margin-left:-64px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply:not(.reply_tt),[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt),[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply:not(.reply_tt),[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt){padding-left:0;padding-right:64px;margin-left:0;margin-right:-64px}
.deep_active .replies .replies_wrap_deep .reply:not(.reply_tt):last-child .reply_wrap,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt):last-child .reply_wrap,.deep_active.wall_module .replies .replies_wrap_deep .reply:not(.reply_tt):last-child .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt):last-child .reply_wrap{margin-bottom:3px}
.deep_active .replies .replies_wrap_deep:last-child .reply:not(.reply_tt):last-child .reply_wrap,.deep_active .wl_replies_block_wrap .replies_wrap_deep:last-child .reply:not(.reply_tt):last-child .reply_wrap,.deep_active.wall_module .replies .replies_wrap_deep:last-child .reply:not(.reply_tt):last-child .reply_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep:last-child .reply:not(.reply_tt):last-child .reply_wrap{margin-bottom:0}
.deep_active .replies .replies_wrap_deep .reply:not(.reply_tt) .reply_img,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt) .reply_img,.deep_active.wall_module .replies .replies_wrap_deep .reply:not(.reply_tt) .reply_img,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt) .reply_img{width:24px;height:24px;top:0;left:0}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply:not(.reply_tt) .reply_img,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt) .reply_img,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply:not(.reply_tt) .reply_img,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt) .reply_img{left:auto;right:0}
.deep_active .replies .replies_wrap_deep .reply:not(.reply_tt) .reply_image,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt) .reply_image,.deep_active.wall_module .replies .replies_wrap_deep .reply:not(.reply_tt) .reply_image,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt) .reply_image{margin-left:-32px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply:not(.reply_tt) .reply_image,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt) .reply_image,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply:not(.reply_tt) .reply_image,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply:not(.reply_tt) .reply_image{margin-left:0;margin-right:-32px}
.deep_active .replies .replies_wrap_deep .post_field_user_image,.deep_active .wl_replies_block_wrap .replies_wrap_deep .post_field_user_image,.deep_active.wall_module .replies .replies_wrap_deep .post_field_user_image,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .post_field_user_image{width:24px;height:24px;top:0;left:0}
[dir=rtl] .deep_active .replies .replies_wrap_deep .post_field_user_image,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .post_field_user_image,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .post_field_user_image,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .post_field_user_image{left:auto;right:0}
.deep_active .replies .replies_wrap_deep .reply_img,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_img,.deep_active.wall_module .replies .replies_wrap_deep .reply_img,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_img{position:relative;top:-1px}
.deep_active .replies .replies_wrap_deep .checkbox_official,.deep_active .wl_replies_block_wrap .replies_wrap_deep .checkbox_official,.deep_active.wall_module .replies .replies_wrap_deep .checkbox_official,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .checkbox_official{top:3px;width:24px;height:24px}
.deep_active .replies .replies_wrap_deep .checkbox_official .post_field_choose_image,.deep_active .wl_replies_block_wrap .replies_wrap_deep .checkbox_official .post_field_choose_image,.deep_active.wall_module .replies .replies_wrap_deep .checkbox_official .post_field_choose_image,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .checkbox_official .post_field_choose_image{width:24px;height:24px}
.deep_active .replies .replies_wrap_deep .reply_footer,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_footer,.deep_active.wall_module .replies .replies_wrap_deep .reply_footer,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_footer{padding-top:3px}
.deep_active .replies .replies_wrap_deep .reply_text_wrapper,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_text_wrapper,.deep_active.wall_module .replies .replies_wrap_deep .reply_text_wrapper,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_text_wrapper,.deep_active .replies .replies_wrap_deep .reply_fakebox_wrap,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_wrap,.deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_wrap{margin:0 0 4px}
.deep_active .replies .replies_wrap_deep .reply_media_preview,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_media_preview,.deep_active.wall_module .replies .replies_wrap_deep .reply_media_preview,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_media_preview{margin:6px 0-2px 0;border-bottom:1px solid var(--vkui--color_separator_secondary)}
.deep_active .replies .replies_wrap_deep .page_add_media,.deep_active .wl_replies_block_wrap .replies_wrap_deep .page_add_media,.deep_active.wall_module .replies .replies_wrap_deep .page_add_media,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .page_add_media{padding-top:4px;margin-left:-3px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .page_add_media,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .page_add_media,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .page_add_media,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .page_add_media{margin-left:0;margin-right:-3px}
.deep_active .replies .replies_wrap_deep .page_attach_progress_wrap,.deep_active .wl_replies_block_wrap .replies_wrap_deep .page_attach_progress_wrap,.deep_active.wall_module .replies .replies_wrap_deep .page_attach_progress_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .page_attach_progress_wrap{margin-left:0}
[dir=rtl] .deep_active .replies .replies_wrap_deep .page_attach_progress_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .page_attach_progress_wrap,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .page_attach_progress_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .page_attach_progress_wrap{margin-left:0;margin-right:0}
.deep_active .replies .replies_wrap_deep .reply_box_more_attaches,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_more_attaches,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_more_attaches,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_more_attaches{top:2px}
.deep_active .replies .replies_wrap_deep .reply_fake_more_attaches,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fake_more_attaches,.deep_active.wall_module .replies .replies_wrap_deep .reply_fake_more_attaches,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fake_more_attaches{top:1px;right:63px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_fake_more_attaches,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fake_more_attaches,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_fake_more_attaches,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fake_more_attaches{right:auto;left:63px}
.deep_active .replies .replies_wrap_deep .reply_send_button,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_send_button,.deep_active.wall_module .replies .replies_wrap_deep .reply_send_button,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_send_button{top:-1px;height:32px}
.deep_active .replies .replies_wrap_deep .reply_to_title,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_to_title,.deep_active.wall_module .replies .replies_wrap_deep .reply_to_title,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_to_title{padding-top:0;padding-bottom:6px;padding-left:32px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_to_title,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_to_title,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_to_title,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_to_title{padding-left:0;padding-right:32px}
.deep_active .replies .replies_wrap_deep .reply_to_title .reply_to_label,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_to_title .reply_to_label,.deep_active.wall_module .replies .replies_wrap_deep .reply_to_title .reply_to_label,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_to_title .reply_to_label{float:left;text-align:left}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_to_title .reply_to_label,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_to_title .reply_to_label,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_to_title .reply_to_label,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_to_title .reply_to_label{float:right;text-align:right}
.deep_active .replies .replies_wrap_deep .reply_to_title .reply_to_cancel,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_to_title .reply_to_cancel,.deep_active.wall_module .replies .replies_wrap_deep .reply_to_title .reply_to_cancel,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_to_title .reply_to_cancel{float:left;height:16px;margin:0 0 0 2px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_to_title .reply_to_cancel,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_to_title .reply_to_cancel,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_to_title .reply_to_cancel,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_to_title .reply_to_cancel{float:right;margin:0 2px 0 0}
.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap{margin-top:2px}
.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .post_field_user_link,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .post_field_user_link,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .post_field_user_link,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .post_field_user_link{top:3px}
.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox_container,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox_container,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox_container,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox_container,.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .reply_field_wrap,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_field_wrap,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .reply_field_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_field_wrap{margin-left:32px;margin-top:0}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox_container,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox_container,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox_container,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox_container,[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .reply_field_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_field_wrap,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .reply_field_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_field_wrap{margin-left:0;margin-right:32px}
.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_fakebox{padding:5px 9px 7px;border-color:var(--vkui--vkontakte_color_input_border);height:30px;line-height:18px}
.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field,.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true],.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true],.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true],.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true],.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field~.placeholder .ph_input,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field~.placeholder .ph_input,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field~.placeholder .ph_input,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field~.placeholder .ph_input,.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true]~.placeholder .ph_input,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true]~.placeholder .ph_input{padding:6px 90px 6px 10px;min-height:30px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field,[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true],[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field~.placeholder .ph_input,[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true]~.placeholder .ph_input,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true]~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true]~.placeholder .ph_input,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap div.submit_post_field[contenteditable=true]~.placeholder .ph_input{padding:6px 10px 6px 90px}
.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .submit_post,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .submit_post,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .submit_post,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .submit_post{padding:0 0 0 32px;border:0}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .submit_post,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .submit_post,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .submit_post,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .submit_post{padding:0 32px 0 0}
.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .emoji_smile_wrap,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .emoji_smile_wrap,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .emoji_smile_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .emoji_smile_wrap,.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .reply_fake_emoji,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_fake_emoji,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .reply_fake_emoji,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_fake_emoji{right:10px;top:0;padding-top:3px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .emoji_smile_wrap,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .emoji_smile_wrap,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .emoji_smile_wrap,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .emoji_smile_wrap,[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .reply_fake_emoji,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_fake_emoji,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .reply_fake_emoji,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_fake_emoji{right:auto;left:10px}
.deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .reply_box_photo,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_box_photo,.deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .reply_box_photo,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_box_photo{top:2px;right:38px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_box_inner_wrap .reply_box_photo,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_box_photo,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_box_inner_wrap .reply_box_photo,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_box_inner_wrap .reply_box_photo{right:auto;left:38px}
.deep_active .replies .replies_wrap_deep .reply_fakebox_container .reply_box_photo,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_box_photo,.deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_container .reply_box_photo,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_box_photo{top:2px;right:38px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_fakebox_container .reply_box_photo,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_box_photo,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_container .reply_box_photo,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_box_photo{right:auto;left:38px}
.deep_active .replies .replies_wrap_deep .reply_fakebox_container .reply_fake_emoji,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_fake_emoji,.deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_container .reply_fake_emoji,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_fake_emoji{top:3px;right:10px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_fakebox_container .reply_fake_emoji,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_fake_emoji,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_container .reply_fake_emoji,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_fake_emoji{right:auto;left:10px}
.deep_active .replies .replies_wrap_deep .reply_fakebox_container .reply_fake_more_attaches,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_fake_more_attaches,.deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_container .reply_fake_more_attaches,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_fake_more_attaches{top:2px;right:64px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .reply_fakebox_container .reply_fake_more_attaches,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_fake_more_attaches,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_container .reply_fake_more_attaches,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_container .reply_fake_more_attaches{right:auto;left:64px}
.deep_active .replies .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::before,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::before,.deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::before,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::before,.deep_active .replies .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::after{width:24px;height:24px}
.deep_active .replies .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::before,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::before,.deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::before,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::before{top:3px}
.deep_active .replies .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active.wall_module .replies .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::after,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply_fakebox_with_official .reply_fakebox_wrap_image::after{top:-2px}
.deep_active .replies .replies_wrap_deep.replies_deep_has_short,.deep_active .wl_replies_block_wrap .replies_wrap_deep.replies_deep_has_short,.deep_active.wall_module .replies .replies_wrap_deep.replies_deep_has_short,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep.replies_deep_has_short{border-top:none}
.deep_active .replies .replies_wrap_deep.replies_deep_has_short .reply_box_inner_wrap,.deep_active .wl_replies_block_wrap .replies_wrap_deep.replies_deep_has_short .reply_box_inner_wrap,.deep_active.wall_module .replies .replies_wrap_deep.replies_deep_has_short .reply_box_inner_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep.replies_deep_has_short .reply_box_inner_wrap{margin-top:10px}
.deep_active .replies .replies_wrap_deep.replies_deep_has_short .replies_next_loader,.deep_active .wl_replies_block_wrap .replies_wrap_deep.replies_deep_has_short .replies_next_loader,.deep_active.wall_module .replies .replies_wrap_deep.replies_deep_has_short .replies_next_loader,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep.replies_deep_has_short .replies_next_loader{margin-bottom:11px}
.deep_active .replies .replies_wrap_deep .replies_short_deep,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_short_deep,.deep_active.wall_module .replies .replies_wrap_deep .replies_short_deep,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_short_deep{display:block;position:relative;margin-left:-64px;padding-left:64px;margin-top:5px;margin-bottom:12px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .replies_short_deep,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_short_deep,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .replies_short_deep,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_short_deep{margin-left:0;margin-right:-64px;padding-left:0;padding-right:64px}
.deep_active .replies .replies_wrap_deep .replies_short_text_deep,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_short_text_deep,.deep_active.wall_module .replies .replies_wrap_deep .replies_short_text_deep,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_short_text_deep{display:flex;padding-left:34px;margin-right:64px;height:24px;line-height:24px;white-space:nowrap;overflow:hidden;align-items:center}
[dir=rtl] .deep_active .replies .replies_wrap_deep .replies_short_text_deep,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_short_text_deep,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .replies_short_text_deep,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_short_text_deep{padding-left:0;padding-right:34px;margin-right:0;margin-left:64px}
.deep_active .replies .replies_wrap_deep .replies_short_text_deep .replies_short_text_name,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_short_text_deep .replies_short_text_name,.deep_active.wall_module .replies .replies_wrap_deep .replies_short_text_deep .replies_short_text_name,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_short_text_deep .replies_short_text_name{display:flex;flex-shrink:1;overflow:hidden;text-overflow:ellipsis;align-items:baseline}
.deep_active .replies .replies_wrap_deep .replies_short_text_deep .replies_short_text_name b,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_short_text_deep .replies_short_text_name b,.deep_active.wall_module .replies .replies_wrap_deep .replies_short_text_deep .replies_short_text_name b,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_short_text_deep .replies_short_text_name b{text-overflow:ellipsis;overflow:hidden;flex-shrink:1;margin-right:4px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .replies_short_text_deep .replies_short_text_name b,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_short_text_deep .replies_short_text_name b,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .replies_short_text_deep .replies_short_text_name b,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_short_text_deep .replies_short_text_name b{margin-right:0;margin-left:4px}
.deep_active .replies .replies_wrap_deep .replies_next,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next,.deep_active.wall_module .replies .replies_wrap_deep .replies_next,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next{display:none;margin:4px 20px 4px 0}
[dir=rtl] .deep_active .replies .replies_wrap_deep .replies_next,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .replies_next,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next{margin:4px 0 4px 20px}
.deep_active .replies .replies_wrap_deep .replies_next.replies_prev .replies_next_icon_down,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next.replies_prev .replies_next_icon_down,.deep_active.wall_module .replies .replies_wrap_deep .replies_next.replies_prev .replies_next_icon_down,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next.replies_prev .replies_next_icon_down{display:none}
.deep_active .replies .replies_wrap_deep .replies_next.replies_prev .replies_next_icon_up,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next.replies_prev .replies_next_icon_up,.deep_active.wall_module .replies .replies_wrap_deep .replies_next.replies_prev .replies_next_icon_up,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next.replies_prev .replies_next_icon_up{display:flex}
.deep_active .replies .replies_wrap_deep .replies_next:first-child,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next:first-child,.deep_active.wall_module .replies .replies_wrap_deep .replies_next:first-child,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next:first-child,.deep_active .replies .replies_wrap_deep .replies_next:first-child+.replies_next_loader,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next:first-child+.replies_next_loader,.deep_active.wall_module .replies .replies_wrap_deep .replies_next:first-child+.replies_next_loader,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next:first-child+.replies_next_loader{margin-top:4px;margin-bottom:4px}
.deep_active .replies .replies_wrap_deep .replies_next.replies_next_shown,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next.replies_next_shown,.deep_active.wall_module .replies .replies_wrap_deep .replies_next.replies_next_shown,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next.replies_next_shown{display:inline-flex}
.deep_active .replies .replies_wrap_deep .replies_next_icon,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next_icon,.deep_active.wall_module .replies .replies_wrap_deep .replies_next_icon,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next_icon{display:flex}
.deep_active .replies .replies_wrap_deep .replies_next_loader,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next_loader,.deep_active.wall_module .replies .replies_wrap_deep .replies_next_loader,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next_loader{display:block;margin-left:0;margin-top:4px;margin-bottom:4px}
[dir=rtl] .deep_active .replies .replies_wrap_deep .replies_next_loader,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next_loader,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .replies_next_loader,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next_loader{margin-left:0;margin-right:0}
.deep_active .replies .replies_wrap_deep .replies_next_loader:first-child,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next_loader:first-child,.deep_active.wall_module .replies .replies_wrap_deep .replies_next_loader:first-child,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next_loader:first-child{margin-top:11px}
.deep_active .replies .replies_wrap_deep:last-child .replies_short_deep,.deep_active .wl_replies_block_wrap .replies_wrap_deep:last-child .replies_short_deep,.deep_active.wall_module .replies .replies_wrap_deep:last-child .replies_short_deep,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep:last-child .replies_short_deep{margin-bottom:8px}
.deep_active .replies .replies_wrap_deep .reply+.replies_next,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply+.replies_next,.deep_active.wall_module .replies .replies_wrap_deep .reply+.replies_next,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply+.replies_next,.deep_active .replies .replies_wrap_deep .reply+.replies_next+.replies_next_loader,.deep_active .wl_replies_block_wrap .replies_wrap_deep .reply+.replies_next+.replies_next_loader,.deep_active.wall_module .replies .replies_wrap_deep .reply+.replies_next+.replies_next_loader,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .reply+.replies_next+.replies_next_loader,.deep_active .replies .replies_wrap_deep .replies_next:last-child,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_next:last-child,.deep_active.wall_module .replies .replies_wrap_deep .replies_next:last-child,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_next:last-child{margin-top:3px;margin-bottom:10px}
.deep_active .replies .replies_wrap_deep.replies_deep_has_field .replies_next:last-child,.deep_active .wl_replies_block_wrap .replies_wrap_deep.replies_deep_has_field .replies_next:last-child,.deep_active.wall_module .replies .replies_wrap_deep.replies_deep_has_field .replies_next:last-child,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep.replies_deep_has_field .replies_next:last-child,.deep_active .replies .replies_wrap_deep.replies_deep_has_field .replies_next_loader:last-child,.deep_active .wl_replies_block_wrap .replies_wrap_deep.replies_deep_has_field .replies_next_loader:last-child,.deep_active.wall_module .replies .replies_wrap_deep.replies_deep_has_field .replies_next_loader:last-child,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep.replies_deep_has_field .replies_next_loader:last-child{margin-bottom:13px}
.deep_active .replies .replies_wrap_deep.replies_deep_empty_list,.deep_active .wl_replies_block_wrap .replies_wrap_deep.replies_deep_empty_list,.deep_active.wall_module .replies .replies_wrap_deep.replies_deep_empty_list,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep.replies_deep_empty_list{border-top:none}
.deep_active .replies .replies_wrap_deep.replies_deep_empty_list .reply_box_inner_wrap,.deep_active .wl_replies_block_wrap .replies_wrap_deep.replies_deep_empty_list .reply_box_inner_wrap,.deep_active.wall_module .replies .replies_wrap_deep.replies_deep_empty_list .reply_box_inner_wrap,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep.replies_deep_empty_list .reply_box_inner_wrap{margin-top:5px}
.deep_active .replies .replies_wrap_deep:last-child .media_preview_has_medias,.deep_active .wl_replies_block_wrap .replies_wrap_deep:last-child .media_preview_has_medias,.deep_active.wall_module .replies .replies_wrap_deep:last-child .media_preview_has_medias,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep:last-child .media_preview_has_medias{margin-bottom:7px}
.deep_active .replies .replies_wrap_deep .replies_deep_collapse,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse,.deep_active.wall_module .replies .replies_wrap_deep .replies_deep_collapse,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse{position:absolute;width:34px;left:-44px;top:0;bottom:0;border-radius:6px;cursor:pointer;overflow:hidden;opacity:0;transition:opacity .15s ease}
[dir=rtl] .deep_active .replies .replies_wrap_deep .replies_deep_collapse,[dir=rtl] .deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse,[dir=rtl] .deep_active.wall_module .replies .replies_wrap_deep .replies_deep_collapse,[dir=rtl] .deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse{left:auto;right:-44px}
.deep_active .replies .replies_wrap_deep .replies_deep_collapse::before,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse::before,.deep_active.wall_module .replies .replies_wrap_deep .replies_deep_collapse::before,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse::before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-color:var(--vkui--vkontakte_background_hover_alpha);opacity:.5;z-index:1}
.deep_active .replies .replies_wrap_deep .replies_deep_collapse:hover,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse:hover,.deep_active.wall_module .replies .replies_wrap_deep .replies_deep_collapse:hover,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse:hover{opacity:1}
.deep_active .replies .replies_wrap_deep .replies_deep_collapse .replies_deep_collapse_icon,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse .replies_deep_collapse_icon,.deep_active.wall_module .replies .replies_wrap_deep .replies_deep_collapse .replies_deep_collapse_icon,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse .replies_deep_collapse_icon{position:absolute;display:flex;width:16px;height:16px;margin:auto;bottom:8px;left:0;right:0;z-index:2}
.deep_active .replies .replies_wrap_deep .replies_deep_collapse .replies_deep_collapse_icon,.deep_active .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse .replies_deep_collapse_icon,.deep_active.wall_module .replies .replies_wrap_deep .replies_deep_collapse .replies_deep_collapse_icon,.deep_active.wall_module .wl_replies_block_wrap .replies_wrap_deep .replies_deep_collapse .replies_deep_collapse_icon{color:var(--vkui--vkontakte_color_icon_outline_medium)}
.deep_active.wl_post .replies .wl_replies_empty,.deep_active.wl_post .wl_replies_block_wrap .wl_replies_empty,.deep_active.wl_post.wall_module .replies .wl_replies_empty,.deep_active.wl_post.wall_module .wl_replies_block_wrap .wl_replies_empty{border-top:1px solid var(--vkui--color_separator_secondary)}
.deep_active.wl_post .replies .wl_replies_empty+.wl_reply_form_wrap .reply_text_wrapper,.deep_active.wl_post .wl_replies_block_wrap .wl_replies_empty+.wl_reply_form_wrap .reply_text_wrapper,.deep_active.wl_post.wall_module .replies .wl_replies_empty+.wl_reply_form_wrap .reply_text_wrapper,.deep_active.wl_post.wall_module .wl_replies_block_wrap .wl_replies_empty+.wl_reply_form_wrap .reply_text_wrapper,.deep_active.wl_post .replies .wl_replies_empty+.wl_reply_form_wrap .reply_fakebox_wrap,.deep_active.wl_post .wl_replies_block_wrap .wl_replies_empty+.wl_reply_form_wrap .reply_fakebox_wrap,.deep_active.wl_post.wall_module .replies .wl_replies_empty+.wl_reply_form_wrap .reply_fakebox_wrap,.deep_active.wl_post.wall_module .wl_replies_block_wrap .wl_replies_empty+.wl_reply_form_wrap .reply_fakebox_wrap{margin-top:12px}
.deep_active .post_replies_header,.deep_active.wall_module .post_replies_header{position:relative;padding:14px 20px 4px;border-top:1px solid var(--vkui--color_separator_primary);font-size:12.5px}
.deep_active .post_replies_header:empty,.deep_active.wall_module .post_replies_header:empty{padding-top:0}
.deep_active .post_replies_header+.replies .replies_list,.deep_active.wall_module .post_replies_header+.replies .replies_list{padding-top:0;border-top:none}
.deep_active .post_replies_header .post_replies_reorder_wrap,.deep_active.wall_module .post_replies_header .post_replies_reorder_wrap{display:flex;position:relative;float:left;cursor:pointer}
[dir=rtl] .deep_active .post_replies_header .post_replies_reorder_wrap,[dir=rtl] .deep_active.wall_module .post_replies_header .post_replies_reorder_wrap{float:right}
.deep_active .post_replies_header .post_replies_reorder_wrap .eltt_fancy_action,.deep_active.wall_module .post_replies_header .post_replies_reorder_wrap .eltt_fancy_action,.deep_active .post_replies_header .post_replies_reorder_wrap .FancyElementTT__item,.deep_active.wall_module .post_replies_header .post_replies_reorder_wrap .FancyElementTT__item{line-height:16px}
.deep_active .post_replies_header .post_replies_reorder,.deep_active.wall_module .post_replies_header .post_replies_reorder{color:var(--vkui--color_text_link)}
.deep_active.closed_comments .replies_list:empty{display:none}
.WallCheckComment__timer{border-radius:50%;overflow:hidden;position:absolute;height:22px;width:22px;top:0;right:2px;bottom:0;margin:auto;cursor:pointer}
[dir=rtl] .WallCheckComment__timer{right:auto;left:2px}
.WallCheckComment__timer::after{content:"";border-radius:50%;display:block;position:absolute;left:2px;top:2px;bottom:2px;right:2px;background:var(--vkui--color_background_content)url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2216%22%20width%3D%2216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m0%200h16v16h-16z%22%2F%3E%3Cpath%20d%3D%22m11.79%204.21a.72.72%200%200%201%200%201.02l-2.772%202.77%202.77%202.77a.72.72%200%200%201%20.076.93l-.076.09a.72.72%200%200%201%20-1.018%200l-2.77-2.772-2.77%202.77a.72.72%200%201%201%20-1.02-1.018l2.772-2.77-2.77-2.77a.72.72%200%200%201%20-.076-.93l.076-.09a.72.72%200%200%201%201.018%200l2.77%202.772%202.77-2.77a.72.72%200%200%201%201.02%200z%22%20fill%3D%22%235b88bd%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)no-repeat center}
.WallCheckComment__timer div{float:left;height:100%;overflow:hidden;position:relative;width:50%}
[dir=rtl] .WallCheckComment__timer div{float:right}
.WallCheckComment__timer div span{content:"";display:block;transform:rotate(-180deg);width:100%;height:100%;transform-origin:left center;background:var(--vkui--color_accent_blue);animation-iteration-count:1;animation-timing-function:linear;animation-fill-mode:both}
[dir=rtl] .WallCheckComment__timer div span{transform:rotate(180deg);transform-origin:right center}
.WallCheckComment__timer div:first-child{transform:rotate(180deg)}
[dir=rtl] .WallCheckComment__timer div:first-child{transform:rotate(-180deg)}
@keyframes WallCheckComment__timerKeyframes--left{0%{transform:rotate(-180deg)}50%{transform:rotate(-180deg)}to{transform:rotate(0deg)}}
@keyframes WallCheckComment__timerKeyframes--right{0%{transform:rotate(-180deg)}50%{transform:rotate(0deg)}to{transform:rotate(0deg)}}
.WallCheckComment__timer,.WallCheckComment--shown .reply_send_button{transform:scale(0);opacity:0;pointer-events:none}
.WallCheckComment__timer,.WallCheckComment__timer+.reply_send_button{transition:transform .1s,opacity .1s}
.post:not(.im-mess--post):not(.post_copy) .wall_text .poster__wrap,.post:not(.im-mess--post):not(.post_copy) .wall_text .poster__view,.post:not(.im-mess--post):not(.post_copy) .wall_text .poster__image-wrapper{margin:0-20px}
.post:not(.post_poster):not(.im-mess--post):not(.post_copy) .wall_text .poster__wrap,.post:not(.post_poster):not(.im-mess--post):not(.post_copy) .wall_text .poster__view,.post:not(.post_poster):not(.im-mess--post):not(.post_copy) .wall_text .poster__image-wrapper{margin:0-20px -20px}
.post:not(.post_poster):not(.post_copy) .poster__wrap+.wall_signed,.post:not(.post_poster):not(.post_copy) .poster__view+.wall_signed,.post:not(.post_poster):not(.post_copy) .poster__image-wrapper+.wall_signed{margin-top:31px;margin-bottom:-9px}
.wall_text .poster__image,.poster_wall-edit .poster__image{border-top-left-radius:0;border-top-right-radius:0}
.wall_module .page_wall_posts .poster.poster_edit{margin-top:15px}
@keyframes spin{to{transform:rotate(360deg)}}
.post .podcast_snippet,.wl_post .podcast_snippet{margin:15px 0 5px}
.post.Post--redesign .podcast_snippet,.wl_post.Post--redesign .podcast_snippet{margin:var(--post-large-spacing-tb, 12px)0 0}
.wall_module>.podcast_recommend_block.page_block:first-child{border-radius:var(--vkui--size_border_radius_paper--regular)}
a.page_post_thumb_wrap.PostPhotoRestriction--geoWithText,a.page_post_thumb_unsized.PostPhotoRestriction--geoWithText,a.page_post_thumb_unsized:not(.page_album_nocover).PostPhotoRestriction--geoWithText,span.page_post_thumb_unsized.PostPhotoRestriction--geoWithText,.PostPhotoRestriction--geoWithText,#pv_photo.ZPhotosRestriction--geo,#pv_fs_img_wrap .ZPhotosRestriction--geo,#pv_fs_img_fade .ZPhotosRestriction--geo,.ZPhotosRestriction--geo{display:flex;flex-direction:column;justify-content:center;align-items:center;background:var(--steel_gray_40);position:relative}
a.page_post_thumb_wrap.PostPhotoRestriction--blurWithText,a.page_post_thumb_unsized.PostPhotoRestriction--blurWithText,a.page_post_thumb_unsized:not(.page_album_nocover).PostPhotoRestriction--blurWithText,span.page_post_thumb_unsized.PostPhotoRestriction--blurWithText,.PostPhotoRestriction--blurWithText,#pv_photo.ZPhotosRestriction--blur,#pv_fs_img_wrap .ZPhotosRestriction--blur,#pv_fs_img_fade .ZPhotosRestriction--blur,.ZPhotosRestriction--blur{display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;overflow:hidden}
.wall_module .PostNoBottomSpaceAttach:last-child,.wall_module .thumbed_link:last-child,.wall_module .media_link:last-child{margin-bottom:0}
.wall_module:not(.search_results) .post--with-likes:not(.post_copy):not(.post_btl):not(.post_wf):not(.post--withActionStatusBar):not(.post--withPostBottomAction):not(.wcomments_post) .wall_text .PostNoBottomSpaceAttach:last-child,.wall_module:not(.search_results) .post--with-likes:not(.post_copy):not(.post_btl):not(.post_wf):not(.post--withActionStatusBar):not(.post--withPostBottomAction):not(.wcomments_post) .wall_text .thumbed_link:last-child,.wall_module:not(.search_results) .post--with-likes:not(.post_copy):not(.post_btl):not(.post_wf):not(.post--withActionStatusBar):not(.post--withPostBottomAction):not(.wcomments_post) .wall_text .media_link:last-child{margin-bottom:-21px;border-radius:0}
.wall_module:not(.search_results) .Post--redesignV3.post--with-likes:not(.post_copy):not(.post_btl):not(.post_wf):not(.post--withActionStatusBar):not(.post--withPostBottomAction):not(.wcomments_post) .wall_text .PostNoBottomSpaceAttach:last-child,.wall_module:not(.search_results) .Post--redesignV3.post--with-likes:not(.post_copy):not(.post_btl):not(.post_wf):not(.post--withActionStatusBar):not(.post--withPostBottomAction):not(.wcomments_post) .wall_text .thumbed_link:last-child,.wall_module:not(.search_results) .Post--redesignV3.post--with-likes:not(.post_copy):not(.post_btl):not(.post_wf):not(.post--withActionStatusBar):not(.post--withPostBottomAction):not(.wcomments_post) .wall_text .media_link:last-child,.wall_module:not(.search_results) .Post--redesign.Post--redesign--onTop.post--with-likes:not(.post_copy):not(.post_btl):not(.post_wf):not(.post--withActionStatusBar):not(.post--withPostBottomAction):not(.wcomments_post) .wall_text .media_link:last-child,.wl_post.Post--redesignV3 .wl_post_body_wrap .wall_post_cont .page_market_album_wrap.PostNoBottomSpaceAttach{margin-bottom:0;margin:10px auto;margin-top:20px;border-radius:8px;overflow:hidden}
.wall_module:not(.search_results) .post--with-likes:not(.post_copy):not(.post_btl):not(.post_wf):not(.post--withActionStatusBar):not(.post--withPostBottomAction) .wall_text .PostNoBottomSpaceAttach:last-child,.wall_module:not(.search_results) .post--with-likes:not(.post_copy):not(.post_btl):not(.post_wf):not(.post--withActionStatusBar):not(.post--withPostBottomAction) .wall_text .thumbed_link:last-child,.wall_module:not(.search_results) .post--with-likes:not(.post_copy):not(.post_btl):not(.post_wf):not(.post--withActionStatusBar):not(.post--withPostBottomAction) .wall_text .media_link:last-child{background-color:var(--vkui--vkontakte_color_snippet_background)}
.wall_module .thumbed_link{margin:15px 0}
.wall_module .Post--redesign .thumbed_link{margin:var(--post-large-spacing-tb, 12px)0}
[scheme=vkcom_dark] .thumbed_link--invitation .thumbed_link__button{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20width%3D%2212%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m7%205v-4.1c0-.5-.4-.9-1-.9s-1%20.4-1%20.9v4.1h-4.1c-.5%200-.9.4-.9%201s.4%201%20.9%201h4.1v4.1c0%20.5.4.9%201%20.9s1-.4%201-.9v-4.1h4.1c.5%200%20.9-.4.9-1s-.4-1-.9-1z%22%20fill%3D%22%23222%22%2F%3E%3C%2Fsvg%3E)}
.wall_module .media_link{margin:15px 0}
.wall_module .Post--redesign .media_link{margin:var(--post-large-spacing-tb, 12px)0 0}
.wall_module .Post--redesign.Post--redesign--onTop .media_link{margin:calc(var(--post-large-spacing-tb, 12px) + 3px)0 0}
.wall_module .Post--redesignV3.Post--redesign--onTop .media_link,.wall_module .Post--redesign.Post--redesignV3.Post--redesign--onTop .media_link,.wall_module.Post--redesign.Post--redesignV3.Post--redesign--onTop .media_link,.wall_module.Post--redesignV3.Post--redesign--onTop .media_link{margin:var(--vkui--spacing_size_2xl, 16px)0 0}
.wall_module.Post--redesign.Post--redesign--onTop .media_link{margin:0}
.new_adaptive_post .ads_ad_snippet .page_media_link_video .page_post_sized_thumbs,.wall_module .media_link .page_post_sized_thumbs,.wall_module .Post--redesign.Post--redesign--onTop .media_link .page_post_sized_thumbs,.wall_module .Post--redesign .media_link .page_post_sized_thumbs{margin-top:0}
body[data-useragent=chrome]:not(.mac):not(.is_2x) .PageActionCell__counter{line-height:19px;letter-spacing:-.02em}
@keyframes trackWave{0%,to{height:6px}50%{height:12px}}
.Post--redesign .MiniAppsSnippet{margin-top:var(--post-large-spacing-tb, 12px)}
.bookmarks_row.bookmarks_row_type_link .MiniAppsSnippet--big,.post .MiniAppsSnippet--big{height:288px}
.Post--redesign .NarrativeSnippet__base{margin-top:var(--post-large-spacing-tb, 12px)}
[scheme=vkcom_dark] .NarrativeSnippet__loading::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23939393%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A)}
@keyframes textlive_pulse{0%{opacity:80%;transform:scale(1)}70%{transform:scale(3);opacity:0}to{transform:scale(3);opacity:0}}
.Post--redesign .TextliveSnippet{margin-top:var(--post-large-spacing-tb, 12px)}
.Post--redesign .TextliveSnippetFooter{padding:14px 15px var(--post-large-spacing-tb, 12px)}
.wall_module>.page_block:first-child{border-bottom-left-radius:0;border-bottom-right-radius:0}
.wall_module>.page_block:first-child:last-child{border-radius:var(--vkui--size_border_radius_paper--regular)}
.wall_module .wall_posts.all>.all,.wall_module .wall_posts.all>.all_ads_promoted_post,.wall_module .wall_posts.own>.own,.wall_module .wall_posts.own>.own_ads_promoted_post,.wall_module .wall_posts.all>.all.unshown+.all,.wall_module .wall_posts.all>.all.unshown+.all_ads_promoted_post,.wall_module .wall_posts.own>.own.unshown+.own,.wall_module .wall_posts.own>.own.unshown+.own_ads_promoted_post,.wall_module .wall_posts .no_rows,.wall_module .wall_posts .no_posts,.wall_module .wall_posts.postponed>.postponed,.wall_module .wall_posts.suggested>.suggest,.wall_module .wall_posts_search>.post{margin-top:0;border-radius:0 0 var(--vkui--size_border_radius_paper--regular) var(--vkui--size_border_radius_paper--regular)}
.wall_module .wall_posts.all>.all~.all,.wall_module .wall_posts.all>.post:not(.unshown)~.post.unshown+.post:not(.unshown),.wall_module .wall_posts.all>.all~.all_ads_promoted_post,.wall_module .wall_posts.own>.own~.own,.wall_module .wall_posts.own>.post:not(.unshown)~.post.unshown+.post:not(.unshown),.wall_module .wall_posts.own>.own~.own_ads_promoted_post,.wall_module .wall_posts.postponed>.postponed~.postponed,.wall_module .wall_posts.suggested>.suggest~.suggest,.wall_module .wall_posts_search>.post~.post{margin-top:var(--page-block-offset, 15px);border-radius:var(--vkui--size_border_radius_paper--regular)}
.wall_module .more_link{display:none;margin:var(--page-block-offset, 15px) auto 0}
.wall_module .wall_posts .post{display:none}
.wall_module .wall_posts.all .all,.wall_module .wall_posts.all .all_ads_promoted_post,.wall_module .wall_posts.own .own,.wall_module .wall_posts.own .own_ads_promoted_post,.wall_module .wall_posts.postponed .postponed,.wall_module .wall_posts.suggested .suggest,.wall_module .wall_posts_search .post,.wall_fixed .wall_module .wall_posts.own .post{display:block}
.wall_module .wall_posts.all .all.unshown,.wall_module .wall_posts.all .all_ads_promoted_post.unshown,.wall_module .wall_posts.own .own.unshown,.wall_module .wall_posts.own .own_ads_promoted_post.unshown,.wall_module .wall_posts.postponed .postponed.unshown,.wall_module .wall_posts.suggested .suggest.unshown,.wall_module .wall_posts_search .post.unshown{display:none}
.wall_module .wall_posts.all .all:not(.unshown)~.no_posts,.wall_module .wall_posts.all .all_ads_promoted_post:not(.unshown)~.no_posts,.wall_module .wall_posts.own .own:not(.unshown)~.no_posts,.wall_module .wall_posts.own .own_ads_promoted_post:not(.unshown)~.no_posts,.wall_module .wall_posts.suggested .suggest:not(.unshown)~.no_posts{display:none}
.wall_module .post{--post-text-z-index:3;line-height:14px;position:relative;overflow:visible}
.wall_module .post:hover .wall_post_text,.wall_module .post:hover .post_media,.wall_module .post:hover .group_checkin,.wall_module .post:hover .reply_link_wrap{cursor:pointer}
.wall_module .post.closed_comments .reply_link_wrap,.wall_module .post.closed_comments .reply_box_inner_wrap,.wall_module .post.closed_comments .like_btn.comment{display:none}
.wall_module .post.closed_comments .share_link_wrap{display:block;padding-left:0}
[dir=rtl] .wall_module .post.closed_comments .share_link_wrap{padding-left:0;padding-right:0}
.wall_module .post.closed_comments .reply{cursor:default}
.wall_module .page_block .video_box_wrap .videoplayer_media_provider{will-change:transform,contents,scroll-position}
.wall_module .post_actions.post_actions_progress::before{display:block;content:"";float:right;margin-top:-2px;display:inline-block;width:16px;height:16px;animation-name:round_spinner;animation-duration:700ms;animation-iteration-count:infinite;animation-timing-function:linear;background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2399a2ad%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A);background-size:16px;background-position:center;background-repeat:no-repeat}
[dir=rtl] .wall_module .post_actions.post_actions_progress::before{float:left}
[scheme=vkcom_dark] .wall_module .post_actions.post_actions_progress::before{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23939393%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%203.25a4.75%204.75%200%200%200-4.149%207.065.75.75%200%201%201-1.31.732A6.25%206.25%200%201%201%208%2014.25a.75.75%200%200%201%20.001-1.5%204.75%204.75%200%201%200%200-9.5Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E%0A)}
.wall_module .post_header{padding:15px 20px 0}
.wall_module .post_header .ui_actions_menu_icons{top:20px;right:18px;background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m0%200h24v24h-24z%22%2F%3E%3Cpath%20d%3D%22m6.5%2010%205.5%204.5%205.5-4.5%22%20stroke%3D%22%23c1c5cc%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.875%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);background-position-x:-1px}
[dir=rtl] .wall_module .post_header .ui_actions_menu_icons{right:auto;left:18px}
.wall_module .post_header .ui_actions_menu{right:-2px;margin-top:3px}
[dir=rtl] .wall_module .post_header .ui_actions_menu{right:auto;left:-2px}
.wall_module .post_header .ui_actions_menu--actionSheet{right:-8px;margin-top:0}
[dir=rtl] .wall_module .post_header .ui_actions_menu--actionSheet{right:auto;left:-8px}
button.post_header_subscribe_button_icons_only{display:flex;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;padding:0;margin:0}
.wall_module .dld{padding:22px 25px;color:var(--vkui--color_text_secondary)}
.wall_module .dld_text{color:var(--vkui--color_text_secondary);line-height:1.462}
.wall_module .dld_info{padding-top:6px;line-height:1.462}
.post_author .author,.wall_module .author,.wall_module .copy_author{font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;color:var(--vkui--vkontakte_color_text_name)}
.post_author .author_highlighted,.wall_module .author_highlighted{font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;color:var(--vkui--color_text_primary)}
.wall_module .copy_post_header{min-height:40px}
.wall_module .PostCopyQuote--redesignV3 .copy_post_header{display:flex;align-items:center;min-height:24px}
.wall_module .PostCopyQuote--redesignV3 .copy_post_header_info{margin-left:12px;padding-top:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}
[dir=rtl] .wall_module .PostCopyQuote--redesignV3 .copy_post_header_info{margin-left:0;margin-right:12px}
.wall_module .PostCopyQuote--redesignV3 .copy_post_date{display:inline;margin-left:4px;font-size:13px;font-weight:400;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;padding-top:0;flex-shrink:0}
[dir=rtl] .wall_module .PostCopyQuote--redesignV3 .copy_post_date{margin-left:0;margin-right:4px}
.wall_module .copy_post_header.copy_post_header_empty{display:none}
.wall_module .copy_post_image{display:block;float:left}
[dir=rtl] .wall_module .copy_post_image{float:right}
.wall_module .copy_post_img{width:40px;height:40px;border-radius:20px;vertical-align:top}
.wall_module .copy_post_header_info{margin-left:52px;padding-top:3px}
[dir=rtl] .wall_module .copy_post_header_info{margin-left:0;margin-right:52px}
.wall_module .copy_post_author{color:var(--vkui--color_text_secondary);line-height:16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
h5.post_author,h6.copy_post_author{font-size:var(--vkui--font_text--font_size--compact);margin:0;font-weight:400;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}
.wall_module .copy_post_date{font-size:12.5px;padding-top:3px;color:var(--vkui--color_text_secondary)}
.wall_module .copy_post_date .post_link{color:var(--vkui--color_text_secondary)}
.wall_module .wall_text,.wall_module.wl_postreach_wall_module .post_poster .wall_text{padding:8px 20px 20px}
.wall_module .Post--redesignV3 .wall_text{padding-top:0;padding-bottom:0}
.wall_module .Post--hiddenRedesignV3 .wall_text{padding-bottom:20px}
.wall_module .post--withActionStatusBar .wall_text,.wall_module .post--withPostBottomAction .wall_text{padding-bottom:0}
.wall_module .post--withPostBottomAction.Post--redesign .wall_text{padding-top:0}
.wall_module .post_poster.wpe_wrap .wall_text{padding:15px 20px 20px}
.wall_module .post_poster .wall_text{padding-top:15px;padding-left:20px;padding-right:20px;z-index:3}
.wall_module .Post--redesign.post_poster .wall_text{padding-top:var(--post-large-spacing-tb, 12px)}
.wall_module .post_poster:not(.Post--copyright) .wall_text{padding-bottom:0}
.wall_module .post_poster.post--withActionStatusBar .wall_text{padding-bottom:0}
.wall_module .post_poster:not(.im-mess--post):not(.post--withPostBottomAction) .wall_signed{margin:10px 0 10px}
.wall_module .post_poster.post--withActionStatusBar .wall_signed{margin:10px 0 0}
.wall_module .photo_carousel .wall_text{padding:8px 0 20px;z-index:4}
.wall_module .photo_carousel .wall_post_text{padding:3px 20px 3px}
.wall_module .photo_carousel .wall_post_photo_carousel{padding-top:7px}
.wall_module .copy_quote{border-left:2px solid var(--vkui--vkontakte_color_im_forward_line_alpha);padding-left:12px;margin:5px 0 0 0}
[dir=rtl] .wall_module .copy_quote{border-left:none;border-right:2px solid var(--vkui--vkontakte_color_im_forward_line_alpha);padding-left:0;padding-right:12px}
.wall_module .Post--redesign .copy_quote{margin-top:12px}
.wall_module .PostCopyQuote--redesignV3.copy_quote{border-left:0;padding-left:0;margin-top:8px}
[dir=rtl] .wall_module .PostCopyQuote--redesignV3.copy_quote{border-left:none;border-right:0;padding-left:0;padding-right:0}
.wall_module .PostCopyQuote--redesignV3.copy_quote.PostCopyQuote--noCopyMessage{margin-top:16px}
.wall_module .post--withPostBottomAction .copy_quote:last-child{margin-bottom:var(--post-large-spacing-tb, 12px)}
.wall_module .Post--redesign.post--withPostBottomAction .copy_quote:last-child{margin-bottom:0}
.wall_module .published_comment{padding-bottom:8px}
.wall_module .Post--redesign .published_comment{padding-bottom:0}
.wall_module .published_by_date,.wall_module .wall_post_source{color:var(--vkui--color_text_secondary)}
.wall_module .published_by_quote,.wall_module .published_sec_quote{margin:5px 0;border-left:2px solid var(--vkui--vkontakte_color_im_forward_line_alpha);padding-left:12px}
[dir=rtl] .wall_module .published_by_quote,[dir=rtl] .wall_module .published_sec_quote{border-left:none;border-right:2px solid var(--vkui--vkontakte_color_im_forward_line_alpha);padding-left:0;padding-right:12px}
.wall_module .published_sec_quote{margin:5px 0 0}
.wall_module .published_sec_quote.PostCopyQuote--redesignV3{margin:8px 0 0;border-left:none;padding-left:0}
[dir=rtl] .wall_module .published_sec_quote.PostCopyQuote--redesignV3{border-left:none;border-right:none;padding-left:0;padding-right:0}
.wall_module .published_sec_quote.PostCopyQuote--redesignV3 .PostCopyQuote--noCopyMessage{margin-top:12px}
.wall_module .published_by_quote .published_sec_quote{margin:5px 0 0-5px;padding-left:3px}
[dir=rtl] .wall_module .published_by_quote .published_sec_quote{margin:5px -5px 0 0;padding-left:0;padding-right:3px}
[scheme=vkcom_dark] .wall_signed_by{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%228%22%20height%3D%229%22%20viewBox%3D%2220%20203%208%209%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%23828282%22%20d%3D%22M24%20209c3.5%200%204%201%204%202.5%200%20.5%200%20.5-1%20.5h-6c-1%200-1%200-1-.5%200-1.5.5-2.5%204-2.5zm0-1c-1.1%200-2-1.12-2-2.5s.9-2.5%202-2.5%202%201.12%202%202.5-.9%202.5-2%202.5z%22%2F%3E%3C%2Fsvg%3E)}
html:not([lang=ru]) .wall_marked_as_ads{background-position:left -242px}
html[dir=rtl]:not([lang=ru]) .wall_marked_as_ads{background-position:right -242px}
.wall_module .ui_tabs{z-index:3;scroll-margin:calc(var(--header-height) + var(--page-block-offset, 15px))}
.wall_module .ui_tabs_old .ui_tab_group_sel{color:var(--vkui--color_text_primary)}
.wall_module td{vertical-align:top}
.wall_post_text{line-height:1.462;padding-top:3px;overflow:hidden;word-wrap:break-word}
.Post--redesign .wall_post_text{padding-top:var(--post-small-spacing-tb, 8px)}
.wall_post_text .wall_post_text__obscene-word,.wall_reply_text .wall_reply_text__obscene-word{color:var(--vkui--color_text_secondary);cursor:pointer}
.wall_post_text .wall_post_text__obscene-word.unblurred,.wall_reply_text .wall_reply_text__obscene-word.unblurred{color:inherit;cursor:inherit}
.wall_post_text a>.wall_post_text__obscene-word,.wall_reply_text a>.wall_reply_text__obscene-word{color:inherit;cursor:inherit}
.wall_post_text a>.wall_post_text__obscene-word.unblurred,.wall_reply_text a>.wall_reply_text__obscene-word.unblurred{cursor:inherit}
.wall_post_cont:last-child .wall_post_text:last-child{margin-bottom:-5px}
.Post--redesign .copy_quote .wall_post_text{padding-top:var(--post-small-spacing-tb, 8px)}
.Post--redesign .copy_quote .wall_post_text.PostCopyQuote--redesignV3{padding-top:5px}
div.submit_post_field font,div.submit_post_field[contenteditable=true] font,#wpe_text.zoom_text font{font-family:var(--palette-vk-font,-apple-system,BlinkMacSystemFont,'Roboto','Helvetica Neue',Geneva,"Noto Sans Armenian","Noto Sans Bengali","Noto Sans Cherokee","Noto Sans Devanagari","Noto Sans Ethiopic","Noto Sans Georgian","Noto Sans Hebrew","Noto Sans Kannada","Noto Sans Khmer","Noto Sans Lao","Noto Sans Osmanya","Noto Sans Tamil","Noto Sans Telugu","Noto Sans Thai",arial,Tahoma,verdana,sans-serif)!important;color:var(--black)}
.wall_text{word-wrap:break-word;text-overflow:ellipsis;position:relative;z-index:3}
.wall_module .audio{margin-left:-6px}
[dir=rtl] .wall_module .audio{margin-left:0;margin-right:-6px}
.narrow_column .market_module .page_market_items_wrap{margin:0}
.wall_module .post_media{padding:6px 0 4px;overflow:hidden}
.wall_module .post_media.post_audio{padding:2px 0 0 6px;margin-left:-6px;width:auto!important}
[dir=rtl] .wall_module .post_media.post_audio{padding:2px 6px 0 0;margin-left:0;margin-right:-6px}
.wall_module .post_media.wall_audio{padding:6px 0 0 6px;margin:0-6px;width:auto!important}
[dir=rtl] .wall_module .post_media.wall_audio{padding:6px 6px 0 0}
.wall_module .page_media_graffiti{width:196px;max-width:196px}
.wall_module .graffiti img{width:auto}
.wall_module .photo{display:block}
.wall_module .photo:hover{text-decoration:none}
.wall_module .photo img{vertical-align:top;max-height:98px;overflow:hidden}
.wall_module .page_media_thumbed_link,.media_preview .page_media_thumbed_link.page_media_event{display:block;margin:15px 0 5px;padding:0;background-color:var(--vkui--vkontakte_color_snippet_background);border:1px solid var(--vkui--vkontakte_color_snippet_border_alpha);border-radius:2px}
.wall_module .Post--redesign .page_media_thumbed_link{margin:var(--post-large-spacing-tb, 12px)0 0}
.wall_module .page_media_thumbed_link.page_media_wrap,.media_preview .page_media_thumbed_link.page_media_event.page_media_wrap{border:0!important}
.wall_module .page_media_thumbed_link+.wall_signed,.media_preview .page_media_thumbed_link.page_media_event+.wall_signed{margin-top:12px}
.wall_module a.page_media_thumbed_link{cursor:pointer;color:var(--black)}
.wall_module a.page_media_thumbed_link:hover{text-decoration:none}
.wall_module a.page_media_thumbed_link .page_media_link_desc{cursor:pointer}
.wall_module .wall_text .page_media_thumbed_link:last-child{margin-bottom:-21px}
.wall_module .Post--redesignV3 .wall_text .page_media_thumbed_link:last-child{margin-bottom:0}
.wall_module .post.ads_ads_preview .wall_text .page_media_thumbed_link:last-child,.ads_edit_panel_preview.format_edit .wall_module .post .wall_text .page_media_thumbed_link:last-child,.wall_module .post.postponed .wall_text .page_media_thumbed_link:last-child,.wall_module .post.postponed .wall_text .post_media_voting:last-child,.wall_module .post.suggest .wall_text .page_media_thumbed_link:last-child,.wall_module .post.post--withActionStatusBar .wall_text .page_media_thumbed_link:last-child,.wall_module .post.post--withPostBottomAction .wall_text .page_media_thumbed_link:last-child,.wall_module .post.suggest .wall_text .post_media_voting:last-child{margin-bottom:0}
.wall_module .post.post_with_ads_button .author{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}
.wall_module .copy_quote .page_media_thumbed_link:last-child,.wall_module .post_btl .page_media_thumbed_link:last-child{margin-bottom:5px}
.wall_module .post_copy .page_media_thumbed_link:last-child{margin-bottom:10px}
.wall_module .post_wf .wall_text .post_media_voting:last-child,.wall_module .post_wf .page_media_thumbed_link:last-child{margin-bottom:0}
.wall_module td.page_media_link_thumb{cursor:pointer;background-position:50% 50%;background-repeat:no-repeat;background-size:150px auto;-ms-high-contrast-adjust:none;width:150px;box-shadow:0 0 0 1px rgba(0,20,51,.12) inset;border-radius:2px 0 0 2px}
[dir=rtl] .wall_module td.page_media_link_thumb{border-radius:0 2px 2px 0}
.wall_module .page_media_story{cursor:default}
.wall_module .page_media_story .page_media_link_thumb{width:100px;min-height:100px;background-size:cover}
.wall_module .page_media_story .page_media_link_title{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;margin-bottom:4px}
.wall_module div.page_media_link_title{margin-bottom:7px;font-size:16px;line-height:21px;font-weight:400;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;max-height:2.6em;text-overflow:ellipsis}
.wall_module div.page_media_link_title a{color:inherit}
.wall_module div.page_media_link_title a:hover{text-decoration:none}
.wall_module a.page_media_link_title:hover{text-decoration:none}
.wall_module .im_msg_media_link a.page_media_link_title{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;max-height:2.8em;text-overflow:ellipsis}
.wall_module div.page_media_link_desc{color:var(--black);padding-top:2px;max-height:2.9em;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;text-overflow:ellipsis;cursor:default}
.wall_module div.page_media_link_desc:empty{padding:0}
.wall_module .wall_postlink_preview_btn{padding:11px 0 0}
.wall_module .page_media_prometheus,.wall_module .PageMediaVerification{margin-top:10px}
.wall_module .medadd_c_linkcon .page_media_prometheus,.wall_module .medadd_c_linkcon .PageMediaVerification{margin-top:0}
.wall_module .medadd_c_linkcon .page_media_prometheus__button,.wall_module .medadd_c_linkcon .PageMediaVerification__button{display:none}
.wall_module .media_preview .share,.wall_module .media_preview .poll{padding:3px 0;color:var(--gray_700)}
.wall_module .media_preview .share,.wall_module .media_preview .poll,.wall_module .media_desc{line-height:140%}
.wall_module .media_preview .share b,.wall_module .media_preview .poll b,.wall_module .media_desc b{background:url(/images/icons/mono_iconset.png?4)no-repeat left -236px;width:15px;height:11px;margin-top:4px}
[dir=rtl] .wall_module .media_preview .share b,[dir=rtl] .wall_module .media_preview .poll b,[dir=rtl] .wall_module .media_desc b{background:url(/images/icons/mono_iconset.png?4)no-repeat right -236px}
@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.wall_module .media_preview .share b,.wall_module .media_preview .poll b,.wall_module .media_desc b{background-image:url(/images/icons/mono_iconset_2x.png?4);background-size:12px 417px}}
.wall_module .media_desc b.topic{background-position:left -192px}
[dir=rtl] .wall_module .media_desc b.topic{background-position:right -192px}
.wall_module .media_desc.media_desc__doc{margin-top:11px;padding:0}
.wall_module .media_desc.media_desc__doc .page_doc_title{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
.wall_module .media_preview .poll{max-width:300px;overflow:hidden;text-overflow:ellipsis}
.wall_module .media_preview .poll b{background-position:left -208px}
[dir=rtl] .wall_module .media_preview .poll b{background-position:right -208px}
.wall_module .poll span span{color:var(--blue_600)}
.wall_module .media_desc{padding:4px 0 2px}
.wall_module .Post--redesign .media_desc{padding:var(--post-large-spacing-tb, 12px)0 0}
.wall_module .post_media .media_desc{padding-top:8px;clear:both}
.wall_module .post_media .media_desc.media_desc__doc{padding-top:0}
.wall_module .post_media .media_desc_soft{padding:0;float:left;margin-top:8px;margin-right:8px;clear:none}
[dir=rtl] .wall_module .post_media .media_desc_soft{float:right;margin-right:0;margin-left:8px}
.wall_module .media_desc .lnk{color:var(--vkui--color_text_subhead);cursor:pointer;font-size:12.5px}
.wall_module .media_desc .lnk:hover{text-decoration:none}
.wall_module .media_desc .a{color:var(--vkui--color_text_link)}
.wall_module .media_desc .lnk:hover .a{text-decoration:underline}
.wall_module .media_desc .lnk.no_interact{cursor:default}
.wall_module .media_desc .lnk.no_interact .a{color:inherit}
.wall_module .media_desc .lnk.no_interact:hover .a{text-decoration:none}
.wall_module .media_desc .lnk.lnk_mail{border-left:2px solid var(--steel_gray_140);padding-left:10px}
[dir=rtl] .wall_module .media_desc .lnk.lnk_mail{border-left:none;border-right:2px solid var(--steel_gray_140);padding-left:0;padding-right:10px}
.wall_module .media_desc .lnk .lnk_mail_title{font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:var(--light_blue_700);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;text-overflow:ellipsis}
.wall_module .media_desc .lnk .lnk_mail_domain{color:var(--vkui--color_text_subhead)}
.wall_module .media_desc .comment{background-position:0-194px}
[dir=rtl] .wall_module .media_desc .comment{background-position:100% -194px}
.wall_module .media_desc .poll{background-position:0-208px}
[dir=rtl] .wall_module .media_desc .poll{background-position:100% -208px}
.wall_module .post_event_info{display:flex;justify-content:space-between;margin-top:15px;padding-left:52px;background:var(--steel_gray_40)url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20fill%3D%22%2365BF63%22%20d%3D%22M20%200c11.046%200%2020%208.954%2020%2020s-8.954%2020-20%2020S0%2031.046%200%2020%208.954%200%2020%200z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M19.983%2011C15.572%2011%2012%2014%2012%2018.6c0%203.4%203.782%208.4%206.093%2011.2%201.47%201.6%201.89%201.6%203.361%200%202.311-2.8%206.093-8%206.093-11.2.21-4.6-3.362-7.6-7.564-7.6zm-.205%2011.429c-2.08%200-3.536-1.701-3.536-3.615%200-2.126%201.664-3.614%203.536-3.614%201.871%200%203.535%201.7%203.535%203.614s-1.664%203.615-3.535%203.615z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)no-repeat 12px center/40px;border-radius:4px;text-decoration:none}
[dir=rtl] .wall_module .post_event_info{padding-left:0;padding-right:52px}
.wall_module .post_event_info .post_event_info_content{display:block;line-height:19px;padding:12px;overflow:hidden}
.wall_module .post_event_info .post_event_action{margin-right:15px;margin-top:17px}
[dir=rtl] .wall_module .post_event_info .post_event_action{margin-right:0;margin-left:15px}
.wall_module .post_event_info .post_event_info_title,.wall_module .post_event_info .post_event_info_date{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.wall_module .post_event_info .post_event_info_title{margin-top:1px;font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}
.wall_module .post_event_info .post_event_info_date{color:var(--vkui--color_text_secondary)}
.wall_module .post_event_info .post_event_info_friends:hover{text-decoration:underline}
.deep_active .replies .page_preview_doc_wrap.page_preview_doc_as_photo_wrap{width:auto;height:auto}
.deep_active .replies .page_preview_doc_wrap .page_preview_doc_as_photo{background:0 0;display:block;height:auto}
div.page_preview_photo,div.page_preview_video,div.page_preview_graffiti{height:57px;overflow:hidden}
div.page_preview_video,div.page_preview_graffiti{width:75px;overflow:hidden;position:relative}
img.page_preview_graffiti{width:75px}
img.page_preview_video{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto}
.replies .page_preview_video_wrap .VideoPreview--shortVideo{max-width:150px;height:188px}
.post_field_user_image{position:absolute;top:12px;left:20px;width:28px;height:28px;border-radius:50%;transform-style:preserve-3d;transition:transform .3s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:rotateY(0deg)}
[dir=rtl] .post_field_user_image{left:auto;right:20px}
.post_field_user_image.post_field_image_secondary{transform:rotateY(180deg)}
[dir=rtl] .post_field_user_image.post_field_image_secondary{transform:rotateY(-180deg)}
.post_field_user_link{display:block;height:28px;float:left;position:relative}
[dir=rtl] .post_field_user_link{float:right}
div.submit_post_field,div.submit_post_field[contenteditable=true],div.submit_post_field~.placeholder .ph_input,div.submit_post_field[contenteditable=true]~.placeholder .ph_input{vertical-align:top;overflow:hidden;width:100%;min-height:52px;max-height:52px;padding:16px 20px 16px 12px;background-color:transparent;border:0;border-radius:var(--vkui--size_border_radius_paper--regular);line-height:1.462;word-wrap:break-word;resize:none}
[dir=rtl] div.submit_post_field,[dir=rtl] div.submit_post_field[contenteditable=true],[dir=rtl] div.submit_post_field~.placeholder .ph_input,[dir=rtl] div.submit_post_field[contenteditable=true]~.placeholder .ph_input{padding:16px 12px 16px 20px}
div.submit_post_field::-ms-input-placeholder,div.submit_post_field[contenteditable=true]::-ms-input-placeholder{padding:0}
div.submit_post_field::placeholder,div.submit_post_field[contenteditable=true]::placeholder,div.submit_post_field~.placeholder .ph_content,div.submit_post_field[contenteditable=true]~.placeholder .ph_content{padding:0}
div.submit_post_field[contenteditable=true]:empty:not(.submit_post_inited):not(.reply_field)::before,div.submit_post_field[contenteditable=true][contenteditable=true]:empty:not(.submit_post_inited):not(.reply_field)::before{content:attr(placeholder);color:var(--gray_500);transition:color .2s ease;display:block}
div.submit_post_field[contenteditable=true]:empty:not(.submit_post_inited):not(.reply_field):focus::before,div.submit_post_field[contenteditable=true][contenteditable=true]:empty:not(.submit_post_inited):not(.reply_field):focus::before{color:var(--gray_300)}
div.submit_post_field>p,div.submit_post_field[contenteditable=true]>p{margin:0}
.wall_module .post_like:hover,.wall_module .post_reply:hover,.wall_module .post_share:hover{background-color:var(--steel_gray_20)}
.wall_module .post_like_link,.wall_module .post_share_link,.wall_module .post_reply_link{font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;margin-left:7px;float:left}
[dir=rtl] .wall_module .post_like_link,[dir=rtl] .wall_module .post_share_link,[dir=rtl] .wall_module .post_reply_link{margin-left:0;margin-right:7px;float:right}
.wall_module .post_like_icon,.wall_module .post_share_icon{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2214%22%20viewBox%3D%220%200%2016%2014%22%20width%3D%2216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%233D6899%22%20d%3D%22m8%203.2c-.6-3.5-4.8-4-6.6-2.2-1.9%201.9-1.9%204.8%200%206.7.5.5%205.5%205.3%205.5%205.3.5.6%201.6.6%202.1%200l5.5-5.3c2-1.9%202-4.8.1-6.7-1.8-1.7-6-1.3-6.6%202.2z%22%2F%3E%3C%2Fsvg%3E)no-repeat 0 0;display:inline-block;float:left;width:17px;height:14px;margin-top:1px;opacity:.35}
[dir=rtl] .wall_module .post_like_icon,[dir=rtl] .wall_module .post_share_icon{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2214%22%20viewBox%3D%220%200%2016%2014%22%20width%3D%2216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%233D6899%22%20d%3D%22m8%203.2c-.6-3.5-4.8-4-6.6-2.2-1.9%201.9-1.9%204.8%200%206.7.5.5%205.5%205.3%205.5%205.3.5.6%201.6.6%202.1%200l5.5-5.3c2-1.9%202-4.8.1-6.7-1.8-1.7-6-1.3-6.6%202.2z%22%2F%3E%3C%2Fsvg%3E)no-repeat 100%0;float:right}
.wall_module .post_like_link,.wall_module .post_reply_link,.wall_module .post_share_link,.wall_module .post_share_count{line-height:15px;height:14px}
.wall_module .post_share_count{margin-left:6px;float:left;font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}
[dir=rtl] .wall_module .post_share_count{margin-left:0;margin-right:6px;float:right}
.wall_module .post_share_count .counter_anim_wrap{line-height:15px;height:14px}
.wall_module .post_like:hover .post_like_icon,.wall_module .post_reply:hover .post_reply_icon,.wall_module .post_share:hover .post_share_icon{opacity:.5}
.wall_module .post_share_icon{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20width%3D%2214%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%233D6899%22%20d%3D%22m0%205.5v1c0%201.5%201.6%202.5%203%202.5h5c.4%200%201.1.2%202.7%201.3%201%20.8%202.2%201.7%202.2%201.7h1.1v-6-6h-1.1s-1.2.9-2.2%201.7c-1.6%201.1-2.3%201.3-2.7%201.3h-5c-1.4%200-3%201-3%202.5zm7.5%206.5-1.1-3h-2.4l1.3%205c2%200%202.2-.7%202.2-2z%22%2F%3E%3C%2Fsvg%3E);width:14px}
.wall_module .post_reply_icon{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2214%22%20viewBox%3D%225%206%2014%2014%22%20width%3D%2214%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%233D6899%22%20d%3D%22m5%207c0-.6.4-1%201-1h12c.5%200%201%20.5%201%201v8c0%20.6-.4%201-1%201h-12c-.5%200-1-.5-1-1zm4%209v4l5-4z%22%2F%3E%3C%2Fsvg%3E);width:15px;margin:2px 0-1px}
.wall_module .my_like .post_like_icon,.wall_module .my_share .post_share_icon{opacity:1!important}
.wall_module .post_share_count{margin-left:8px}
[dir=rtl] .wall_module .post_share_count{margin-left:0;margin-right:8px}
.wall_module .post_share_link{display:none}
.wall_module .no_shares .post_share_count,.wall_module .no_views{display:none}
.AvatarRich .like_tt_reaction{position:static}
a.page_post_thumb_unsized,span.page_post_thumb_unsized{display:block;position:relative;overflow:hidden;margin:0 5px 5px 0}
[dir=rtl] a.page_post_thumb_unsized,[dir=rtl] span.page_post_thumb_unsized{margin:0 0 5px 5px}
a.page_post_thumb_unsized:not(.page_album_nocover),span.page_post_thumb_unsized:not(.page_album_nocover){background:50% 50%no-repeat;background-size:cover}
a.page_post_thumb_unsized.page_post_thumb_unsized_single,span.page_post_thumb_unsized.page_post_thumb_unsized_single{background-size:contain}
body[data-useragent=safari] .page_name,body[data-useragent=safari] h1.page_name{margin-left:0}
[dir=rtl] body[data-useragent=safari] .page_name,[dir=rtl] body[data-useragent=safari] h1.page_name{margin-left:0;margin-right:0}
.wide_column .page_top{padding:15px 20px;border-bottom:1px solid var(--vkui--color_separator_primary)}
.wide_column .page_top:last-child{border-bottom:0}
.wide_column .page_top .page_info_wrap{padding-top:0}
.wide_column .page_top+.page_block_h2{padding:0 15px}
.wide_column .page_top+.page_block_h2 .ui_tabs.page_info_tabs{padding:0}
.wide_column .page_top+.page_block_h2 .ui_tabs.page_info_tabs li:first-child .ui_tab{margin-left:0}
[dir=rtl] .wide_column .page_top+.page_block_h2 .ui_tabs.page_info_tabs li:first-child .ui_tab{margin-left:0;margin-right:0}
.wide_column .page_info_wrap .page_top{padding:0 0 15px}
.wide_column .page_info_wrap .page_top:last-child{padding-bottom:0}
a.current_app_icon{padding:1px 0 2px 23px;display:inline;display:inline-block;zoom:1;background-position:0 0;margin-bottom:-2px;margin-top:-1px}
[dir=rtl] a.current_app_icon{padding:1px 23px 2px 0;background-position:100%0}
div.page_status_input{width:100%;margin:0 0 10px;box-sizing:border-box;padding:5px 28px 6px 9px;min-height:28px;line-height:14px;outline:0;word-wrap:break-word}
[dir=rtl] div.page_status_input{padding:5px 9px 6px 28px}
div.page_cover_image .ui_actions_menu_icons{cursor:default}
.Post--redesign .page_gif_large{margin:0}
div.medadd_c_timer{margin:5px 2px 0;height:33px;overflow:hidden}
div.medadd_c_timer.timer_in_tt{margin:3px 0 0}
div.medadd_c_nofixed{height:auto}
div.medadd_c_linkprg{display:block;margin:0 auto}
button.wall_block_app_btn{max-width:290px;overflow:hidden}
.Post--redesign .page_media_place{margin:0}
.wall_post_cont .article_snippet,.copy_quote .article_snippet{margin-top:10px}
.Post--redesign .wall_post_cont .article_snippet{margin-top:var(--post-large-spacing-tb, 12px)}
.wide_column .articles_module .module_body{display:flex;justify-content:center;padding:12px 13px 20px!important}
.wide_column .articles_module .module_body .article_snippet{width:248px;margin:0 7px}
.wide_column .articles_module .module_body .article_snippet .article_snippet__author{display:none}
.wide_column .articles_module .module_body .article_snippet .article_snippet__title{font-size:16px;line-height:1.25;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}
.wide_column .articles_module .module_body .article_snippet .article_snippet__action_btn--read{font-size:13px}
.wide_column .articles_module .module_body .article_snippet .article_snippet__buttons{margin-top:11px}
.narrow_column .articles_module .module_body .article_snippet{width:auto}
.narrow_column .articles_module .module_body .article_snippet__action_btn--read{margin-top:0}
.narrow_column .articles_module .module_body .article_snippet__title{display:none}
.narrow_column .articles_module .module_body .page_module_article_title{display:block;padding:10px 7px 14px 0;line-height:1.3em;overflow:hidden}
[dir=rtl] .narrow_column .articles_module .module_body .page_module_article_title{padding:10px 0 14px 7px}
.narrow_column .articles_module .module_body .page_module_article_title:last-child{padding-bottom:0}
.narrow_column .articles_module .module_body .article_snippet__author{display:none}
.narrow_column .narratives_module .module_body{padding:0}
.wide_column .narratives_module .module_body{padding:10px 0 18px}
.page_block.wall_archive_link_block+.post.page_block{border-radius:var(--vkui--size_border_radius_paper--regular)}
@keyframes tts_button_load{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}
[scheme=vkcom_dark] .media_voting_option_voted .media_voting_option_percent::before{background-image:url(/images/svg_icons/votings/voting_vkcom_dark.svg)}
[scheme=vkcom_dark] .media_voting_multiple .media_voting_option_text::after{background-image:url(/images/svg_icons/votings/voting_vkcom_dark.svg)}
[scheme=vkcom_dark] .media_voting_bg_photo .ui_actions_menu_icons::before,[scheme=vkcom_dark] .media_voting_bg_gradient .ui_actions_menu_icons::before,[scheme=vkcom_dark] .media_voting_bg_tile .ui_actions_menu_icons::before{background-image:url(/images/svg_icons/votings/voting_vkcom_dark.svg)}
.media_voting_footer_voted_friend+span{margin-left:8px}
[dir=rtl] .media_voting_footer_voted_friend+span{margin-left:0;margin-right:8px}
body[data-useragent=safari] .PagePostLimitedThumbBlurredBackground{-webkit-mask-image:radial-gradient(var(--white),var(--black));mask-image:radial-gradient(var(--white),var(--black))}
@supports ((-webkit-backdrop-filter:blur(76px)) or (backdrop-filter:blur(76px))){body[data-useragent=mozilla] .PagePostLimitedThumbBlurredBackgroundPhoto{background-blend-mode:initial}}
body[data-useragent*=chrome] .PagePostLimitedThumbBlurredBackgroundBlur::after{display:none}
body[data-useragent*=chrome] .PagePostLimitedThumbBlurredBackgroundBlur{filter:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a' x='0' y='0' width='1' height='1'%3E%3CfeGaussianBlur stdDeviation='76' primitiveUnits='userSpaceOnUse' result='b'/%3E%3CfeMorphology operator='dilate' /%3E %3CfeMerge%3E%3CfeMergeNode/%3E%3CfeMergeNode in='b'/%3E%3C/feMerge%3E%3C/filter%3E%3C/svg%3E#a");transform:translateZ(0)}
body[data-useragent=safari] .PagePostLimitedThumbBlurredBackgroundBlur{filter:blur(76px);transform:translateZ(0)}
button.PostTextMore{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;margin:0;padding:0}
body[data-useragent=safari] .PostTextMore__gradient{background:var(--vkui--color_background_content);-webkit-mask-image:-webkit-gradient(linear,right top,left top,from(var(--vkui--color_background_content)),to(rgba(255,255,255,0)));-webkit-mask-image:linear-gradient(to left,var(--vkui--color_background_content),rgba(255,255,255,0));mask-image:-webkit-gradient(linear,right top,left top,from(var(--vkui--color_background_content)),to(rgba(255,255,255,0)));mask-image:linear-gradient(to left,var(--vkui--color_background_content),rgba(255,255,255,0))}
.SecondaryAttachmentAvatar .AvatarImageStack{border-radius:4px}
.SecondaryAttachment{--secondary-attachment-icon-button-size:36px;height:56px;padding-left:var(--secondary-attachment-padding-lr, 0);padding-right:var(--secondary-attachment-padding-lr, 0)}
.SecondaryAttachment{display:flex;align-items:center;white-space:nowrap;color:var(--vkui--color_text_primary);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.SecondaryAttachment--interactive{cursor:pointer;position:relative}
.SecondaryAttachment--interactive:hover .SecondaryAttachmentAvatar,.SecondaryAttachment--interactive:focus-visible .SecondaryAttachmentAvatar,.SecondaryAttachment--interactive:hover .SecondaryAttachment__content,.SecondaryAttachment--interactive:focus-visible .SecondaryAttachment__content{opacity:.7}
.SecondaryAttachment:hover .SecondaryAttachmentAvatar--blur{opacity:1}
.SecondaryAttachment--interactive:hover .SecondaryAttachment__chevron,.SecondaryAttachment--interactive:focus-visible .SecondaryAttachment__chevron{transform:translateX(4px)}
[dir=rtl] .SecondaryAttachment--interactive:hover .SecondaryAttachment__chevron,[dir=rtl] .SecondaryAttachment--interactive:focus-visible .SecondaryAttachment__chevron{transform:translateX(-4px)}
a.SecondaryAttachment,a.SecondaryAttachment:hover,a.SecondaryAttachment:focus,a.SecondaryAttachment:active{text-decoration:none}
.SecondaryAttachment__buttonBase{margin-left:5px}
[dir=rtl] .SecondaryAttachment__buttonBase{margin-left:0;margin-right:5px}
button.SecondaryAttachment__iconButton.SecondaryAttachment__iconButton--audio.SecondaryAttachment__iconButton--gray{color:var(--vkui--color_text_secondary);background:var(--vkui--color_background_secondary)}
button.SecondaryAttachment__iconButton.SecondaryAttachment__iconButton--audio.SecondaryAttachment__iconButton--gray:hover{background:var(--vkui--color_background_secondary--hover)}
button.SecondaryAttachment__afterItem,button.SecondaryAttachment__iconButton{background:0 0;border:unset;cursor:inherit;padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}
button.SecondaryAttachment__iconButton.SecondaryAttachment__iconButton--audio{background:var(--vkui--color_background_accent_themed)}
button.SecondaryAttachment__iconButton.SecondaryAttachment__iconButton--audioPlay{padding-right:1px}
[dir=rtl] button.SecondaryAttachment__iconButton.SecondaryAttachment__iconButton--audioPlay{padding-right:0;padding-left:1px}
.SecondaryAttachment__chevron{display:flex;color:var(--vkui--vkontakte_color_icon_outline_secondary);transform:translateX(0);transition:transform .1s linear}
.SecondaryAttachment__main{flex-grow:1;min-width:0;max-width:100%;overflow:hidden;padding-top:10px;padding-bottom:10px}
.SecondaryAttachmentTitle{color:var(--vkui--color_text_primary)}
.SecondaryAttachmentTitle.SecondaryAttachmentTitle--normalFont{font-weight:400;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}
.SecondaryAttachment__children{display:flex;align-items:center;color:inherit;text-overflow:ellipsis;overflow:hidden;font-size:14px;line-height:18px;font-weight:500;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}
.SecondaryAttachment__childrenText{flex-shrink:1;min-width:0;overflow:inherit;text-overflow:inherit}
.SecondaryAttachment__childrenTextAfter{display:flex;align-items:center}
.SecondaryAttachmentSubhead{font-size:13px;line-height:16px}
.SecondaryAttachment__description{color:var(--vkui--color_text_secondary);text-overflow:ellipsis;overflow:hidden;margin-top:4px}
.SecondaryAttachment__description:empty{display:none}
.SecondaryAttachment__after{flex-shrink:0;display:flex;align-items:center;color:var(--vkui--color_text_accent)}
.SecondaryAttachment__content{min-width:0}
.SecondaryAttachmentAvatar{width:var(--secondary-attachment-avatar-size);height:var(--secondary-attachment-avatar-size);flex:0 0 auto;margin-right:var(--secondary-attachment-avatar-margin-right);box-sizing:border-box;color:var(--vkui--color_image_placeholder);background-color:currentColor;position:relative}
[dir=rtl] .SecondaryAttachmentAvatar{margin-right:0;margin-left:var(--secondary-attachment-avatar-margin-right)}
.SecondaryAttachmentAvatar--style-square{border-radius:8px}
.SecondaryAttachmentAvatar--icon{display:flex;align-items:center;justify-content:center}
.SecondaryAttachmentAvatar__iconContent{background-color:var(--vkui--color_background_secondary);display:flex;align-items:center;justify-content:center;width:100%;height:100%;border-radius:inherit}
.SecondaryAttachmentAvatar__iconContent svg{color:var(--vkui--vkontakte_color_icon_outline_medium)}
.SecondaryAttachmentAvatar.audio_row__playing::after,.SecondaryAttachmentAvatar.audio_row__playing .SecondaryAttachmentAvatar__iconContent{background-color:rgba(0,0,0,.5)}
.SecondaryAttachment[data-restricted]{opacity:.4}
.SecondaryAttachment[data-restricted] .SecondaryAttachment--interactive{cursor:none}
.SecondaryAttachmentGroup{display:flex;flex-direction:column}
button.SecondaryAttachmentGroupShowMore{display:flex;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;margin:0}
.SecondaryAttachmentContainer{--secondary-attachment-margin-lr:calc(var(--secondary-attachment-padding-lr, 0px)*-1);--secondary-attachment-avatar-margin-right:8px;--secondary-attachment-avatar-size:44px;margin-left:var(--secondary-attachment-margin-lr);margin-right:var(--secondary-attachment-margin-lr)}
.SecondaryAttachmentContainer--inPost{--secondary-attachment-padding-lr:var(--post-padding-lr, 20px);--secondary-attachment-padding-top:6px;--secondary-attachment-padding-bottom:-6px;margin-top:var(--secondary-attachment-padding-top);margin-bottom:var(--secondary-attachment-padding-bottom)}
@keyframes secondaryAttachmentSliderShowUp{0%{opacity:0;width:0}to{opacity:1;width:100%}}
a.PostFooterAuthor{color:var(--vkui--color_text_secondary)}
.Post--redesign{--post-large-spacing-tb:12px;--post-small-spacing-tb:8px;--post-smallest-spacing-tb:4px}
.Post--redesign .post_thumbed_media{margin:var(--post-large-spacing-tb, 12px)0 0;padding-top:0;padding-bottom:0}
.Post--redesign .page_post_sized_thumbs{padding:0}
.Post--redesign .wall_text .page_post_sized_thumbs{margin-top:var(--post-large-spacing-tb, 12px)}
.Post--redesign.Post--redesign--onTop .wall_text .page_post_sized_thumbs{margin-top:calc(var(--post-large-spacing-tb, 12px) + 3px)}
.Post--redesign .replies .page_post_sized_thumbs,.Post--redesign .wl_replies_block_wrap .page_post_sized_thumbs{margin:var(--post-smallest-spacing-tb, 4px)0}
.Post--redesign .replies .page_post_sized_thumbs+.post_video_desc,.Post--redesign .wl_replies_block_wrap .page_post_sized_thumbs+.post_video_desc{margin-top:calc(var(--post-smallest-spacing-tb, 4px)*-1)}
.wall_text .PagePostLimitedThumbsContainer:last-child,.wall_text .page_post_sized_thumbs:last-child{padding-bottom:0}
.wall_module .post_poster .post_moder_info{margin:10px 0 10px}
a.page_post_thumb_wrap,span.page_post_thumb_wrap{display:block;overflow:hidden;position:relative;margin:0 5px 5px 0}
[dir=rtl] a.page_post_thumb_wrap,[dir=rtl] span.page_post_thumb_wrap{margin:0 0 5px 5px}
a.page_post_thumb_wrap:hover,a.page_post_thumb_unsized:hover{text-decoration:none!important}
a.page_post_thumb_wrap{position:relative}
.Post--redesign .post_media_voting{margin:var(--post-large-spacing-tb, 12px)0 0}
.wall_tt .post_media_voting,.wall_module .copy_quote .post_media_voting:last-child,.wall_module .post--withActionStatusBar .post_media_voting:last-child,.wall_module .post_btl .post_media_voting:last-child{margin-bottom:0!important}
div.media_preview{padding:10px 0 10px;max-width:510px;display:none}
div.media_preview:empty{padding:0}
div.med_no_attach{padding-bottom:0}
.post_inline_progress+*{visibility:hidden}
@keyframes PostUpdatedHighlight{0%{background-color:var(--vkui--color_transparent--active)}to{background-color:var(--vkui--color_background_content)}}
.wall_module .page_wall_posts .page_block,.wall_module .page_wall_posts .page_block.unshown+.page_block{margin-top:0;border-radius:0 0 var(--vkui--size_border_radius_paper--regular) var(--vkui--size_border_radius_paper--regular)}
.wall_module .page_wall_posts .page_block~.page_block,.wall_module .page_wall_posts .page_block:not(.unshown)~.page_block.unshown+.page_block:not(.unshown){margin:var(--page-block-offset, 15px)0 0;border-radius:var(--vkui--size_border_radius_paper--regular)}
.page_block.page_block_header_outer .pg_pages_small .pg_in{padding-bottom:6px}
div.wdd{background:var(--vkui--color_write_bar_input_background);border:1px solid var(--vkui--vkontakte_color_input_border);border-radius:var(--vkui--size_border_radius--regular);padding:2px 2px 1px;position:relative;overflow:visible!important}
div.wdd.wdd_focused{border-color:var(--vkui--vkontakte_color_input_border);border-radius:var(--vkui--size_border_radius--regular) var(--vkui--size_border_radius--regular)0 0}
div.wdd.wdd_focused.wdd_toup{border-radius:0 0 var(--vkui--size_border_radius--regular) var(--vkui--size_border_radius--regular)}
[scheme=vkcom_dark] .wdd_add_plus{filter:brightness(2)}
div.wdd_disabled{opacity:.6}
div.wdd_disabled .wdd_arr:hover{cursor:default}
div.wdd_disabled .wdd_add{display:none!important}
div.wdd.wdd_no_sub .wddi_text{padding-top:9px}
div.wdd.wdd_no_sub .wddi_sub{display:none}
.LeftMenu__mourning--szppi{--vkui--color_icon_accent:var(--vkui--color_icon_medium)}
.post_content .sticker_hints_tt,.bt_reply_form_wrap .sticker_hints_tt{max-width:405px}
.FeedMenuButtonSkeleton{display:flex;align-items:center;justify-content:center;width:24px;height:24px;padding-left:var(--vkui--size_base_padding_horizontal--regular)}
[dir=rtl] .FeedMenuButtonSkeleton{padding-left:0;padding-right:var(--vkui--size_base_padding_horizontal--regular)}
.ui_rmenu{padding:8px 8px 6px;position:relative}
.ui_rmenu_item,.ui_rmenu_subitem{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;color:var(--vkui--color_text_primary);padding:4px 12px;box-sizing:border-box;height:36px;border-left:0;border-radius:var(--vkui--size_border_radius--regular);line-height:normal;display:flex;align-items:center}
[dir=rtl] .ui_rmenu_item,[dir=rtl] .ui_rmenu_subitem{border-left:none;border-right:0}
.ui_rmenu_item:hover,.ui_rmenu_subitem:hover{text-decoration:none}
.ui_rmenu_item,.ui_rmenu_subitem,._ui_rmenu_sublist{margin-bottom:2px}
.ui_rmenu_item:hover,.ui_rmenu_item_sel,.ui_rmenu_subitem:hover,.ui_rmenu_subitem_sel{background-color:var(--vkui--vkontakte_background_hover_alpha)}
.ui_rmenu_item.unshown,.ui_rmenu_subitem.unshown{display:none}
.ui_rmenu_item_label{font-size:13px;font-weight:400;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto;flex-grow:1;display:flex;align-items:center;min-width:0}
.ui_rmenu_item:hover .ui_rmenu_extra_label_onhover{opacity:1}
.ui_rmenu_pr.ui_rmenu_loading .ui_rmenu_item_sel .ui_rmenu_count,.ui_rmenu_pr.ui_rmenu_loading .ui_rmenu_item_sel .ui_calendar_icon{display:none}
.ui_rmenu_pr.ui_rmenu_loading .ui_rmenu_item_sel .pr{float:right;margin:0 0 0 12px}
[dir=rtl] .ui_rmenu_pr.ui_rmenu_loading .ui_rmenu_item_sel .pr{float:left;margin:0 12px 0 0}
.ui_rmenu_pr .pr_bt{background-color:var(--vkui--color_track_buffer)}
.ui_rmenu_sep{border-top:1px solid var(--vkui--color_separator_primary);margin:4px 12px}
body.sf .ui_rmenu_count{line-height:16px}
.ui_rmenu_item_label span.ui_rmenu_label-text{overflow:hidden;text-overflow:ellipsis}
[scheme=vkcom_dark] .ui_actions_menu_icons{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m5%2014c1.1%200%202-.9%202-2s-.9-2-2-2-2%20.9-2%202%20.9%202%202%202zm7%200c1.1%200%202-.9%202-2s-.9-2-2-2-2%20.9-2%202%20.9%202%202%202zm7%200c1.1%200%202-.9%202-2s-.9-2-2-2-2%20.9-2%202%20.9%202%202%202z%22%20fill%3D%22%2376787a%22%2F%3E%3C%2Fsvg%3E)}
body.mac .ui_tabs_fixed{transform:translateZ(0)}
a.ui_box_header_link{color:var(--vkui--color_text_primary)}
button.ui_tab_sort{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;margin:0;padding:0;cursor:pointer;display:block}
body.mac .ui_search.ui_search_fixed{transform:translateZ(0)}
.page_block .ui_search.ui_search_fixed{top:42px}
.page_block>.ui_search:first-child{border-radius:var(--vkui--size_border_radius_paper--regular) var(--vkui--size_border_radius_paper--regular)0 0}
input.ui_search_field,input.ui_search_field~.placeholder .ph_input{padding:14px 44px 13px 48px;box-sizing:border-box;width:100%;border:0;margin:0;line-height:18px}
[dir=rtl] input.ui_search_field,[dir=rtl] input.ui_search_field~.placeholder .ph_input{padding:14px 48px 13px 44px}
input.ui_search_field{background:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22m0%200h24v24h-24z%22%2F%3E%3Cpath%20d%3D%22m16.7602287%2014.6529231%202.8964446%202.649819c.3906074.357348.4073389.9469542.0332853%201.3210078l-.0662697.0662697c-.3722244.3722244-.9659303.3548319-1.320999-.0332942l-2.6497846-2.896483c-1.0116996.7775182-2.2783216%201.2397576-3.6529053%201.2397576-3.3137085%200-6-2.6862915-6-6s2.6862915-6%206-6%206%202.6862915%206%206c0%201.3745918-.4622448%202.6412205-1.2397713%203.6529231zm-4.7602287.3470769c2.209139%200%204-1.790861%204-4s-1.790861-4-4-4-4%201.790861-4%204%201.790861%204%204%204z%22%20fill%3D%22%2393a3bc%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)no-repeat;background-position:-6px 50%;-ms-high-contrast-adjust:auto;padding-left:28px;border-left:20px solid transparent;color:var(--vkui--color_text_primary)}
[dir=rtl] input.ui_search_field{background-position:right -6px top 50%;padding-left:0;padding-right:28px;border-left:none;border-right:20px solid transparent}
input.ui_search_field::-ms-input-placeholder{color:var(--vkui--color_text_secondary);-ms-transition:color .2s ease;transition:color .2s ease}
input.ui_search_field::placeholder,input.ui_search_field~.placeholder .ph_content{color:var(--vkui--color_text_secondary);transition:color .2s ease}
input.ui_search_field:focus::-ms-input-placeholder{color:var(--vkui--color_text_secondary)}
input.ui_search_field:focus::placeholder,input.ui_search_field:focus~.placeholder .ph_content{color:var(--vkui--color_text_secondary)}
[scheme=vkcom_dark] input.ui_search_field{background-image:url(data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%2F%3E%3Cpath%20d%3D%22M16.76023%2014.65292l2.89644%202.64982c.39061.35735.40734.94696.03329%201.32101l-.06627.06627c-.37223.37222-.96593.35483-1.321-.0333l-2.64978-2.89648C14.6412%2016.53776%2013.37458%2017%2012%2017c-3.3137%200-6-2.6863-6-6s2.6863-6%206-6%206%202.6863%206%206c0%201.3746-.46224%202.64122-1.23977%203.65292zM12%2015c2.20914%200%204-1.79086%204-4s-1.79086-4-4-4-4%201.79086-4%204%201.79086%204%204%204z%22%20fill%3D%22%23828282%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)}
a.ui_search_custom_link{padding-right:17px;background:url(/images/icons/dd_arrow.png)no-repeat right 7px}
[dir=rtl] a.ui_search_custom_link{padding-right:0;padding-left:17px;background:url(/images/icons/dd_arrow.png)no-repeat left 7px}
@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){a.ui_search_custom_link{background-image:url(/images/icons/dd_arrow_2x.png);background-size:8px 4px}}
a.ui_crumb{color:var(--vkui--color_text_subhead)}
.ui_ownblock{display:block;padding:calc(var(--page-block-offset, 15px) - 6px) 15px;border-radius:var(--vkui--size_border_radius--regular)}
.ui_ownblock:hover{text-decoration:none;background-color:var(--vkui--color_transparent--active)}
.ui_ownblock_img{float:left;width:34px;height:34px;border-radius:50%;margin-right:10px}
[dir=rtl] .ui_ownblock_img{float:right;margin-right:0;margin-left:10px}
.ui_ownblock_info{white-space:nowrap;font-size:12.5px;line-height:16px}
.ui_ownblock_label{overflow:hidden;text-overflow:ellipsis;color:var(--vkui--color_text_link);padding-top:2px}
.ui_ownblock_hint{overflow:hidden;text-overflow:ellipsis;color:var(--vkui--color_text_subhead)}
@keyframes uploadProgressAnimation{0%{background-position-x:0}to{background-position-x:28px}}
@keyframes slider_loading_animation{0%{background-position:0 0}to{background-position:9px 0}}
input[type=range].step_slider{-webkit-appearance:none;width:100%;margin:4.5px 0;padding:0}
input[type=range].step_slider:focus{outline:0}
input[type=range].step_slider::-moz-focus-outer{border:0}
input[type=range].step_slider::-webkit-slider-runnable-track{width:100%;height:6px;cursor:pointer;box-shadow:0 0 0 var(--black),0 0 0 var(--gray_960);background:var(--steel_gray_120);border-radius:0;border:0 solid var(--black)}
input[type=range].step_slider::-webkit-slider-thumb{box-shadow:0 0 0 var(--transparent_black),0 0 0 var(--transparent_black);border:0 solid var(--transparent_black);height:15px;width:15px;border-radius:15px;background:var(--light_blue_500);cursor:pointer;-webkit-appearance:none;margin-top:-4.5px}
input[type=range].step_slider:focus::-webkit-slider-runnable-track{background:var(--steel_gray_100)}
input[type=range].step_slider::-moz-range-track{width:100%;height:6px;cursor:pointer;box-shadow:0 0 0 var(--black),0 0 0 var(--gray_960);background:var(--steel_gray_120);border-radius:0;border:0 solid var(--black)}
input[type=range].step_slider::-moz-range-thumb{box-shadow:0 0 0 var(--transparent_black),0 0 0 var(--transparent_black);border:0 solid var(--transparent_black);height:15px;width:15px;border-radius:15px;background:var(--light_blue_500);cursor:pointer}
input[type=range].step_slider::-ms-track{width:100%;height:6px;cursor:pointer;background:0 0;border-color:transparent;color:transparent}
input[type=range].step_slider::-ms-fill-lower{background:var(--steel_gray_120);border:0 solid var(--black);border-radius:0;box-shadow:0 0 0 var(--black),0 0 0 var(--gray_960)}
input[type=range].step_slider::-ms-fill-upper{background:var(--steel_gray_120);border:0 solid var(--black);border-radius:0;box-shadow:0 0 0 var(--black),0 0 0 var(--gray_960)}
input[type=range].step_slider::-ms-thumb{box-shadow:0 0 0 var(--transparent_black),0 0 0 var(--transparent_black);border:0 solid var(--transparent_black);height:15px;width:15px;border-radius:15px;background:var(--light_blue_500);cursor:pointer;height:6px}
input[type=range].step_slider:focus::-ms-fill-lower{background:var(--steel_gray_120)}
input[type=range].step_slider:focus::-ms-fill-upper{background:var(--steel_gray_100)}
body.index_page .TopSearchRoot{display:none}
.SearchTopInputSkeleton{box-sizing:border-box;padding:0 0 0 34px}
[dir=rtl] .SearchTopInputSkeleton{padding:0 34px 0 0}
body.mac #filter_form{transform:translateZ(0)}
@font-face {
font-family: 'VK Sans Display Faux';
font-weight: 600;
font-display: swap;
src: url(/css/fonts/VKSansDisplayDemiBoldFaux.v100.woff2) format('woff2');
unicode-range: U+0,U+A,U+D,U+20-5A,U+61-7A,U+401,U+404,U+406,U+407,U+40E,U+410-44F,U+451,U+454,U+456,U+457,U+45E,U+490,U+491;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 300;
font-display: swap;
src: url(/css/fonts/VKSansDisplayLightLatin.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayLightLatin.v320.woff) format('woff');
unicode-range: U+0,U+A,U+D,U+20-5F,U+61-7E,U+A0,U+A2-A5,U+A7,U+A9,U+AB,U+AD,U+AE,U+B0,U+B1,U+B6,U+B7,U+BB,U+D7,U+F7,U+131,U+237,U+2013,U+2014,U+2018,U+2019,U+201C,U+201D,U+2022,U+2026,U+2039,U+203A,U+20AC,U+20B4,U+20B8,U+20BD,U+20BF,U+2122,U+2191,U+2193,U+2212;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 300;
font-display: swap;
src: url(/css/fonts/VKSansDisplayLightCyrillic.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayLightCyrillic.v320.woff) format('woff');
unicode-range: U+401,U+404,U+406,U+407,U+40E,U+410-44F,U+451,U+454,U+456,U+457,U+45E,U+490,U+491,U+20B4,U+2116;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 300;
font-display: swap;
src: url(/css/fonts/VKSansDisplayLightRest.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayLightRest.v320.woff) format('woff');
unicode-range: U+307,U+308,U+2190,U+2192,U+2194-2199,U+2248,U+2260,U+2264,U+2265;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 400;
font-display: swap;
src: url(/css/fonts/VKSansDisplayRegularLatin.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayRegularLatin.v320.woff) format('woff');
unicode-range: U+0,U+A,U+D,U+20-5F,U+61-7E,U+A0,U+A2-A5,U+A7,U+A9,U+AB,U+AD,U+AE,U+B0,U+B1,U+B6,U+B7,U+BB,U+D7,U+F7,U+131,U+237,U+2013,U+2014,U+2018,U+2019,U+201C,U+201D,U+2022,U+2026,U+2039,U+203A,U+20AC,U+20B4,U+20B8,U+20BD,U+20BF,U+2122,U+2191,U+2193,U+2212;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 400;
font-display: swap;
src: url(/css/fonts/VKSansDisplayRegularCyrillic.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayRegularCyrillic.v320.woff) format('woff');
unicode-range: U+401,U+404,U+406,U+407,U+40E,U+410-44F,U+451,U+454,U+456,U+457,U+45E,U+490,U+491,U+20B4,U+2116;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 400;
font-display: swap;
src: url(/css/fonts/VKSansDisplayRegularRest.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayRegularRest.v320.woff) format('woff');
unicode-range: U+307,U+308,U+2190,U+2192,U+2194-2199,U+2248,U+2260,U+2264,U+2265;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 500;
font-display: swap;
src: url(/css/fonts/VKSansDisplayMediumLatin.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayMediumLatin.v320.woff) format('woff');
unicode-range: U+0,U+A,U+D,U+20-5F,U+61-7E,U+A0,U+A2-A5,U+A7,U+A9,U+AB,U+AD,U+AE,U+B0,U+B1,U+B6,U+B7,U+BB,U+D7,U+F7,U+131,U+237,U+2013,U+2014,U+2018,U+2019,U+201C,U+201D,U+2022,U+2026,U+2039,U+203A,U+20AC,U+20B4,U+20B8,U+20BD,U+20BF,U+2122,U+2191,U+2193,U+2212;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 500;
font-display: swap;
src: url(/css/fonts/VKSansDisplayMediumCyrillic.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayMediumCyrillic.v320.woff) format('woff');
unicode-range: U+401,U+404,U+406,U+407,U+40E,U+410-44F,U+451,U+454,U+456,U+457,U+45E,U+490,U+491,U+20B4,U+2116;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 500;
font-display: swap;
src: url(/css/fonts/VKSansDisplayMediumRest.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayMediumRest.v320.woff) format('woff');
unicode-range: U+307,U+308,U+2190,U+2192,U+2194-2199,U+2248,U+2260,U+2264,U+2265;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 600;
font-display: swap;
src: url(/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayDemiBoldLatin.v320.woff) format('woff');
unicode-range: U+0,U+A,U+D,U+20-5F,U+61-7E,U+A0,U+A2-A5,U+A7,U+A9,U+AB,U+AD,U+AE,U+B0,U+B1,U+B6,U+B7,U+BB,U+D7,U+F7,U+131,U+237,U+2013,U+2014,U+2018,U+2019,U+201C,U+201D,U+2022,U+2026,U+2039,U+203A,U+20AC,U+20B4,U+20B8,U+20BD,U+20BF,U+2122,U+2191,U+2193,U+2212;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 600;
font-display: swap;
src: url(/css/fonts/VKSansDisplayDemiBoldCyrillic.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayDemiBoldCyrillic.v320.woff) format('woff');
unicode-range: U+401,U+404,U+406,U+407,U+40E,U+410-44F,U+451,U+454,U+456,U+457,U+45E,U+490,U+491,U+20B4,U+2116;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 600;
font-display: swap;
src: url(/css/fonts/VKSansDisplayDemiBoldRest.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayDemiBoldRest.v320.woff) format('woff');
unicode-range: U+307,U+308,U+2190,U+2192,U+2194-2199,U+2248,U+2260,U+2264,U+2265;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 700;
font-display: swap;
src: url(/css/fonts/VKSansDisplayBoldLatin.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayBoldLatin.v320.woff) format('woff');
unicode-range: U+0,U+A,U+D,U+20-5F,U+61-7E,U+A0,U+A2-A5,U+A7,U+A9,U+AB,U+AD,U+AE,U+B0,U+B1,U+B6,U+B7,U+BB,U+D7,U+F7,U+131,U+237,U+2013,U+2014,U+2018,U+2019,U+201C,U+201D,U+2022,U+2026,U+2039,U+203A,U+20AC,U+20B4,U+20B8,U+20BD,U+20BF,U+2122,U+2191,U+2193,U+2212;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 700;
font-display: swap;
src: url(/css/fonts/VKSansDisplayBoldCyrillic.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayBoldCyrillic.v320.woff) format('woff');
unicode-range: U+401,U+404,U+406,U+407,U+40E,U+410-44F,U+451,U+454,U+456,U+457,U+45E,U+490,U+491,U+20B4,U+2116;
}
@font-face {
font-family: 'VK Sans Display';
font-weight: 700;
font-display: swap;
src: url(/css/fonts/VKSansDisplayBoldRest.v320.woff2) format('woff2'), url(/css/fonts/VKSansDisplayBoldRest.v320.woff) format('woff');
unicode-range: U+307,U+308,U+2190,U+2192,U+2194-2199,U+2248,U+2260,U+2264,U+2265;
}
:root{--vk-sans-display:'VK Sans Display', 'VK Sans Display Faux', var(--palette-vk-font)}
</style>
<link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/common.0c77b1d9.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/common.0c77b1d9.css"><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/base.8a58484a.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/base.8a58484a.css"><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/vkui.499054b5.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/vkui.499054b5.css"><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/fonts_utf.7fa94ada.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/fonts_utf.7fa94ada.css"><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/fonts_cnt_async.4881739c.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/fonts_cnt_async.4881739c.css">
<script type="module">
;window[Symbol.for('vkEnv')] = 'production';
(function() {
if (localStorage.getItem('userId') && (localStorage.getItem('userId') !== String(0))) {
["videoplayer_auth_token"].forEach((configKey) => {
Object.keys(sessionStorage).forEach((key) => {
if (key.includes(configKey)) {
sessionStorage.removeItem(key);
}
});
});
["videoplayer_auth_token","6363684:vkui-common:auth"].forEach((configKey) => {
Object.keys(localStorage).forEach((key) => {
if (key.includes(configKey)) {
localStorage.removeItem(key);
}
});
});
}
})();
window.vk = Object.assign(window.vk || {}, {
ads_rotate_interval: 120000,
al: parseInt('3') || 4,
id: 0,
sex: 0,
intnat: '1' ? true : false,
host: 'vk.com',
__domain: 'vk.com',
loginDomain: 'https://login.vk.com/',
logoutUrl: 'https://login.vk.com/?act=logout&hash=e280d71ae9ecd84933&_origin=https%3A%2F%2Fvk.com&lrt=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU',
lang: 3,
statsMeta: {"platform":"web2","st":false,"time":1733988619,"hash":"vPd7XAnU6oo62wkP4ISnT6oiPDYTkfQYEZY9fJYHkZo","reloadVersion":34},
loaderNavSection: '',
rtl: parseInt('') || 0,
version: 21344702127,
stDomains: 0,
stDomain: 'https://st6-22.vk.com',
navPostfix: "",
wsTransport: 'https://stats.vk-portal.net',
stExcludedMasks: ["loader_nav","lang","sw\/"],
zero: false,
contlen: 39769,
loginscheme: 'https',
ip_h: 'e280d71ae9ecd84933',
navPrefix: '/',
dt: parseInt('0') || 0,
ts: 1733988619,
tz: 10800,
vcost: 7,
pabs: 426,
time: [2024, 12, 12, 10, 30, 19],
sampleUser: -1, spentLastSendTS: new Date().getTime(),
a11y: 0,
statusExportHash: '',
audioAdsConfig: {"_":"_"},
longViewTestGroup: "every_view",
cma: 1,
lpConfig: {
enabled: 0,
key: '',
ts: 0,
url: '',
lpstat: 0,
sseUrl: 'https://papi.vk.com/pushsse/ruim'
},
pr_tpl: "<div class=\"pr %cls%\" id=\"%id%\"><div class=\"pr_bt\"><\/div><div class=\"pr_bt\"><\/div><div class=\"pr_bt\"><\/div><\/div>",
push_hash: '9abceccaa9790789d4',
audioInlinePlayerTpl: "<div class=\"audio_inline_player _audio_inline_player no_select\">\n <div class=\"audio_inline_player_right\">\n <div class=\"audio_inline_player_volume\"><\/div>\n <\/div>\n <div class=\"audio_inline_player_left\">\n <div class=\"audio_inline_player_progress\"><\/div>\n <\/div>\n<\/div>",
pe: {"web_spa_router_bugs":1,"web_calls_spa_join_screen":1,"web_spa_router_docs":1,"web_spa_router_market_catalog":1,"strike_system_web_interface_access":1,"people_global_search_mobx":1,"send_user_info_stats":1,"send_user_info_stats_timeout":1,"force_send_user_info":1,"send_user_info_on_localhost":1,"send_navigation_stats_in_spa":1,"push_notifier":1,"app_pwa_platform_analytics":1,"webinf_client_dynamics_routes":1,"log_web_cur_module_desync":1,"mini_apps_web_add_to_favorites":1,"mini_apps_check_allowed_scopes_no_validation":1,"mini_apps_catalog_search_wiki_fix":1,"mini_apps_share_enrich_web":1,"mini_apps_send_stat_arguments_bridge_events":1,"apps_bridge_show_request_box_to_api":1,"mini_apps_track_event_extra_call":1,"mini_apps_show_actions_fix":1,"mini_apps_get_friends_mvk":1,"mini_apps_performance_close_app_empty_event":1,"mini_apps_send_stat_arguments_bridge_events_sdk":1,"mini_apps_replace_cur_app_with_get_current_app":1,"mini_apps_sdk_launch":1,"mini_apps_disable_vk_web_app_open_article_editor":1,"allowWindowApiConfigDomains":1,"web_apps_removal_subscribers":1,"mini_apps_new_webview_url_for_launch":1,"mini_apps_sdk_together_several_modals":1,"mini_apps_sdk_collect_stats":1,"update_web_token_on_vk_web_app_show_wall_post_box":1,"mini_apps_filter_methods_by_platform":1,"mini_apps_sdk_v2":1,"open_app_back_navigation_fix":1,"feed_post_video_layer_close_wkview_restore":1,"iframe_error_trigger_from_sdk":1,"miniapp_resize_in_layer_fix":1,"mini_apps_methods_config":1,"vk_app_notifications_act_to_api":1,"mini_apps_bridge_stats_bridge_log_field":1,"mini_apps_sdk_fix_pay_form":1,"upload_files_for_banner_through_go_uploader":1,"apps_fix_double_init_js_sdk":1,"cookie_class_samesite":1,"cookie_secure_default_true":1,"links_parsing_latin_domain_enabled":1,"widgets_xdm_same_origin":1,"stickers_money_transfer_suggestions":1,"web2_story_box_enabled":1,"navigation_timespent":1,"web_stats_transport_story_view":1,"registration_item_stat":1,"mute_mvk_err_peaks":1,"mini_apps_web_call_api_form_data":1,"stories_sticker_template":1,"stories_block_new_architecture":1,"new_posting_publishing_tips_enabled":1,"stories_fix_double_message_web":1,"stories_creator_onbording":1,"feed_post_menu_stats":1,"new_posting_video_preview":1,"stories_web_best_friends":1,"stories_group_admin_analytics":1,"stories_web_ignore_events_from_destroyed_stories":1,"story_viewer_web_fix_legacy_mp4_preload":1,"web_stats_send_on_events_limit":1,"batchify_web_stats":1,"open_app_bridge_event_to_api":1,"audio_unauth_preview":1,"audio_unauth_preview_box":1,"audio_show_upload_real_error_code":1,"podcast_episode_favorites_service_mobx_web":1,"unauthorized_media_layer_box":1,"faq_clean_up_extra_spaces":1,"loginvk_api_use_anonymous_token":1,"mail_business_notify":1,"sls_search_speed_up":1,"waf_ajax_request_enabled":1,"add_to_menu_event_to_api":1,"cookie_lite_js_save_stat":1,"mvk_waf_ajax_request_enabled":1,"web_api_fork":1,"profile_enable_album_tabs":1,"owner_content_tabs_active_tab_click_transition":1,"landing_vkpay_form_prod_env":1,"marusia_web_music_stats":1,"music_clear_media_type":1,"profile_owner_content_tabs_settings":1,"nft_tab_show_empty":1,"personal_in_vkidacc":1,"profile_redesign_new_cover_exp":1,"games_pass_ref_to_wall_post":1,"web_stats_send_beacon":1,"esia_verification_status":1,"vkui_account_common_verification_mark":1,"messenger_mediascope_stats_collect":1,"ui_controls_normalize_html_entities":1,"web_stats_reduce_debounce":1,"web_stats_device_id":1,"notify_new_events_box":1,"apps_games_catalog_download_games_on_react":1,"apps_games_catalog_download_games_tab":1,"story_reactions_sending_feature_web":1,"profile_unauth_prefetch_web_fix":1,"profile_fix_bad_execute_response":1,"redesign_web_profile_feature":1,"stories_uploading_file_checking":1,"emoji_nostickers_prevent_unnecessary_requests":1,"stories_viewer_fix_message_field":1,"notifications_view_new":1,"ads_market_autopromotion_bookmarks_stats":1,"web_photo_editor_hide_entrypoint":1,"profile_questions_enabled":1,"stories_preview_for_minimized":1,"update_private_snippets_by_queue":1,"stickers_catalog_reload_after_buy":1,"stickers_web_new_ui":1,"ads_autopromotion_web_geo":1,"recognize_mock_turn_off":1,"photo_recognition_web":1,"ads_easy_promote_goods_new_create_api":1,"smb_get_checkout_url":1,"force_act_in_get_params":1,"messages_fastchats":1,"messages_reactions_modal":1,"attachments_primary_mode_web_feature":1,"inline_attaches_icons":1,"posting_hide_copyright_button_web":1,"video_remove_restore_video_act":1,"video_delete_autoplay_stat":1,"video_subscribes_menu_hide_author":1,"video_new_video_page":1,"vkvideo_redirect_to_standalone":1,"apps_games_catalog_my_games_cloud":1,"test_folder_masks":1,"clips_publish_videos_to_clips_web":1,"simplified_start_conversation":1,"post_context_menu_web":1,"microlandings_marketing_blocks":1,"video_screen_in_web_navigation_logs":1,"js_errors_no_write_uncaught_errors":1,"fav_dialog_with_yourself":1,"messages_new_empty_dialog_screen":1,"me_fc_message_actions":1,"im_clocks_fix":1,"longread_tts_web_player":1,"content_multiaccount_web_feature":1,"groups_settings_tooltip":1,"classified_item_card_similar_products":1,"vmoji_web2_show_share_box":1,"messenger_make_away_link_useful":1,"messages_reactions":1,"market_add_to_bookmarks_analytics_new":1,"article_multilists":1,"video_live_comments_from_api":1,"video_upload_from_yandex":1,"video_upload_disable_redirect_to_standalone":1,"video_playlist_create_link":1,"video_live_start_link":1,"video_fix_load_more_uploaded_videos":1,"video_player_support_new_live_links":1,"video_playlist_page_redesign":1,"video_playlist_page_search":1,"video_card_controls_focus_fix":1,"video_created_playlist_snackbar_bugfix":1,"video_playlist_page_search_scroll_top":1,"video_minimized_player_infinity_loading_bugfix":1,"video_player_hide_settings_before_expand":1,"video_community_redesign_pinned_video":1,"video_add_to_community_playlist":1,"video_modal_statistic_button":1,"video_modal_statistic_button_user":1,"video_owner_id_naming_change":1,"video_initial_next_btn_display":1,"video_fix_actions":1,"video_uploader_disable_publish_button_when_no_metadata":1,"video_video_card_actions_click_bubbling":1,"video_import_ui_scroll":1,"video_remove_a_delete_from_all_albums_act":1,"video_tag_active_episode_update_fix":1,"video_hide_community_share_btn":1,"video_admin_showcase_autosort":1,"video_remove_a_player_stat_act":1,"video_show_group_crop_cover_hint":1,"video_uploader_pass_params_for_logging":1,"video_fix_clear_player_vars":1,"interactive_video_redesign_badge_vk":1,"video_dashboard_body_class_after_redirect_bugfix":1,"video_swipe_direction_reset_on_touchstart":1,"interactive_video_multiple_player_instances":1,"interactive_video_replay_stat_fix":1,"video_page_notifications_redirect":1,"video_settings_new_section":1,"article_text_drag":1,"article_comments_analytics":1,"new_sticker_picker":1,"rlottie":1,"stickers_keywords_idb_cache":1,"stickers.ugc":1,"vmoji.promo.avatar_suggestion.promo_counter":1,"dynamic_import_new_sticker_picker_module":1,"new_stickers_modal":1,"stickers_random_pack":1,"avatar_component_refactor_web":1,"adsedit_replace_stories_link_amp":1,"marusya_web_support_proccess_commands":1,"marusia_send_start_session":1,"marusia_skill_list_new":1,"vkm_widget_attaches":1,"vkm_marusia_chat":1,"vkm_use_browser_online_event":1,"vkm_open_docs_preview":1,"vkm_remove_report_user":1,"profile_hide_country_field":1,"onboarding_skip_country":1,"mini_apps_filter_method_params":1,"mini_apps_duplicate_recommend_modal":1,"games_widescreen_cleanup_body_classlist":1,"webinf_show_force_reload_modal":1,"market_categories_v2":1,"web_market_cta_chat_bot":1,"groups_vk_bid_modal":1,"web_messenger_open_app_ref":1,"web_video_service_playlists_block_enabled":1,"video_bookmarks_renaming_to_watch_later":1,"video_remove_video_add_acts":1,"video_remove_agree_disclaimer_act":1,"video_save_playback_speed":1,"video_remove_a_delete_video_act":1,"video_showcase_subscriptions_popup":1,"video_vars_module_fix":1,"video_can_show_playlist_popover_with_watch_later":1,"video_fix_url_swich_in_video_modal":1,"video_log_change_speed_event":1,"video_delete_from_system_playlist":1,"video_card_add_playlist_actionsheet_legacy_redesign":1,"video_legacy_video_card_popover_infinite_scroll":1,"video_legacy_card_removing_from_playlist_bugfix":1,"video_refactored_autoplay_btn":1,"video_community_anonymous_buttons_bugfix":1,"video_live_stop_streaming_act":1,"video_modal_live_chat_updating":1,"video_modal_live_highload":1,"video_live_unauth_reload_bugfix":1,"article_tables":1,"notifications_events_to_api":1,"web_market_new_header":1,"web_native_yclients":1,"vkconnect_auth_flat_button_unlock":1,"new_hashtags_parser":1,"redesign_user_photos_web_feature":1,"profile_snowballs_web":1,"redesign_user_photos_client_only_mode_web_feature":1,"posting_web_react_form":1,"posting_track_event_count":1,"posting_web_input_stats":1,"posting_web_perf_stats":1,"web_photostream_virtual":1,"photos_move_in_album_web":1,"posting_hashtags_web":1,"photo_editor_redesign_web":1,"tech_stories_metrics_web_mvk":1,"tech_stories_metrics_web":1,"avatar_cropper_fix":1,"photo_editor_upscale_web":1,"storybox_feed_link":1,"feed_web_early_feed_js":1,"feed_web_async_right_block":1,"web_navigation_listeners":1,"web_navigation_handlers":1,"search_group_participants_catalog_web":1,"web_spa_router_check_full_loc_enabled":1,"bugs_redesign_bugreport_page":1,"web_spa_router_docs_on_mobx":1,"web_spa_router_friends":1,"web_spa_friends_sameuser_redirect":1,"web_spa_router_friends_check_full_loc_enabled":1,"friends_redesign_fix_counters":1,"friends_redesign_fix_invite_members":1,"friends-visible-hidden-header":1,"web_spa_market_item_page":1,"is_security_settings_hidden":1,"market_single_cart_ozon_redirect_url_encoding":1,"market_single_cart_ozon":1,"market_single_cart_ozon_mvk":1,"disable_push_equal_history_location":1,"attachments_primary_mode_web_carousel_force_default":1,"badges_rendering":1,"badges":1,"donut_one_time_payments_users":1,"donut_dmr_subscriptions":1,"big_stickers_in_messenger":1,"feed_secondary_attachment_audio_redesign":1,"single_photo_backdrop_blur_enabled":1,"feed_open_audio_stats_for_react":1,"feed_focus_returner":1,"video_player_track_onestat_errors":1,"video_player_fix_embed_webview":1,"video_player_mvk_mediascope_pixels":1,"video_player_new_embed_mediascope_pixels":1,"video_player_api_watch_stat":1,"video_send_view_history_record":1,"video_history_record_time_send":1,"video_player_error_stat_log":1,"video_player_handle_live_change_phase":1,"video_player_ref_domain_embed":1,"video_deleting_live_from_liked_fix":1,"video_player_remixstlid_to_onestat":1,"video_player_new_play_pause_loading_animations":1,"video_uploader_remove_max_uploaded_videos_limitation":1,"video_goods_recognition":1,"video_chosen_owner_id_replace":1,"video_add_to_playlist_modal_mobx_move":1,"video_new_video_page_attach_in_comment":1,"video_show_collapse_button":1,"video_user_dashboard_links":1,"video_for_kids_age_filter_web":1,"group_recommended_tips_web_api_prefetch":1,"redesign_web_catalog_feature":1,"mini_apps_ads_banner_click_once":1,"mini_apps_ads_native_ads_timeout":1,"mini_apps_ads_interstitial_timer_persistent":1,"mini_apps_ads_interstitial_resolve_after_hide":1,"mini_apps_ads_banner_position_fix":1,"web_vitals_inp":1,"web_collect_lcp_element_resource_metrics":1,"friends_list_loading_bugfix":1,"friends_out_requests_loading_bugfix":1,"multi_env_supported":1,"go_uploader_mini_apps_admin_panel":1,"ads_light_methods_protection":1,"ads_light_add_fpid_to_request":1,"vk_live_integration":1,"storage_bridge_events_to_api":1,"search_groups_confirm_disable_safe_search_web2":1,"account_verified_link":1,"logout_save_user_dialog":1,"feed_primary_attachments_carousel_css_transitions":1,"show_follow_button_as_add":1,"client_dev_null_video_uploader_errors":1,"audio_special_project_web":1,"vkid_api_formatted_execute_response":1,"vkm_fc_composer_new":1,"user_write_vkcom_cua_stats":1,"mini_apps_web_show_images_modal_enabled":1,"unlike_archived_post":1,"audio_mediascope":1,"audio_my_tracker_web":1,"audio_player_stats_ref_web":1,"audio_player_stats_extra_screens":1,"audio_nav_screens_web":1,"vk_resource_timing_stats":1,"send_idle_tab_stats":1,"use_only_black_list_param_to_process_owners":1,"feed_post_track_code_client_web":1,"video_standalone":1,"fix_events_for_standalone_owner_hrefs":1,"fix_vkvideoru_links_in_wall":1,"video_hide_share_tabs":1,"video_subscription_update_banners":1,"video_subscriptions_hidden_section_search_enabled":1,"video_fix_preserve_lang":1,"vkcom_captcha_refresh":1,"vkcom_captcha_resized":1,"unique_adblock_users":1,"mini_apps_save_hash_on_language_change":1,"mini_apps_disable_recommendation_modal_positioning":1,"mini_apps.web_app_get_friends_with_api":1,"spa_migration_VBOARD-887":1,"vboard_settings_no_playlists_placeholder":1,"mix_friends_followers":1,"profile_friends_web_block_requests":1,"search_search_global_refactor_enabled":1,"wall_postponed_posts_parallel_loading_web":1,"video_modal_refactoring_of_info":1,"video_modal_author_link_bugfix":1,"video_modal_unauth_like_bugfix":1,"video_modal_back_action_fixes":1,"apps_show_app_slides_sheet_no_extra_closes":1,"mini_apps_performance_iframe_errors":1,"mini_apps_collect_performance_from_sdk":1,"apps_launch_query_params":1,"mini_apps_profile_bridge_fix":1,"mini_apps_send_session_uuid":1,"mini_apps_vkwebappopenapp_fix_unmount_in_layer":1,"mini_apps_fix_double_init_bridge":1,"mini_apps_collect_sessions_from_sdk":1,"mini_apps_send_my_tracker_activity":1,"mini_apps_redirect_after_delete_mini_app":1,"mini_apps_send_session_uuid_bridge_events":1,"mini_apps_parse_webview_url_for_launch_ref":1,"mini_apps_hide_loading_app_with_splash_screen":1,"mini_apps_app_friends_tt_react_api":1,"games_js_sdk_use_api":1,"mini_apps_prevent_double_mount_event":1,"games_send_track_visitor_activity":1,"mini_apps_add_context_check_in_share_bridge_method_web":1,"mini_apps_sdk_allow_bridge_method_dry_run":1,"mini_apps_performance_v2":1,"web_calls_new_anonymous_join_screen":1,"fixit_links_fix_in_ecomm_item_description":1,"profile_age_mark":1,"primary_attachment_audio_component_and_services_clean_up":1,"feed_viewport_dom_post":1,"feed_content_events_open_post_event_web":1,"feed_content_events_report_web":1,"ft_forbid_toggle_update":1,"search_communities_geo_section_page_enabled":1,"video_like_change_icon":1,"video_show_set_module_web":1,"video_disabled_load_audio":1,"video_fix_open_comments":1,"video_fix_left_menu_effector":1,"post_click_analytics_int_ext_link_click_web":1,"feed_content_events_expand_web":1,"ft_async_fetch_archived_toggles":1,"feed_author_replies_new_reply_fast_web":1,"video_editor":1,"video_to_clip":1,"video_attach_clips_to_video":1,"video_fix_delete_comment_in_lives":1,"web_sw_server_routing":1,"vk_web_app_open_report_form":1,"mini_apps_navgo_hash_fix":1,"mini_apps_navgo_hash_stats":1,"users_wasm_support":1,"web_mytracker_collect_post_stats":1,"catalog_new_friends_search_nps_triggers":1,"close_triggers_widgets":1,"spam_message_types":1,"audio_studio_ads_block_enabled":1,"cleanup_friends_show_delete_friends_modal":1,"suggest_for_group_mvk":1,"search_all_catalog_enabled":1,"search_mini_apps_catalog_enabled":1,"search_games_catalog_enabled":1,"search_tooltips_redesign_enabled":1,"search_clips_catalog_web_enabled":1,"search_market_catalog_web_enabled":1,"search_games_catalog_web":1,"search_global_clips_suggester_web_enabled":1,"search_service_clips_suggester_web_enabled":1,"search_all_clip_card_redesign_web_enabled":1,"search_global_titles_redesign":1,"feed_link_snippet_encoding_fix":1,"search_enable_catalog_search_groups":1,"search_enable_catalog_search_audio":1,"search_global_input_redesign":1,"feed_content_views_view_time_stats_web":1,"audio_search_suggestions_api_web":1,"posting_removed_poster_web":1,"search_search_global_client_rendering_only_enabled":1,"vkcom_audio_captcha_enabled":1,"feed_content_events_caption_link_click_web":1,"vkprotect_security_recommendation":1,"feed_content_events_hide_subscribe_event_web":1,"vkprotect_vkid_recommendation_redirect":1,"web_spa_router":1,"wall_posting_share_media_hidden":1,"audio_tooltip_copy_link_web":1,"spamfeed_snackbar_alerts":1,"zeus_object_comment_fix":1,"reports_form_away_link":1,"dmca_other_statistics":1,"content_reports_new_profile_form":1,"search_video_community_catalog":1,"vkidexp_1823_fix_deleted_selector":1,"collect_ttlb":1,"redesign_audio_player_tooltip_dislikes_web_enabled":1,"clips_web_create_clip_modal":1,"clips_web_blur_restriction":1,"clips_restriction_in_tab":1,"clips_catalog_restriction":1,"clips_overscan_optimize":1,"video_my_communities_improvements":1,"video_empty_live_settings_bugfix":1,"special_groups_redirects":1,"groups_monetization_adblogger":1,"clips_thumb_uploader_web":1,"clips_support_action_button":1,"clips_co_owners_viewer_web":1,"search_disable_new_text_parser":1,"prepressed_content_rollback_button":1,"add_audio_to_effector_web":1,"audio_recoms_onboarding_entry_points":1,"audio_global_listener_space_player_toggle":1,"spamfeed_unreliable_filter":1,"scumfeed_drugs_detector_bot_score":1,"fakefeed_remove_nostrike_button":1,"feed_content_views_feed_stat_collector_client_web":1,"search_global_people_catalog":1,"search_clips_service_web_enabled":1,"extended_static_loading_errors":1,"web_api_fix_exception":1,"web_api_handle_network_errors":1,"web_api_token_fetch_retry":1,"video_player_mvk_waiting_live":1,"support_reading_new_rate":1,"mass_claim_geo_walls":1,"search_videoshowcase_horizontal":1,"search_hide_video_description":1,"search_videoshowcase_list_small":1,"search_subscriptions_management_modal":1,"stories_publisher_web_new":1,"stories_publisher_close_app_in_box":1,"market_storefront_mobx":1,"beauty_wizard_redesign":1,"beauty_wizard_spa":1,"market_community_reviews_comments_attachment_web":1,"web_docs_api_prefetch":1,"search_video_suggester_enabled_web":1,"search_people_birthday_filter_web":1,"interactive_video_redesign_badge_mvk":1,"fix-add-hash-asmr-8619":1,"strike_checkbox_in_mass_claim":1,"connect_web_to_app_action":1,"flush_async":1,"web_spa_loading_error":1,"web_spa_redesign_disabled_page":1,"web_spa_redesign_default_loading_error":1,"search_video_refactor_web2":1,"stickers_fix_keywords_cache":1,"stickers_edit_vmoji_box":1,"feed_settings_subsection_switch":1,"new_embed_respect_restriction_data":1,"web_ls_restrict_posts_keys":1,"wall_send_to_in_html_override":1,"apps_do_install_act_to_api":1,"apps_widget_preview_box_to_api":1,"search_communities_hide_safe_search_filter_web":1,"audio_get_cookie_from_js":1,"enabled_mm_and_dislikes_mobx_services":1,"enabled_groups_mobx_service":1,"singleton_ajax":1,"log_changing_vk_env":1,"audio_adding_radiostation_events_enabled":1,"hide_global_search_in_video_service_web":1,"apps_update_online_act_to_api":1,"search_form_to_header_videoshowcase_web":1,"add_pack_to_wishlist_vkcom":1,"video_landing_entrypoint_header":1,"video_new_video_showcase":1,"video_import_scrollbar":1,"is_feature_toggle_unique":1,"support_faq_articles_web_csat_new_flow_BO-10051":1,"web_static_manager_done_with_hash":1,"audio_upload_full_screen_banner_images_through_go_uploader":1,"audio_upload_full_screen_banner_csv_through_go_uploader":1,"uxpolls_use_feed_react_block":1,"uxpolls_use_modal_react_block":1,"await_spa_module":1,"new_gift_modal_in_catalog_vkcom":1},
ex: [],
acl: [],
cfg: {"nft_profile_content_count":15,"special_subdomains_groups":[[-224318634,"test-sub-host","test_test_7777"],[-226270912,"specialdomaingroup","club226270912"],[-29809500,"sportmailru","sportmailru"]],"error_monitoring_config":{"beforeSend":{"custom":true,"local":true,"unloading":true},"breadcrumbsLimit":5,"dsn":"https:\/\/[email protected]\/25","ignore":{"errors":{"base":true,"custom":true,"emergency":["AdBlock abort-on-property-read","NotSupportedError: Failed to load because no supported source was found.","i is not a function"],"recommended":true},"urls":{"custom":true,"recommended":true}},"integrations":{"AlreadySent":true,"ContextLines":true,"CurModuleDiffIssues":true,"Deduplication":true,"ExtraErrorData":true,"InlineScriptTag":true,"KnownIssues":true,"LangLoadingIssues":false,"NonErrorException":true,"StaticLoadingIssues":true},"tracer":{"enabled":true,"token_release":"B5d6H7nKgmqPMHnLp5DE9pSWT6tlYEDmDtAU2Uo9ipa","token_testing":"msEPaJZmevvluNTyPSiolv34PlcEYwPrDYeBiblf3u17"},"version":1},"short_video_upload_duration_min":1,"short_video_upload_duration_max":180,"clips_description_max_length":4000,"clips_encode_progress_delay":3000,"clips_encode_progress_attempts":300,"reforged_in_vkcom_video_autoplay_enabled":true,"videoplayer_history_record_watch_time":25,"idle_tabs_log_interval":3600000,"statlogs_cookie_size_limit":3500,"web_ls_max_size":3145728,"web_show_more_distance":1500,"web_perf_use_new_logic":true,"akashi_endpoint":"https:\/\/akashi.vk-portal.net\/api\/v1\/web","langs_force_version":1,"vk_resource_compression_map":{"domain":{"userapi.com":"5","vk.com":"1"},"type":{"audio":"5","beacon":"11","css":"2","early-hints":"4","fetch":"7","iframe":"8","image":"12","img":"6","link":"1","navigation":"10","other":"13","script":"3","xmlhttprequest":"9"}}},
countryISO: 'ES',
apiConfigDomains: {
domain: 'vk.com',
apiDomain: 'api.vk.com',
loginDomain: 'login.vk.com',
connectDomain: 'id.vk.com',
},
isCallsDevEnv: '' ? true : false,
defaultLayout: {"width":960,"widthDec":165},
scriptType: 'module',
pageCacheState: '%%pageCacheState%%',
isVideoStandalone: false,
});;vk.rv="120101";
;window.cur = Object.assign(window.cur || {}, {
isVideoStandalone: false,
});
window.cur = Object.assign(window.cur || {}, {
module: 'wall',
});
window.locDomain = vk.host.match(/[a-zA-Z]+\.[a-zA-Z]+\.?$/)[0];
window._ua = navigator.userAgent.toLowerCase();
if (/opera/i.test(_ua) || !/msie 6/i.test(_ua) || document.domain != locDomain) document.domain = locDomain;
window.StaticFiles = Object.assign(window.StaticFiles || {}, {
'dist/web/common_web.js':{v:'378'},'dist/web/chunks/vkcom-kit.0fadaaa7.css':{v:''},'dist/web/chunks/vkcom-kit.14852cca.js':{v:''},'dist/web/chunks/vkcom-kit-icons.0723bf99.js':{v:''},'dist/web/chunks/react.785823df.js':{v:''},'dist/web/chunks/vkui.053a6236.js':{v:''},'dist/web/chunks/state-management.a047c2f5.js':{v:''},'dist/web/chunks/architecture-mobx.590e845d.js':{v:''},'dist/web/chunks/draggable.d59c2db3.js':{v:''},'dist/web/chunks/core_spa.b8fd5cb7.js':{v:''},'dist/web/core_spa.425e5825.css':{v:''},'dist/web/core_spa.1445a29f.js':{v:''},'dist/web/chunks/audioplayer-lib.2591edb3.css':{v:''},'dist/web/chunks/audioplayer-lib.00472d3a.js':{v:''},'dist/web/common_web.ebc4cb55.css':{v:''},'dist/web/common_web.bac94e4d.js':{v:''},'lang3_2.js': {v: 28899810},'dist/web/chunks/videoplayer-interactive.e80c2db0.js':{v:''},'dist/web/chunks/c008ac0a.effbe545.js':{v:''},'dist/web/chunks/9b75122f.95eb92ea.js':{v:''},'dist/web/chunks/0880b08f.22bb44a6.js':{v:''},'dist/web/chunks/ef62974d.35a80569.js':{v:''},'dist/web/chunks/27586bd8.0cf085f7.js':{v:''},'dist/web/chunks/a9ad3c51.95fd3848.js':{v:''},'dist/web/chunks/787ae490.e174ca56.js':{v:''},'dist/web/chunks/cf47ed8f.9c3aa857.js':{v:''},'dist/web/chunks/bd262b8e.a1213f24.js':{v:''},'dist/web/chunks/0e8ca86b.82b52bb6.js':{v:''},'dist/web/chunks/77af851d.c7b154cd.js':{v:''},'dist/web/chunks/65542e21.0213af03.js':{v:''},'dist/web/chunks/9a3b2b7a.23881378.js':{v:''},'dist/web/chunks/4da5e49e.ae8b01b0.js':{v:''},'dist/web/chunks/20de0d5d.e22c0dfe.js':{v:''},'dist/web/chunks/69cb2636.35f5771e.js':{v:''},'dist/web/chunks/1f67111f.5463ebd5.js':{v:''},'dist/web/chunks/87760f02.ac5d9843.js':{v:''},'dist/web/chunks/d9e7d668.fb58de16.js':{v:''},'dist/web/chunks/ef79d33b.ef91ec1e.js':{v:''},'dist/web/chunks/703d9c81.58b1eb9b.js':{v:''},'dist/web/chunks/dc6875f9.22c8e6ea.js':{v:''},'dist/web/chunks/1cd916bc.4bf77d31.js':{v:''},'dist/web/chunks/9edc159d.8ab38d68.js':{v:''},'dist/web/chunks/c64b8270.ea487242.js':{v:''},'dist/web/chunks/5575942c.0bdf2f4c.js':{v:''},'dist/web/chunks/7e16856b.05a817f8.js':{v:''},'dist/web/chunks/89b54b69.d555f220.js':{v:''},'dist/web/chunks/600a367b.31d1c77f.js':{v:''},'dist/web/chunks/3a6da04e.18f64065.js':{v:''},'dist/web/chunks/45be3160.c7e3ad20.js':{v:''},'dist/web/chunks/4e663b7b.0b660f24.js':{v:''},'dist/web/chunks/a2810efe.40d39953.js':{v:''},'dist/web/chunks/14eac60e.416145d7.js':{v:''},'dist/web/chunks/dd786841.e0e05755.js':{v:''},'dist/web/chunks/71f02de9.51aba4e8.js':{v:''},'dist/web/chunks/a040d7aa.dc56c738.js':{v:''},'dist/web/chunks/78b89076.93c22c86.js':{v:''},'dist/web/chunks/4fdbde2e.a2b5c362.js':{v:''},'dist/web/chunks/598743d7.11fb28a0.js':{v:''},'dist/web/chunks/5aa8c000.ccd437db.js':{v:''},'dist/web/chunks/6a01ef3b.6d86f8c9.js':{v:''},'dist/web/chunks/23a5883c.991a42b4.js':{v:''},'dist/web/chunks/6cb9fd8c.66634bef.js':{v:''},'dist/web/chunks/9a3fe63c.da591ba8.js':{v:''},'dist/web/chunks/82a8d751.c7283dee.js':{v:''},'dist/web/chunks/a290b9d5.c478d233.js':{v:''},'dist/web/chunks/4f0b8edb.00f92c2d.js':{v:''},'dist/web/chunks/20ae1118.d21b4f63.js':{v:''},'dist/web/chunks/57122a42.1ab59ad5.js':{v:''},'dist/web/chunks/516a3ccc.0af61cb0.js':{v:''},'dist/web/chunks/51386c6a.dfb7710c.css':{v:''},'dist/web/chunks/51386c6a.70d0460f.js':{v:''},'dist/web/chunks/c514fcfc.b9e2e10d.js':{v:''},'dist/web/chunks/87d3a091.38f87f1c.js':{v:''},'dist/web/chunks/a75ef196.3f624eaa.js':{v:''},'dist/web/chunks/e0c31085.248bb477.js':{v:''},'dist/web/chunks/805f6258.3fd854e3.js':{v:''},'dist/web/chunks/4e6883d8.0798c3f8.js':{v:''},'dist/web/chunks/ee565595.43120448.js':{v:''},'dist/web/chunks/21a7fde4.59fe9d4e.js':{v:''},'dist/web/chunks/0538db7d.acd806e5.js':{v:''},'dist/web/chunks/ee9afe15.9c64e614.js':{v:''},'dist/web/chunks/c5b86d2c.acb8649e.js':{v:''},'dist/web/chunks/5fc63439.01195a98.js':{v:''},'dist/web/chunks/584ca8fa.3cb0be83.js':{v:''},'dist/web/chunks/edad9e7b.6b4065cf.js':{v:''},'dist/web/chunks/3b59bf01.4623d673.js':{v:''},'dist/web/chunks/4ffaf673.2ad0e27b.js':{v:''},'dist/web/chunks/25568c57.7cb5ad41.js':{v:''},'dist/web/chunks/b95ae360.69703642.js':{v:''},'dist/web/chunks/aef0f4be.73cb05cf.js':{v:''},'dist/web/chunks/819c1070.944ad91a.js':{v:''},'dist/web/chunks/6069d9a3.4a2426f9.js':{v:''},'dist/web/chunks/bdf39731.566ea25e.js':{v:''},'dist/web/chunks/ec9ec794.b2b08608.js':{v:''},'dist/web/chunks/534f92fc.1722fa9a.js':{v:''},'dist/web/chunks/4937cd44.a41367a6.js':{v:''},'dist/web/chunks/2fd7b27e.792d2761.js':{v:''},'dist/web/page.a0a68455.css':{v:''},'dist/web/page.bf597137.js':{v:''},'al/page.8f8d2104.css':{v:'40f80bfe'},'al/post.efdfa2e5.css':{v:'a0022bda'},'dist/web/wall.cbb2577f.js':{v:''},'al/wall.5f4dc9a2.css':{v:'07ad7029'},'dist/web/chunks/fa845571.a44689f4.js':{v:''},'dist/web/wide_dd.b351371c.js':{v:''},'al/wide_dd.1a28ad25.css':{v:'f57fe4ab'},'dist/web/pagination.6e93a786.js':{v:''},'dist/web/chunks/48ce7f29.355de5bb.js':{v:''},'dist/web/chunks/b16b8e69.c44e22fc.js':{v:''},'dist/web/chunks/5a3db999.db849e64.js':{v:''},'dist/web/chunks/067fcde3.acf9f564.js':{v:''},'dist/web/chunks/9fb4a302.5db4e2bb.js':{v:''},'dist/web/chunks/a3238b2e.3db628e0.js':{v:''},'dist/web/emoji.52f68191.css':{v:''},'dist/web/emoji.2691a272.js':{v:''},'dist/web/posting_form.c773c30a.js':{v:''},'al/reports.5e617ad9.css':{v:'adf30c4c'},'dist/web/chunks/a10aa945.58dc6866.js':{v:''},'dist/web/chunks/ccfddb52.595a22e5.js':{v:''},'dist/web/post_context_menu.0e96f849.js':{v:''},'al/post_context_menu_skeleton.7a6fba57.css':{v:'ee9c4935'},'dist/web/chunks/33d7d353.def1c414.js':{v:''},'dist/web/likes.7fd8420b.css':{v:''},'dist/web/likes.5b72454e.js':{v:''},'dist/web/chunks/palette.dc78f16e.css':{v:''},'dist/web/chunks/palette.823a3714.js':{v:''},'dist/web/chunks/b9c9ec4e.80a72a82.js':{v:''},'dist/web/chunks/54895fa3.2c4d28b2.js':{v:''},'dist/web/chunks/835f171e.11868bcb.js':{v:''},'dist/web/reactions.ffd22ada.css':{v:''},'dist/web/reactions.1723ada0.js':{v:''},'dist/web/chunks/2bf31f27.0089adf6.js':{v:''},'dist/web/secondary_attachments.7fd8420b.css':{v:''},'dist/web/secondary_attachments.829dd6bb.js':{v:''},'dist/web/media_grid.c93dd070.css':{v:''},'dist/web/media_grid.8167eb31.js':{v:''},'dist/web/chunks/b9a0781a.85e698ed.js':{v:''},'dist/web/chunks/a14b6f70.104b601c.js':{v:''},'dist/web/chunks/c4615bd7.e2814ed3.js':{v:''},'dist/web/chunks/eb3ba767.e9b71739.js':{v:''},'dist/web/chunks/00fbd613.32aec0f9.js':{v:''},'dist/web/chunks/06aca322.787d643a.js':{v:''},'dist/web/chunks/a33bf90e.ea65fd38.js':{v:''},'dist/web/chunks/93785e19.3aed5af8.js':{v:''},'dist/web/chunks/39edd33e.8b37537b.js':{v:''},'dist/web/chunks/5da55942.95d97e86.js':{v:''},'dist/web/chunks/46eade22.daa478f8.js':{v:''},'dist/web/chunks/ec046727.126382c4.js':{v:''},'dist/web/chunks/98bc6302.65627573.js':{v:''},'dist/web/post_header.70d4968b.css':{v:''},'dist/web/post_header.f3c1712e.js':{v:''},'dist/web/feed_focus_returner.94117260.js':{v:''},'al/ui_common.8a99120f.css':{v:'fa8594d3'},'dist/web/chunks/d0f0f4ae.48ae0fb2.js':{v:''},'dist/web/chunks/45624723.2f7750a0.js':{v:''},'dist/web/chunks/e8a365d0.b9ffdf79.js':{v:''},'dist/web/chunks/3956c922.8d843b35.js':{v:''},'dist/web/ui_common.7fd8420b.css':{v:''},'dist/web/ui_common.619c9696.js':{v:''},'dist/web/chunks/232bb06e.de336912.js':{v:''},'dist/web/search_top_anonymous.e7661aa4.css':{v:''},'dist/web/search_top_anonymous.a91d7a8b.js':{v:''},'al/search.5f3ac0d7.css':{v:'86f7c15a'},'dist/web/site_layout.43014a29.css':{v:''},'dist/web/site_layout.2f732544.js':{v:''},'dist/web/language.99c2b192.js':{v:''},'dist/web/chunks/2ff7b3be.5db84172.js':{v:''},'dist/web/performance_observers.55c7d735.js':{v:''},'dist/web/css_types.5dc9625c.js':{v:''},'al/vk_sans_display_faux.7d208ecb.css':{v:'142fa326'},'al/vk_sans_display.5625d45f.css':{v:'36f8da9b'},'dist/web/vk_sans_observer.9b62b635.js':{v:''},'dist/web/unauthorized.8f51ca0d.js':{v:''},'dist/web/jobs_devtools_notification.3d0841d6.js':{v:''},'dist/web/page_layout.266e7ea1.js':{v:''},'dist/web/grip.85cad94a.js':{v:''},
'al/common.0c77b1d9.css':{v:'3ba25ec5'},'common.css':{v:1},'al/base.8a58484a.css':{v:'ddb8b4ff'},'base.css':{v:1},'al/vkui.499054b5.css':{v:'b0084d96'},'vkui.css':{v:1},'al/fonts_utf.7fa94ada.css':{v:'839f3023'},'fonts_utf.css':{v:1},'al/fonts_cnt_async.4881739c.css':{v:'a45c0000'},'fonts_cnt_async.css':{v:1}
});
window.abp = void 0;
</script>
<link rel="preload" href="https://st6-22.vk.com/css/fonts/VKSansDisplayDemiBoldFaux.v100.woff2" as="font" type="font/woff2" crossorigin="">
<script type="module">
;try{/*al_addLangKeys*/
(function () {
'use strict';
function al_addLangKeys() {
window.addLangKeys = function(keys, globalOrObject = false) {
let obj;
if (typeof globalOrObject === 'object') {
obj = globalOrObject;
} else if (globalOrObject) {
obj = window;
} else {
window.cur = window.cur || {};
obj = window.cur;
}
if (!obj.lang) {
obj.lang = keys;
} else {
Object.assign(obj.lang, keys);
}
};
}
return al_addLangKeys;
})()({});} catch (e) {e.__inline_tag = "al_addLangKeys.js"; e.name = `[al_addLangKeys.js] ${e.name}`; throw e;};
addLangKeys({"global_apps":"Apps","global_friends":"Friends","global_communities":"Communities","head_search_results":"Search results","global_chats":"Chats","global_hide":"Hide","global_close":"Close","audio_add_to_audio":"Add to my music","global_delete_audio":"Remove track","global_to_top":"Go up","global_back":"Back","box_close":"Close","global_box_title_back":"Back","vkconnect_refresh_captcha":"Refresh","global_captcha_input_here":"Enter code","captcha_enter_code":"Enter the code from the picture","captcha_send":"Send","captcha_cancel":"Cancel","vkconnect_refresh_captcha_via":"Refresh in {time}","global_recaptcha_title":"Confirm action","months_of":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"},"global_date":["","{day} {month} {year}","yesterday","today","tomorrow"],"global_short_date":["","{day} {month}","yesterday","today","tomorrow"],"global_just_now":"just now","global_word_mins_ago":["","one minute ago","two minutes ago","three minutes ago","4 minutes ago","5 minutes ago"],"global_mins_ago":["","%s minute ago","%s minutes ago"],"global_word_hours_ago":["","one hour ago","two hours ago","three hours ago","four hours ago","five hours ago"],"global_hours_ago":["","%s hour ago","%s hours ago"],"months_sm_of":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"global_short_date_time":["","{day} {month} at {hour}:{minute} {am_pm}","yesterday at {hour}:{minute} {am_pm}","today at {hour}:{minute} {am_pm}","tomorrow at {hour}:{minute} {am_pm}"],"global_error":"Error","global_reload_app_modal_title":"Update website","global_reload_app_modal_content":"Website updated. Reload the page for it to work properly.","global_reload_app_modal_action":"Reload","global_user_is_online_mobile":"online from mobile","global_user_is_online":"online","global_yes":"Yes","global_cancel":"Cancel","global_word_secs_ago":["","one second ago","two seconds ago","three seconds ago","four seconds ago","five seconds ago"],"global_secs_ago":["","%s second ago","%s seconds ago"],"wall_post_mins_ago":["","%s min","%s min"],"wall_post_hours_ago":["","%s h","%s h"],"global_warning":"Warning","calls_are_you_sure_to_call_this_user":"Are you sure you want to call this user?","global_share_button_call":"Call","video_postponed_publication":"Scheduled post","video_added_less_than_a_minute_ago":"Less than a minute ago","video_word_mins_ago":["","one minute ago","two minutes ago","three minutes ago","4 minutes ago","5 minutes ago"],"video_mins_ago":["","%s minute ago","%s minutes ago"],"video_word_hours_ago":["","one hour ago","two hours ago","three hours ago","four hours ago","five hours ago"],"video_hours_ago":["","%s hour ago","%s hours ago"],"video_word_days_ago":["","one day ago","two days ago","three days ago","four days ago","five days ago"],"video_days_ago":["","%s day ago","%s days ago"],"video_word_months_ago":["","one month ago","two months ago","three months ago","four months ago","five months ago"],"video_months_ago":["","%s month ago","%s months ago"],"video_word_years_ago":["","one year ago","two years ago","three years ago","four years ago","five years ago"],"video_years_ago":["","%s year ago","%s years ago"],"video_album_updated_time":"Updated {updated_time_ago}","video_postponed_publication_date":["","{num_day} {month} at {num_hour}:{minute} {am_pm}","{num_day} {month} at {num_hour}:{minute} {am_pm}","Today at {num_hour}:{minute} {am_pm}","Tomorrow at {num_hour}:{minute} {am_pm}"],"video_postponed_publication_full_date":["","{num_day} {month} {year} at {num_hour}:{minute} {am_pm}","{num_day} {month} {year} at {num_hour}:{minute} {am_pm}","Today at {num_hour}:{minute} {am_pm}","Tomorrow at {num_hour}:{minute} {am_pm}"],"video_N_views_list":["","%s view","%s views"],"global_video_soon":"Soon","video_interactive_label":"Interactive","video_feature_relation_text":" feat. ","video_N_views_thousand":"K views","video_N_views_million":"M views","video_N_group_members_count":["","%s follower","%s followers"],"video_N_subscribers_thousand":" K followers","video_N_subscribers_million":"M followers","video_N_thousand":"K","video_N_million":"M","video_showcase_N_viewers":["","%s view","%s views"],"global_charged_zone_title":"Warning","global_charged_zone_continue":"Continue","global_short_years_fixed":["","%s y","%s y"],"global_short_months":"%s m","global_short_weeks":"%s w","global_short_days":"%s d","global_short_hours":"%s hr.","global_short_minutes":"%s min","global_short_seconds":"%s s","audio_music_playlist_crash_placeholder_header":"Playlist not loading","audio_music_playlist_crash_placeholder_description":"Music is unavailable right now. Please try again later","global_date_l":["","{day} {month} {year}","yesterday","today","tomorrow"],"global_date_year_l":["","{day} {month} {year}","Yesterday","Today","Tomorrow"],"global_short_date_time_l":["","{day} {month} at {hour}:{minute} {am_pm}","yesterday at {hour}:{minute} {am_pm}","today at {hour}:{minute} {am_pm}","tomorrow at {hour}:{minute} {am_pm}"],"global_module_disabled_page_reload_button":"Refresh","global_module_disabled_page_placeholder":"Try refreshing the page. If the problem continues, please come back later.","blank_narratives_module":"<b>Moments<\/b> section","blank_call_module":"<b>Calls<\/b> section","blank_profile_module":"<b>My profile<\/b> section","blank_wall_module":"Block with the profile or community wall","blank_likes_module":"<b>Likes<\/b> section","blank_notifications_module":"<b>Notifications<\/b> section","blank_uslugi_module":"<b>Services catalog<\/b>","blank_market_module":"<b>Market<\/b> section","blank_docs_module":"<b>Files<\/b> section","blank_stories_module":"<b>Stories<\/b> section","blank_audios_module":"<b>Music<\/b> section","blank_videos_module":"<b>Videos<\/b> section","blank_photos_module":"<b>Photos<\/b> section","blank_helpdesk_module":"<b>Help<\/b> section","blank_groups_module":"<b>Communities<\/b> section","blank_audio_module":"<b>Music<\/b> section","blank_friends_module":"<b>Friends<\/b> section","blank_feed_module":"<b>News<\/b> section","blank_im_module":"<b>Messenger<\/b>","blank_shortvideo_module":"<b>VK Clips<\/b> section","blank_vmoji_module":"<b>Vmoji<\/b> section","blank_utils_module":"раздел <b>Utils<\/b>","blank_superApp_module":"Раздел <b>SuperApp<\/b>","blank_statevents_module":"Раздел <b>События<\/b>","blank_catalog_module":"раздел <b>Каталог<\/b>","blank_store_module":"<b>Market<\/b> section","blank_specials_module":"Раздел <b>События<\/b>","blank_account_module":"Раздел <b>Личный кабинет VK ID<\/b>","blank_internal_module":"раздел <b>internal<\/b>","blank_queue_module":"раздел <b>Очереди<\/b>","blank_adsint_module":"раздел <b>Объявления<\/b>","blank_studio_module":"Artist account","blank_bookmarks_module":"Bookmarks section","blank_bugs_module":"Bug tracker","blank_clips_item_module":"Clips section","global_disabled_page_header_unknown_module":"Section","global_module_disabled_page_header":"{module} temporarily unavailable","global_spa_error_page_header":"Something went wrong","global_spa_error_page_reload_button":"Refresh","global_spa_error_page_placeholder":"Please try refreshing the page","market_catalog_city_tab":"City","classifieds_location_tooltip_title":"Are you in {location}?","market_location_tooltip_description":"This is needed to show you nearby products","classifieds_location_tooltip_set_location":"Edit","classifieds_location_tooltip_close":"Yes","search_choose_city":"Select a city","global_save":"Save","market_catalog_search_result_title":"Search results","market_catalog_home_breadcrumb":"Home","market_item_is_disabled":"It's unavailable","market_item_card_component_title_adult":"Select age","market_item_card_blurred_image_caption":"Product image","market_item_card_component_badge_title_adult":"18+ product","market_single_cart_product_unavailable_text":"Out of stock","market_item_card_component_badge_title_moderation":"Verifying","market_item_card_component_badge_title_hard_block":"Blocked","market_classifieds_status_archive":"Stopped","search_try_again_button":"Try again","search_search_error_message":"Failed to load search results","search_cat_all":"All","search_cat_people":"People","search_cat_communities":"Communities","search_cat_audio":"Music","search_cat_video":"Videos","search_cat_statuses":"Posts","search_cat_mini_apps":"Services","search_cat_games":"Games","search_cat_market":"Store products","search_cat_clips":"Clips","search_auto_header":"Search Results","global_search":"Search","search_cat_people_title":"Search people","groups_search_communities":"Search communities","search_communities_nearby":"Communities nearby","audio_search_placeholder":"Search music","search_mini_apps_tab_title":"Search services","search_games_tab_title":"Search games","search_clips_tab_title":"Search clips","friends_find_friends_header_title":"People you may know","friends_global_loading_error":"Failed to load friend list","friends_loading_error":"Failed to load page","friends_try_reload":"Try again","settings_header":"My Settings","vkui_community_manage_vk_donut_faq":"FAQ: VK Donut for communities","vkui_community_manage_donut_goals_faq":"FAQ: Цели в VK Donut","Save":"Save","audio_save_recommendation_audio_block_as_playlist_success_notification_title":"Playlist added to your music","audio_save_recommendation_audio_block_as_playlist_success_notification_text":"You can now find it in the section with playlists and tracks you've added","audio_delete_all_title":"Delete audio files","global_delete":"Delete","global_audio_play":"Play","global_audio_pause":"Pause","audio_error_loading":"An error occurred while loading the audio file. Please try refreshing the page.","audio_delete_from_current":"Remove from current playlist","audio_dont_show":"Stop suggesting","audio_remove_from_list":"Remove from listened","audio_podcast_delete_episode":"Delete episode","audio_restore_audio":"Undo","global_media_selector_more":"More","audio_podcast_restore_episode":"Restore episode","audio_add_to_group":"Add to community music","audio_podcast_edit_episode":"Edit episode","audio_edit_audio":"Edit track","audio_set_next_audio":"Play next","audio_show_recommendations":"Show similar tracks","audio_podcast_listen_later":"Listen later","audio_show_lyrics":"Show lyrics","audio_longtap_tooltip_text":"Listen to a snippet","global_audio_replace":"Replace","audio_copy_audio_link":"Copy link","audio_share_audio":"Share","audio_add_to_playlist":"Add to playlist","audio_open_album":"Open album","audio_podcast_open_episode":"Open episode","audio_add_to_new_pl":"New playlist","audio_row_show_all_playlists":"Show all...","audio_error_deleted_playlist_box":"Playlist unavailable\/This playlist doesn't exist or has been deleted by its creator.","audio_playlist_btn_added":"Added","audio_playlist_btn_add":"Add","global_add_media":"Attach","audio_ok":"ОК","audio_playlist_link_copied":"Link copied to clipboard","audio_restriction_title_claim":"Track unavailable. This was the decision of the artist or their representative.","audio_album_part":"Part {part}","audio_following_artist_button":"Following","audio_follow_artist_success_notification_text":"New releases from the artist will appear in the new music section.","audio_follow_artist_success_notification_title":"You're following this artist","audio_follow_artist_button":"Follow","audio_success_msg_multiple":"All audio files have been successfully uploaded.","audio_success_msg":"Your audio file was uploaded successfully.","audio_uploading_over":"File uploaded","audio_loading_error":"An error occurred, error code: {code}","audio_playlist_recoms_was_hidden":"Playlist hidden from recommendations","audio_playlist_recoms_show":"Show in recommendations","global_unknown_error":"Unknown error","audio_playlist_recoms_was_showed":"Playlist returned to recommendations","audio_playlist_recoms_hide":"Hide from recommendations","audio_track_has_no_lyrics_yet":"This track doesn't have lyrics yet","audio_lyrics_ads":"Ad","audio_lyrics_error_btn_retry":"Try again","audio_lyrics_error":"Something went wrong. Please try again or play a different track.","global_audio_prev":"Previous track","global_audio_next":"Next track","audio_shuffle":"Shuffle and play","audio_repeat_tooltip":"Repeat","audio_playback_rate":"Playback speed","audio_player_block_remove_from_group_hint":"Delete","audio_player_block_add_to_group_hint":"Add","audio_player_block_remove_from_my_music_hint":"Remove from my music","audio_player_block_add_to_my_music_hint":"Add to my music","global_audio_ad_more":"Details","audio_player_block_playback_progress_time_aria_label":"Change playback time mode","audio_action_dislike":"Dislike","audio_player_block_podcast_remove_from_favorites_hint":"Remove from Bookmarks","audio_player_block_podcast_add_to_favorites_hint":"Add to Bookmarks","audio_share":"Share","audio_player_block_volume_slider_mute_button_aria_label":"Mute","audio_player_block_broadcast_tooltip_title":"Broadcast audio:","audio_player_block_broadcast_tooltip_user_page_checkbox":"On my profile","audio_player_block_broadcast_tooltip_clubs_container_title":"Broadcast in community","global_audio_ad":"Ads","global_audio_ads_off":"Disable","global_adblock_error_title":"Reinstall ad blocker","global_adblock_error_notice":"The ad blocker you're using is outdated. This may cause VK to not work properly. To fix this, try reinstalling the blocker (AdBlock, uBlock Origin or other).","global_news_search_results":"Search results by news","global_show_all_results":"Show all results","box_send":"Send","reports_thanks_for_report":"Thank you, your complaint has been accepted.","audio_claimed_geo":"{audio} is not available in your region.","audio_claim_warning_title":"Arguable Audio File","audio_site_rules_violation_warning":"{audio} has been removed from public access for violating the VK Terms of Service.","audio_site_rules_violation_header":"Prohibited audio file","audio_claimed_replacement_available":"This audio file has been blocked at the request of the copyright holder. You can replace it with the original audio file of the copyright holder <b>{original}<\/b>.","global_audio_only_with_subscription_title":"This track is only available through subscription","global_audio_only_with_subscription_text":"Access has been limited by the artist or their representative. Subscribe and gain access to a wider range of music.","global_audio_only_with_subscription_btn":"Learn more","audio_claim_warning":"The audio file {audio} was removed from public access by request of the copyright holder.","audio_claim_objection":"by filling out a special form","audio_claim_delete":"delete the track","audio_replace_with_original":"Replace","audio_claim_delete_capital":"Delete track","audio_action_sub_sheet_additional_loading":"Loading... ","text_N_symbols_remain":["","%s character remaining","%s characters remaining"],"text_exceeds_symbol_limit":["","You've exceeded the limit by %s character","You've exceeded the limit by %s characters"],"votes_flex":["","vote","votes"],"global_money_amount_rub":["","%s ruble","%s rubles"],"settings_addrbox_title":"A short and elegant link to your page","settings_addrbox_hint":"Please use <b>Latin<\/b> letters, <b>numbers<\/b>, or <b>"_"<\/b>.","mail_money_transfer_cancel_confirm":"Are you sure you want to cancel the money transfer?","mail_money_transfer_cancel_btn":"Cancel transfer","news_fb_money_transfer_decline_confirm":"Are you sure you want to decline the money transfer?","news_fb_money_transfer_decline_btn":"Decline","global_action_confirmation":"Confirm action","mail_money_transfer_decline_confirm":"Are you sure you want to decline the money transfer?","mail_money_transfer_decline_btn":"Decline","payments_money_transfer_new_card":"New card","votes_transfer_start_typing_recipient":"Start typing a friend's name","votes_transfer_choose_recipients":"Select a user","payments_cards_redirect":"Redirecting to payment gateway.<br>Please wait...","payments_payment_cancelled":"The payment process was canceled.","payments_money_request_error_no_accept_card":"Please enter your card information to receive transfers automatically.","payments_money_request_error_min_chunk_amount_currency":"Recommended minimum amount: {min_amount}","payments_money_request_error_max_chunk_amount_currency":"Recommended maximum amount: {max_amount}","payments_money_request_error_chunk_amount_too_big":"The recommended amount cannot be larger than the overall requested amount.","payments_landing_cancelled":"{tag_span}Unfortunately, your payment was not accepted.{\/tag_span}<br>Please contact {link}Support{\/link}.","payments_waiting_transfer_complete":"Transfer awaiting confirmation","payments_remember_card_btn":"Yes, receive on this card","payments_dont_remember_card_btn":"No","payments_vkpay_low_balance_title":"Insufficient funds","payments_vkpay_low_balance_text":"Add funds to your balance for free.","payments_vkpay_topup_button":"Add funds","payments_money_transfer_amount_limits":"Minimum amount: {min_amount}","payments_money_transfer_error_min_amount_currency":"Minimum transfer amount: {min_amount}","payments_money_transfer_error_max_amount_currency":"Maximum transfer amount: {max_amount}","payments_money_transfer_low_balance":"Insufficient funds","payments_money_transfer_will_be_requested":"Request amount: {amount}","payments_money_transfer_about_title":"Terms","payments_money_link_btn_feature_text":"Share a link or QR code on VK or elsewhere to start collecting money","payments_money_link_tab_feature_text":"This is where you can find links and a QR code","payments_transfer_without_fee":"No fee","payments_money_transfer_btn":"Send money","payments_transfer_method_without_fee_for_mastercard":"No fee from 300 rubles for Mastercard and Maestro","payments_money_transfer_commission_undefined":"Commission is dependent on card's payment system","payments_get_votes_box_close_notice":"The transaction is being processed. We will send you a notification when the votes have been added to your account.","payments_unbind_card_confirm":"Are you sure you want to unlink this payment card?","payments_revoke_token_confirm":"Are you sure you want to unlink this wallet?","payments_unbind_card_btn":"Delete","apps_personal_discount_amount_gift_calc":["","+%s for free","+%s for free"],"payments_votes_cost_in_rubles":["","Cost: %s ruble","Cost: %s rubles"],"payments_bonus_votes":["","+ bonus %s vote","+ bonus %s votes"],"payments_get_votes_for_X":"Get votes for {amount}","payments_back_to_ps_list":"Back to list","payments_go_ps_list":"Back to payment methods","payments_pay_order_btn":"Pay","payments_web_no_sum":"Please select the desired number of votes.","payments_min_amount_limit_votes":"The minimum number of votes you can buy using the selected payment system is %s.","payments_max_amount_limit_votes":"Maximum number of votes for paying through the chosen payment system — %s.","payments_rest_amount_day_votes":"Your daily limit has been exceeded. The maximum number of votes you can buy using the selected payment system is %s.","payments_rest_amount_week_votes":"Your weekly limit has been exceeded. The maximum number of votes you can buy using the selected payment system is %s.","payments_error_invalid_email":"Invalid email entered.","payments_money_for_votes":["","{money} (%s vote)","{money} (%s votes)"],"payment_redirect":"Redirecting to <b>%s<\/b>.<br>Please wait...","payments_sms_money_fail":"Your request could not be processed. Please try again later.","payments_invalid_code":"Incorrect code.","payments_change_phone_number":"Change the number","payments_spasibo_rules_not_accepted":"Please accept the terms to continue","payments_to_get_send_sms":["","To get <b>%s<\/b> vote, send an SMS with <b>{text}<\/b> to <b>{number}<\/b>","To get <b>%s<\/b> votes, send an SMS with <b>{text}<\/b> to <b>{number}<\/b>"],"payments_service_cost":"The service costs <b>{amount}<\/b>","payments_get_votes_input_phone":"Please enter a <b>phone number<\/b> for payment:","payments_save_phone":"Save number","payments_box_title_back":"Back","global_error_occured":"An error occurred","payments_waiting_payment_complete":"Completing payment. Please wait...","payments_waiting_payment_complete_still":"Please wait...","payments_internet_getting_votes":"Get Votes","payments_get_votes_delay":"We are waiting for a reply from the payment gateway. As soon as we receive it, we will credit the votes to {link}your account{\/link} immediately.<br><br>If you do not receive votes to your account within an hour, please contact our {link2}payment support team{\/link2}.","payments_get_votes_ps_enter_code":"To pay, please enter the confirmation code that was sent to you","payments_instant_pay_amount_limit_error":"Your account has insufficient funds, or the limit for charging without confirmation has been reached.<br>To make a payment with confirmation, please click {link}Proceed to payment{\/link}.","payments_for_get_n_votes":["","<b>%s<\/b> vote","<b>%s<\/b> votes"],"payments_service_cost_rubles":["","The service costs <b>%s ruble<\/b>.","The service costs <b>%s rubles<\/b>."],"payments_back_to_offers_list":"Back to list","payments_waiting_app_order_complete":"Completing transfer...","payments_app_order_box_title":"Votes transfer","payments_app_add_votes_delay":"We are waiting for confirmation from the app. If the transfer is not confirmed within an hour, we will return the votes to your balance.","payments_go_change_pay_type":"Change payment method","payments_get_votes_new":"Get votes","purchases_stickers_purchase_result_pack_and_styles":["","Sticker pack {pack_title} and {n} style added","Sticker pack {pack_title} and {n} styles added"],"purchases_stickers_purchase_result_pack":"{title} added","purchases_stickers_purchase_result_1_style":"Style {title} added","purchases_stickers_purchase_result_2_styles":"Styles {title1} and {title2} added","purchases_stickers_purchase_result_3_styles":"Styles {title1}, {title2} and {title3} added","purchases_stickers_purchase_result_3_styles_and_1_more":"Styles {title1}, {title2}, {title3} and one other added","purchases_stickers_purchase_result_3_styles_and_n_more":["","Styles {title1}, {title2}, {title3} and {n} other added","Styles {title1}, {title2}, {title3} and {n} others added"],"gifts_nobody_found":"User not found","gifts_start_typing_recipient":"Start typing a name","purchases_stickers_gift_box_title":"Confirmation","purchases_gift_price_label":"Price:","global_n_votes":["","%s vote","%s votes"],"gifts_you_have_X_votes":"You have {votes}","gifts_receiver":"Recipient","gifts_choose_recipients":"Select recipients","purchases_gift_your_message":"Your message","gifts_receiver_only":"Only the recipient can see my name and message","purchases_stickers_gift_details_label":"How the price is calculated","purchases_stickers_gift_send_for":"Send for {price}","purchases_stickers_gift_send":"Send","purchases_stickers_gift_title_1_style":"Style: {title}","purchases_stickers_gift_description_with_pack":"Together with the {title} sticker pack.","purchases_stickers_gift_description_for_pack":"For the {title} sticker pack.","purchases_stickers_gift_title_pack":"Sticker pack: {title}","purchases_stickers_gift_description_with_2_styles":"Together with styles: {title1} and {title2}.","purchases_stickers_gift_description_with_3_styles":"Together with styles: {title1}, {title2} and {title3}.","purchases_stickers_gift_description_with_3_styles_and_1_more":"Together with styles: {title1}, {title2}, {title3} and one other.","purchases_stickers_gift_description_with_3_styles_and_n_more":["","Together with styles: {title1}, {title2}, {title3} and {n} other.","Together with styles: {title1}, {title2}, {title3} and {n} others."],"purchases_stickers_gift_title_2_styles":"Styles: {title1} and {title2}","purchases_stickers_gift_title_3_styles":"Styles: {title1}, {title2} and {title3}","purchases_stickers_gift_title_3_styles_and_1_more":"Styles: {title1}, {title2}, {title3} and one other","purchases_stickers_gift_title_3_styles_and_n_more":["","Styles: {title1}, {title2}, {title3} and {n} other","Styles: {title1}, {title2}, {title3} and {n} others"],"purchases_stickers_gift_description_styles":"The recipient will be able to select a style of stickers and use them for free in messages, comments and stories.","purchases_stickers_gift_description":"The recipient will be able to use stickers for free in messages, comments and stories.","purchases_stickers_gift_result_1_recipient_single":["","{name} received your gift: {products}","{name} received your gift: {products}"],"purchases_stickers_gift_result_1_recipient_multiple":["","{name} received your gifts: {products}","{name} received your gifts: {products}"],"purchases_stickers_gift_result_2_recipients":["","{name1} and {name2} received your gift: {products}","{name1} and {name2} received your gifts: {products}"],"purchases_stickers_gift_result_3_recipients":["","{name1}, {name2} and {name3} received your gift: {products}","{name1}, {name2} and {name3} received your gifts: {products}"],"purchases_stickers_gift_result_4_recipients":["","{name1}, {name2}, {name3} and {name4} received your gift: {products}","{name1}, {name2}, {name3} and {name4} received your gifts: {products}"],"purchases_stickers_gift_result_5_recipients":["","{name1}, {name2}, {name3}, {name4} and {name5} received your gift: {products}","{name1}, {name2}, {name3}, {name4} and {name5} received your gifts: {products}"],"purchases_stickers_gift_result_4_recipients_and_n_more_single":["","{name1}, {name2}, {name3}, {name4} and {n} other person received your gift: {product}","{name1}, {name2}, {name3}, {name4} and {n} other people received your gift: {product}"],"purchases_stickers_gift_result_4_recipients_and_n_more_multiple":["","{name1}, {name2}, {name3}, {name4} and {n} other person received your gifts: {products}","{name1}, {name2}, {name3}, {name4} and {n} others received your gifts: {products}"],"purchases_stickers_gift_result_products_pack_and_styles":["","sticker pack: {title} and {styles_num} style","sticker pack: {title} and {styles_num} styles"],"purchases_stickers_gift_result_products_pack":"{title} sticker pack","purchases_stickers_gift_result_products_1_style":"style: {title}","purchases_stickers_gift_result_products_2_styles":"styles: {title1} and {title2}","purchases_stickers_gift_result_products_3_styles":"styles: {title1}, {title2} and {title3}","purchases_stickers_gift_result_products_3_styles_and_1_more":"styles: {title1}, {title2}, {title3} and one other","purchases_stickers_gift_result_products_3_styles_and_n_more":["","styles: {title1}, {title2}, {title3} and {n} other","styles: {title1}, {title2}, {title3} and {n} others"],"purchases_stickers_gift_details_summary_pack_with_styles":["","You're sending the standard sticker pack for <b>{pack_price_sum}<\/b> and an additional style for <b>{styles_price_sum}<\/b>.","You're sending the standard sticker pack for <b>{pack_price_sum}<\/b> and {styles_num} additional styles for <b>{styles_price_sum}<\/b>."],"purchases_stickers_gift_details_summary_pack":"You're sending a sticker pack for <b>{pack_price_sum}<\/b>.","purchases_stickers_gift_details_summary_styles":["","You're sending an additional style for {styles_price_sum}.","You're sending {styles_num} additional styles for {styles_price_sum}."],"purchases_stickers_gift_details_recipient_style_title":"{title}","purchases_stickers_gift_details_recipient_pack_and_styles":["","Sticker pack: {pack_title}, and style: {style_titles}.","Sticker pack: {pack_title}, and styles: {style_titles}."],"purchases_stickers_gift_details_recipient_pack":"Sticker pack: {title}","purchases_stickers_gift_details_recipient_styles":["","Style: {style_titles}.","Styles: {style_titles}."],"purchases_stickers_n_for_m":"%n for %m","purchases_for_free_btn":"Free","head_fr_online_tip":"Show friends","stories_bad_browser":"Stories are not supported by your browser","stories_mask_sent":"Mask sent to phone","global_box_error_title":"Error","vkconnect_logout_save_user_dialog_title":"Sign out","vkconnect_logout_save_user_dialog_description_text":"Disable if you signed in to your VK ID account on someone else's device","vkconnect_logout_save_user_dialog_description_title":"Save information for quick sign-in","global_head_logout":"Sign out","audio_add_audio_to_my_music_success_notification":"Track added to your music","audio_add_dislike_to_audio_success_notification":"Track noted as disliked","audio_my_music_add_dislike_to_audio_success_notification":"Track removed from collection","audio_my_music_add_dislike_to_audio_success_notification_cancel":"Cancel","audio_copy_audio_link_notification":"Link copied to clipboard","audio_follow_radiostation_success_notification_title":"Radio station added to your music","audio_follow_radiostation_success_notification_text":"You can now find it in the section with playlists and tracks you've added","global_podcast_added_to_faves":"Episode added to {link}Bookmarks{\/link}","audio_legal_notice_line_foreign_agent":"Foreign agent involved in content creation","settings_silent_mode_form_drop_down_friends_of_friends":"Friends and friends of friends","settings_silent_mode_form_drop_down_friends":"Friends only","settings_silent_mode_form_calls_and_mails_friends":"friends","settings_silent_mode_form_calls_and_mails_friends_of_friends":"friends and friends of friends","vkconnect_sak_add_button":"Add","vkconnect_sak_add_to_favorite_button":"Add to favorites","vkconnect_sak_allow_button":"Allow","vkconnect_sak_allow_messages_modal_caption":"The app is requesting permission to send messages as {group_name}","vkconnect_sak_allow_messages_modal_title":"The app is requesting permission to send you messages","vkconnect_sak_allow_notifications_button":"Enable notifications","vkconnect_sak_allow_notifications_modal_caption":"This app will be able to send you notifications","vkconnect_sak_allow_notifications_modal_title":"The app is requesting permission to send you notifications","vkconnect_sak_allow_permissions_modal_caption":"The app will have access to:","vkconnect_sak_allow_permissions_modal_title":"{name} is requesting access to your account","vkconnect_sak_app_author":"Created by: {name}","vkconnect_sak_app_reload":"Try again","vkconnect_sak_autologin_notification_agreement":"User Agreement","vkconnect_sak_autologin_notification_username":"You signed in as {username}","vkconnect_sak_cancel_button":"Cancel","vkconnect_sak_cua_change_method":"Confirm using other method","vkconnect_sak_cua_code_call_description":"Enter the <b>last six digits of the phone number<\/b> that called you","vkconnect_sak_cua_code_call_timer":"You'll receive a call within {timer}","vkconnect_sak_cua_code_call_title":"You'll receive a confirmation call","vkconnect_sak_cua_code_email_description":"An email was sent to {email}","vkconnect_sak_cua_code_email_timer":"You'll receive an email with a code within {timer}","vkconnect_sak_cua_code_email_title":"Enter email confirmation code","vkconnect_sak_cua_code_push_description":"A push notification was sent to your device","vkconnect_sak_cua_code_push_description_aria_label":"A push notification was sent to your device","vkconnect_sak_cua_code_push_timer":"You'll receive a code within {timer}","vkconnect_sak_cua_code_push_title":"Enter confirmation code from notification","vkconnect_sak_cua_code_retry":"Resend code","vkconnect_sak_cua_code_retry_send":"Request code again","vkconnect_sak_cua_code_retry_send_call_reset":"Request call again","vkconnect_sak_cua_code_sms_description":"An SMS confirmation message was sent to","vkconnect_sak_cua_code_sms_timer":"You'll receive an SMS within {timer}","vkconnect_sak_cua_code_sms_title":"Enter SMS confirmation code","vkconnect_sak_cua_email_aria_label":"starting with {begin} and ending in {end}","vkconnect_sak_cua_error_default_btn_text":"Close","vkconnect_sak_cua_error_flood_header":"Limit reached","vkconnect_sak_cua_error_flood_text":"You requested or entered the code too many times in a row. Please try again later.","vkconnect_sak_cua_error_incorrect_code":"Invalid code","vkconnect_sak_cua_error_incorrect_password":"Invalid password","vkconnect_sak_cua_error_internal_header":"Error","vkconnect_sak_cua_error_internal_text":"Something went wrong","vkconnect_sak_cua_error_password_alreadey_set_btn_text":"OK","vkconnect_sak_cua_error_password_alreadey_set_header":"This password was found in open access","vkconnect_sak_cua_error_password_alreadey_set_text":"This password isn't secure and may be used by scammers. Please enter a different one.","vkconnect_sak_cua_error_password_bad_passwword":"Invalid password","vkconnect_sak_cua_error_password_compromised_header":"Password too weak","vkconnect_sak_cua_error_password_compromised_password":"Your password has been compromised. It's now known to third-parties and can't be used.","vkconnect_sak_cua_error_password_compromised_text":"This password is easy to hack. Please choose a different one.","vkconnect_sak_cua_error_password_db_fail_header":"An error occurred","vkconnect_sak_cua_error_password_db_fail_text":"Please try again later","vkconnect_sak_cua_error_password_flood_header":"Password attempt limit reached","vkconnect_sak_cua_error_password_flood_text":"You entered an invalid password too many times in a row. Please try again later.","vkconnect_sak_cua_error_password_long_password":"Password must be fewer than 1,024 characters","vkconnect_sak_cua_error_password_minimum_length":"Password must be at least 6 characters long","vkconnect_sak_cua_error_password_not_herdening":"This password isn't secure and can't be used","vkconnect_sak_cua_error_password_numeric_password":"Password too simple","vkconnect_sak_cua_error_password_security_header":"Access error","vkconnect_sak_cua_error_password_security_text":"Access denied","vkconnect_sak_cua_error_password_used_in_another_profile":"This password can't be used","vkconnect_sak_cua_error_phone_otp_enabled_btn_support":"How to free up this number","vkconnect_sak_cua_error_phone_otp_enabled_btn_use_phone":"Use different number","vkconnect_sak_cua_error_phone_otp_enabled_header":"Number already used by other account with 2FA","vkconnect_sak_cua_error_phone_otp_enabled_text":"To link the phone number, go to the account where this number is already used and disable 2-step verification","vkconnect_sak_cua_error_phone_validate_already_phone_owner_header":"Number already linked","vkconnect_sak_cua_error_phone_validate_already_phone_owner_text":"This phone number is already linked to your VK ID account","vkconnect_sak_cua_error_phone_validate_already_used_today_header":"Number already linked","vkconnect_sak_cua_error_phone_validate_already_used_today_text":"Daily limit for linking numbers reached. Please try again tomorrow.","vkconnect_sak_cua_error_phone_validate_banned_header":"Account or phone number blocked","vkconnect_sak_cua_error_phone_validate_banned_text":"Please wait until it's unblocked and try again","vkconnect_sak_cua_error_phone_validate_current_phone_activated_header":"Number already linked to VK ID","vkconnect_sak_cua_error_phone_validate_current_phone_activated_text":"A phone number is already linked to your VK ID account","vkconnect_sak_cua_error_phone_validate_incorrect_phone_header":"Number not found","vkconnect_sak_cua_error_phone_validate_incorrect_phone_text":"This phone number doesn't exist or was entered incorrectly. Please make sure there are no mistakes and try again.","vkconnect_sak_cua_error_phone_validate_incorrect_phone_text_btn_use_phone":"Try again","vkconnect_sak_cua_error_phone_validate_occupied_btn_use_phone":"Use different number","vkconnect_sak_cua_error_phone_validate_occupied_header":"Number taken","vkconnect_sak_cua_error_phone_validate_occupied_text":"This phone number is already used by another VK ID account. Please enter a different number.","vkconnect_sak_cua_error_phone_validate_release_restristed_btn_support":"Contact Support","vkconnect_sak_cua_error_phone_validate_release_restristed_btn_use_phone":"Use different number","vkconnect_sak_cua_error_phone_validate_release_restristed_header":"Number blocked","vkconnect_sak_cua_error_phone_validate_release_restristed_text":"Unable to change phone number. Please contact Support to change the phone number linked to your account.","vkconnect_sak_cua_error_phone_validate_release_restristed_user_btn_support":"Contact Support","vkconnect_sak_cua_error_phone_validate_release_restristed_user_btn_use_phone":"Use different number","vkconnect_sak_cua_error_phone_validate_release_restristed_user_header":"Unable to change phone number","vkconnect_sak_cua_error_phone_validate_release_restristed_user_text":"Please contact Support to change the phone number linked to your account","vkconnect_sak_cua_error_phone_validate_unknown_error_header":"Error","vkconnect_sak_cua_error_phone_validate_unknown_error_text":"Failed to link phone number due to system error","vkconnect_sak_cua_error_phone_validate_used_last_bind_header":"Failed to link number","vkconnect_sak_cua_error_phone_validate_used_last_bind_text":"The phone number {phone} has already been used for a different VK ID account and can't be linked to this one. Please select a different number and try again.","vkconnect_sak_cua_error_phone_validate_user_already_activated_today_header":"Number already linked","vkconnect_sak_cua_error_phone_validate_user_already_activated_today_text":"Daily limit for linking numbers reached. Please try again tomorrow.","vkconnect_sak_cua_error_try_resend_header":"Limit reached","vkconnect_sak_cua_error_try_resend_text":"You requested or entered the code too many times in a row. Please try again later.","vkconnect_sak_cua_methods_cell_email_description":"Receive an email confirmation code at {value}","vkconnect_sak_cua_methods_cell_email_title":"Email address","vkconnect_sak_cua_methods_cell_password_description":"Enter your account password","vkconnect_sak_cua_methods_cell_password_title":"Password","vkconnect_sak_cua_methods_cell_phone_description":"Receive an SMS or call to {value}","vkconnect_sak_cua_methods_cell_phone_title":"Phone number","vkconnect_sak_cua_methods_cell_push_description":"Receive a push notification to a linked device","vkconnect_sak_cua_methods_cell_push_title":"Notification on device","vkconnect_sak_cua_methods_description":"To help protect your account, we need to be sure that important actions are made by you","vkconnect_sak_cua_methods_title_desktop":"Select verification method","vkconnect_sak_cua_methods_title_mobile":"Verification methods","vkconnect_sak_cua_nav_to_set_phone":"Confirm by phone number","vkconnect_sak_cua_number_verification":"Verifying number...","vkconnect_sak_cua_number_verification_wait":"Please wait a little and keep this window open","vkconnect_sak_cua_password_description_email":"VK ID account password for {email}","vkconnect_sak_cua_password_description_login":"VK ID account password for {login}","vkconnect_sak_cua_password_description_phone":"VK ID account password for {phone}","vkconnect_sak_cua_password_hide_aria_label":"Hide password","vkconnect_sak_cua_password_next_btn":"Continue","vkconnect_sak_cua_password_restore":"Forgot password?","vkconnect_sak_cua_password_title":"Enter your password to confirm","vkconnect_sak_cua_password_view_aria_label":"Show password","vkconnect_sak_cua_phone_aria_label":"starting with {begin} and ending in {end}","vkconnect_sak_cua_set_email_description":"Enter your email address to receive notifications from VK services and to restore access to your account if needed","vkconnect_sak_cua_set_email_input_placeholder":"Enter your email address","vkconnect_sak_cua_set_email_next_btn":"Continue","vkconnect_sak_cua_set_email_title":"Link email address to protect your account","vkconnect_sak_cua_set_password_confirm_input_placeholder":"Repeat the new password","vkconnect_sak_cua_set_password_description":"Or use the password recommended by the device","vkconnect_sak_cua_set_password_different_passwords_error":"Passwords don't match","vkconnect_sak_cua_set_password_fair_password_title":"Medium password","vkconnect_sak_cua_set_password_input_description":"Minimum 8 characters, including upper and lowercase letters, numbers and special characters (! “ # $ % ‘ () *)","vkconnect_sak_cua_set_password_input_placeholder":"Enter a new password","vkconnect_sak_cua_set_password_next_btn":"Continue","vkconnect_sak_cua_set_password_secure_password_title":"Strong password","vkconnect_sak_cua_set_password_title":"Create new password","vkconnect_sak_cua_set_password_weak_password_title":"Password too weak","vkconnect_sak_cua_set_phone_description":"Enter the <b>phone number<\/b> you want linked to your account","vkconnect_sak_cua_set_phone_next_btn":"Continue","vkconnect_sak_cua_set_phone_title":"Link phone number to protect your account","vkconnect_sak_delete_from_favorite_button":"Remove from favorites","vkconnect_sak_deny_notifications_button":"Disable notifications","vkconnect_sak_done_button":"Done","vkconnect_sak_ecoplate_account_security_danger":"Protect your account","vkconnect_sak_ecoplate_account_security_warning":"Account protection recommendations","vkconnect_sak_ecoplate_business_vkid_control":"Управление профилем","vkconnect_sak_ecoplate_business_vkid_control_banner":"Удобная работа с сервисами VK для вас и ваших сотрудников","vkconnect_sak_ecoplate_business_vkid_control_banner_button":"Подключить","vkconnect_sak_ecoplate_business_vkid_control_lk":"Перейти в","vkconnect_sak_ecoplate_load_error":"Loading error","vkconnect_sak_ecoplate_menu_retry":"Refresh","vkconnect_sak_ecoplate_multiaccount_section_title":"Other VK ID accounts","vkconnect_sak_ecoplate_to_lk":"Перейти","vkconnect_sak_ecoplate_vkid_control":"Account settings","vkconnect_sak_ecosystem_menu_account_security_warning":"Protect your account","vkconnect_sak_ecosystem_menu_easter_day":"1 January","vkconnect_sak_ecosystem_menu_vkcombo_button_subtitle":"Active","vkconnect_sak_ecosystem_menu_vkcombo_button_subtitle_more":"More","vkconnect_sak_ecosystem_menu_vkcombo_button_title":"VK Combo","vkconnect_sak_ecosystem_menu_vkconnect_control":"VK ID settings","vkconnect_sak_ecosystem_menu_vkconnect_retry":"Try again","vkconnect_sak_ecosystem_menu_vkpay_button_subtitle":"Link","vkconnect_sak_ecosystem_menu_vkpay_button_title":"VK Pay","vkconnect_sak_ecosystem_menu_vkpay_open_button":"Open","vkconnect_sak_ecosystem_nav_more":"More","vkconnect_sak_ecosystem_nav_services_title":"VK Catalog","vkconnect_sak_forbid_button":"Prohibit","vkconnect_sak_join_group_modal_caption":"The app invites you to follow this community.","vkconnect_sak_mailru_vkid_connect_button_caption":"Link","vkconnect_sak_mailru_vkid_connect_chain_feature":"A VK ID single account for signing in to Mail","vkconnect_sak_mailru_vkid_connect_modal_title":"Link {email} to VK ID","vkconnect_sak_mailru_vkid_connect_user_feature":"Quick password-free sign-in to Mail through VK ID","vkconnect_sak_menu_qr_code_button":"Show QR code","vkconnect_sak_menu_share_button":"Share","vkconnect_sak_modal_messages_scopes_available":"The service will have access to:","vkconnect_sak_modal_messages_scopes_edit":"Edit","vkconnect_sak_multiacc_add_account":"Add account","vkconnect_sak_multiacc_delete_account":"Remove account from switcher","vkconnect_sak_qr_caption":"Point camera at QR code","vkconnect_sak_qr_show":"Show QR code","vkconnect_sak_report_button":"Report","vkconnect_sak_request_add_to_favorites_modal_caption":"The app is requesting permission to add it to favorites","vkconnect_sak_request_add_to_favorites_modal_title":"Add app to favorites?","vkconnect_sak_request_email_modal_caption":"This is needed for our app to work properly.","vkconnect_sak_request_email_modal_title":"The app is requesting access to your email address","vkconnect_sak_request_group_info_modal_caption":"General information about the community will be available","vkconnect_sak_request_group_info_modal_title":"The service is requesting information about the community","vkconnect_sak_request_phone_modal_caption":"The app will be able to see the phone number linked to your page","vkconnect_sak_request_phone_modal_title":"The app is requesting access to your phone number","vkconnect_sak_request_send_to_client_modal_title":"{app_name} is offering to launch the mini app on your mobile device","vkconnect_sak_run_app_button":"Launch","vkconnect_sak_run_app_description":"You are about to launch {appName}","vkconnect_sak_run_app_error_description":"Initialization interrupted","vkconnect_sak_run_app_error_title":"Failed to load<br>{appName}","vkconnect_sak_scope_ads":"Ads","vkconnect_sak_scope_adsweb":"Ads","vkconnect_sak_scope_audio":"Tracks","vkconnect_sak_scope_deploy":"App deployment","vkconnect_sak_scope_docs":"File list","vkconnect_sak_scope_email":"Email address","vkconnect_sak_scope_friends":"Friend list","vkconnect_sak_scope_group_messages":"Community messages","vkconnect_sak_scope_groups":"Communities","vkconnect_sak_scope_market":"Your products","vkconnect_sak_scope_menu":"Link in left-side menu","vkconnect_sak_scope_messages":"Messages","vkconnect_sak_scope_notes":"Notes","vkconnect_sak_scope_notifications":"Notifications list","vkconnect_sak_scope_notify":"Sending notifications","vkconnect_sak_scope_offline":"Work at any time","vkconnect_sak_scope_pages":"Wiki pages","vkconnect_sak_scope_phone":"Your phone number","vkconnect_sak_scope_photos":"Photos","vkconnect_sak_scope_stats":"Your community and app statistics","vkconnect_sak_scope_status":"Profile status","vkconnect_sak_scope_stories":"Stories","vkconnect_sak_scope_video":"Videos","vkconnect_sak_scope_wall":"Wall posts","vkconnect_sak_scope_wallmenu":"Wall posts","vkconnect_sak_send_to_phone_button":"Send push notification","vkconnect_sak_shared_permissions":"Requested data","vkconnect_sak_slide_sheets_lost_connection":"A loading error occurred","vkconnect_sak_slide_sheets_next":"Next","vkconnect_sak_slide_sheets_ok":"OK","vkconnect_sak_slide_sheets_skip":"Skip","vkconnect_sak_subscribe_button":"Follow","vkconnect_sak_unsupported_method":"This method isn't supported"}, true);
addLangKeys({"wall_publish_postponed_confirm":"Are you sure you want to post this right now?","wall_publish_postponed_btn":"Post","events_media_type":"Event","groups_media_type_community":"Сообщество","settings_menu_box":"Menu item settings","apps_connect_modal_messages_scopes_edit":"Edit","apps_connect_modal_messages_scopes_text":"The app will have access to:","stories_creator_text_label_modern":"Modern","stories_creator_text_label_playful":"Playful","stories_creator_text_label_aesthetic":"Aesthetic","stories_creator_text_label_dynamic":"Dynamic","stories_creator_text_label_classic":"Classic","stories_creator_text_label_elegant":"Elegant","stories_creator_text_label_rounded":"Rounded","stories_creator_text_label_standard":"Standard","stories_creator_text_label_handwritten":"Cursive","stories_creator_text_label_bookish":"Typewriter","calls_join_error_require_access":"You can't join a call in this closed chat. Ask the administrator to add you to the chat.","calls_join_error_outdated_link":"The link may have expired or been updated. Please ask the call administrator to send a new one.","calls_join_error_text":"The host ended the call.","calls_invalid_join_link":"Invalid call link","calls_privacy_error_due_schedule":"Дозвониться не удалось. У собеседника включён режим «Не беспокоить».","calls_privacy_error":"Call failed because the privacy settings of one of the parties do not allow calls.","calls_chat_busy_error":"You can't start a call in this chat because there is already a call in progress.","calls_busy_error":"The user is already on a call. Please call again later.","calls_flood_error":"You are calling too often. Try again later.","calls_join_error_require_auth":"Please sign in to join this call","calls_start_error":"An error occurred during the call. Please try again later.","calls_join_error_common_join_to_title":"Unable to join call","calls_join_error_require_access_message":"The call is in a closed chat. Ask the administrator to add you to the chat.","calls_join_error_outdated_link_title":"This link no longer works","calls_join_error_outdated_link_message":"It may have expired or been updated. Please ask the call administrator to send you a new link.","calls_join_error_common_call_to_title":"Call failed","calls_privacy_error_message":"You or the other user have restricted calls in the privacy settings","calls_chat_busy_error_title":"Unable to start call","calls_chat_busy_error_message":"Call in chat already in progress","calls_flood_error_message":"You're calling too often. Please wait awhile.","calls_start_error_message":"An error occurred during the call. Please wait a little and try again later.","calls_join_error_banned":"You were removed from this call.","calls_join_error_blacklisted_by_caller":"Failed to join call. The organizer has blocked you.","calls_join_error_not_found_conversation":"Call ended","calls_join_error_room_participants_exceeded":"User limit reached","calls_sorry_error":"An unknown error has occurred","calls_members_list_label":["","{name} and %s other person","{name} and %s other people"],"calls_and":"{before} and {after}","calls_members_count_label":["","This call has %s participant","This call has %s participants"],"calls_empty_call":"No one is in the call yet","calls_new_call_title":"Call","mail_search_only_messages_comm":"Search in community messages","mail_search_only_messages":"Search your messages","mail_search_messages":"Messages","mail_search_conversations_sep":"Chats","mail_search_dialogs_sep":"People and communities","mail_recent_searches":"Recent searches","mail_clear_recent":"Clear","mail_recommend_block_remove_item":"Hide","mail_recommend_block_action_find_friends":"Find","mail_recommend_block_action_invite":"By phone number","mail_send_message_error":"Error sending message","mail_recording_audio_several":["","is recording audio","are recording audio"],"mail_typing_several":["","is typing","are typing"],"mail_and_peer":"and {count} more {typing}","mail_and_peer_one":"and","mail_deleted_stop":"Message deleted.","mail_marked_as_spam":"Message marked as spam and deleted.","mail_restore":"Undo","stickers_ugc_text_after_report":"Sticker reported","mail_im_search_empty":"No matching messages found.","mail_select_message":"Select this message","mail_restored":"Message restored","mail_im_goto_conversation":"Go to chat","mail_deleteall1":"Delete all messages","mail_sure_to_delete_all":"Are you sure you want to <b>delete your entire message history<\/b> with this user?<br><br>This <b>can't<\/b> be undone.","mail_delete":"Delete","mail_leave_channel":"Leave channel","mail_unfollow_channel_confirmation":"Are you sure you want to <b>leave<\/b> this channel and <b>delete all messages<\/b>?","mail_unfollow_channel":"Leave","mail_chat_sure_to_delete_all":"Are you sure you want to <b>delete the entire message history<\/b> for this chat?<br><br>This <b>can't<\/b> be undone.","mail_group_sure_to_delete_all":"Are you sure you want to <b>delete the entire message history<\/b> with this community?<br><br>This <b>can't<\/b> be undone.","mail_vkcomgroup_leave_confirm":"If you unfollow, you will no longer receive new messages from this channel. You can re-follow at any time.","mail_reject_mr_confirmation_title":"Decline invite","mail_reject_mr_confirmation_text":"Are you sure you want to decline the chat invite?","mail_message_request_reject":"Decline","mail_leave_chat":"Leave chat","mail_chat_leave_confirm":"If you leave, you won't receive any new messages from this chat. You can only return if there is enough room.","mail_unpin_title":"Unpin message","mail_unpin_text":"Are you sure you want to unpin this message? All chat members will see this change.","mail_unpin":"Unpin message","mail_dialog_msg_delete_N":["","Are you sure you want to <b>delete<\/b> this message?","Are you sure you want to <b>delete<\/b> %s messages?"],"mail_dialog_msg_delete_title":"Delete message","mail_delete_for_all":"Delete for everyone","mail_header_online_status":"online","mail_last_activity_tip":["","{user} last seen {time}","{user} last seen {time}"],"mail_attach_deleted":"Attachment deleted","mail_added_photos":["","Photo","%s photos"],"mail_added_videos":["","Video","%s videos"],"mail_added_audios":["","Audio","%s audios"],"mail_fwd_msgs":["","%s message","%s messages"],"mail_added_clip":"Clip","mail_added_audio_album":"Album","mail_added_audio_playlist":"Playlist","mail_added_artist":"Artist","mail_added_graffiti":"Graffiti","mail_added_audiomsg":"Voice message","mail_added_docs":"File","mail_added_geo":"Map","mail_added_wall":"Wall post","mail_added_wall_reply":"Wall comment","mail_added_gift":"Gift","mail_added_link":"Link","mail_added_sticker":"Sticker","mail_added_ugc_sticker":"Sticker","mail_added_widget":"Widget","mail_added_market_item":"Product","mail_added_money_transfer":"Money transfer","mail_added_money_request":"Money request","mail_added_story":"Story","mail_added_mask":"Mask","mail_added_article":"Article","mail_added_call":"Call","mail_added_poll":"Poll","mail_added_podcast":"Podcast","mail_money_amount_rub":["","%s rub.","%s rub."],"mail_money_request_collected_amount_from":"{amount} of {total_amount} collected","mail_money_request_collected_amount":"{amount} collected","mail_money_request_held_amount":"({amount} pending)","mail_message_edited":"edited","mail_message_wait_until_uploaded":"Please wait while we're uploading the files.","global_years_accusative":["","%s year","%s years"],"global_age_years":["","%s year old","%s years old"],"global_months_accusative":["","%s month","%s months"],"global_age_months":["","%s month","%s months"],"global_weeks_accusative":["","%s week","%s weeks"],"global_age_weeks":["","%s week","%s weeks"],"global_days_accusative":["","%s day","%s days"],"global_age_days":["","%s day","%s days"],"global_hours_accusative":["","%s hour","%s hours"],"global_hours":["","%s hour","%s hours"],"global_minutes_accusative":["","%s minute","%s minutes"],"global_minutes":["","%s minute","%s minutes"],"global_seconds_accusative":["","%s second","%s seconds"],"global_age_seconds":["","%s second","%s seconds"],"global_and":"{before} and {after}","mail_invitation_sended_ago":"Invite sent {when}","mail_messages_expired":["","{count} message self-destructed","{count} messages self-destructed"],"mail_expired_message":"Message self-destructed","mail_im_n_chat_members":["","%s member","%s members"],"mail_group_calls_im_search_tt":"Start a group call here","mail_group_calls_im_search_new_year_tt":"Celebrate with loved ones! <br\/> VK Calls bring everyone together ","mail_im_mention_all":"All chat members","mail_im_mention_online":"Everyone who is online right now","mail_retry":"Retry","mail_im_new_messages":["","%s new message","%s new messages"],"mail_join_invite_error_title":"Error joining the chat","mail_error":"Error","mail_im_add_to_friends_accept":"Accept request","mail_follow_to_friend":"Follow","mail_im_add_to_friends":"Add friend","mail_im_peer_search":"Search message history","mail_block_comm_messages":"Block messages","mail_block_notify_messages":"Disable notifications","mail_allow_comm_messages":"Allow messages","mail_im_delete_email_contact":"Delete chat","mail_im_delete_all_history":"Clear message history","mail_im_mute":"Disable notifications","mail_pin_chat":"Pin to chat list","mail_unpin_chat":"Unpin from chat list","mail_im_unmute":"Enable notifications","mail_im_show_media_history_group":"Show attachments","mail_im_show_media_history":"Show attachments","mail_block_user":"Block user","mail_im_create_chat_with":"Add members","mail_im_add_to_chat":"Add to chat","mail_im_invite_to_chat":"Invite to chat","mail_return_to_vkcomgroup":"Join channel","mail_return_to_chat":"Return to chat","mail_menu_pin_hide":"Hide pinned message","mail_menu_pin_show":"Show pinned message","mail_menu_unpin":"Unpin message","mail_vkcomgroup_settings":"Channel info","mail_settings":"Chat info","mail_im_call_audio":"Voice call","mail_im_call_video":"Video call","mail_im_call_app":"Call on app","mail_menu_mark_unread":"Mark as unread","mail_im_call_by_name":"Call as","mail_im_enable_business_notify":"Subscribe","mail_im_disable_business_notify":"Disable notifications","mail_im_archive":"Archive","mail_im_unarchive":"Unarchive","mail_im_business_notify":"Business notifications","mail_report_user":"Report","mail_user_unblacklist":"Unblock","calls_im_call_finish":"End сall in chat","mail_im_report_ugc_sticker":"Report","stickers_popup_me_chat_user_settings_turn_on_animation":"Enable sticker animation","stickers_popup_me_chat_user_settings_turn_off_animation":"Disable sticker animation","stickers_popup_me_chat_user_settings_admin_disabled_animation":"Администратор отключил анимацию стикеров","stickers_popup_me_chat_user_settings_common_animation_disabled":"Automatic animation disabled for all stickers","mail_unread_message":"Unread message","mail_call_snippet_outgoing_video":"Outgoing video call","mail_call_snippet_outgoing":"Outgoing call","mail_call_snippet_incoming_video":"Incoming video call","mail_call_snippet_incoming":"Incoming call","mail_call_snippet_finished":"Ended","mail_call_snippet_canceled":"Canceled","mail_call_snippet_missed":"Missed","mail_call_declined":"Call declined","mail_call_snippet_declined":"Declined","mail_call_snippet_group":"Group call","me_start_call":"Call","mail_was_edited_short":"(edited)","mail_source_info":"Со страницы: {link}<br>{info}","mail_was_source_short":"(доп.)","mail_gift_message_sent":["","sent a gift","sent a gift"],"mail_money_request_message_sent":["","requested a money transfer","requested a money transfer"],"mail_money_tranfer_message_sent":["","transferred money","transferred money"],"mail_by_you":"You","mail_im_chat_created":["","{from} created {title}","{from} created {title}"],"mail_im_title_updated_channel":["","{from} changed the channel name: {title}","{from} changed the channel name: {title}"],"mail_im_title_updated_dot":["","{from} renamed the chat to {title}","{from} renamed the chat to {title}"],"mail_im_returned_to_chat":["","{from} returned to the chat","{from} returned to the chat"],"mail_im_invited":["","{from} added {user}","{from} added {user}"],"mail_im_left":["","{from} left the chat","{from} left the chat"],"mail_im_kicked_from_chat":["","{from} removed {user}","{from} removed {user}"],"mail_im_photo_set":["","{from} updated the chat photo","{from} updated the chat photo"],"mail_im_photo_removed_channel":["","{from} deleted the channel cover","{from} deleted the channel cover"],"mail_im_photo_removed":["","{from} deleted the chat photo","{from} deleted the chat photo"],"mail_im_pin_message":["","{from} pinned a message: {msg}","{from} pinned a message: {msg}"],"mail_im_pin_message_empty2":["","{from} pinned {link}a message{\/link}","{from} pinned {link}a message{\/link}"],"mail_im_unpin_message":["","{from} unpinned "{msg}"","{from} unpinned "{msg}""],"mail_im_unpin_message_empty2":["","{from} unpinned {link}the message{\/link}","{from} unpinned {link}the message{\/link}"],"mail_im_invite_by_link":["","{from} joined the chat via link","{from} joined the chat via link"],"mail_im_invite_by_message_request":["","{user} invited {from} to the chat","{user} invited {from} to the chat"],"mail_im_chat_own_screenshot":"You took a screenshot of the chat","mail_im_chat_screenshot":["","{from} took a screenshot of the chat","{from} took a screenshot of the chat"],"mail_im_start_group_call":["","{from} started a group call","{from} started a group call"],"mail_im_invited_to_call":["","{from} added {user} to the call","{from} added {user} to the call"],"mail_im_invite_by_call_link":["","{from} joined the call via link","{from} joined the call via link"],"mail_creation_count_mr_service_msg":["","%s invite sent (only you can see this)","%s invites sent (only you can see this)"],"mail_im_accepted_message_request":"This is {contact} from your contact list","mail_im_accepted_message_request_no_name":"an unnamed contact","mail_im_kick_user_call_block":["","{from} removed {user} from call","{from} removed {user} from call"],"mail_im_chat_kick_don":"You were removed from the chat because you no longer support the community through VK Donut","mail_im_change_chat_theme_easter_egg":["","{from} changed the chat theme to {style}. Chat themes are available on the mobile app. {link}Learn more{\/link}","{from} changed the chat theme to {style}. Chat themes are available on the mobile app. {link}Learn more{\/link}"],"mail_im_change_chat_theme":["","{from} changed the chat theme to {style}. Chat themes are available on the mobile app. {link}Learn more{\/link}","{from} changed the chat theme to {style}. Chat themes are available on the mobile app. {link}Learn more{\/link}"],"mail_im_reset_chat_theme":["","{from} reset the chat theme. Chat themes are available on the mobile app. {link}Learn more{\/link}","{from} reset the chat theme. Chat themes are available on the mobile app. {link}Learn more{\/link}"],"mail_im_call_transcription_failed":"Не удалось создать расшифровку: речь в звонке не распознана","mail_no_support":"Message not supported by your application.","mail_conversation_style_easter_egg":"Beautiful","mail_conversation_style_candy":"Pink","mail_conversation_style_crimson":"Red","mail_conversation_style_default":"Default","mail_conversation_style_disco":"Disco","mail_conversation_style_emerald":"Green","mail_conversation_style_frost":"Icy","mail_conversation_style_lagoon":"Light blue","mail_conversation_style_marine":"Marine","mail_conversation_style_sunset":"Orange","mail_conversation_style_unicorn":"Soft","mail_conversation_style_valentine":"Romance","mail_conversation_style_warm_valentine":"Valentine's","mail_conversation_style_new_year":"New Year","mail_conversation_style_halloween_violet":"Mystical","mail_conversation_style_halloween_orange":"Pumpkin","mail_conversation_style_midnight":"Blue","mail_conversation_style_retrowave":"Retrowave","mail_conversation_style_twilight":"Twilight","mail_conversation_style_womens_day":"Spring","mail_conversation_style_mable":"Default","mail_hide_unpin_hover":"Hide","global_online_was_recently":["","seen recently","seen recently"],"global_online_was_week":["","seen this week","seen this week"],"global_online_this_month":["","seen this month","seen this month"],"global_online_long_ago":["","seen a long time ago","seen a long time ago"],"mail_callback_popup_title":"Open link?","mail_callback_popup_text":"{name} is asking if you want to open {domain}","box_cancel":"Cancel","global_open":"Open","mail_keyboard_label_location":"Send your location","mail_keyboard_label_vkpay":"Pay with VK Pay","mail_new_unread_msgs":"Unread messages","mail_im_set_reaction":"Leave reaction","mail_im_mark_forward":"Forward","mail_im_reply":"Reply","mail_im_edit":"Edit","mail_important_message":"Starred message","mail_send3":"Your message has been sent","mail_ad_tag_easy_promoted_market":"From product ad","mail_ad_mail_ru_tag_text_prefix":"From VK Ads","mail_ad_tag_text_prefix":"Из рекламы ВКонтакте","mail_ad_tag_no_access_text":"From ad","mail_ad_tag_no_access_box_title":"Error","mail_im_peer_profile_extra_tags":["","%s tag","%s tags"],"mail_folder_action_show_business_notify":"Return business notifications to chat list","mail_folder_action_show_archive":"Return archive to chat list","mail_folder_action_show_default":"Return section to chat list","groups_have_donuts_total":["","%s donation","%s donations"],"groups_wkview_donuts_total":["","%s donation","%s donations"],"mail_im_peer_profile_tags_label_text":"Tags:","mail_im_peer_profile_manage_tags":"Manage tags","mail_im_peer_profile_info_label_text":"Information:","mail_peer_profile_likes_replies_tooltip":"Likes and comments data is shown for the past 100 days","mail_im_peer_profile_info_empty":"none","mail_im_peer_profile_note_label_text":"Comment:","mail_im_peer_profile_note_add_link":"Add comment","mail_im_peer_profile_note_edit_link":"Edit","mail_im_peer_profile_join_date_label_text":"Started following:","mail_im_peer_profile_join_date_empty_text":["","Not following","Not following"],"mail_im_peer_profile_manage_tags_success":"Tags saved","mail_im_peer_profile_save_note_success":"Comment saved","mail_im_peer_profile_delete_note_success":"Comment deleted","mail_im_peer_profile_tags_empty":"No tags","mail_im_peer_profile_toggle_tags_on":"Show available tags","mail_im_peer_profile_toggle_tags_off":"Hide available tags","mail_im_peer_profile_manage_tags_box_title":"Manage","mail_im_peer_profile_manage_tags_add_link":"Add tag","mail_im_peer_profile_tag_delete_confirmation_text_single":"The tag "{tag_name}" is used in one chat. If you delete this tag, it will be removed from the chat. Are you sure you want to do this?","mail_im_peer_profile_tag_delete_confirmation_text":["","The tag "{tag_name}" is used in %s chat. If you delete this tag, it will be removed from all chats. Are you sure you want to do this?","The tag "{tag_name}" is used in %s chats. If you delete this tag, it will be removed from all chats. Are you sure you want to do this?"],"mail_im_peer_profile_note_delete_link":"Delete comment","mail_im_peer_profile_note_box_title":"Administrator's comment","mail_im_peer_profile_note_box_placeholder":"Enter text...","mail_im_peer_profile_note_delete_confirmation_text":"Are you sure you want to delete this comment?","mail_ad_tag_no_access_box_text":"Insufficient permissions in the advertising account to view this ad.","mail_im_peer_profile_manage_tags_placeholder":"New tag","mail_im_peer_profile_manage_tags_remove":"Delete tag","apps_app_widgets_preview_box_title":"App widget preview","apps_app_widget_preview_note_text":"This app will be able to update the community's widget content","apps_app_widgets_preview_box_privacy_label":"Widget visible to","apps_app_widgets_preview_box_update":"Update widget in community","apps_app_widgets_preview_box_install":"Add widget to community","apps_app_widgets_preview_box_privacy_option_subscribers":"Followers only","apps_app_widgets_preview_box_privacy_option_everyone":"All users","apps_app_widgets_preview_box_privacy_option_no_one":"No one","apps_app_widgets_preview_box_privacy_option_admins":"Admins only","apps_app_widget_preview_empty":"In this case the widget won't be shown","apps_connect_modal_messages_scopes_available":"The service will have access to:","apps_group_access_request":"The application access to the data of "%s"","apps_connect_modal_btn_cancel":"Deny","apps_connect_modal_btn_ok":"Allow","apps_connect_modal_messages_community_request_token":"Access to this community","vkapps_no_admin_communities_warning":"You are not an administrator of any communities","apps_connect_add_to_community_app_cant_install":"The service administrators have restricted it from being added to communities","apps_connect_modal_btn_undo":"Cancel","apps_connect_modal_btn_add":"Add","apps_connect_modal_messages_request_add_to_community":"Add the mini app to your community?","apps_connect_modal_messages_request_phone":"The app is requesting access to your phone number","apps_connect_modal_messages_request_phone_text":"The app will be able to see the phone number linked to your page","apps_connect_modal_messages_request_email":"The app is requesting access to your email address","apps_connect_modal_messages_request_email_text":"This is needed for our app to work properly.","apps_connect_modal_messages_send_install_push":"{app_name} is offering to launch the mini app on your mobile device","vkapps_connect_modal_game_request_token_available_title":"The game will have access to:","vkapps_connect_modal_game_request_token":"The game is requesting access","apps_connect_modal_messages_request_token_var":"{app_name} is requesting access to your account","apps_wall_post_box_title":"Publish post","vkapps_connect_modal_cancel":"Cancel","vkapps_connect_modal_buy":"Buy","vkapps_connect_buy_waiting_item_title":"Please wait","vkapps_connect_buy_waiting_item_desc":"Loading information <br>about the product…","vkapps_connect_auto_buy_title":"Don't confirm purchases","vkapps_connect_auto_buy_desc":"This confirmation won't be shown starting from the next purchase","vkapps_connect_auto_buy_success_title":"Payment successful","vkapps_connect_auto_buy_success_desc":"The payment will be processed by the game within a few minutes","vkapps_connect_modal_order_not_allowed_error_title":"App not verified by moderator","vkapps_connect_auto_buy_error_title":"An error occurred","vkapps_connect_modal_order_not_allowed_error_desc":"Payments will only be available after verification","vkapps_connect_auto_buy_error_desc":"Please try again.<br>We apologize for any inconvenience.","vkapps_connect_modal_back_to_service":"Back to mini app","vkapps_connect_modal_continue_play":"Continue playing","payments_miniapps_order_modal_continue":"Продолжить","payments_miniapps_order_success_title":"Оплата прошла","payments_miniapps_order_success_desc":"Платёж будет обработан приложением в течение нескольких минут","apps_connect_modal_btn_invite_cancel":"Cancel","apps_connect_modal_btn_invite_ok":"Send","apps_connect_modal_messages_request_add_to_favorites":"Add app to favorites?","apps_connect_modal_messages_request_add_to_favorites_text":"The app is requesting permission to add it to favorites","vkapps_connect_modal_subscription_already_cancelled":"Subscription already canceled","vkapps_connect_modal_subscription_unknown_error_title":"Failed to load subscription information","vkapps_connect_modal_subscription_unknown_error_desc":"Please try again later","vkapps_connect_modal_cancel_subscription_in_service":"Cancel {subscription_name} in {app_name}?","vkapps_connect_modal_cancel_subscription_in_game":"Cancel {subscription_name} in {app_name}?","apps_connect_n_votes":["","{count} vote","{count} votes"],"apps_connect_days":["","{count} day","{count} days"],"vkapps_connect_modal_subscription_charges_info":"{votes} every {period}","vkapps_connect_subscription_next_bill_time":"The next payment is scheduled for {date}.","vkapps_connect_modal_back_to_game":"Continue playing","vkapps_connect_modal_subscription_cancel_error_title":"Failed to cancel subscription","vkapps_connect_modal_subscription_cannot_be_resumed_error":"Subscription can't be resumed","vkapps_connect_modal_subscription_not_found_error":"Subscription not found","vkapps_connect_modal_subscription_already_exists_error":"You're already subscribed","vkapps_connect_modal_subscription_not_allowed_error_title":"App not verified by moderator","vkapps_connect_modal_subscription_not_allowed_error_desc":"Subscriptions will be available after verification","vkapps_connect_modal_subscription_resume_title":"Resume {subscription_name}","vkapps_connect_modal_subscription_error_title_not_enough_votes":"Insufficient votes to subscribe","vkapps_connect_modal_subscription_error_desc_not_enough_votes":"Top up your balance and try again","vkapps_connect_modal_subscription_resuming_error_title":"Failed to resume subscription","vkapps_connect_modal_subscription_payment_error_title":"Failed to pay for subscription","vkapps_connect_modal_subscription_purchase_error_title":"Failed to purchase subscription","vkapps_connect_modal_keep_subscription":"Keep subscription","vkapps_connect_modal_cancel_subscription":"Cancel subscription","vkapps_connect_subscription_waiting_item_desc":"Loading subscription<br>information…","vkapps_connect_modal_confirm":"Confirm","vkapps_connect_modal_subscription_charges_info_after_trial":"Then {votes} every {period}","vkapps_connect_modal_subscription_trial_duration":"First {days_count} free","vkapps_connect_modal_subscription_votes_balance":"Your balance: {votes}","vkapps_connect_subscription_duration_info":"The next payment is scheduled for {date}. You can always cancel your subscription in the {link}payment settings{\/link}.","vkapps_connect_modal_try_for_free":"Try for free","vkapps_connect_modal_resume":"Resume","apps_connect_modal_btn_recommend":"Recommend","apps_connect_modal_title_recommend":"Do you recommend this mini app?","apps_connect_modal_description_recommend":"Your friends will be notified about your<br>recommendation and see the mini app in<br>the recommendations block of Hub","apps_connect_modal_btn_not_now":"Не сейчас","apps_connect_modal_btn_login":"Sign in","apps_connect_modal_messages_enter_call_title":"Войти в звонок?","apps_connect_modal_messages_enter_call_description":"Войдите сейчас или присоединитесь позже. Завершить звонок для всех может только<br>его создатель.","apps_get_friends_box_titles":"Select friends","friends_flist_can_select_new":"You can choose friends from the list below.","apps_done":"Done","groups_app_widget_donation_funded":"collected","groups_app_widget_backers":["","%s person","%s people"],"groups_app_widget_donation_donated":"donated","me_snackbar_success_add_game_attach":"Game added","me_snackbar_success_add_miniapp_attach":"Mini app added","me_snackbar_open_chat":"Open chat","me_snackbar_fail_title":"Something went wrong","me_snackbar_fail_subtitle":"Please try again","mobile_attachments_add_app_to_chat_confirm_modal_cancel":"Cancel","mobile_attachments_add_app_to_chat_confirm_modal_add":"Add","me_app_action_attach_choose_chat":"Select chat","mobile_attachments_add_app_to_chat_confirm_modal":"Add<br>{action_title}<br>to chat?","me_add_app_action_attach_to_chats_title":"Add {action_title} <br\/> to chat? ","me_add_app_action_attach_to_chats_subtitle":"You can use the mini app together with other users","friends_list_show_selected":"show selected friends","apps_no_friends_for_query":"Nothing found","apps_recommendation_notification_hint_text":"You can recommend {br} in the additional menu","apps_notification_auto_enabled":"This mini app can now send you notifications","apps_notification_auto_enabled_settings":"Settings","apps_alert_personal_discount_button":"Learn more","apps_recommendation_proposal_modal_header_text":"Do you recommend this mini app?","apps_recommendation_proposal_modal_subheader_text":"{p}Your friends will be notified about your recommendation and see the app in the recommendations block of Hub{\/p}","apps_recommendation_proposal_modal_button_recommend":"Recommend","apps_recommendation_proposal_modal_button_cancel":"Cancel","apps_add_to_community_subheader_text":"Приложение предлагает вам подписаться на это сообщество","apps_add_to_community_modal_button":"Подписаться","calls_unsupported_browser_error":"The call failed because your browser is out of date. To make calls, update your browser.","calls_unknown_error":"Unknown error","calls_anonymous":"Anonymous","calls_your_group":"Your community","calls_your_profile":"Your profile","calls_join_screen_always_open_in_browser":"Always open in browser","calls_join_in_app":"Join through app","calls_join":"Join","calls_join_screen_input_name_placeholder":"Your name","calls_error_no_cam_and_mic":"Camera and microphone access required.","calls_error_no_cam":"Camera access required.","calls_error_no_mic":"Microphone access required.","calls_mic_camera_permission_instruction_link":"If you have trouble allowing access, you can read the {link}instructions here{\/link}.","calls_permission_camera_error":"Make sure the camera is connected to your device. If the camera is connected but not working, allow the browser access to it.","calls_permission_mic_error":"Make sure the microphone is connected to your device.<br>If the microphone is connected but not working, allow the browser access to it.","calls_mic_camera_permission":"To turn on your microphone and camera, allow the browser access to them.","calls_error_cameralock":"Failed to access camera. Another app may already be using the camera.","calls_error_miclock":"Failed to access microphone. Another app may already be using it.","calls_error_nomic":"Microphone not found","calls_error_screenpermission":"Please provide access to screen sharing","calls_error_screenlock":"Failed to access screen sharing. Another app may already be sharing your screen.","calls_settings_no_camera":"Camera not found","calls_settings_no_mic":"Microphone not found","calls_oops":"Error","calls_landing_standalone_title":"VK Calls: the app for group video calls","calls_missing_incoming_call_title":"Missed call","calls_missing_incoming_call_text":"From {name}","calls_or":"or","calls_close":"Close","calls_camera_turn_off":"Turn off camera","calls_camera_turn_on":"Turn on camera","calls_choose_device":"Select a device","calls_mic_turn_off":"Turn off microphone","calls_mic_turn_on":"Turn on microphone","calls_call_by_name_audio_button":"Voice call","calls_call_by_name_video_button":"Video call","calls_error":"Error","calls_history_delete_and_finish_call_button":"Delete and finish","calls_history_delete_call_button":"Delete from history","calls_history_delete_group_call":"Are you sure want to delete the group call on %date from %name?","calls_history_delete_missed_call":"Are you sure want to delete the missed call on %date from %name?","calls_history_delete_inbound_call":"Are you sure want to delete the incoming call on %date from %name?","calls_history_delete_declined_call":"Are you sure want to delete the declined call on %date from %name?","calls_history_delete_outbound_call":"Are you sure want to delete the outgoing call on %date to %name?","calls_page_menu_all_calls":"Home","calls_page_menu_friends_calls":"Call friends","calls_page_menu_current_calls":"Active","calls_scheduled":"Scheduled","calls_history":"History","calls_page_menu_miss_calls":"Missed","calls_page_menu_decoding_calls":"Call transcriptions","global_unexpected_error_try_later":"Unknown error. Try again later.","calls_edit_call_title":"Edit call","calls_broadcast_history_preview_deleted_description":"The video was deleted or is unavailable","calls_own_label":"You","calls_join_call_by_link_modal_continue":"Continue","calls_join_call_by_link_modal_join_call":"Join call","calls_join_call_by_link_modal_insert_link":"Enter the link or meeting number","calls_join_call_by_link_modal_insert_password":"Enter the password","calls_already_in_call_error":"End the current call to join a new one.","calls_incoming_call_to_contact":"Is calling you to your phone number","calls_incoming_videocall":"Incoming video call","calls_incoming_audiocall":"Incoming voice call","calls_reply_with_audio":"Answer with audio","calls_reply":"Answer","calls_reject_call":"Decline call","calls_reject":"Decline","calls_reply_with_video":"Answer with video","calls_incoming_collapsed":"Incoming","calls_error_cant_add_because_of_privacy":"This user cannot be added to the call due to the chat's privacy settings","calls_add_to_call":"Add to call","calls_add_participants_to_call":"Invite to call","calls_enable_last_chat_messages":"Show last 250 messages in the chat","calls_management_add_warning":"New participants will be added to the chat","calls_noise_neural":"Auto","calls_settings_noise_auto_desc":"Suppresses background noise so you can be heard better","calls_noise_simple":"Low","calls_neuter_disabled":"Disabled","calls_video_quality_high":"Maximum","calls_video_quality_high_desc":"Highest image quality possible","calls_video_quality_optimal":"Optimal","calls_video_quality_optimal_desc":"The quality is reduced to lessen the load on the device and network. Recommended when internet connection is weak.","calls_video_resolution_fhd":"High definition","calls_exit_call_disconnect_all":"Remove all","calls_force_call_finish_v2":"End call for everyone","calls_exit_call_desc":"You can remove all participants from the call or simply leave","calls_sure_leave_call_v2":"Ending the call will end it for all participants and make the call link unavailable","calls_leave_call_title":"Do you want to leave?","calls_cancel":"Cancel","calls_exit":"Leave","calls_exit_call":"Leave call","calls_reject_title":"Decline call","calls_hangup_title":"End call","calls_reject_description":"Are you sure you want to decline the call?","calls_hangup_description":"Are you sure you want to end the call?","calls_cancel_reject":"Don't decline","calls_mute_participant_dialog_action_v2":"Turn off one time","calls_mute_participant_dialog_title_audio":"Turn off {name}'s microphone","calls_unmute_participant_dialog_title_audio_v2":"Allow {name} access to microphone","calls_mute_participant_dialog_title_only_screen_share":"Disable {name}'s screen sharing?","calls_enable_video":"Turn on video","calls_mute_participant_dialog_title_only_video":"Turn off {name}'s video","calls_unmute_participant_dialog_title_only_video_v2":"Allow {name} access to video","calls_mute_participant_dialog_action_mics":"Turn on microphones","calls_mute_all_participants_audio_title":"Mute participants","calls_unmute_all_participants_audio_title":"Allow participants access to microphone","calls_unmute_cameras":"Turn on cameras","calls_mute_all_participants_cameras":"Disable participants' access to camera","calls_unmute_all_participants_cameras":"Allow participants access to camera","calls_mute_participant_permanent_dialog_action":"Turn off permanently","calls_dialog_unmute_request_audio_and_video_title":"Microphone and video","calls_dialog_unmute_request_audio_and_video_description":"The administrator requested you to turn on your microphone and video","calls_dialog_unmute_request_mic_only_action":"Turn on only microphone","calls_dialog_unmute_request_action":"Turn on microphone and video","calls_dialog_unmute_request_audio_title":"Microphone","calls_dialog_unmute_request_audio_description":"The administrator requested you to turn on your microphone","calls_dialog_unmute_request_mic_action":"Turn on","calls_dialog_unmute_request_video_title":"Video","calls_dialog_unmute_request_video_description":"The administrator requested you to turn on your video","calls_dialog_unmute_request_camera_only_action":"Turn on","calls_dialog_assign_admin_role_title":"Appoint administrator","calls_dialog_assign_admin_role_description":"Are you sure you want to give control of the call to {name}?","calls_dialog_assign_admin_role_action_later":"Later","calls_dialog_assign_admin_role_action_primary":"Appoint administrator","calls_translation_menu_title":"Live stream call","calls_translation_menu_stop":"End stream","calls_translation_menu_link":"Live stream page","calls_translation_stop":"End stream","calls_translation_link":"Live stream call link","calls_admin_pin_dialog_title":"Turn on microphone","calls_admin_pin_dialog_description":"The administrator has pinned your video for everyone. Turn on microphone and start talking?","calls_admin_pin_dialog_cancel":"Later","calls_admin_pin_dialog_action":"Turn on microphone","calls_error_try_again_later":"Please try again later","calls_recording_start_error_title":"Failed to start recording","calls_translation_start_error_title":"Failed to launch live stream","calls_kick_participant_text":["","{user} will be removed from the call","{user} will be removed from the call"],"calls_kick_participant_from_waiting_hall_text":["","{user} will be removed from the waiting room","{user} will be removed from the waiting room"],"calls_kick_participant_kick_button_text":"Remove","calls_kick_participant_from_waiting_hall_button_text":"Remove","calls_kick_participant_with_ban_setting":"Can rejoin the call","calls_kick_participant_from_waiting_hall_with_ban_setting":"Can rejoin the call","calls_feedback_reason_did_not_hear_interlocutor":"I couldn't hear the other person","calls_feedback_reason_did_not_see_interlocutor":"I couldn't see the other person","calls_feedback_reason_bad_video_quality":"Poor video quality","calls_feedback_reason_video_freezes":"Video froze","calls_feedback_reason_very_quiet_sound":"Sound was too quiet","calls_feedback_reason_bad_sound_quality":"Poor sound quality","calls_feedback_reason_sound_did_not_match_the_video":"Video and sound out of sync","calls_feedback_reason_failed_to_turn_on_camera_or_microphone":"Camera or microphone wouldn't turn on","calls_rate":"Rate call","calls_feedback_custom_reason_placeholder":"Other","calls_feedback_default_title":"Please rate the quality of the call","calls_feedback_advance_title":"What went wrong?","calls_unban_participant_text":["","You're trying to add a blocked user to the call","You're trying to add blocked users to the call"],"calls_unban_participant_description_text_one_person":["","{user} was blocked by the administrator","{user} was blocked by the administrator"],"calls_unban_participant_description_text_two_persons":"{users} were blocked by the administrator","calls_unban_participant_description_text_more_persons":["","{users} and {users_count} other user were blocked by the administrator","{users} and {users_count} others were blocked by the administrator"],"calls_unban_participant_cancel_button_text":"Cancel","calls_unban_participant_ok_button_text":"Unblock and add","calls_unban_participant_disallowed_button_text":"Got it","calls_waiting_hall_removed":"You've been blocked from the call","calls_waiting_hall_info":"Please wait for the administrator to let you into the call","calls_create_call_by_link_phone_option_allow_always":"Allowed when joining and during the call","calls_create_call_by_link_phone_option_disallow_entrance":"Turned off only when joining","calls_create_call_by_link_phone_option_disallow_always":"Fully turned off","calls_user_busy":"User busy","calls_user_busy_description":"{username} is currently on another call and can't answer you","calls_opponent":"This user","calls_admin_ended_call_for_everyone":"The administrator ended the call for everyone","calls_meeting_ended_title":"Call ended","calls_meeting_ended_desc":"The administrator has removed all participants from the call","calls_warning_ok":"OK","calls_call_is_interrupted":"Call dropped","calls_you_have_been_banned":"You've been blocked from this call.","calls_failed_to_connect":"Failed to join","calls_enter_not_allowed":"The administrator has restricted you from joining this call","calls_you_have_been_kicked":"You were removed from the call.","calls_kicked_because_another_device":"You joined the call from another device","calls_message_sent":"Message sent","calls_error_internal_title":"Something went wrong","calls_error_internal_desc":"Try again later","calls_create_call_by_link_copied":"Call link copied","calls_broadcast_planning_link_copied":"Link to live stream copied","calls_short_link_with_password_template":"{link} (Password to join: {password})","calls_create_call_by_link_text_copied":"Call invite copied","calls_send_call_link_title":"Call invite","calls_plan_event":"Schedule call","calls_qr_code_modal_share_cta_message":"Join using the QR code or via the link: {link}","calls_share_qr_code":"Share QR code","calls_rooms_admin_requests_for_help":"Requests for help","calls_rooms_choose_title":"Join breakout room","calls_rooms_members":["","participant","participants"],"calls_rooms_return_to_room":"Join","calls_room_control_create_default_room_name":"Room","calls_room_control_action_move_participant":"Move participant to","calls_room_control_main_room_title":"Main room","calls_room_control_move_to_main_room":"Move to main room","calls_room_control_rooms_tooltip_rename":"Rename","calls_room_control_move_button":"Move","calls_room_control_action_remove_room":"Delete room","calls_room_control_auto_divide_title":"Assign participants","calls_room_control_auto_divide_desc":"Participants from the Not assigned list<br>will be randomly and evenly divided among<br>the breakout rooms.","calls_room_control_retry_cancel":"Cancel","calls_room_control_auto_divide_submit":"Assign","calls_room_control_retry_title":"Recreate rooms?","calls_room_control_retry_desc":"Participant lists and all settings will be reset. You’ll start over by selecting the number of rooms.","calls_room_control_retry_submit":"Recreate","calls_room_control_close_title":"Close rooms?","calls_room_control_close_desc":"Group work will be stopped. All participants will<br>automatically be moved to the main room.","calls_room_control_cancel_submit":"Close","calls_room_control_rename_title":"Room name","calls_room_control_rename_placeholder":"Enter a new name","calls_room_control_rename_cancel":"Cancel","calls_room_control_rename_submit":"Save","calls_room_control_create_room_title":"New room","calls_room_control_create_room_placeholder":"Enter a name","calls_room_control_create_room_cancel":"Cancel","calls_room_control_create_room_submit":"Add","calls_room_control_send_message_modal_header":"Message for participants","calls_room_control_send_message_modal_placeholder":"Enter the message text","calls_room_control_send_message_modal_action":"Broadcast message","calls_room_request_help_title":"Request for help","calls_room_request_help_desc":"{name} is requesting help ({roomName}).<br>Go to the room to help the participant.","calls_room_request_help_cancel":"Not now","calls_room_request_help_submit":"Go to room","calls_asr_modal_validation_wrong_symbols":"Use only letters and numbers","calls_asr_modal_validation_length":"Maximum 128 characters","calls_asr_start_modal_content_default_value":"Transcription for Group call on {date}","calls_asr_stop_modal_title":"Stop transcription","calls_asr_start_modal_title":"Record call transcription","calls_asr_start_modal_content_description_without_chat":"A text file with the recorded conversation will be available in the Call transcriptions section","calls_asr_start_modal_content_description":"A text file with the recorded conversation will be available in the chat and in the Call transcriptions section","calls_asr_stop_modal_content":"Are you sure you want to stop transcribing the call?","calls_asr_start_modal_content_title":"Name","calls_asr_modal_stop_button":"Stop","calls_asr_modal_start_button":"Record transcription","calls_asr_modal_cancel_button":"Cancel","calls_room_remove_translation_participant_confirm":"End and move","calls_room_leave_remove_watch_together_participant_host":"If you move {name} to a different room, joint viewing of the video will end for all participants in this room","calls_room_leave_remove_record_participant_host":"If you move {name} to a different room, the call recording of this room will stop","calls_room_leave_remove_stream_participant_host":"If you move {name} to a different room, the live stream of this room will end","calls_room_leave_remove_watch_together_modal_to_room_confirm":"End and switch rooms","calls_room_leave_remove_watch_together_modal_to_room_body":"If you move to a different room, joint viewing of the video will end for all participants in this room","calls_room_leave_remove_record_modal_to_room_body":"If you move to a different room, the call recording of this room will stop","calls_room_leave_remove_stream_modal_to_room_body":"If you move to a different room, the live stream of this room will end","calls_room_leave_remove_watch_together_modal_confirm":"End and leave","calls_room_leave_remove_watch_together_modal_body":"If you leave, joint viewing of the video will end for all participants in this room","calls_room_leave_remove_record_modal_body":"If you leave, the call recording of this room will stop","calls_room_leave_remove_stream_modal_body":"If you leave, the live stream of this room will end","calls_room_leave_remove_watch_together_modal_header":"End joint viewing for everyone?","calls_room_leave_remove_record_modal_header":"Stop recording?","calls_room_leave_remove_stream_header":"End live stream?","calls_room_record_stopped":"Call recording stopped","calls_room_stream_stopped":"Live stream ended","calls_room_admin_closed_rooms":"The administrator closed the rooms","calls_turn_on_camera_to_see_video":"Turn on your camera<br>to see your video","calls_mic_not_available":"Your microphone may not be connected, or the browser doesn't have access to it","calls_no_camera":"Camera not found","calls_cam_not_available":"Your camera may not be connected, or the browser doesn't have access to it","calls_download_and_install_vk_messenger":"Download and install VK Messenger app","calls_download_and_install_vk_calls":"Download and install VK Calls app","calls_app_download_vkme_modal_description":"After <b>downloading and installing<\/b> the VK Messenger app, press <b>Sign in through app<\/b> again","calls_app_download_modal_description":"After <b>downloading and installing<\/b> the VK Calls app, press <b>Sign in through app<\/b> again","calls_download_app":"Download app","calls_always_open_in_browser_p1":"Always open calls in the browser<br>(you can edit this in the call settings)","calls_press_open_app_in_window_p1":"Press {highlighted} in window that appears","calls_press_open_app_in_window_p2":"Open VK Calls app","calls_if_not_appeared_press_btn_above":"If the window doesn't open, press the button below","calls_open_app_vk_calls":"Open VK Calls app","calls_start_call_with_browser":"Start call from browser","calls_join_call_in_browser":"Join call from browser","calls_call_by_name_title":"Call as","calls_call_by_name_search_placeholder":"Search","calls_call_by_name_list_header":"Your profiles and communities","calls_call_by_name_not_found":"Profiles and communities not found","calls_save":"Save","calls_your_profile_will_hidden":"Your profile will be hidden","calls_join_as":"Join as","calls_name_that_will_be_seen_in_calls":"Name seen in call","calls_history_delete_modal_title":"Delete call","calls_history_missed_list_header":"Missed","calls_history_missed_list_stub":"A list of your missed calls will appear here","calls_history_current_list_header":"Ongoing calls","calls_history_current_calls_list_stub":"You don't have any ongoing calls","calls_history_dropdown_item_audio":"Voice call","calls_history_dropdown_item_video":"Video call","calls_page_friends_not_found":"No friends found","calls_show_all_friends":"Show all friends","calls_history_show_all_friends_header_link":"Show all","calls_history_friends_block_header":"Call friends","calls_call_user":"Call {user}","calls_history_show_all_header_link":"Show all","calls_decoded_page_title":"Call transcriptions","calls_decoded_page_deleted_item":"Transcription deleted","calls_decoded_page_empty_list":"You don't have any transcriptions","calls_dropdown_ios_download_disabled_v2":"Currently unavailable for download. Please use the desktop version {link}","calls_dropdown_ios_call_from_web":"Call from computer","calls_app_banner_vk_calls":"VK Calls","calls_history_desktop_banner_description":"Call friends or hold video conferences","calls_history_desktop_banner_sub_description":"No limits on time or number of participants","calls_app_for_mobile":"Mobile app","calls_download_in_appstore":"Download in App Store","calls_show_ios_app_qr":"Show QR code with link to iOS app","calls_download_from_google_play":"Download in Google Play","calls_show_android_app_qr":"Show QR code with link to Android app","calls_available_in_rustore":"Available in Ru Store","calls_app_for_desktop":"Desktop app","calls_banner_asr_title":"Transcription and subtitles","calls_banner_asr_desc":"When reading is easier","calls_banner_vmoji_title":"Use vmoji instead of yourself","calls_banner_vmoji_desc_1":"When you don't want","calls_banner_vmoji_desc_2":"to be on camera in the call","calls_split_participants_in_halls":"Split participants into rooms","calls_organize_work_in_groups":"Organize work by group","calls_for_finding_joint_solutions":"to handle joint tasks","calls_call_reactions":"Reactions in calls","calls_express_your_feelings":"Express how you feel","calls_support_speakers":"support those talking","calls_watch_movies_together":"Watch videos together","calls_discuss_movies":"Discuss films","calls_and_series_in_call":"and TV series during a call","calls_learn_more":"Learn more","calls_reschedule_title":"Reschedule call","calls_reschedule_btn":"Reschedule","calls_reschedule_disclaimer":"After changing the settings, you'll need to add the call to the calendar again. Remember to delete the previous version.","calls_start_time":"Starts","calls_end":"Ends","calls_timezone":"Time zone","calls_repeat":"Recurring","calls_end_of_rrule":"Last recurring call","calls_add_to_calendar":"Add event to calendar","calls_remind":"Remind me","calls_remind_desc":"Notifications will be sent 15 minutes before the call and when it starts","calls_delete_call":"Delete call","calls_reschedule_to_other_time":"Reschedule","calls_delete":"Delete","calls_delete_call_desc":"Delete {name} {datemonth} at {time}?","calls_error_invalid_name_title":"Create call name","calls_error_invalid_name_desc":"Name must contain at least one character.","calls_error_flood_control_title":"Try again later","calls_error_flood_control_desc":"Suspicious activity was detected on your account. Please wait for some time and try again.","calls_error_invalid_time_title":"Select call time","calls_error_invalid_time_desc":"You can't select a time in the past","calls_error_invalid_broadcast_time_less_call_time_title":"Edit live stream start time","calls_error_invalid_broadcast_time_less_call_time_desc":"The live stream can't start before the call","calls_error_invalid_broadcast_time_title":"Edit live stream start time","calls_invalid_broadcast_start_time_value_greater_than_max":"A live stream can't be scheduled more than a year in advance","calls_invalid_broadcast_start_time_value_lower_than_min":"The selected time has already passed. Please select a future time.","calls_error_invalid_duration_desc":"The start time must be at least five minutes earlier than the end time","calls_error_invalid_recurrence_times_title":"Select an end time for the recurring call","calls_error_invalid_recurrence_times_desc":"The recurring call's end time must be later than the call's starting time","calls_error_loading_broadcast_records":"An error occurred while loading the live streams","calls_history_dropdown_broadcasts_modal_placeholder":"No available live streams","calls_call_menu_translation":"Live stream call","calls_tooltip_lower_hand":"Lower hand","calls_tooltip_raise_hand":"Raise hand","calls_reactions_and_hand_raising":"Reactions and hand raising","calls_leave_room":"Leave","calls_participants":"Participants","calls_show_grid":"Show participants in a grid","calls_show_orator":"Show active speaker","calls_collapse":"Minimize","calls_tooltip_fullscreen_off":"Regular","calls_tooltip_fullscreen_on":"Full screen","calls_fullscreen_mode":"Fullscreen mode","calls_hide_participants":"Hide participants","calls_show_participants":"Show participants","calls_subtitles_self_name":"You","calls_call_duration":"Call duration:","calls_busy":"Busy","calls_callee_is_offline":"Offline","calls_rejected_status":"Call rejected","calls_status_waiting":"Waiting","calls_notification_raised_hand":["","{user} raised his hand","{user} raised her hand"],"calls_reactions_default_accessibility_label":"Reaction","calls_error_disabled_screen_sharing_macos_chrome":"It looks like the browser can't get access to screen capture. Allow access to screen sharing or try disabling and enabling permission for Google Chrome. Go to System Preferences -> Security & Privacy -> Privacy -> Screen Recording.","calls_error_disabled_screen_sharing":"It looks like you've denied access to screen sharing. Allow access to share your screen.","calls_record_stop_confirmation":"End call recording","calls_record_start":"Record call","calls_call_menu_start_translation":"Launch stream","calls_room_control":"Breakout rooms","calls_call_menu_enable_subtitles":"Subtitles","calls_plural_enabled":"Enabled","calls_plural_disabled":"Disabled","calls_virtual_background":"Virtual background","calls_vmoji":"vmoji","calls_enabled":"Enabled","calls_disabled":"Disabled","calls_vmoji_settings_edit":"Edit","calls_settings":"Settings","calls_call_menu_settings":"Camera and microphone settings","calls_change_name_in_call":"Change name in call","calls_show_others_video":"Show participants' video","calls_consider_network_status":"Weak network mode","calls_consider_network_status_hint":"Participants' videos may be turned off if there's a weak connection so that you can stay on the call","calls_always_open_in_browser":"Always open calls in browser","calls_simple_pip_enabled":"Minimize call to separate window","calls_participants_access":"Participants' access","calls_call_menu_mute_audio_all_v2":"Microphones","calls_cameras":"Cameras","calls_waiting_hall":"Waiting room","calls_menu_waiting_hall_description":"Users can't join the call without your permission","calls_create_call_by_link_anon":"Anonymous joining","calls_enable_join_without_profile":"Users can join without a profile","calls_disable_to_prevent_using":"Disable to restrict participants from using these features","calls_screen_sharing":"Screen sharing","calls_call_record_and_translation":"Record and live stream","calls_reactions":"Reactions","calls_watch_movie_together":"Watch a video together","calls_request_for_enable_mic_or_camera":"Request everyone to turn on camera or microphone","calls_call_menu_debug":"Download debug logs","calls_miniapp_error_message_no_url":"Mini app has no URL","calls_back":"Back","calls_search_participants_placeholder":"Enter a first or last name","calls_call_patricipants":"Chat members","calls_call_friends":"Friends","calls_call_community_members":"Community followers","calls_call_all":"Call everyone in chat","calls_add":"Add","calls_show_more_members":"Show more members","calls_show_all_members":"Show all chat members","calls_show_more_friends":"Show more friends","calls_show_all_group_members":"Show all community followers","calls_settings_camera":"Camera","calls_video_quality":"Video quality","calls_settings_mic":"Microphone","calls_settings_noise":"Background noise<br>suppression","calls_get_url_link_error_text":"Failed to get call URL.","calls_participant_management_count":["","{count} participant","{count} participants"],"calls_management_participants":"Participants","calls_force_call_finish":"End call for everyone","calls_leave_call":"Leave call","calls_menu_link":"Call link","calls_management_link":"Call link","calls_management_link_anonymous_disallowed_hint":"Anonymous participants forbidden","calls_link_invalidate":"Update link","calls_link_copy":"Copy","calls_change_name":"Change name","calls_rename_participant":"Rename participant","calls_your_new_name":"Your new name","calls_new_name_for_particiopant":"New name for {name}","calls_rename":"Rename","calls_error_force_call_finish":"Failed to end the call for everyone.","calls_menu_link_setup":"Link settings","calls_menu_link_copy":"Copy","calls_menu_link_copied":"Copied","calls_translation_stop_confirmation":"End stream?","calls_record_stop_sure":"Are you sure you want to stop recording the call?","calls_translation_stop_sure":"The live stream recording will be available once processed","voicerooms_stop_record_form_header":"Stop recording?","voicerooms_stop_record_form_subheader":"The recording will be available once processed","calls_translation_link_info":"You can share the link to the live stream call below.","calls_translation_link_copy":"Copy","calls_translation_link_copied":"Copied","calls_dialog_creator_exit_title":"Appoint call administrator","calls_dialog_creator_exit_action":"Appoint and leave call","calls_call_participants":"Call participants","calls_dialog_creator_exit_selected":"Selected","calls_dialog_creator_exit_select":"Select","calls_waiting_hall_more_text":"Show more","calls_waiting_hall_reload_text":"Update list","calls_record_cancel_button":"Cancel","calls_translation_cancel_button":"Cancel live stream","calls_kick_participant_title":"Remove from call","calls_feedback_skip":"Close","calls_feedback_send":"Send","calls_unban_participant_title":"Add to call","calls_mirror_display_view":"Flip image","profile_no_camera_access":"No access to webcam","calls_button_allow_access":"Allow access","calls_error_upload_background_image":"An error occurred while uploading the background image.","calls_vmoji_settings_enable":"Enable","calls_vmoji_settings_disable":"Disable","calls_vmoji_settings_create_character":"Create avatar","calls_vmoji_settings_title":"Vmoji avatar in calls","calls_vmoji_settings_subtitle":"Replace your video in the call with an animated avatar","calls_create_call_by_link":"Start call","calls_create_call_by_link_title":"Invite link call","calls_create_call_by_link_description":"When you start the call, the invite link will be copied automatically","calls_create_call_by_link_by_name":"Call as","calls_menu_waiting_hall_title":"Enable waiting room","calls_show_chat_history_description":"New participants will see the last 250 messages in the call chat","calls_show_chat_history":"Show message history","calls_create_call_by_link_microphones":"Microphones","calls_reactions_description":"When disabled, reactions are only available to administrators","calls_create_call_by_link_hint_watch_together":"Participants can launch Watch Together Mode","calls_create_call_by_link_watch_together":"Joint viewing","calls_send":"Send","calls_your_message":"Your message","calls_event_planned":"Call scheduled","calls_join_by_link":"Join via link","calls_short_link_with_password":"Link with meeting number","calls_event_planned_modal_short_link_description":"Works with a password and is useful if you need to write it down or say it out loud","calls_join_broadcast_link":"Link to live stream","calls_send_text_by_im":"Send text in message","calls_copy_invite_text":"Copy invite text","calls_qr_code_modal_share":"Share","calls_qr_code_modal_download":"Download","calls_rooms_modal_request_help_title":"Ask administrator for help","calls_rooms_modal_request_help_body":"If you need help, you can invite the administrator to the room","calls_rooms_modal_request_help_button":"Invite administrator","calls_room_control_create_title":"Breakout rooms","calls_room_control_create_cancel":"Cancel","calls_room_control_create_continue":"Continue","calls_room_control_create_count_title":"Number of rooms","calls_room_control_random_assign_description":"You can edit the list","calls_room_control_random_assign":"Split up participants randomly","calls_room_control_modal_header":"Rooms and participants","calls_room_control_button_recreate":"Recreate rooms","calls_room_control_send_message":"Write everyone","calls_room_control_open_rooms":"Close rooms","calls_room_control_close_rooms":"Open rooms","calls_video_suspended_by_network":"Video hidden due to weak network connection","calls_room_timeout_modal_description_can_leave":"Please wait for the administrator to close the rooms or leave the room yourself. You'll return to the main room.","calls_room_timeout_leave_action":"Leave room","calls_room_timeout_modal_description_cannot_leave":"When the administrator closes the rooms,<br>you'll automatically return to the main room","calls_room_control_timer_finished_admin":"Room work time ended","calls_real_name_always_visible_in_chat":"Your profile name ({name}) is always visible in the chat","calls_name_always_visible_in_chat":"The user's profile name ({name}) is always visible in the chat","calls_use_letters_digits_space_and_hyphen":"Use only letters, numbers, spaces and hyphens","calls_clear_field":"Clear field","calls_asr_ended_notification_admin":"The call transcription is being processed and will appear in the call chat soon","calls_p2p_asr_hint_for_non_author":"After the transcription is processed, it'll appear in its creator's Call transcriptions section","calls_asr_ended_notification_link":"Open transcription list","calls_asr_ended_notification":"The call transcription is being processed and will be available soon","calls_p2p_asr_hint_for_author":"After the transcription is processed, it'll appear in the Call transcriptions section","calls_asr_started_notification_admin":"You're transcribing the call","calls_asr_started_notification_user":"{userName} is transcribing the call","calls_asr_started_notification_common":"Запущена расшифровка звонка","calls_open_record_list":"Open recordings list","calls_record_is_processed":"The call recording is being processed and will be available soon","calls_video_suspended_ntf_title":"Some participants' videos have been hidden due to a poor network connection","calls_video_suspended_ntf_hint":"This will help reduce the network load and keep you in the call","calls_video_suspend_suggest_ntf_title":"Poor network connection. You can temporarily hide the other participants' videos to reduce the load and stay in the call.","calls_video_suspend_suggest_ntf_hint":"You can manage this mode in the settings:<br>Settings → Weak network mode","calls_video_suspend_suggest_action":"Hide participants' videos","voicerooms_request_promotion_button_hint_disabled":"Please wait for the speakers to join","voicerooms_request_promotion_button_hint_active":"Lower hand","voicerooms_request_promotion_button_hint":"Raise hand","voicerooms_reactions_button_hint_disabled":"Please wait for the speakers to join","calls_page_call_by_link_create_call":"Create call","calls_page_call_by_link_create":"Create","calls_landing_standalone_schedule_call":"Schedule","calls_page_call_by_link_header_v2":"New call","calls_screen_landing_header":"Call for study and work","calls_screen_landing_subheader":"Free with no time limits","calls_screen_landing_feature_participants":"Unlimited number of call participants","calls_screen_landing_feature_anon":"Invite even those without a VK account via link","calls_screen_landing_feature_share":"Enable screen sharing","calls_current_calls_create_call_by_link":"Create invite link call","calls_history_scheduled_calls_show_all_numeric":["","{count} more call","{count} more calls"],"calls_history_scheduled_calls_list_stub":"No scheduled calls","calls_history_list_stub":"A complete list of your calls will appear here","calls_history_list_groups_stub":"A complete list of the community's calls will appear here","calls_history_list_header":"Call history","calls_history_list_mass_deletion":"Clear entire call history","calls_history_list_more":"More","calls_history_list_personal_option":"Personal","calls_history_list_delete_snackbar_selection":"Selected recordings deleted","calls_history_list_delete_snackbar_mass":"History cleared. Changes will appear immediately or in a few seconds.","calls_all":"All","calls_decoded_page_download_action":"Download file","calls_decoded_page_delete_action":"Delete","calls_decoded_page_delete_from_list_action":"Remove from list","calls_decoded_page_doc_size_gb":"{size}GB","calls_decoded_page_doc_size_mb":"{size}MB","calls_decoded_page_doc_size_kb":"{size}KB","global_calls_decoded_page_in_time":"at {time}","calls_decoded_page_date_today":"Today","calls_decoded_page_date":"{day} {month}","calls_decoded_page_date_full":"{day} {month} {year}","calls_decoded_page_date_january":"January","calls_decoded_page_date_february":"February","calls_decoded_page_date_march":"March","calls_decoded_page_date_april":"April","calls_decoded_page_date_may":"May","calls_decoded_page_date_june":"June","calls_decoded_page_date_july":"July","calls_decoded_page_date_august":"August","calls_decoded_page_date_september":"September","calls_decoded_page_date_october":"October","calls_decoded_page_date_november":"November","calls_decoded_page_date_december":"December","calls_application_for_ios":"VK Calls app for iOS","calls_application_for_android":"VK Calls app for Android","calls_scan_qr_offer":"Scan the QR code to download the app to your phone","calls_search_empty_list":"No results found","calls_translation_planned":"Create live stream call","calls_translation_planned_desc":"You can share the link to the live stream in advance. The stream will start once you launch it in the call.","calls_today":"Today","calls_tomorrow":"Tomorrow","calls_five_days_tops":"Next {days} days","calls_this_month":"This month","calls_on_dayoffs":"weekends","calls_on_workdays":"weekdays","calls_daily":"daily","calls_monthly":"monthly","calls_on":"on {day}","calls_yearly":"yearly","calls_default_meeting_name":"VK Calls meeting","calls_confirm_exit_description":"Are you done scheduling the call?","calls_will_copy_to_clipboard":"Copying invite to clipboard","calls_title":"Name","calls_microphones":"Microphones","calls_reactions_desc":"Participants can leave reactions","calls_watch_together_movie_settings":"Joint viewing","calls_watch_together_movie_settings_description":"Participants can launch Watch Together Mode","calls_mail_ru_short":"Mail calendar","calls_calendar":"{name} Calendar","calls_will_add_to_another_calendar":"Add to other calendar","calls_min":"{time} min","calls_hour_v2":["","{hours} hour","{hours} hours"],"calls_all_day":"All day","calls_never":"Never","calls_change_date":"Change date","calls_choose_date":"Select date","calls_from_myself":"As myself","calls_on_sunday":"Sundays","calls_on_monday":"Mondays","calls_on_tuesday":"Tuesdays","calls_on_wednesday":"Wednesdays","calls_on_thursday":"Thursdays","calls_on_friday":"Fridays","calls_on_saturday":"Saturdays","calls_on_each_sunday":"Every Sunday","calls_on_each_monday":"Every Monday","calls_on_each_tuesday":"Every Tuesday","calls_on_each_wednesday":"Every Wednesday","calls_on_each_thursday":"Every Thursday","calls_on_each_friday":"Every Friday","calls_on_each_saturday":"Every Saturday","calls_every_day":"Every day","calls_day_of_each_month":"Day {date} of every month","calls_each_year":"Every year","calls_name_invited":"{name} is inviting you to a meeting in VK Calls","calls_chat":"Open chat","calls_stop_screen_share":"Stop sharing screen","calls_start_screen_share":"Share screen","calls_screen_share_action_subtitle":"Select if you want to show pictures, texts or presentations","calls_screen_share_action_title":"Launch in regular mode","calls_screen_share_fast_action_subtitle":"Select if you plan on sharing a video, and participants will see it without any delays","calls_screen_share_fast_action_title":"Optimize to video content","calls_notification_admin_permanent_mute_watch_together":"The administrator has restricted the use of Watch Together Mode","calls_movie_already_started":"Another participant is sharing a video","calls_mute_state_available":"Available","calls_mute_state_not_available":"Unavailable","calls_stream_mode_movie":"Video","calls_stream_mode_screen":"Screen","calls_stream_mode_camera":"Camera","calls_sferum_board":"Доска","calls_orator_screen_sharing":"Screen","calls_hint_admin_pin_for_admin":"Unpin video for everyone","calls_hint_admin_pin_for_user":"Video pinned by administrator","calls_hint_user_pin":"Unpin video","calls_notification_connecting":"Connecting","calls_status_connecting":"Connecting","calls_status_hangup":"Ending call","calls_status_no_permissions":"No permissions","calls_notification_mic_is_mute":"Your microphone is muted","calls_notification_screen_sharing_started":"Screen sharing","calls_notification_user_started_screen_sharing":["","{user} started sharing his screen","{user} started sharing her screen"],"calls_notification_screen_sharing_stopped":"Screen sharing stopped","calls_notification_user_stopped_screen_sharing":["","{user} has stopped sharing his screen","{user} has stopped sharing her screen"],"calls_notification_lowered_hand":["","{user} has lowered his hand","{user} has lowered her hand"],"calls_notification_bad_network_connection":"Poor connection quality","calls_notification_bad_network_connection_disable_camera":"Your camera was disabled due to poor connection quality","calls_notification_admin_role_granted":"You're now an administrator","calls_notification_admin_role_removed":"You're no longer an administrator, as the call organizer has demoted you","calls_notification_user_granted_with_admin_role":"{name} is now the administrator","calls_notification_admin_pinned_self":"Administrator pinned your video for everyone","calls_notification_admin_pinned_user":"Administrator pinned {name}'s video","calls_notification_push_to_talk_enabled":"Press the space bar to talk","calls_notification_admin_mute":"The administrator has turned off your microphone and video","calls_notification_admin_mute_audio":"The administrator has muted your microphone, but you can turn it back on","calls_notification_admin_permanent_mute_audio_common":"The administrator has restricted you from turning on your microphone. Raise your hand to get attention.","calls_notification_admin_mute_video":"The administrator has turned off your video and screen sharing, but you can turn them back on","calls_notification_admin_mute_video_only":"The administrator has turned off your video, but you can turn it back on","calls_notification_admin_mute_video_only_common":"The administrator has restricted you from turning on your video. Raise your hand to get attention.","calls_notification_admin_mute_screensharing":"The administrator has disabled your screen sharing, but you can enable it again","calls_notification_admin_permanent_mute_screensharing_common":"The administrator has restricted you from sharing your screen","calls_notification_admin_permanent_mute":"The administrator has restricted you from turning on your microphone and video. Raise your hand to get attention.","calls_notification_admin_permanent_mute_audio":"The administrator has restricted you from turning on your microphone. Raise your hand to get attention.","calls_notification_admin_permanent_mute_video":"The administrator has restricted you from turning on your video and screen sharing. Raise your hand to get attention.","calls_notification_admin_permanent_mute_video_only":"The administrator has restricted you from turning on your video. Raise your hand to get attention.","calls_notification_admin_permanent_mute_screensharing":"The administrator has restricted you from sharing your screen","calls_notification_admin_unmute":"The administrator has allowed you to turn on your video, screen sharing and microphone","calls_notification_admin_unmute_audio":"The administrator has allowed you to turn on your microphone","calls_notification_admin_unmute_video":"The administrator has allowed you to turn on your video and screen sharing","calls_notification_admin_unmute_video_only":"The administrator has allowed you to turn on your video","calls_notification_admin_unmute_screensharing":"The administrator has allowed you to share your screen","calls_notification_enter_to_room":"You moved to "{name}"","calls_notification_exit_from_room":"You returned to the main room","calls_notification_room_help_requested":"You invited the administrator to the breakout room","calls_notification_room_rooms_opened":"You opened breakout rooms","calls_notification_room_rooms_closed":"You closed all breakout rooms","calls_notification_room_rooms_closed_by_admin":"The administrator closed the rooms.<br>You've been moved to the main room.","calls_notification_admin_unmute_watch_together":"The administrator has allowed you to launch Watch Together Mode","calls_room_control_message_is_sent_snackbar":"You sent a message to the participants","calls_movie_already_started_modal_content":"{userName} is already sharing a video. To play a new one, ask the participant to stop the current video.","calls_notification_bad_signal":"Weak signal","calls_participant_joined_the_call":["","{user} has joined the call","{user} has joined the call"],"calls_participant_left_the_call":["","{user} has left the call","{user} has left the call"],"calls_notification_user_started_movie_sharing":["","{user} has started sharing a video","{user} has started sharing a video"],"calls_notification_user_stopped_movie_sharing":["","{user} has stopped joint viewing","{user} has stopped joint viewing"],"calls_participant_call_record_started":["","{user} has started recording the call","{user} has started recording the call"],"calls_participant_call_record_stopped":["","{user} has stopped recording the call","{user} has stopped recording the call"],"calls_participant_call_stream_started":["","{user} has started live streaming the call","{user} has started live streaming the call"],"calls_participant_call_stream_stopped":["","{user} stopped streaming the call","{user} stopped streaming the call"],"calls_participant_turned_on_camera":["","{user} has turned on his camera","{user} has turned on her camera"],"calls_participant_turned_off_camera":["","{user} has turned off his camera","{user} has turned off her camera"],"calls_you":"You","calls_start_asr_action":"Call transcription","calls_stop_asr_action":"Stop transcribing","calls_participants_not_found":"No participants found","calls_add_participants_tab_selected":"Selected","calls_call_link_updated":"Call link updated","calls_management_link_plain_link":"Regular link","calls_management_link_with_number":"Link with meeting number","calls_management_link_info_desc":"Copy the link and send it to those you want to invite","calls_link_copied":"Copied","calls_add_participants":"Add participants","calls_put_all_hands_down":"Put down all hands","calls_participants_show_more":"Show {n} more participants","calls_participant_management_link_blocked_hint":"The chat privacy settings don't allow the call link to be shared","calls_participant_management_invite_by_link":"Use invite link","calls_participant_management_invite_description":"The call is empty. Do you want to invite someone?","calls_management_link_allow_anon_description":"Users can join without a VK profile","calls_management_link_allow_anonymous":"Allow to join anonymously","calls_waiting_hall_title":"Waiting room","calls_waiting_hall_not_users":"There is no one in the waiting room","voicerooms_create_record_form_name_default_value":"Room %s","calls_translation_title_default_value":"Group call %s","calls_translation_privacy_all_users":"All users","voicerooms_record_privacy_editors":"Editors and administrators","calls_those_who_have_link":"Anyone with the link","calls_translation_privacy_only_me_and_chat":"Chat members only","calls_translation_privacy_friends_and_chat":"Friends and chat members","calls_translation_select_upcoming_box_title":"Select live stream","calls_translation_select_video_link":"Select","calls_record_owner_title":"Created by","calls_translation_owner_title":"Streamer","calls_translation_postponed_title":"Scheduled live stream","calls_translation_postponed_reset":"Cancel","voicerooms_create_record_form_who_can_see_video_property_label":"Who will see this recording","calls_translation_who_can_see_video_privacy":"Who can see this live stream and its recording","voicerooms_create_record_form_who_can_see_video_property_hint":"The recording will be available in the Room recordings section of the community page","calls_record_who_can_see_video_privacy_hint":"After the recording has ended, it'll appear in the chat and be accessible to call participants and those you've shared the recording with","calls_translation_who_can_see_video_privacy_hint":"After the live stream begins, it'll appear in the chat. The live stream recording will be available to participants and those you shared the stream with.","calls_translation_title":"Title","calls_translation_name_placeholder":"Enter a title","calls_translation_description":"Description","calls_translation_description_placeholder":"What is your live stream about?","voicerooms_create_record_form_warning_message":"Let participants know the call will be recorded to avoid any surprises","calls_record_notification_warning":"Let participants know the call will be recorded to avoid any surprises","calls_translation_notification_warning":"Please let the participants know that the call will be streamed","voicerooms_create_record_form_header":"Create room recording","calls_record_box_title":"Create call recording","calls_translation_box_title":"Create live stream call","calls_warning":"Warning","calls_retry_action":"Try again","calls_upload_image_for_background":"Upload background image","calls_if_you_have_problems_with_upload":"If you have any problems with your upload, try using a smaller photo.","profile_oph_err_size":"{sorry}.<br>The photo must have no less than {min} and no more than {max} pixels on each side.<br>The photo also can't have one dimension several times the size of the other.","global_sorry_error":"An error occurred","calls_you_can_upload_description":"You can upload images in JPG, GIF or PNG format.<br>Minimum image size: 510×200px.","calls_choose_file":"Select file","calls_enter_recipient_or_dialog_name":"Enter the name of a user or chat","calls_copy_link":"Copy link","calls_movie_player_search":"Search videos","calls_movie_player_clear_filters":"Reset filters","calls_movie_player_filter_long_any":"Any","calls_movie_player_filter_long_long":"Long","calls_movie_player_filter_long_short":"Short","calls_movie_player_filter_date_any":"Any","calls_movie_player_filter_date_day":"Last 24 hours","calls_movie_player_filter_date_week":"Last week","calls_movie_player_filter_date_month":"Last month","calls_movie_player_filter_date_year":"Last year","calls_movie_player_sort_relevance":"By relevance","calls_movie_player_sort_date":"By date","calls_movie_player_sort_length":"By duration","calls_movie_player_filter_live_translations":"Live streams","calls_movie_player_filter_high_quality":"High quality","calls_movie_player_filter_long":"By duration","calls_movie_player_filter_date":"By date","calls_movie_player_sort":"Order","calls_movie_choose_title":"Watch video","calls_movie_choose_title_albums":"Playlists","calls_movie_choose_recommended":"Recommended","calls_movie_choose_albums":"Playlists","calls_movie_choose_added":"Added","calls_movie_choose_loaded":"Uploaded","calls_shared_movie_current":"Now playing","calls_remove_movie_modal_complete":"Stop","calls_remove_movie_modal_title":"Stop video","calls_remove_movie_modal_content":"Stop watching the video together?","calls_play_movie_modal_title":"Play new video?","calls_play_movie_modal_content":"The video you're currently watching will stop","calls_yes_play":"Play","calls_room_create_modal_timer_description":"When the time is up, you'll need to close the rooms yourself","calls_room_control_timer_description":"A notification will be sent when the timer is up. You'll need to close the rooms yourself.","calls_room_control_restrict_work_time":"Limit work time","calls_room_control_timer_input_placeholder":"Enter a time","calls_min_short":"min","calls_room_control_input_search_placeholder":"Search participants","calls_room_control_add_room":"Add room","calls_room_control_not_divided_counter":"Not assigned","calls_room_control_button_auto_divide":"Split up automatically","calls_upload_debug_logs_description":"Logs are files that contain all program actions and error messages. They help understand problems in detail and solve them.","calls_upload_debug_logs_title":"Attach logs","voicerooms_screen_share_regular_action_description":"Select pictures, texts or presentations to share","voicerooms_screen_share_regular_action":"Launch in regular mode","voicerooms_screen_share_fast_action_description":"Select if you plan on sharing a video, and participants will see it without any delays","voicerooms_screen_share_fast_action":"Optimize to video content","voicerooms_screen_share_action":"Share screen","voicerooms_screen_share_stop_action":"Stop sharing screen","voicerooms_watch_together_action":"Watch together","voicerooms_stop_record_action":"Stop recording","voicerooms_start_record_action":"Record room","voicerooms_vmoji_action_active":"On","voicerooms_vmoji_action_not_active":"Off","voicerooms_vmoji_action":"vmoji","voicerooms_virtual_background_action":"Virtual background","voicerooms_audio_settings_action":"Audio settings","voicerooms_video_and_audio_settings_action":"Video and audio settings","voicerooms_copy_link_action":"Скопировать ссылку","voicerooms_sausage_tab_participants":"Participants","voicerooms_sausage_tab_promotion_requests":"Requests","voicerooms_sausage_tab_chat":"Chat","voicerooms_user_action_link_subtitle_admin":"Administrator","voicerooms_user_action_link_subtitle_speaker":"Speaker","voicerooms_user_action_move_to_admin":"Make administrator","voicerooms_user_action_kick_admin":"Разжаловать администратора","voicerooms_user_action_move_to_listeners":"Move to listeners","voicerooms_user_action_kick":"Remove from call","voicerooms_move_to_speakers":"Move to speakers","voicerooms_user_action_show_big":"Expand","voicerooms_user_action_show_like_all":"Show same as others","voicerooms_move_speaker_to_admin_notification":"You now have administrator rights","voicerooms_move_speaker_to_admin_notification_button":"OK","voicerooms_move_admin_to_speaker_notification":"You're no longer an administrator, but you still have microphone access.","voicerooms_move_admin_to_speaker_notification_button":"OK","voicerooms_move_speaker_to_listener_notification":"Access to microphone restricted. You're now a listener.","voicerooms_move_speaker_to_listener_notification_button":"OK","voicerooms_move_listener_to_speaker_notification":"The floor's yours! You can now talk.","voicerooms_move_listener_to_speaker_notification_button":"OK","voicerooms_decline_promotion_request_notification":"The administrator hasn't allowed you access to your microphone","voicerooms_decline_promotion_request_notification_button":"OK","voicerooms_promoted_limit_notification":"Maximum number of speakers already in room","voicerooms_promoted_limit_notification_button":"OK","voicerooms_recording_finished_notification_header":"Call recording stopped","voicerooms_recording_finished_notification_description":"After the recording is processed, it'll appear in the Call recordings section in your videos","calls_history_call_type_group_hint":"Group","calls_history_call_type_group_time_hint":"Group · {time}","calls_history_status_inb_cancelled_by_initiator":"Missed","calls_history_status_inb_reached":"Ended","calls_history_status_inb_reject_by_receiver":"Canceled","calls_history_status_inb":"Incoming","calls_history_status_out_cancelled_by_initiator":"Canceled","calls_history_status_out_reached":"Ended","calls_history_status_out_reject_by_receiver":"Declined","calls_history_status_out":"Outgoing","calls_history_call_list_item_description":"%type · %time","calls_history_dropdown_item_participants":"Download participant list","calls_history_dropdown_item_broadcasts":"Recordings and live streams","calls_history_dropdown_item_message":"Message","calls_history_dropdown_item_delete":"Delete","calls_history_join_with_audio":"Join with audio","calls_history_join_with_video":"Join with video","calls_actions":"Actions","calls_history_members_count":["","%n participant","%n participants"],"calls_history_join_call_button":"Join","calls_edit_call":"Edit","calls_goto_chat":"Go to chat","calls_scheduled_copy_box":"Copy","calls_copy_text":"Copy invite","calls_copy_invite":"Invite","calls_scheduled_calls_plain_link":"Regular link","calls_scheduled_calls_short_with_password":"Short link with password","calls_scheduled_calls_join_link":"Link to join","calls_copy_call_link":"Call link","calls_copy_broadcast_link":"Live stream link","calls_show_all":"Show all","calls_history_list_confirm_delete_modal_mass_description":"The history provides information about previous calls. Are you sure you want to clear it?","calls_history_list_confirm_delete_modal_select_multiple":"All details of these calls will be deleted. This can't be undone.","calls_history_list_confirm_delete_modal_select_single":"All details of this call will be deleted. This can't be undone.","calls_history_list_confirm_delete_modal_mass_header":"Clear entire history?","calls_history_list_confirm_delete_modal_select_header":"Delete from call history","calls_history_list_confirm_delete_modal_mass_confirm":"Clear","calls_history_list_confirm_delete_modal_select_confirm":"Delete","calls_history_list_confirm_delete_modal_cancel":"Cancel","calls_translation_planned_preview":"Cover","calls_translation_planned_preview_upload_rule_first":"Recommended resolution of 1280x720px","calls_translation_planned_preview_upload_rule_second":"and aspect ratio of 16:9. JPG or PNG format.","calls_translation_planned_preview_upload_rule_third":"File size up to 2 MB.","calls_translation_planned_preview_download":"Upload","calls_translation_planned_description":"Description","calls_translation_planned_description_placeholder":"Enter your text","calls_translation_start_time":"Live stream starts","calls_translation_planned_privacy_view":"Who can watch this video?","calls_translation_planned_privacy_comments":"Who can comment on this video?","calls_translation_planned_unavailable_warning":"Live streams can't be created for recurring calls","calls_translation_planned_unavailable_warning_editable":"Live streams can't be created for recurring calls","calls_translation_planned_unavailable_warning_editable_subhead":"If this call is made regular, the live stream will be deleted","calls_btn_ready":"Done","calls_confirm":"Confirmation","calls_translation_planned_time_equal_call_time":"Same as call time","calls_translation_planned_time_custom":"Select other time","calls_planning_translation_upload_image_error_common":"Failed to upload cover. Please try again.","calls_planning_translation_upload_image_error_format":"Cover file must be in JPG or PNG format","calls_planning_translation_upload_image_error_size":"Maximum file size: 2 MB","calls_date_in_time":"{date} at {time}","calls_footer_start_asr_action":"Start transcribing","calls_disable_subtitles_action":"Disable subtitles","calls_enable_subtitles_action":"Enable subtitles","calls_footer_asr_and_subtitles":"Call transcription and subtitles","calls_camera_on":"Webcam enabled","calls_you_are_screen_sharer":"You're sharing your screen","calls_screen_share_stop":"Stop sharing","calls_info_translation_will_start_soon":"Live stream will start soon","calls_info_translation_share_menu_item":"Share stream","calls_translation_stop_menu_item":"End stream","calls_record_duration":"Call recording duration:","calls_translation_duration":"Live stream duration:","calls_translation_upcoming_time_more_day_short":["","Starts in one day","Starts in %s days"],"calls_translation_host_info":"{name} is live streaming the call","calls_translation_host_info_unknown":"Live stream call in progress","calls_rooms_admin_control":"Settings","calls_rooms_admin_close_rooms":"Close rooms","calls_room_control_timer_finished_admin_description":"Press <b>Close rooms<\/b> to automatically move all participants back to the main room","calls_asr_status_go_to_asr_list_action":"Go to transcription list","calls_asr_status_stop_action":"Stop transcribing","calls_raised_hands":["","raised hand","raised hands"],"calls_link":"Link","calls_status_bad_internet_connection":"Your internet connection is weak","calls_miniapp_error_title":"Failed to open mini app","calls_whiteboard_error_message_anonym":"Interactive whiteboard only available for signed-in users","calls_miniapp_error_message_anonym":"App only available for signed-in users","calls_miniapp_error_message_default":"Unknown error","calls_remove_token":"Remove","calls_waiting_hall_list_header":"Waiting","calls_waiting_hall_forbid":"Remove","calls_waiting_hall_join":"Admit","calls_participant_management_ask_to_unmute_all":"Request everyone to turn on camera and microphone","calls_participant_management_mute_microphones":"Turn off<br>microphones","calls_participant_management_mute_cameras":"Turn off<br>cameras","calls_participant_management_put_all_hands_down":"Lower hands","voicerooms_create_form_cancel_action":"Cancel","voicerooms_create_form_start_record_action":"Start recording","calls_translation_date_label_soon":"Coming up","calls_virtual_background_settings_no_background":"No background","calls_cant_remove_background":"This photo can't be deleted<br>while being used as the background","calls_delete_background":"Remove photo","calls_movie_choose_loader_albums_title":"Loading playlists","calls_movie_choose_loader_title":"Loading video list","calls_movie_choose_empty_query_start":"Your search for","calls_movie_choose_empty_query_end":"returned no videos","calls_movie_choose_video_not_found":"No videos found","calls_movie_choose_albums_not_found_title":"No videos here yet","calls_movie_choose_albums_not_found":"Create a video playlist, and it'll appear here","calls_movie_choose_albums_movies_empty_title":"No videos here yet","calls_movie_choose_albums_movies_empty_description":"Add videos to this playlist, and they'll appear here","calls_movie_N_views_billion":"B views","calls_movie_N_views_million":"M views","calls_movie_N_views_thousand":"K views","calls_movie_views_count":["","%s view","%s views"],"calls_movies_is_not_available_yet":"Currently unavailable for joint viewing","calls_room_control_rooms_enter":"Join","calls_room_control_rooms_tooltip_more":"More","calls_room_control_participants_empty":"Selected participants will appear here","calls_event_hide_button_text":"Hide","voicerooms_status_container_stop_record_action":"Recording","voicerooms_status_container_recording":"Recording","voicerooms_promotion_requests_approve":"Accept","voicerooms_promotion_requests_reject":"Decline","voicerooms_more_speakers":"Other speakers","voicerooms_listeners":"Listeners","Month1":"January","Month2":"February","Month3":"March","Month4":"April","Month5":"May","Month6":"June","Month7":"July","Month8":"August","Month9":"September","Month10":"October","Month11":"November","Month12":"December","global_sunday_short":"Su","global_monday_short":"Mo","global_tuesday_short":"Tu","global_wednesday_short":"We","global_thursday_short":"Th","global_friday_short":"Fr","global_saturday_short":"Sa","calls_notify_disabled_date_selection":"You can only change the time of repeated events","calls_movie_player_sound_off":"Mute","calls_movie_player_sound_on":"Unmute","calls_go_to_chat_with_community":"Message community","calls_go_to_chat_with_participant":"Write message","calls_put_hand_down":"Lower hand","calls_go_to_community":"Go to community","calls_go_to_profile":"Open profile","calls_participant_menu_pin_cancel":"Unpin video for everyone","calls_participant_menu_pin":"Pin video for everyone","calls_participant_menu_assign_admin_role":"Appoint as administrator","calls_participant_menu_revoke_admin_role":"Dismiss administrator","calls_personal_request_for_enable_mic_or_camera":"Request to turn on camera or microphone","calls_participant_menu_mute_audio":"Microphone","calls_participant_menu_mute_watch_together":"Joint viewing","calls_participant_management_mute_microphone":"Turn off microphone","calls_participant_management_mute_camera":"Turn off camera","calls_participant_management_stop_screen_sharing":"Stop sharing screen","calls_participant_menu_participant_access":"Participant access","calls_participant_menu_kick":"Remove from call","calls_participant_menu_mute":"Mute microphone","calls_video_zoom_button_reset":"Current scale: {zoomScale}%. Press to return to 100%.","calls_video_zoom_button_in":"Zoom in to {zoomScale}%","calls_video_zoom_button_out":"Zoom out to {zoomScale}%","calls_video_zoom_button_reset_tooltip":"Return to 100%","calls_broadcast_planned_start_now":"Start now","calls_broadcast_planned_start_modal_title":"Start streaming now?","calls_broadcast_planned_start_modal_content":"The live stream will launch before the scheduled time","calls_broadcast_planned_start_modal_start_button":"Start","calls_recording_in_progress":"Recording call","calls_name_is_recording":"{name} is recording the call","calls_end_recording":"Stop","calls_rooms_main_title":"Breakout rooms","calls_rooms_request_help":"Help","calls_asr_owner_tooltip_me":"You're transcribing the call","calls_asr_owner_tooltip":"{name} is transcribing the call","calls_asr_owner_tooltip_unknown":"Идёт расшифровка звонка","calls_participants_speak":["","Speaking: {names}","Speaking: {names}"],"calls_toggle_on":"On","calls_toggle_off":"Off","calls_interactive_board_is_shared_by_another":"Другой администратор уже показывает доску","calls_stop_interactive_board":"Закрыть интерактивную доску","calls_interactive_board":"Interactive board","calls_participant_list_header":"Call participants","calls_participant_list_creator":"Creator","calls_participant_list_admin":"Administrator","calls_waiting_hall_list_multiple_promote":"Admit all","calls_waiting_hall_list_title":"Waiting room","calls_waiting_hall_list_refuse":"Decline","calls_translation_start":"Start streaming call","calls_movie_date_added_years":["","%s year ago","%s years ago"],"calls_movie_date_added_months":["","%s month ago","%s months ago"],"calls_movie_date_added_days":["","%s day ago","%s days ago"],"calls_movie_date_added_hours":["","%s hour ago","%s hours ago"],"calls_movie_date_added_minutes":["","%s minute ago","%s minutes ago"],"calls_movie_date_added_seconds":["","%s second ago","%s seconds ago"],"calls_room_control_participant_creator":"Creator","calls_room_control_participant_admin":"Administrator","calls_room_control_participant_tooltip_more":"More","voicerooms_promotion_requests_title":"Raised hand","voicerooms_promotion_request_time_hours":["","{time} hour ago","{time} hours ago"],"voicerooms_promotion_request_time_minutes":["","{time} minute ago","{time} minutes ago"],"voicerooms_promotion_request_time_now":"just now","calls_mute":"Turn off microphone","calls_unmute":"Turn on microphone","calls_enter_pip_button":"Open call in Picture-in-picture","calls_restore":"Maximize","calls_participant_menu_enable_media_request":"Request to speak","calls_participant_management_permanent_mute_camera_hint":"Access to camera disabled","calls_participant_management_permanent_mute_microphone_hint":"Access to microphone disabled","calls_notification_native_app_button_for":"Download for {name}","calls_notification_native_app_button":"Download","calls_notification_native_app_text":"Call on the desktop version of the app","calls_warning_native_app_button_for":"Download app for {name}","calls_warning_native_app_button":"Download app","calls_browser_warning_text":"We recommend using a different browser for the call.","calls_warning_native_app_text":"Try installing the VK Calls desktop app or call using a different browser.","calls_warning_native_app_join_button":"Open call in app","calls_warning_native_app_title":"Calls don't work correctly in your browser","calls_try_onboarding_button":"Try it out","calls_notification_users_in_waiting_hall_notification":["","{names} is in the waiting room","{names} are in the waiting room"],"calls_waiting_show_participants":"View participants","calls_watch_together_onboarding_title":"Watch videos together","calls_watch_together_onboarding_sub_title":"Share in the experience during the call","calls_reactions_onboarding_title":"Leave reactions","calls_reactions_onboarding_sub_title":"Show how you feel and support the person talking","calls_vmoji_onboarding_title":"Try out vmojis","calls_vmoji_onboarding_sub_title":"Use your virtual avatar instead of your camera","intro_hint_title_voip_call_feature_onboarding_subtitles":"Read call transcription","intro_hint_description_voip_call_feature_onboarding_subtitles":"Use subtitles or transcribe<br>your conversation","calls_asr_onboarding_enable_subtitles":"Enable subtitles","calls_asr_onboarding_start_asr":"Start transcribing","calls_feedback_success":"Sent! Thanks for your feedback.","vkconnect_auth_captcha_image_aria_label":"Graphic code","vkconnect_auth_captcha_submit_button":"Continue","vkconnect_auth_captcha_refresh_button_aria_label":"Refresh image","vkconnect_auth_captcha_refresh_audio_button_aria_label_new_ux":"New audio","vkconnect_auth_captcha_play_audio_button_aria_label_new_ux":"Play audio","vkconnect_auth_captcha_loading_error_caption":"Failed to load picture","vkconnect_auth_audio_captcha_loading_error_caption":"Failed to load audio","vkconnect_auth_captcha_image_loading_error_retry_aria_label":"Failed to load image. Please try again.","vkconnect_auth_captcha_sound_loading_error_retry_aria_label":"Failed to load audio. Please try again.","vkconnect_auth_captcha_loading_error_refresh_text":"Try again","vkconnect_auth_captcha_enable_audio_aria_label":"Audio test","vkconnect_auth_captcha_enable_image_aria_label":"Back to graphic code","vkconnect_auth_audio_captcha_title":"Enter any word you hear","vkconnect_auth_label_captcha":"Enter the code from the picture","vkconnect_auth_label_captcha_audio_new_ux":"Enter a word","vkconnect_auth_audio_captcha_info_text":"Press CTRL to listen again. To hear a different audio, press <b>Refresh<\/b>.","index_error_bad_phone":"Invalid phone number","vkconnect_auth_empty_login":"Phone number or email address required","vkconnect_auth_security_error_title":"An error occurred","vkconnect_auth_security_error_text":"Refresh the page and try again","vkconnect_auth_save_user_tooltip_header":"Save user","vkconnect_auth_save_user_tooltip_body":"Check this box if you want your account information saved for quick login on this device","index_sel_bday":"Day","vkconnect_vkcom_auth_save_user":"Save user","left_enter":"Sign in","reg0_reg_button":"Sign up","vkconnect_auth_or_with":"or use","vkconnect_auth_qr_code":"QR code","vkconnect_auth_phone_tab":"Phone","vkconnect_auth_email_tab":"Email","vkconnect_auth_label_email_or_phone":"Email or phone","vkconnect_auth_phone_mask_placeholder_text":"Country or code","vkconnect_auth_phone_mask_no_result":"Nothing found","vkconnect_auth_qr_more_link":"Learn more","vkconnect_auth_index_qr_title":"Quick sign-in","vkconnect_auth_promo_more_link":"Learn more about VK ID","vkconnect_auth_hover_qr_title":"Scan the QR code with your camera","vkconnect_auth_phone_mask_country_bq":"Caribbean Netherlands","vkconnect_auth_phone_mask_country_ci":"Côte d'Ivoire","vkconnect_auth_phone_mask_country_gf":"French Guiana","vkconnect_auth_phone_mask_country_gp":"Guadeloupe","vkconnect_auth_phone_mask_country_nc":"New Caledonia","vkconnect_auth_phone_mask_country_re":"Réunion","vkconnect_auth_phone_mask_country_td":"Chad","vkconnect_auth_phone_mask_country_tl":"East Timor","vkconnect_auth_phone_mask_country_af":"Afghanistan","vkconnect_auth_phone_mask_country_al":"Albania","vkconnect_auth_phone_mask_country_dz":"Algeria","vkconnect_auth_phone_mask_country_ad":"Andorra","vkconnect_auth_phone_mask_country_ao":"Angola","vkconnect_auth_phone_mask_country_ag":"Antigua and Barbuda","vkconnect_auth_phone_mask_country_ar":"Argentina","vkconnect_auth_phone_mask_country_am":"Armenia","vkconnect_auth_phone_mask_country_aw":"Aruba","vkconnect_auth_phone_mask_country_au":"Australia","vkconnect_auth_phone_mask_country_at":"Austria","vkconnect_auth_phone_mask_country_az":"Azerbaijan","vkconnect_auth_phone_mask_country_bs":"Bahamas","vkconnect_auth_phone_mask_country_bh":"Bahrain","vkconnect_auth_phone_mask_country_bd":"Bangladesh","vkconnect_auth_phone_mask_country_bb":"Barbados","vkconnect_auth_phone_mask_country_by":"Belarus","vkconnect_auth_phone_mask_country_be":"Belgium","vkconnect_auth_phone_mask_country_gq":"Equatorial Guinea","vkconnect_auth_phone_mask_country_bz":"Belize","vkconnect_auth_phone_mask_country_bj":"Benin","vkconnect_auth_phone_mask_country_bt":"Bhutan","vkconnect_auth_phone_mask_country_bo":"Bolivia","vkconnect_auth_phone_mask_country_ba":"Bosnia and Herzegovina","vkconnect_auth_phone_mask_country_bw":"Botswana","vkconnect_auth_phone_mask_country_br":"Brazil","vkconnect_auth_phone_mask_country_io":"British Indian Ocean Territory","vkconnect_auth_phone_mask_country_bn":"Brunei","vkconnect_auth_phone_mask_country_bg":"Bulgaria","vkconnect_auth_phone_mask_country_bf":"Burkina Faso","vkconnect_auth_phone_mask_country_bi":"Burundi","vkconnect_auth_phone_mask_country_kh":"Cambodia","vkconnect_auth_phone_mask_country_cm":"Cameroon","vkconnect_auth_phone_mask_country_ca":"Canada","vkconnect_auth_phone_mask_country_cv":"Cape Verde","vkconnect_auth_phone_mask_country_ky":"Cayman Islands","vkconnect_auth_phone_mask_country_cf":"Central African Republic","vkconnect_auth_phone_mask_country_cl":"Chile","vkconnect_auth_phone_mask_country_cn":"China","vkconnect_auth_phone_mask_country_co":"Colombia","vkconnect_auth_phone_mask_country_km":"Comoro Islands","vkconnect_auth_phone_mask_country_cd":"Democratic Republic of the Congo","vkconnect_auth_phone_mask_country_cg":"Congo","vkconnect_auth_phone_mask_country_cr":"Costa Rica","vkconnect_auth_phone_mask_country_hr":"Croatia","vkconnect_auth_phone_mask_country_cu":"Cuba","vkconnect_auth_phone_mask_country_cw":"Curaçao","vkconnect_auth_phone_mask_country_cy":"Cyprus","vkconnect_auth_phone_mask_country_cz":"Czechia","vkconnect_auth_phone_mask_country_dk":"Denmark","vkconnect_auth_phone_mask_country_dj":"Djibouti","vkconnect_auth_phone_mask_country_dm":"Dominica","vkconnect_auth_phone_mask_country_do":"Dominican Republic","vkconnect_auth_phone_mask_country_ec":"Ecuador","vkconnect_auth_phone_mask_country_eg":"Egypt","vkconnect_auth_phone_mask_country_sv":"El Salvador","vkconnect_auth_phone_mask_country_er":"Eritrea","vkconnect_auth_phone_mask_country_ee":"Estonia","vkconnect_auth_phone_mask_country_et":"Ethiopia","vkconnect_auth_phone_mask_country_fj":"Fiji","vkconnect_auth_phone_mask_country_fi":"Finland","vkconnect_auth_phone_mask_country_fr":"France","vkconnect_auth_phone_mask_country_pf":"French Polynesia","vkconnect_auth_phone_mask_country_ga":"Gabon","vkconnect_auth_phone_mask_country_gm":"Gambia","vkconnect_auth_phone_mask_country_ge":"Georgia","vkconnect_auth_phone_mask_country_de":"Germany","vkconnect_auth_phone_mask_country_gh":"Ghana","vkconnect_auth_phone_mask_country_gr":"Greece","vkconnect_auth_phone_mask_country_gl":"Greenland","vkconnect_auth_phone_mask_country_gd":"Grenada","vkconnect_auth_phone_mask_country_gu":"Guam","vkconnect_auth_phone_mask_country_gt":"Guatemala","vkconnect_auth_phone_mask_country_gn":"Guinea","vkconnect_auth_phone_mask_country_gw":"Guinea-Bissau","vkconnect_auth_phone_mask_country_gy":"Guyana","vkconnect_auth_phone_mask_country_ht":"Haiti","vkconnect_auth_phone_mask_country_hn":"Honduras","vkconnect_auth_phone_mask_country_hk":"Hong Kong","vkconnect_auth_phone_mask_country_hu":"Hungary","vkconnect_auth_phone_mask_country_is":"Iceland","vkconnect_auth_phone_mask_country_in":"India","vkconnect_auth_phone_mask_country_id":"Indonesia","vkconnect_auth_phone_mask_country_ir":"Iran","vkconnect_auth_phone_mask_country_iq":"Iraq","vkconnect_auth_phone_mask_country_ie":"Ireland","vkconnect_auth_phone_mask_country_il":"Israel","vkconnect_auth_phone_mask_country_it":"Italy","vkconnect_auth_phone_mask_country_jm":"Jamaica","vkconnect_auth_phone_mask_country_jp":"Japan","vkconnect_auth_phone_mask_country_jo":"Jordan","vkconnect_auth_phone_mask_country_kz":"Kazakhstan","vkconnect_auth_phone_mask_country_ke":"Kenya","vkconnect_auth_phone_mask_country_ki":"Kiribati","vkconnect_auth_phone_mask_country_xk":"Kosovo","vkconnect_auth_phone_mask_country_kw":"Kuwait","vkconnect_auth_phone_mask_country_kg":"Kyrgyzstan","vkconnect_auth_phone_mask_country_la":"Laos","vkconnect_auth_phone_mask_country_lv":"Latvia","vkconnect_auth_phone_mask_country_lb":"Lebanon","vkconnect_auth_phone_mask_country_ls":"Lesotho","vkconnect_auth_phone_mask_country_lr":"Liberia","vkconnect_auth_phone_mask_country_ly":"Libya","vkconnect_auth_phone_mask_country_li":"Liechtenstein","vkconnect_auth_phone_mask_country_lt":"Lithuania","vkconnect_auth_phone_mask_country_lu":"Luxembourg","vkconnect_auth_phone_mask_country_mo":"Macau","vkconnect_auth_phone_mask_country_mk":"North Macedonia","vkconnect_auth_phone_mask_country_mg":"Madagascar","vkconnect_auth_phone_mask_country_mw":"Malawi","vkconnect_auth_phone_mask_country_my":"Malaysia","vkconnect_auth_phone_mask_country_mv":"Maldives","vkconnect_auth_phone_mask_country_ml":"Mali","vkconnect_auth_phone_mask_country_mt":"Malta","vkconnect_auth_phone_mask_country_mh":"Marshall Islands","vkconnect_auth_phone_mask_country_mq":"Martinique","vkconnect_auth_phone_mask_country_mr":"Mauritania","vkconnect_auth_phone_mask_country_mu":"Mauritius","vkconnect_auth_phone_mask_country_mx":"Mexico","vkconnect_auth_phone_mask_country_fm":"Micronesia","vkconnect_auth_phone_mask_country_md":"Moldova","vkconnect_auth_phone_mask_country_mc":"Monaco","vkconnect_auth_phone_mask_country_mn":"Mongolia","vkconnect_auth_phone_mask_country_me":"Montenegro","vkconnect_auth_phone_mask_country_ma":"Morocco","vkconnect_auth_phone_mask_country_mz":"Mozambique","vkconnect_auth_phone_mask_country_mm":"Myanmar","vkconnect_auth_phone_mask_country_na":"Namibia","vkconnect_auth_phone_mask_country_nr":"Nauru","vkconnect_auth_phone_mask_country_np":"Nepal","vkconnect_auth_phone_mask_country_nl":"Netherlands","vkconnect_auth_phone_mask_country_nz":"New Zealand","vkconnect_auth_phone_mask_country_ni":"Nicaragua","vkconnect_auth_phone_mask_country_ne":"Niger","vkconnect_auth_phone_mask_country_ng":"Nigeria","vkconnect_auth_phone_mask_country_kp":"North Korea","vkconnect_auth_phone_mask_country_no":"Norway","vkconnect_auth_phone_mask_country_om":"Oman","vkconnect_auth_phone_mask_country_pk":"Pakistan","vkconnect_auth_phone_mask_country_pw":"Palau","vkconnect_auth_phone_mask_country_ps":"Palestine","vkconnect_auth_phone_mask_country_pa":"Panama","vkconnect_auth_phone_mask_country_pg":"Papua New Guinea","vkconnect_auth_phone_mask_country_py":"Paraguay","vkconnect_auth_phone_mask_country_pe":"Peru","vkconnect_auth_phone_mask_country_ph":"Philippines","vkconnect_auth_phone_mask_country_pl":"Poland","vkconnect_auth_phone_mask_country_pt":"Portugal","vkconnect_auth_phone_mask_country_pr":"Puerto Rico","vkconnect_auth_phone_mask_country_qa":"Qatar","vkconnect_auth_phone_mask_country_ro":"Romania","vkconnect_auth_phone_mask_country_ru":"Russia","vkconnect_auth_phone_mask_country_rw":"Rwanda","vkconnect_auth_phone_mask_country_kn":"Saint Kitts and Nevis","vkconnect_auth_phone_mask_country_lc":"Saint Lucia","vkconnect_auth_phone_mask_country_vc":"Saint Vincent and the Grenadines","vkconnect_auth_phone_mask_country_ws":"Samoa","vkconnect_auth_phone_mask_country_sm":"San Marino","vkconnect_auth_phone_mask_country_st":"São Tomé and Príncipe","vkconnect_auth_phone_mask_country_sa":"Saudi Arabia","vkconnect_auth_phone_mask_country_sn":"Senegal","vkconnect_auth_phone_mask_country_rs":"Serbia","vkconnect_auth_phone_mask_country_sc":"Seychelles","vkconnect_auth_phone_mask_country_sl":"Sierra Leone","vkconnect_auth_phone_mask_country_sg":"Singapore","vkconnect_auth_phone_mask_country_sk":"Slovakia","vkconnect_auth_phone_mask_country_si":"Slovenia","vkconnect_auth_phone_mask_country_sb":"Solomon Islands","vkconnect_auth_phone_mask_country_so":"Somalia","vkconnect_auth_phone_mask_country_za":"South Africa","vkconnect_auth_phone_mask_country_kr":"South Korea","vkconnect_auth_phone_mask_country_ss":"South Sudan","vkconnect_auth_phone_mask_country_es":"Spain","vkconnect_auth_phone_mask_country_lk":"Sri Lanka","vkconnect_auth_phone_mask_country_sd":"Sudan","vkconnect_auth_phone_mask_country_sr":"Suriname","vkconnect_auth_phone_mask_country_sz":"Swaziland","vkconnect_auth_phone_mask_country_se":"Sweden","vkconnect_auth_phone_mask_country_ch":"Switzerland","vkconnect_auth_phone_mask_country_sy":"Syria","vkconnect_auth_phone_mask_country_tw":"Taiwan","vkconnect_auth_phone_mask_country_tj":"Tajikistan","vkconnect_auth_phone_mask_country_tz":"Tanzania","vkconnect_auth_phone_mask_country_th":"Thailand","vkconnect_auth_phone_mask_country_tg":"Togo","vkconnect_auth_phone_mask_country_to":"Tonga","vkconnect_auth_phone_mask_country_tt":"Trinidad and Tobago","vkconnect_auth_phone_mask_country_tn":"Tunisia","vkconnect_auth_phone_mask_country_tr":"Turkey","vkconnect_auth_phone_mask_country_tm":"Turkmenistan","vkconnect_auth_phone_mask_country_tv":"Tuvalu","vkconnect_auth_phone_mask_country_ug":"Uganda","vkconnect_auth_phone_mask_country_ua":"Ukraine","vkconnect_auth_phone_mask_country_ae":"United Arab Emirates","vkconnect_auth_phone_mask_country_gb":"United Kingdom","vkconnect_auth_phone_mask_country_us":"United States of America","vkconnect_auth_phone_mask_country_uy":"Uruguay","vkconnect_auth_phone_mask_country_uz":"Uzbekistan","vkconnect_auth_phone_mask_country_vu":"Vanuatu","vkconnect_auth_phone_mask_country_va":"Vatican City","vkconnect_auth_phone_mask_country_ve":"Venezuela","vkconnect_auth_phone_mask_country_vn":"Vietnam","vkconnect_auth_phone_mask_country_ye":"Yemen","vkconnect_auth_phone_mask_country_zm":"Zambia","vkconnect_auth_phone_mask_country_zw":"Zimbabwe","bottom_copyright":"VK","global_footer_legal_recommendations_link_text":"Recommendation technologies used","global_footer_rules_link_text":"Terms","global_footer_advertisement_link_text":"VK Ads","global_footer_to_developers_link_text":"Developers","vkconnect_auth_enter_vk_title":"Sign in to VK","vkconnect_auth_button_enter_with_phone_okru":"Other sign-in options","login_form_header":"Sign in to VK","vkconnect_auth_index_agreements_text":"By pressing Sign in, you agree to the {terms}Terms of Service{\/terms} and {privacy}Privacy Policy{\/privacy}","vkconnect_auth_index_saved_subtitle":"Select an account to sign in","vkconnect_auth_login_to_another_acc":"Sign in to other account","global_search_placeholder":"Search VK","vkconnect_auth_index_a11y_saved_users_remove":"Sign out of {name}'s account","vkconnect_auth_index_close":"Close","vkconnect_auth_index_unknown_error_text":"Service temporarily unavailable","vkconnect_error_unknown_error":"Something went wrong","reg0_error_bad_email":"Incorrect email.","reg0_change_mail":"Change email","login_fast_unblocked_wait_description":"Account unblocked. You'll be able to use VK again in a few seconds.","login_blocked_delete_page_header":"Delete profile","login_blocked_sure_delete_page_question":"Are you sure you want to delete your profile?","box_yes":"Yes","box_no":"No","login_unban_fetch_ban_data_internal_error":"A server error occurred. Please try again later.","login_unban_data_expired":"Your session has expired. To reactivate your account, you need to start the process over again.","login_authcheck_called_phone_label":"Last 4 digits of phone number","login_confirmation_code":"Confirmation code","login_authcheck_call_reset_sent":"<b>Calling...<\/b><br>We are calling your phone.","login_authcheck_sms_resent":"<b>Code sent<\/b><br>An SMS confirmation code has been resent.","join_send_code_via_sms_time":"Send SMS code in %s","join_resend_code_time":"Resend the code in %s","login_authcheck_send_call_reset_delay":"Request another call in %s","join_send_code_via_sms":"Send code via SMS","join_no_code":"I didn't get a code","login_authcheck_send_call_reset_message":"Request a call","reg_code_limit_exceeded":"Code resend request limit exceeded. Please try requesting another code later.","join_country_label":"Country\/Region","login_mobile_phone":"Mobile phone number","login_unblock_form_change_phone":"Change","vkui_blocked_no_phone_access":"I don't have access to this number","login_authcheck_enter_code":"Enter code","join_pwd_level0":"Password too short","join_pwd_level1":"Password too weak","join_pwd_level2":"Weak password","join_pwd_level3":"Good password","join_pwd_level4":"Strong password","join_pwd_level5":"A password cannot contain spaces","login_new_password_label":"New password","login_enter_password":"Enter a password","reg_validate_call_reset_button":"Call","login_receive_code":"Get code","login_check_code":"Submit code","login_blocked_unblock_page":"Unblock account","restore_change_phone_done_wait_banned":"Your request to unblock your account and change the number linked to it has been approved. Sign in to your account after <b>{date}<\/b> to unblock it.","login_delayed_its_not_me":"It wasn't me","login_delayed_request_finished":"To access your account, please sign in to the website using your new number and the password you created when restoring your account. If you did not make a request to update your number, click "It wasn't me".","login_unblock_redirect_to_auth":"Go to login page","login_unblock_form_explanation":"To unblock this account, please confirm that you're the owner.","login_blocked_call_title":"Restore account","login_reset_sessions_tooltip_text":"Uncheck the box to leave active sessions open on other devices","login_reset_sessions":"Sign out on all devices except the current one","events_mon":"Mon","events_tue":"Tue","events_wed":"Wed","events_thu":"Thu","events_fri":"Fri","events_sat":"Sat","events_sun":"Sun","datepicker_date_format":"{day} {month} {year}","datepicker_month_format":"{month} {year}","global_day_label":"Day:","global_year_label":"Year:","global_month_label":"Month:","Month1_of":"January","month1_of":"January","Month2_of":"February","month2_of":"February","Month3_of":"March","month3_of":"March","Month4_of":"April","month4_of":"April","Month5_of":"May","month5_of":"May","Month6_of":"June","month6_of":"June","Month7_of":"July","month7_of":"July","Month8_of":"August","month8_of":"August","Month9_of":"September","month9_of":"September","Month10_of":"October","month10_of":"October","Month11_of":"November","month11_of":"November","Month12_of":"December","month12_of":"December","stories_view_sticker_pack":"Show pack","stories_link_attach_clip":"Watch clip","voting_N_voted":["","%s person voted","%s people voted"],"voting_nobody_voted":"No one's voted yet","stories_stat_off":"Disabled","stories_narrative_block_onboarding_text":"Your moments can be found here","global_share_link_failed":"Please enter a URL or phone number.","global_continue":"Continue","groups_donut_snippet_link_title":"Community with VK Donut","wall_online_booking_title":"Online booking","global_article":"Article","global_audio_playlist":"Playlist","audio_listen_snippet":"Play","global_artist":"Artist","global_curator":"Curator","global_type_narrative":"Moment","wall_edit_album_description":["","Album · %s photo","Album · %s photos"],"wall_market_album_compact_description":"Products · {group_name}","audio_podcast_attach_media":"Podcast","wall_send":"Post","wall_publish_suggest":"Post","classifieds_post_edit_product_snippet_title":"Объявление","wall_post_copyright_edit_button":"Edit source","wall_post_copyright_add_button":"Add source","wall_post_copyright_source_text":"Source","wall_post_copyright_mb_title_text_edit":"Edit source","wall_post_copyright_mb_title_text":"Add source","global_link_choose_own_photo":"Choose a photo","global_link_choose_own_video":"Choose video","global_link_remove_photo":"Delete image","global_link_edit_title":"Edit title","global_link_edit_desc":"Edit description","global_link_edit_url":"Edit URL","marketitemreview_main_block_review_text":["","%s review","%s reviews"],"global_share_button_remove_tooltip":"Remove button","apps_snippet_game":"Game","apps_snippet_mini_app":"Mini app","global_link_invalid_url":"Invalid URL","global_share_button_text_tooltip":"You can edit the button name","profile_wall_postpone_at":"at","wall_post_timer_reset":"Reset","wall_publication_now":"Now","wall_best_friends_only":"Close friends only","friends_cancel_event_invite":"Cancel invite","friends_send_event_invite":"Send invite","groups_notifications_on":"Enable notifications","groups_notifications_set_up":"Notifications enabled","groups_hidden_members_message_box_title":"Followers hidden","groups_hidden_members_message_box_content":"Community managers hid the list of followers","groups_delete_cover_confirm_new":"Are you sure you want to delete the cover?","groups_delete_cover_confirm":"Are you sure you want to delete this cover?<br><br>Your community will be displayed in a classical view with a photo on the right.","groups_delete_cover_title":"Delete cover","wall_doc_added_short":"Added","wall_doc_add_short":"Add","photos_restriction_button_watch":"View","reactions_n_reacted":["","%s person reacted","%s people reacted"],"reactions_button_unset_reaction_title":"Remove {reaction_name}","reactions_button_set_reaction_with_name":"Send reaction {reaction_name}","reactions_button_title":"React","wall_post_with_video_different_dates_title":"The post contains videos with different posting times","wall_post_with_video_different_dates_info":"Some of them may be available in the Videos section before this post is published. Videos with later posting times will become available when the post is published.","wall_post_with_video_later_title":"Post scheduled later than attached video","wall_post_with_video_later_info":["","The video will be available in the Videos section on {day} {month} at {hour}:{minute}, earlier than the wall post","The video will be available in the Videos section on {day} {month} at {hour}:{minute}, earlier than the wall post","The video will be available in the Videos section today at {hour}:{minute}, earlier than the wall post","The video will be available in the Videos section tomorrow at {hour}:{minute}, earlier than the wall post"],"wall_post_with_video_earlier_title":"Post scheduled earlier than attached video","wall_post_with_video_earlier_info":["","The video will be published together with the post and become available on {day} {month} at {hour}:{minute}","The video will be published together with the post and become available on {day} {month} at {hour}:{minute}","The video will be published together with the post and become available today at {hour}:{minute}","The video will be published together with the post and become available tomorrow at {hour}:{minute}"],"wall_post_with_video_publish_together_title":"The video will be published with the post and become available right away","global_posting_carousel_ratio_original":"Original","global_posting_carousel_ratio_hint":"Здесь можно сменить<br>соотношение сторон — для этих<br>фото лучше всего подойдёт ","wall_unfix_post":"Unpin post","wall_fix_post":"Pin post","wall_delete_suggested_box":"Are you sure you want to delete all previous suggested posts? After deletion, you will be unable to restore them.","wall_delete_suggested_btn":"Delete all previous suggested posts","wall_publish_donut_as_free_confirmation_warn":"This post has paid attachments. If you make it public, the attachments will also be available to everyone.","wall_publish_donut_as_free_confirmation_title":"Confirmation","wall_publish_donut_as_free_confirmation_confirm":"Are you sure you want to make this post public?","wall_publish_donut_as_free_confirmation_btn":"Yes","global_recommended_exceeded":["","The recommended size has been exceeded by %s character.","The recommended size has been exceeded by %s characters."],"global_recommended_lines":["","The recommended size has been exceeded by %s line.","The recommended size has been exceeded by %s lines."],"profile_mention_start_typing":"Start typing a name...","profile_mention_not_found":"User was not found","wall_choose_best_friends":"Select close friends","wall_best_friends_settings_box_conversation_friends_count":["","%s friend","%s friends"],"wall_check_sign_disabled":"Display my signature if the post is edited","wall_check_sign_enabled":"Hide my signature if the post is edited","global_share_too_many_attachments":"Promoted posts with a button may not have attachments.","global_ads_post_too_many_newlines":"Promoted posts with buttons can have no more than four line breaks.","global_ads_post_too_long_message":"Promoted posts with buttons can contain text of no more than 2,000 characters.","global_share_too_many_links":"Promoted posts with a button must not contain more than one link.","global_share_title_required":"Enter a link title.","global_share_url_required":"Enter a valid URL","global_share_image_required":"Choose a link image.","wall_publish_donut_freeing_attaches_confirmation_title":"This post has paid attachments. When it becomes public after the specified period, the attachments will also become available to everyone.","wall_next_n_replies":["","Show next comment","Show more comments"],"wall_prev_n_replies":["","Show previous comment","Show previous comments"],"wall_reply_add_attach_label":"Add attachment","global_reply_to":"replying to {user}","wall_reply_submit_settings":"Shortcuts","wall_reply_submit_settings_1":"<b>Enter<\/b>: send message<br><b>Shift+Enter<\/b>: new line","wall_reply_submit_settings_2":"<b>Ctrl+Enter<\/b>: send message<br><b>Enter<\/b>: new line","wall_replied_to_group":"Community","global_X_post_views":["","view","views"],"global_X_shared":["","share","shares"],"global_like":"Like","voting_x_voted_short":["","<b>%s<\/b> person","<b>%s<\/b> people"],"voting_x_voted":["","<b>%s<\/b> person voted","<b>%s<\/b> people voted"],"wall_my_friends_only":"Only your friends can see this post","profile_status_word_secs_ago":["","one second ago","two seconds ago","three seconds ago","four seconds ago","five seconds ago"],"wall_post_privacy_friends":"for friends","news_x_new_replies_more":["","%s new comment added","%s new comments added"],"wall_show_n_last_replies":["","Show the last %s comment","Show the last %s comments"],"wall_show_all_n_replies":["","Show %s comment","Show all %s comments"],"wall_hide_replies":"Hide comments","wall_preview_link":"View page","wall_x_new_replies_more":["","%s new comment added","%s new comments added"],"profile_wall_postpone_btn":"Schedule","wall_reply_as_group":"post as community","wall_reply_as_user":"on behalf of the user","global_on_behalf_group":"Post as group","global_on_behalf_me":"Comment as yourself","wall_open_comments":"Enable comments","wall_closing_comments":"Disable comments","wall_post_copyright_feature_text":"You can now add a source link to your post","intro_hint_description_online_booking_attach_add_web":"You can now add an online booking button","wall_new_posters_new_year":"Share the holiday spirit with your friends with new posters!","global_replied_to_reply_count":["","%s reply","%s replies"],"events_snippet_will_participate_active":"You're going","events_snippet_cant_participate_active":"You're not going","profile_hashtag_start_typing":"Start typing a hashtag","profile_hashtag_not_found":"Hashtag not found","global_report_sent":"Report sent","reports_warning_sent":"Your report has been sent and will be reviewed as soon as possible.","group_leave_group":"Unfollow community","global_ads_wall_post_ord_mark_as_ads_added":"Tagged as ad","global_ads_wall_post_ord_mark_as_ads_removed":"Untagged as ad","wall_post_text_show_more":"Show more","video_upload_encode_error_too_short_1s":"Failed to process video. Clip must be longer than one second.","video_upload_encode_error_too_long":"Failed to process video. Clip must be shorter than 180 seconds.","video_upload_error_uploading":"Failed to upload video. Please try again","video_upload_error_incorrect_publish_date":"Invalid posting time. Please select another.","video_upload_error_limit_postpone_posts":"Too many scheduled posts","video_upload_error_day_limit_postpone_posts":"Too many scheduled posts on selected day","video_upload_error_same_publish_date":"There is already a scheduled post at this time","video_upload_error_day_limit_posts":"Too many posts on this day","video_claimed_not_uploaded":"Video cannot be saved due to copyright issues.","video_upload_error_info_limit_postpone_posts":"To schedule this post, delete one of your existing scheduled posts","video_upload_error_info_day_limit_postpone_posts":"To schedule this post, change the video posting day","video_upload_error_info_same_publish_date":"To create a scheduled post, change the video posting time","profile_convert_to_article_short":"Continue in the editor","global_share_too_many_newlines":"Promoted posts with a button may not have more than two line breaks.","global_share_too_long_message":"Promoted posts with a button may not exceed 220 characters.","awards_restricted_tittle":"Awards not available for this creator","awards_restricted_subheader":"Try making their day another time! For now, you can send an award to someone else.","awards_restricted_button":"I'll be waiting!","awards_not_available_tittle":"Awards not yet available to everyone","awards_not_available_subheader":"Please wait some time until you're able to send and receive awards","awards_not_available_button":"OK","global_update_photo_error_too_small":"The photo must be at least {width} pixels wide and {height} pixels high.","wall_add_photo_error":"Unable to upload the image","global_error_generic_reason":"Something went wrong","reports_strikes_avatar_upload_error":"Restrictions are currently in place for {name} due to violating VK's rules. This action will become available again on {day} {month} {year} at {hour}:{minute}. {link}Learn more{\/link}","wall_no_replies":"No comments","wall_clear_date_filter":"Reset filter","global_add":"Add","gifts_gift_modal_load_error_not_found":"Подарок не найден","gifts_server_error":"The gift was not sent due to a server error.","gifts_gift_sent":"Your gift has been sent.","gifts_free_send_left":["","You can send this free gift to <b>%s friend<\/b>.","You can send this free gift to <b>%s friends<\/b>."],"gifts_gift_price_label":"Price:","gifts_your_balance":"Your balance:","gifts_receivers":"Recipients","gifts_your_message":"Your message","gifts_gift_modal_recipients_load_more":"Load more","gifts_send_confirm":["","<b>%s vote<\/b> will be deducted from your account.","<b>%s votes<\/b> will be deducted from your account."],"gifts_confirmation_modal_title":"Confirmation","global_store_stickers":"Sticker store","global_emoji_cat_recent":"Frequently Used","global_emoji_cat_1":"Faces","global_emoji_cat_2":"Animals & Nature","global_emoji_cat_3":"Hands & People","global_emoji_cat_4":"Food & Drink","global_emoji_cat_5":"Activity","global_emoji_cat_6":"Travel & Transport","global_emoji_cat_7":"Objects","global_emoji_cat_8":"Symbols","global_emoji_cat_9":"Flags","purchases_stickers_favorite_rm_tt":"Remove from favorites","purchases_stickers_favorite_add_tt":"Add to favorites","purchases_stickers_select_style":"Select style","purchases_stickers_keyboard_pack_setup":"Settings","vmoji_keyboard_create_avatar":"Create avatar","purchases_stickers_product_not_found":"Product not found","purchases_please_sign_in":"Please sign in or {link}sign up{\/link} to use stickers.","purchases_stickers_get_pack_btn":"Get the pack","purchases_stickers_catalog_purchase_details_title":"Not for sale","purchases_stickers_product_unavailable":"Unavailable","purchases_stickers_product_purchased":"Added","purchases_stickers_buy_for":"Buy for {regular_price} {price}","purchases_stickers_get_for_free":"Get for {regular_price} free","purchases_stickers_gift":"Send as gift","purchases_stickers_order_summary_pack_for_styles_for":["","Sticker pack for {pack_price}, style for {styles_price_sum}","Sticker pack for {pack_price}, {styles_num} styles for {styles_price_sum}"],"purchases_stickers_order_summary_pack_for_styles_free":["","Sticker pack for {pack_price}, one style for free","Sticker pack for {pack_price}, {styles_price_num} styles for free"],"purchases_stickers_order_summary_pack_for":"Stickers for {pack_price}","purchases_stickers_order_summary_pack_free_styles_for":["","Sticker pack for free, one style for {styles_price_sum}","Sticker pack for free, {styles_num} styles for {styles_price_sum}"],"purchases_stickers_order_summary_pack_free_styles_free":"Sticker pack and style for free","purchases_stickers_order_summary_pack_free":"Stickers for free","purchases_stickers_order_summary_styles_for":["","One style for {styles_price_sum}","{styles_num} styles for {styles_price_sum}"],"purchases_stickers_order_summary_styles_free":["","One style for free"," {styles_num} styles for free"],"purchases_stickers_product_preview_title_base_pack":"Standard sticker pack","purchases_stickers_product_preview_title_style":"Style: {title}","purchases_stickers_style_selection_for_pack":"Select a style for the "{title}" sticker pack","stickers_layer_gift":"Send as gift","purchases_stickers_product_settings_save":"Save","purchases_stickers_stickers_of_style":"Stickers in the "{title}" style","purchases_stickers_preview_add_item":"Add","purchases_stickers_purchased_styles":"Your styles","purchases_stickers_other_styles":"More styles","purchases_stickers_styles_hint":"Styles add new colors to sticker packs. You can buy a style for either yourself or as a gift for someone who already has the basic sticker pack. If they don't have it, you can buy it together with the style. ","purchases_stickers_product_preview_title_pack":"Sticker pack: {title}","purchases_stickers_preview_remove_item":"Remove","purchases_stickers_you_have_it":"Added","purchases_stickers_active_style":"Active","intro_hint_description_feed_author_like_onboarding":"Now, your likes as the post's author stand out","global_dislike":"Unlike","likes_comments_N_aria_short":["","%s comment","%s comments"],"likes_likes_N_aria_short":["","%s person liked this","%s people liked this"],"likes_shares_N_aria_short":["","%s share","%s shares"],"wall_poll_actionsheet_group_title":"Poll by {community_name}","wall_poll_actionsheet_user_title":"Poll by: {author}","voting_anonymous":"Anonymous poll","voting_public":"Public poll","voting_no_voted":"No one's voted yet","voting_vote_first":"Your vote will be the first!","voting_ended":"finished","voting_unvote_disabled":"Can't retract votes","voting_time_until":["","until {day} {month}, {hour}:{minute} {am_pm}","yesterday until {hour}:{minute} {am_pm}","today until {hour}:{minute} {am_pm}","until {day} {month}, {hour}:{minute} {am_pm}"],"voting_fetch_poll_failed":"Failed to load poll. Please try again.","voting_vote_failed":"Failed to vote. Please try again.","voting_unvote_failed":"Failed to cancel vote. Please try again.","news_feed_reactions_menu_reacted_users_none":"No reactions yet","news_feed_reactions_menu_reacted_users":["","{count} reaction","{count} reactions"],"video_feed_player_clip_deleted":"Clip deleted","video_clip_restriction_user_access":"Access restricted by creator","video_feed_player_clip_more":"More on VK Clips","video_feed_player_clip_repeat":"Watch again","video_clip_sound_restriction_error":"The clip volume is muted since the sound used in it is unavailable","video_clips_banner_close_btn":"OK","voting_closed":"closed","voting_vote":"Vote","voting_revote":"Retract vote","voting_report":"Report","voting_share":"Share","voting_export":"Get poll code","global_actions_button":"Actions","mobile_voting_answers":["","%s reply","%s replies"],"voting_show_variants":"Show all options","voting_show_results":"Show results","pages_albums_label_long":["","Album · {size} photo","Album · {size} photos"],"pages_articles_label_long":"Article · by {author}","pages_articles_label":"Article","fave_delete":"Remove from Bookmarks","fave_add":"Add to Bookmarks","pages_article_snippet_deleted_long":"Article deleted","pages_articles_donut_access_title":"This article is only available to donors","pages_articles_snippet_protected":"Only community followers<br>can access this article.","pages_articles_snippet_banned":"Article unavailable","pages_articles_read_article_button":"Read article","communityreview_community_info_review_count":["","%s review","%s reviews"],"communityreview_community_info_no_reviews":"No reviews","wall_attachments_link_go":"Open link","public_subscribe":"Follow","global_tb":"ТБ","global_gb":"GB","global_mb":"MB","global_kb":"KB","mobile_post_photos_count":["","%s photo","%s photos"],"video_restriction_title_unavailable":"Video unavailable","photos_geo_restriction_title":"Photo blocked","wall_restriction_action_text":"View","global_wall_photo":"Photo","global_wall_photo_group":"Photo {number} of {count}","wall_attachment_secondary_show_more":"Show %s more","global_video_online":"Live","profile_X_market_services_items":["","%s service","%s services"],"profile_X_market_items":["","%s item","%s items"],"search_goto":"Go","fave_link_snippet_added_text":"Link added to Bookmarks","fave_article_added_text":"Article saved to Bookmarks","audio_primary_attachment_audio_listen":"Play","audio_delete_audio":"Remove track","audio_restriction_title_geo":"This track isn't available in your region. This was the decision of the artist or their representative.","mobile_audio_player_pause":"Pause","mobile_audio_player_play":"Play","global_add_to_audio":"Add to my music","wall_doc_share":"Share","wall_doc_add":"Add to Files","voting_voting":"Poll","audio_music_track_row_remove_from_group_music_action_hint":"Remove track","audio_music_track_row_add_to_group_music_action_hint":"Add to community music","audio_music_track_row_remove_from_my_music_action_hint":"Remove from My music","audio_music_track_row_add_to_my_music_action_hint":"Add to My music","audio_music_playlist_subtitle":"Playlist","audio_music_album_playlist_type_album":"Album","audio_music_album_playlist_type_ep":"EP","audio_music_album_playlist_type_collection":"Collection","audio_music_album_playlist_type_single":"Single","audio_music_playlist_remove_mm_action_label":"Remove from my music","audio_music_playlist_add_mm_action_label":"Add","audio_music_playlist_pause_action_label":"Pause ","audio_music_playlist_play_action_label":"Play ","wall_posting_poll_show_results":"View results","wall_posting_poll_header_text":"Poll","wall_obscene_box_aria_label":"Obscene text","wall_obscene_box_alert_tooltip_hint":"Profanity","wall_coauthors_modal_title":"Creators","wall_coowner_status_pending_by_group":"Awaiting confirmation","wall_coowner_status_pending":["","Awaiting confirmation","Awaiting confirmation"],"groups_government_community":"Government organization","news_you_subscribed":"Following","global_fan_subscribe":"Follow","global_search_not_found":"Your search for {search} returned no results.","friends_no_user_selected":"You haven't selected anyone.","global_photo_full_size":"View photos","global_language_beta_version":"Beta version"}, false);
</script>
<script type="module" src="/js/loader_nav21344702127_3.js"></script><script type="module" src="/js/lang3_2.js?28899810"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/chunks/vkcom-kit.0fadaaa7.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/chunks/vkcom-kit.0fadaaa7.css"><script type="module" src="https://st6-22.vk.com/dist/web/chunks/vkcom-kit.14852cca.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/vkcom-kit-icons.0723bf99.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/react.785823df.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/vkui.053a6236.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/state-management.a047c2f5.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/architecture-mobx.590e845d.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/draggable.d59c2db3.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/core_spa.b8fd5cb7.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/core_spa.425e5825.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/core_spa.425e5825.css"><script type="module" src="https://st6-22.vk.com/dist/web/core_spa.1445a29f.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/chunks/audioplayer-lib.2591edb3.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/chunks/audioplayer-lib.2591edb3.css"><script type="module" src="https://st6-22.vk.com/dist/web/chunks/audioplayer-lib.00472d3a.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/common_web.ebc4cb55.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/common_web.ebc4cb55.css"><script type="module" src="https://st6-22.vk.com/dist/web/common_web.bac94e4d.js"></script><script type="module" src="/js/lib/px.js?ch=1"></script><script type="module" src="/js/lib/px.js?ch=2"></script><link rel="alternate" media="only screen and (max-width: 640px)" href="https://m.vk.com/wall-224095492_88"><link rel="alternate" href="android-app://com.vkontakte.android/vkontakte/m.vk.com/wall-224095492_88"><script type="module" src="https://st6-22.vk.com/dist/web/chunks/videoplayer-interactive.e80c2db0.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/c008ac0a.effbe545.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/9b75122f.95eb92ea.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/0880b08f.22bb44a6.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/ef62974d.35a80569.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/27586bd8.0cf085f7.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/a9ad3c51.95fd3848.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/787ae490.e174ca56.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/cf47ed8f.9c3aa857.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/bd262b8e.a1213f24.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/0e8ca86b.82b52bb6.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/77af851d.c7b154cd.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/65542e21.0213af03.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/9a3b2b7a.23881378.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/4da5e49e.ae8b01b0.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/20de0d5d.e22c0dfe.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/69cb2636.35f5771e.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/1f67111f.5463ebd5.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/87760f02.ac5d9843.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/d9e7d668.fb58de16.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/ef79d33b.ef91ec1e.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/703d9c81.58b1eb9b.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/dc6875f9.22c8e6ea.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/1cd916bc.4bf77d31.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/9edc159d.8ab38d68.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/c64b8270.ea487242.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/5575942c.0bdf2f4c.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/7e16856b.05a817f8.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/89b54b69.d555f220.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/600a367b.31d1c77f.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/3a6da04e.18f64065.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/45be3160.c7e3ad20.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/4e663b7b.0b660f24.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/a2810efe.40d39953.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/14eac60e.416145d7.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/dd786841.e0e05755.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/71f02de9.51aba4e8.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/a040d7aa.dc56c738.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/78b89076.93c22c86.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/4fdbde2e.a2b5c362.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/598743d7.11fb28a0.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/5aa8c000.ccd437db.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/6a01ef3b.6d86f8c9.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/23a5883c.991a42b4.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/6cb9fd8c.66634bef.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/9a3fe63c.da591ba8.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/82a8d751.c7283dee.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/a290b9d5.c478d233.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/4f0b8edb.00f92c2d.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/20ae1118.d21b4f63.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/57122a42.1ab59ad5.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/516a3ccc.0af61cb0.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/chunks/51386c6a.dfb7710c.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/chunks/51386c6a.dfb7710c.css"><script type="module" src="https://st6-22.vk.com/dist/web/chunks/51386c6a.70d0460f.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/c514fcfc.b9e2e10d.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/87d3a091.38f87f1c.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/a75ef196.3f624eaa.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/e0c31085.248bb477.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/805f6258.3fd854e3.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/4e6883d8.0798c3f8.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/ee565595.43120448.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/21a7fde4.59fe9d4e.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/0538db7d.acd806e5.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/ee9afe15.9c64e614.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/c5b86d2c.acb8649e.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/5fc63439.01195a98.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/584ca8fa.3cb0be83.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/edad9e7b.6b4065cf.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/3b59bf01.4623d673.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/4ffaf673.2ad0e27b.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/25568c57.7cb5ad41.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/b95ae360.69703642.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/aef0f4be.73cb05cf.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/819c1070.944ad91a.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/6069d9a3.4a2426f9.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/bdf39731.566ea25e.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/ec9ec794.b2b08608.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/534f92fc.1722fa9a.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/4937cd44.a41367a6.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/2fd7b27e.792d2761.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/page.a0a68455.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/page.a0a68455.css"><script type="module" src="https://st6-22.vk.com/dist/web/page.bf597137.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/page.8f8d2104.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/page.8f8d2104.css"><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/post.efdfa2e5.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/post.efdfa2e5.css"><script type="module" src="https://st6-22.vk.com/dist/web/wall.cbb2577f.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/wall.5f4dc9a2.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/wall.5f4dc9a2.css"><script type="module" src="https://st6-22.vk.com/dist/web/chunks/fa845571.a44689f4.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/wide_dd.b351371c.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/wide_dd.1a28ad25.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/wide_dd.1a28ad25.css"><script type="module" src="https://st6-22.vk.com/dist/web/pagination.6e93a786.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/48ce7f29.355de5bb.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/b16b8e69.c44e22fc.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/5a3db999.db849e64.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/067fcde3.acf9f564.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/9fb4a302.5db4e2bb.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/a3238b2e.3db628e0.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/emoji.52f68191.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/emoji.52f68191.css"><script type="module" src="https://st6-22.vk.com/dist/web/emoji.2691a272.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/posting_form.c773c30a.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/reports.5e617ad9.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/reports.5e617ad9.css"><script type="module" src="https://st6-22.vk.com/dist/web/chunks/a10aa945.58dc6866.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/ccfddb52.595a22e5.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/post_context_menu.0e96f849.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/post_context_menu_skeleton.7a6fba57.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/post_context_menu_skeleton.7a6fba57.css"><script type="module" src="https://st6-22.vk.com/dist/web/chunks/33d7d353.def1c414.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/likes.7fd8420b.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/likes.7fd8420b.css"><script type="module" src="https://st6-22.vk.com/dist/web/likes.5b72454e.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/chunks/palette.dc78f16e.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/chunks/palette.dc78f16e.css"><script type="module" src="https://st6-22.vk.com/dist/web/chunks/palette.823a3714.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/b9c9ec4e.80a72a82.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/54895fa3.2c4d28b2.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/835f171e.11868bcb.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/reactions.ffd22ada.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/reactions.ffd22ada.css"><script type="module" src="https://st6-22.vk.com/dist/web/reactions.1723ada0.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/2bf31f27.0089adf6.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/secondary_attachments.7fd8420b.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/secondary_attachments.7fd8420b.css"><script type="module" src="https://st6-22.vk.com/dist/web/secondary_attachments.829dd6bb.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/media_grid.c93dd070.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/media_grid.c93dd070.css"><script type="module" src="https://st6-22.vk.com/dist/web/media_grid.8167eb31.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/b9a0781a.85e698ed.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/a14b6f70.104b601c.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/c4615bd7.e2814ed3.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/eb3ba767.e9b71739.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/00fbd613.32aec0f9.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/06aca322.787d643a.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/a33bf90e.ea65fd38.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/93785e19.3aed5af8.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/39edd33e.8b37537b.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/5da55942.95d97e86.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/46eade22.daa478f8.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/ec046727.126382c4.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/98bc6302.65627573.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/post_header.70d4968b.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/post_header.70d4968b.css"><script type="module" src="https://st6-22.vk.com/dist/web/post_header.f3c1712e.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/feed_focus_returner.94117260.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/ui_common.8a99120f.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/ui_common.8a99120f.css"><script type="module" src="https://st6-22.vk.com/dist/web/chunks/d0f0f4ae.48ae0fb2.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/45624723.2f7750a0.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/e8a365d0.b9ffdf79.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/3956c922.8d843b35.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/ui_common.7fd8420b.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/ui_common.7fd8420b.css"><script type="module" src="https://st6-22.vk.com/dist/web/ui_common.619c9696.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/232bb06e.de336912.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/search_top_anonymous.e7661aa4.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/search_top_anonymous.e7661aa4.css"><script type="module" src="https://st6-22.vk.com/dist/web/search_top_anonymous.a91d7a8b.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/search.5f3ac0d7.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/search.5f3ac0d7.css"><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/dist/web/site_layout.43014a29.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/dist/web/site_layout.43014a29.css"><script type="module" src="https://st6-22.vk.com/dist/web/site_layout.2f732544.js"></script><script type="module" src="/dist/web/language.99c2b192.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/chunks/2ff7b3be.5db84172.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/performance_observers.55c7d735.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/css_types.5dc9625c.js"></script><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/vk_sans_display_faux.7d208ecb.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/vk_sans_display_faux.7d208ecb.css"><link type="text/css" rel="stylesheet" as="style" href="https://st6-22.vk.com/css/al/vk_sans_display.5625d45f.css"><link type="text/css" rel="preload" as="style" onload="const el = this.cloneNode(); el.rel = 'stylesheet'; el.removeAttribute('onload'); this.parentNode.insertBefore(el, this);" href="https://st6-22.vk.com/css/al/vk_sans_display.5625d45f.css"><script type="module" src="https://st6-22.vk.com/dist/web/vk_sans_observer.9b62b635.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/unauthorized.8f51ca0d.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/jobs_devtools_notification.3d0841d6.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/page_layout.266e7ea1.js"></script><script type="module" src="https://st6-22.vk.com/dist/web/grip.85cad94a.js"></script>
<script type="text/javascript">;try{/*linkPreloadFallback*/
(function () {
'use strict';
// eslint-disable-next-line no-restricted-syntax
function linkPreloadFallback() {
function isPreloadSupported() {
return Boolean(document.createElement('link').relList?.supports?.('preload'));
}
if (!isPreloadSupported()) {
document.querySelectorAll('link[rel="preload"]').forEach((link)=>{
link.onload = '';
link.rel = 'stylesheet';
});
}
}
return linkPreloadFallback;
})()({});} catch (e) {e.__inline_tag = "linkPreloadFallback.js"; e.name = `[linkPreloadFallback.js] ${e.name}`; throw e;};</script><link rel="stylesheet" type="text/css" href="/dist/web/chunks/ec8e260f.css"><style type="text/css">.EnterPhoneOrMailForm-module_helpIcon__o6fW3 {
margin-left: auto;
color: #b8c1cc;
color: var(--vkui--color_icon_tertiary);
cursor: pointer;
}
.EnterPhoneOrMailForm-module_input__zMdi3 {
background: #ebedf0;
background: var(--vkui--color_search_field_background);
}
.EnterPhoneOrMailForm-module_separatorDescription__2zKD2 {
position: absolute;
top: 0;
left: 50%;
bottom: 0;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 16px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background: #fff;
background: var(--vkui--color_background_content);
width: auto;
padding: 0 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.EnterPhoneOrMailForm-module_separatorContainer__OULfn {
position: relative;
margin: 9px 0;
}
.EnterPhoneOrMailForm-module_checkboxRowContainer__L96Y- {
margin-left: -8px;
}
</style><style type="text/css">.CountryList-module_countryList__RFuA8 {
}
/* compact mode */
.CountryList-module_countryList--compact__V5bDi.CountryList-module_countryList__RFuA8 {
position: absolute;
top: 42px;
width: 100%;
background-color: #fff;
background-color: var(--vkui--color_background_modal);
z-index: 3;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
border: 0.5px solid #d7d8d9;
border: 0.5px solid var(--vkui--color_separator_primary);
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
-webkit-box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
-moz-box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
-moz-box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
-webkit-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
-moz-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
-o-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
animation: CountryList-module_countries__axi-0 150ms ease-in-out;
}
/* search input */
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__search__Ym8Rf {
padding: 8px 12px 8px 12px;
position: relative;
background: #fff;
background: var(--vkui--color_background_modal);
margin-top: 2px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchIcon__z2IDx {
position: absolute;
top: 50%;
left: 30px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
pointer-events: none;
color: #818c99;
color: var(--vkui--color_icon_medium);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC {
font-size: 15px;
font-weight: 400;
line-height: 20px;
width: 100%;
outline: none;
border: 0;
height: 32px;
background-color: #ebedf0;
background-color: var(--vkui--color_search_field_background);
color: #000;
color: var(--vkui--color_text_primary);
padding: 6px 25px 6px 30px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-webkit-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC:-moz-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-moz-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC:-ms-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-ms-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-webkit-search-cancel-button {
display: none;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchClear__1r5Tg {
position: absolute;
top: 50%;
left: -webkit-calc(100% - 27px);
left: -moz-calc(100% - 27px);
left: calc(100% - 27px);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #99a2ad;
color: var(--vkui--color_icon_secondary);
cursor: pointer;
}
/* list */
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__list__mL0uC {
overflow: auto;
max-height: 202px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItem__bflkV {
color: #000;
color: var(--vkui--color_text_primary);
font-size: 15px;
font-weight: 400;
line-height: 20px;
display: grid;
grid-template-columns: 30px 1fr auto;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 6px 16px 6px 12px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItem__bflkV:hover {
background-color: #ebecee;
background-color: var(--vkui--color_background_secondary--hover);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItemIcon__4X6Z7 {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItemCode__LzHon {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__subhead__TPwB8 {
color: #99a2ad;
color: var(--vkui--color_text_tertiary);
text-align: center;
padding-top: 10px;
padding-bottom: 20px;
}
/* regular mode */
/* search input */
.CountryList-module_countryList--regular__ykrNT.CountryList-module_countryList__RFuA8 {
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__search__Ym8Rf {
padding: 10px 16px;
background: #fff;
background: var(--vkui--color_background_modal);
position: sticky;
display: block;
position: -webkit-sticky;
top: 0;
z-index: 1;
-webkit-animation: CountryList-module_showSearch__MhqoH 0.01s;
-moz-animation: CountryList-module_showSearch__MhqoH 0.01s;
-o-animation: CountryList-module_showSearch__MhqoH 0.01s;
animation: CountryList-module_showSearch__MhqoH 0.01s;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchIcon__z2IDx {
position: absolute;
top: 50%;
left: 35px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
pointer-events: none;
color: #818c99;
color: var(--vkui--color_icon_medium);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC {
font-size: 16px;
font-weight: 400;
line-height: 20px;
width: 100%;
outline: none;
border: 0;
height: 32px;
background-color: #ebedf0;
background-color: var(--vkui--color_search_field_background);
color: #000;
color: var(--vkui--color_text_primary);
padding: 6px 30px 6px 35px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-webkit-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC:-moz-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-moz-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC:-ms-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-ms-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-webkit-search-cancel-button {
display: none;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchClear__1r5Tg {
position: absolute;
top: 50%;
left: -webkit-calc(100% - 35px);
left: -moz-calc(100% - 35px);
left: calc(100% - 35px);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #99a2ad;
color: var(--vkui--color_icon_secondary);
cursor: pointer;
}
/* list */
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__list__mL0uC {
overflow: auto;
background-color: #fff;
background-color: var(--vkui--color_background_modal);
color: #000;
color: var(--vkui--color_text_primary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItem__bflkV {
display: grid;
grid-template-columns: 31px 1fr auto;
padding: 6px 16px 6px 16px;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItemIcon__4X6Z7 {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItemCode__LzHon {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__subhead__TPwB8 {
color: #99a2ad;
color: var(--vkui--color_text_tertiary);
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@-webkit-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-o-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes CountryList-module_showSearch__MhqoH {
from {
-webkit-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@-moz-keyframes CountryList-module_showSearch__MhqoH {
from {
-moz-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-moz-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@-o-keyframes CountryList-module_showSearch__MhqoH {
from {
-o-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@keyframes CountryList-module_showSearch__MhqoH {
from {
-webkit-transform: translate(0, -100px);
-moz-transform: translate(0, -100px);
-o-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
}
</style><style type="text/css">.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 {
z-index: 0;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill,
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:hover,
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:active:not(input:-webkit-autofill:focus) {
border: 0.5px solid rgba(0,0,0,.12);
border: 0.5px solid var(--vkui--color_field_border_alpha);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:focus {
border: 0.5px solid #2688eb;
border: 0.5px solid var(--vkui--color_stroke_accent);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input {
position: absolute;
top: 0;
height: 100%;
-webkit-border-radius: 8px;
-webkit-border-radius: var(--vkui--size_border_radius--regular, 8px);
-moz-border-radius: 8px;
-moz-border-radius: var(--vkui--size_border_radius--regular, 8px);
border-radius: 8px;
border-radius: var(--vkui--size_border_radius--regular, 8px);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_supportAfterContent__lvzBZ {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__Xhp8T {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
</style><style type="text/css">.PhoneInput-module_phoneInput__vDptE {
position: relative;
}
.PhoneInput-module_phoneInput_numberIconOuter__9A2hk {
overflow: hidden;
position: relative;
left: 4px;
height: 28px;
aspect-ratio: 1 / 1;
margin-right: 11px;
}
.PhoneInput-module_phoneInput_numberIconInner__saRYB {
height: 100%;
position: relative;
background-color: rgba(0,0,0,.04);
background-color: var(--vkui--color_background_secondary_alpha);
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.PhoneInput-module_phoneInput_numberIcon__Y3v9d {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
font-size: 22px;
}
.PhoneInput-module_phoneInput_numberIconInput__ycWiU {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media (max-width: 767px), (max-height: 500px) {
.PhoneInput-module_phoneInput_numberIconOuter__9A2hk {
left: 8px;
height: 28px;
padding-right: 17px;
margin-right: 0;
}
}
</style><style type="text/css">.EnterPhoneOrMailForm-module_helpIcon__o6fW3 {
margin-left: auto;
color: #b8c1cc;
color: var(--vkui--color_icon_tertiary);
cursor: pointer;
}
.EnterPhoneOrMailForm-module_input__zMdi3 {
background: #ebedf0;
background: var(--vkui--color_search_field_background);
}
.EnterPhoneOrMailForm-module_separatorDescription__2zKD2 {
position: absolute;
top: 0;
left: 50%;
bottom: 0;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 16px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background: #fff;
background: var(--vkui--color_background_content);
width: auto;
padding: 0 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.EnterPhoneOrMailForm-module_separatorContainer__OULfn {
position: relative;
margin: 9px 0;
}
.EnterPhoneOrMailForm-module_checkboxRowContainer__L96Y- {
margin-left: -8px;
}
</style><style type="text/css">.CountryList-module_countryList__RFuA8 {
}
/* compact mode */
.CountryList-module_countryList--compact__V5bDi.CountryList-module_countryList__RFuA8 {
position: absolute;
top: 42px;
width: 100%;
background-color: #fff;
background-color: var(--vkui--color_background_modal);
z-index: 3;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
border: 0.5px solid #d7d8d9;
border: 0.5px solid var(--vkui--color_separator_primary);
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
-webkit-box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
-moz-box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
-moz-box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
-webkit-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
-moz-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
-o-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
animation: CountryList-module_countries__axi-0 150ms ease-in-out;
}
/* search input */
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__search__Ym8Rf {
padding: 8px 12px 8px 12px;
position: relative;
background: #fff;
background: var(--vkui--color_background_modal);
margin-top: 2px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchIcon__z2IDx {
position: absolute;
top: 50%;
left: 30px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
pointer-events: none;
color: #818c99;
color: var(--vkui--color_icon_medium);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC {
font-size: 15px;
font-weight: 400;
line-height: 20px;
width: 100%;
outline: none;
border: 0;
height: 32px;
background-color: #ebedf0;
background-color: var(--vkui--color_search_field_background);
color: #000;
color: var(--vkui--color_text_primary);
padding: 6px 25px 6px 30px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-webkit-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC:-moz-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-moz-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC:-ms-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-ms-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-webkit-search-cancel-button {
display: none;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchClear__1r5Tg {
position: absolute;
top: 50%;
left: -webkit-calc(100% - 27px);
left: -moz-calc(100% - 27px);
left: calc(100% - 27px);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #99a2ad;
color: var(--vkui--color_icon_secondary);
cursor: pointer;
}
/* list */
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__list__mL0uC {
overflow: auto;
max-height: 202px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItem__bflkV {
color: #000;
color: var(--vkui--color_text_primary);
font-size: 15px;
font-weight: 400;
line-height: 20px;
display: grid;
grid-template-columns: 30px 1fr auto;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 6px 16px 6px 12px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItem__bflkV:hover {
background-color: #ebecee;
background-color: var(--vkui--color_background_secondary--hover);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItemIcon__4X6Z7 {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItemCode__LzHon {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__subhead__TPwB8 {
color: #99a2ad;
color: var(--vkui--color_text_tertiary);
text-align: center;
padding-top: 10px;
padding-bottom: 20px;
}
/* regular mode */
/* search input */
.CountryList-module_countryList--regular__ykrNT.CountryList-module_countryList__RFuA8 {
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__search__Ym8Rf {
padding: 10px 16px;
background: #fff;
background: var(--vkui--color_background_modal);
position: sticky;
display: block;
position: -webkit-sticky;
top: 0;
z-index: 1;
-webkit-animation: CountryList-module_showSearch__MhqoH 0.01s;
-moz-animation: CountryList-module_showSearch__MhqoH 0.01s;
-o-animation: CountryList-module_showSearch__MhqoH 0.01s;
animation: CountryList-module_showSearch__MhqoH 0.01s;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchIcon__z2IDx {
position: absolute;
top: 50%;
left: 35px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
pointer-events: none;
color: #818c99;
color: var(--vkui--color_icon_medium);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC {
font-size: 16px;
font-weight: 400;
line-height: 20px;
width: 100%;
outline: none;
border: 0;
height: 32px;
background-color: #ebedf0;
background-color: var(--vkui--color_search_field_background);
color: #000;
color: var(--vkui--color_text_primary);
padding: 6px 30px 6px 35px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-webkit-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC:-moz-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-moz-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC:-ms-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-ms-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-webkit-search-cancel-button {
display: none;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchClear__1r5Tg {
position: absolute;
top: 50%;
left: -webkit-calc(100% - 35px);
left: -moz-calc(100% - 35px);
left: calc(100% - 35px);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #99a2ad;
color: var(--vkui--color_icon_secondary);
cursor: pointer;
}
/* list */
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__list__mL0uC {
overflow: auto;
background-color: #fff;
background-color: var(--vkui--color_background_modal);
color: #000;
color: var(--vkui--color_text_primary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItem__bflkV {
display: grid;
grid-template-columns: 31px 1fr auto;
padding: 6px 16px 6px 16px;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItemIcon__4X6Z7 {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItemCode__LzHon {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__subhead__TPwB8 {
color: #99a2ad;
color: var(--vkui--color_text_tertiary);
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@-webkit-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-o-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes CountryList-module_showSearch__MhqoH {
from {
-webkit-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@-moz-keyframes CountryList-module_showSearch__MhqoH {
from {
-moz-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-moz-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@-o-keyframes CountryList-module_showSearch__MhqoH {
from {
-o-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@keyframes CountryList-module_showSearch__MhqoH {
from {
-webkit-transform: translate(0, -100px);
-moz-transform: translate(0, -100px);
-o-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
}
</style><style type="text/css">.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 {
z-index: 0;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill,
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:hover,
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:active:not(input:-webkit-autofill:focus) {
border: 0.5px solid rgba(0,0,0,.12);
border: 0.5px solid var(--vkui--color_field_border_alpha);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:focus {
border: 0.5px solid #2688eb;
border: 0.5px solid var(--vkui--color_stroke_accent);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input {
position: absolute;
top: 0;
height: 100%;
-webkit-border-radius: 8px;
-webkit-border-radius: var(--vkui--size_border_radius--regular, 8px);
-moz-border-radius: 8px;
-moz-border-radius: var(--vkui--size_border_radius--regular, 8px);
border-radius: 8px;
border-radius: var(--vkui--size_border_radius--regular, 8px);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_supportAfterContent__lvzBZ {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__Xhp8T {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
</style><style type="text/css">.PhoneInput-module_phoneInput__vDptE {
position: relative;
}
.PhoneInput-module_phoneInput_numberIconOuter__9A2hk {
overflow: hidden;
position: relative;
left: 4px;
height: 28px;
aspect-ratio: 1 / 1;
margin-right: 11px;
}
.PhoneInput-module_phoneInput_numberIconInner__saRYB {
height: 100%;
position: relative;
background-color: rgba(0,0,0,.04);
background-color: var(--vkui--color_background_secondary_alpha);
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.PhoneInput-module_phoneInput_numberIcon__Y3v9d {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
font-size: 22px;
}
.PhoneInput-module_phoneInput_numberIconInput__ycWiU {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media (max-width: 767px), (max-height: 500px) {
.PhoneInput-module_phoneInput_numberIconOuter__9A2hk {
left: 8px;
height: 28px;
padding-right: 17px;
margin-right: 0;
}
}
</style><style type="text/css">.EnterPhoneOrMailForm-module_helpIcon__o6fW3 {
margin-left: auto;
color: #b8c1cc;
color: var(--vkui--color_icon_tertiary);
cursor: pointer;
}
.EnterPhoneOrMailForm-module_input__zMdi3 {
background: #ebedf0;
background: var(--vkui--color_search_field_background);
}
.EnterPhoneOrMailForm-module_separatorDescription__2zKD2 {
position: absolute;
top: 0;
left: 50%;
bottom: 0;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 16px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background: #fff;
background: var(--vkui--color_background_content);
width: auto;
padding: 0 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.EnterPhoneOrMailForm-module_separatorContainer__OULfn {
position: relative;
margin: 9px 0;
}
.EnterPhoneOrMailForm-module_checkboxRowContainer__L96Y- {
margin-left: -8px;
}
</style><style type="text/css">.CountryList-module_countryList__RFuA8 {
}
/* compact mode */
.CountryList-module_countryList--compact__V5bDi.CountryList-module_countryList__RFuA8 {
position: absolute;
top: 42px;
width: 100%;
background-color: #fff;
background-color: var(--vkui--color_background_modal);
z-index: 3;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
border: 0.5px solid #d7d8d9;
border: 0.5px solid var(--vkui--color_separator_primary);
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
-webkit-box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
-moz-box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
-moz-box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
-webkit-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
-moz-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
-o-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
animation: CountryList-module_countries__axi-0 150ms ease-in-out;
}
/* search input */
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__search__Ym8Rf {
padding: 8px 12px 8px 12px;
position: relative;
background: #fff;
background: var(--vkui--color_background_modal);
margin-top: 2px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchIcon__z2IDx {
position: absolute;
top: 50%;
left: 30px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
pointer-events: none;
color: #818c99;
color: var(--vkui--color_icon_medium);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC {
font-size: 15px;
font-weight: 400;
line-height: 20px;
width: 100%;
outline: none;
border: 0;
height: 32px;
background-color: #ebedf0;
background-color: var(--vkui--color_search_field_background);
color: #000;
color: var(--vkui--color_text_primary);
padding: 6px 25px 6px 30px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-webkit-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC:-moz-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-moz-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC:-ms-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-ms-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-webkit-search-cancel-button {
display: none;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchClear__1r5Tg {
position: absolute;
top: 50%;
left: -webkit-calc(100% - 27px);
left: -moz-calc(100% - 27px);
left: calc(100% - 27px);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #99a2ad;
color: var(--vkui--color_icon_secondary);
cursor: pointer;
}
/* list */
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__list__mL0uC {
overflow: auto;
max-height: 202px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItem__bflkV {
color: #000;
color: var(--vkui--color_text_primary);
font-size: 15px;
font-weight: 400;
line-height: 20px;
display: grid;
grid-template-columns: 30px 1fr auto;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 6px 16px 6px 12px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItem__bflkV:hover {
background-color: #ebecee;
background-color: var(--vkui--color_background_secondary--hover);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItemIcon__4X6Z7 {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItemCode__LzHon {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__subhead__TPwB8 {
color: #99a2ad;
color: var(--vkui--color_text_tertiary);
text-align: center;
padding-top: 10px;
padding-bottom: 20px;
}
/* regular mode */
/* search input */
.CountryList-module_countryList--regular__ykrNT.CountryList-module_countryList__RFuA8 {
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__search__Ym8Rf {
padding: 10px 16px;
background: #fff;
background: var(--vkui--color_background_modal);
position: sticky;
display: block;
position: -webkit-sticky;
top: 0;
z-index: 1;
-webkit-animation: CountryList-module_showSearch__MhqoH 0.01s;
-moz-animation: CountryList-module_showSearch__MhqoH 0.01s;
-o-animation: CountryList-module_showSearch__MhqoH 0.01s;
animation: CountryList-module_showSearch__MhqoH 0.01s;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchIcon__z2IDx {
position: absolute;
top: 50%;
left: 35px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
pointer-events: none;
color: #818c99;
color: var(--vkui--color_icon_medium);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC {
font-size: 16px;
font-weight: 400;
line-height: 20px;
width: 100%;
outline: none;
border: 0;
height: 32px;
background-color: #ebedf0;
background-color: var(--vkui--color_search_field_background);
color: #000;
color: var(--vkui--color_text_primary);
padding: 6px 30px 6px 35px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-webkit-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC:-moz-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-moz-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC:-ms-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-ms-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-webkit-search-cancel-button {
display: none;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchClear__1r5Tg {
position: absolute;
top: 50%;
left: -webkit-calc(100% - 35px);
left: -moz-calc(100% - 35px);
left: calc(100% - 35px);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #99a2ad;
color: var(--vkui--color_icon_secondary);
cursor: pointer;
}
/* list */
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__list__mL0uC {
overflow: auto;
background-color: #fff;
background-color: var(--vkui--color_background_modal);
color: #000;
color: var(--vkui--color_text_primary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItem__bflkV {
display: grid;
grid-template-columns: 31px 1fr auto;
padding: 6px 16px 6px 16px;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItemIcon__4X6Z7 {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItemCode__LzHon {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__subhead__TPwB8 {
color: #99a2ad;
color: var(--vkui--color_text_tertiary);
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@-webkit-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-o-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes CountryList-module_showSearch__MhqoH {
from {
-webkit-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@-moz-keyframes CountryList-module_showSearch__MhqoH {
from {
-moz-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-moz-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@-o-keyframes CountryList-module_showSearch__MhqoH {
from {
-o-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@keyframes CountryList-module_showSearch__MhqoH {
from {
-webkit-transform: translate(0, -100px);
-moz-transform: translate(0, -100px);
-o-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
}
</style><style type="text/css">.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 {
z-index: 0;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill,
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:hover,
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:active:not(input:-webkit-autofill:focus) {
border: 0.5px solid rgba(0,0,0,.12);
border: 0.5px solid var(--vkui--color_field_border_alpha);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:focus {
border: 0.5px solid #2688eb;
border: 0.5px solid var(--vkui--color_stroke_accent);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input {
position: absolute;
top: 0;
height: 100%;
-webkit-border-radius: 8px;
-webkit-border-radius: var(--vkui--size_border_radius--regular, 8px);
-moz-border-radius: 8px;
-moz-border-radius: var(--vkui--size_border_radius--regular, 8px);
border-radius: 8px;
border-radius: var(--vkui--size_border_radius--regular, 8px);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_supportAfterContent__lvzBZ {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__Xhp8T {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
</style><style type="text/css">.PhoneInput-module_phoneInput__vDptE {
position: relative;
}
.PhoneInput-module_phoneInput_numberIconOuter__9A2hk {
overflow: hidden;
position: relative;
left: 4px;
height: 28px;
aspect-ratio: 1 / 1;
margin-right: 11px;
}
.PhoneInput-module_phoneInput_numberIconInner__saRYB {
height: 100%;
position: relative;
background-color: rgba(0,0,0,.04);
background-color: var(--vkui--color_background_secondary_alpha);
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.PhoneInput-module_phoneInput_numberIcon__Y3v9d {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
font-size: 22px;
}
.PhoneInput-module_phoneInput_numberIconInput__ycWiU {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media (max-width: 767px), (max-height: 500px) {
.PhoneInput-module_phoneInput_numberIconOuter__9A2hk {
left: 8px;
height: 28px;
padding-right: 17px;
margin-right: 0;
}
}
</style><script src="https://st6-22.vk.com/dist/web/chunks/688cf011.090bf954.js" type="module"></script><script src="https://st6-22.vk.com/dist/web/ads_light.d47a5dd4.js" type="module"></script><link rel="stylesheet" type="text/css" href="https://st6-22.vk.com/dist/web/chunks/chunks/dfb7710c.css"><link rel="stylesheet" type="text/css" href="https://st6-22.vk.com/dist/web/chunks/76a88b11.css"><style type="text/css">.EnterPhoneOrMailForm-module_helpIcon__o6fW3 {
margin-left: auto;
color: #b8c1cc;
color: var(--vkui--color_icon_tertiary);
cursor: pointer;
}
.EnterPhoneOrMailForm-module_input__zMdi3 {
background: #ebedf0;
background: var(--vkui--color_search_field_background);
}
.EnterPhoneOrMailForm-module_separatorDescription__2zKD2 {
position: absolute;
top: 0;
left: 50%;
bottom: 0;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 16px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background: #fff;
background: var(--vkui--color_background_content);
width: auto;
padding: 0 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.EnterPhoneOrMailForm-module_separatorContainer__OULfn {
position: relative;
margin: 9px 0;
}
.EnterPhoneOrMailForm-module_checkboxRowContainer__L96Y- {
margin-left: -8px;
}
</style><style type="text/css">.CountryList-module_countryList__RFuA8 {
}
/* compact mode */
.CountryList-module_countryList--compact__V5bDi.CountryList-module_countryList__RFuA8 {
position: absolute;
top: 42px;
width: 100%;
background-color: #fff;
background-color: var(--vkui--color_background_modal);
z-index: 3;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
border: 0.5px solid #d7d8d9;
border: 0.5px solid var(--vkui--color_separator_primary);
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
-webkit-box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
-moz-box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
-moz-box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
box-shadow: 0 4px 8px rgba(0,0,0,.03), 0 0 4px 0 #d7d8d9;
box-shadow: 0 4px 8px var(--vkui--color_background_tertiary_alpha), 0 0 4px 0 var(--vkui--color_separator_primary);
-webkit-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
-moz-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
-o-animation: CountryList-module_countries__axi-0 150ms ease-in-out;
animation: CountryList-module_countries__axi-0 150ms ease-in-out;
}
/* search input */
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__search__Ym8Rf {
padding: 8px 12px 8px 12px;
position: relative;
background: #fff;
background: var(--vkui--color_background_modal);
margin-top: 2px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchIcon__z2IDx {
position: absolute;
top: 50%;
left: 30px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
pointer-events: none;
color: #818c99;
color: var(--vkui--color_icon_medium);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC {
font-size: 15px;
font-weight: 400;
line-height: 20px;
width: 100%;
outline: none;
border: 0;
height: 32px;
background-color: #ebedf0;
background-color: var(--vkui--color_search_field_background);
color: #000;
color: var(--vkui--color_text_primary);
padding: 6px 25px 6px 30px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-webkit-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC:-moz-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-moz-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC:-ms-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-ms-input-placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::placeholder {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchInput__78KEC::-webkit-search-cancel-button {
display: none;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__searchClear__1r5Tg {
position: absolute;
top: 50%;
left: -webkit-calc(100% - 27px);
left: -moz-calc(100% - 27px);
left: calc(100% - 27px);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #99a2ad;
color: var(--vkui--color_icon_secondary);
cursor: pointer;
}
/* list */
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__list__mL0uC {
overflow: auto;
max-height: 202px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItem__bflkV {
color: #000;
color: var(--vkui--color_text_primary);
font-size: 15px;
font-weight: 400;
line-height: 20px;
display: grid;
grid-template-columns: 30px 1fr auto;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 6px 16px 6px 12px;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItem__bflkV:hover {
background-color: #ebecee;
background-color: var(--vkui--color_background_secondary--hover);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItemIcon__4X6Z7 {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__listItemCode__LzHon {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--compact__V5bDi .CountryList-module_countryList__subhead__TPwB8 {
color: #99a2ad;
color: var(--vkui--color_text_tertiary);
text-align: center;
padding-top: 10px;
padding-bottom: 20px;
}
/* regular mode */
/* search input */
.CountryList-module_countryList--regular__ykrNT.CountryList-module_countryList__RFuA8 {
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__search__Ym8Rf {
padding: 10px 16px;
background: #fff;
background: var(--vkui--color_background_modal);
position: sticky;
display: block;
position: -webkit-sticky;
top: 0;
z-index: 1;
-webkit-animation: CountryList-module_showSearch__MhqoH 0.01s;
-moz-animation: CountryList-module_showSearch__MhqoH 0.01s;
-o-animation: CountryList-module_showSearch__MhqoH 0.01s;
animation: CountryList-module_showSearch__MhqoH 0.01s;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchIcon__z2IDx {
position: absolute;
top: 50%;
left: 35px;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
pointer-events: none;
color: #818c99;
color: var(--vkui--color_icon_medium);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC {
font-size: 16px;
font-weight: 400;
line-height: 20px;
width: 100%;
outline: none;
border: 0;
height: 32px;
background-color: #ebedf0;
background-color: var(--vkui--color_search_field_background);
color: #000;
color: var(--vkui--color_text_primary);
padding: 6px 30px 6px 35px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-webkit-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC:-moz-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-moz-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC:-ms-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-ms-input-placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::placeholder {
font-size: 16px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchInput__78KEC::-webkit-search-cancel-button {
display: none;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__searchClear__1r5Tg {
position: absolute;
top: 50%;
left: -webkit-calc(100% - 35px);
left: -moz-calc(100% - 35px);
left: calc(100% - 35px);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #99a2ad;
color: var(--vkui--color_icon_secondary);
cursor: pointer;
}
/* list */
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__list__mL0uC {
overflow: auto;
background-color: #fff;
background-color: var(--vkui--color_background_modal);
color: #000;
color: var(--vkui--color_text_primary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItem__bflkV {
display: grid;
grid-template-columns: 31px 1fr auto;
padding: 6px 16px 6px 16px;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItemIcon__4X6Z7 {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__listItemCode__LzHon {
font-size: 15px;
font-weight: 400;
line-height: 20px;
color: #818c99;
color: var(--vkui--color_text_secondary);
}
.CountryList-module_countryList--regular__ykrNT .CountryList-module_countryList__subhead__TPwB8 {
color: #99a2ad;
color: var(--vkui--color_text_tertiary);
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@-webkit-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-o-keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes CountryList-module_countries__axi-0 {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes CountryList-module_showSearch__MhqoH {
from {
-webkit-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@-moz-keyframes CountryList-module_showSearch__MhqoH {
from {
-moz-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-moz-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@-o-keyframes CountryList-module_showSearch__MhqoH {
from {
-o-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@keyframes CountryList-module_showSearch__MhqoH {
from {
-webkit-transform: translate(0, -100px);
-moz-transform: translate(0, -100px);
-o-transform: translate(0, -100px);
transform: translate(0, -100px);
}
to {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
}
</style><style type="text/css">.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 {
z-index: 0;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill,
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:hover,
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:active:not(input:-webkit-autofill:focus) {
border: 0.5px solid rgba(0,0,0,.12);
border: 0.5px solid var(--vkui--color_field_border_alpha);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input:-webkit-autofill:focus {
border: 0.5px solid #2688eb;
border: 0.5px solid var(--vkui--color_stroke_accent);
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__input__cX4z7 input {
position: absolute;
top: 0;
height: 100%;
-webkit-border-radius: 8px;
-webkit-border-radius: var(--vkui--size_border_radius--regular, 8px);
-moz-border-radius: 8px;
-moz-border-radius: var(--vkui--size_border_radius--regular, 8px);
border-radius: 8px;
border-radius: var(--vkui--size_border_radius--regular, 8px);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.PhoneMaskBuilder-module_supportAfterContent__lvzBZ {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.PhoneMaskBuilder-module_phoneMaskBuilder__Xhp8T {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
</style><style type="text/css">.PhoneInput-module_phoneInput__vDptE {
position: relative;
}
.PhoneInput-module_phoneInput_numberIconOuter__9A2hk {
overflow: hidden;
position: relative;
left: 4px;
height: 28px;
aspect-ratio: 1 / 1;
margin-right: 11px;
}
.PhoneInput-module_phoneInput_numberIconInner__saRYB {
height: 100%;
position: relative;
background-color: rgba(0,0,0,.04);
background-color: var(--vkui--color_background_secondary_alpha);
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.PhoneInput-module_phoneInput_numberIcon__Y3v9d {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
font-size: 22px;
}
.PhoneInput-module_phoneInput_numberIconInput__ycWiU {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media (max-width: 767px), (max-height: 500px) {
.PhoneInput-module_phoneInput_numberIconOuter__9A2hk {
left: 8px;
height: 28px;
padding-right: 17px;
margin-right: 0;
}
}
</style></head><body onresize="window.onBodyResize && onBodyResize();" class="anonym anonym_nav no_stl no_sett" scheme="vkcom_light" data-useragent="chrome">
<div id="utils"></div>
<script type="text/javascript">;try{/*colorSchemeSync*/
(function () {
'use strict';
// eslint-disable-next-line no-restricted-syntax
function colorSchemeSync({ colorSchemeMode, colorSchemesMap }) {
if (!window.CSS?.supports?.('color', 'var(--custom-property)')) {
return;
}
const isDark = colorSchemeMode === 'dark' || colorSchemeMode === 'auto' && window.matchMedia?.('(prefers-color-scheme: dark)').matches;
const themeColor = isDark ? '#222222' : '#ffffff';
const colorSchemeName = isDark ? 'space_gray' : 'bright_light';
const colorScheme = isDark ? 'dark' : 'light';
const scheme = colorSchemesMap?.[colorSchemeName] || colorSchemeName;
document.body.setAttribute('scheme', scheme);
document.querySelector('meta[name=theme-color]')?.setAttribute('content', themeColor);
document.querySelector('meta[name=color-scheme]')?.setAttribute('content', colorScheme);
}
return colorSchemeSync;
})()({"colorSchemeMode":"auto","colorSchemesMap":{"bright_light":"vkcom_light","space_gray":"vkcom_dark"},"isForcedColorSchemeMode":false});} catch (e) {e.__inline_tag = "colorSchemeSync.js"; e.name = `[colorSchemeSync.js] ${e.name}`; throw e;};</script>
<script type="module">
;try{/*colorScheme*/
(function () {
'use strict';
// eslint-disable-next-line no-restricted-syntax
function colorScheme({ colorSchemeMode, isForcedColorSchemeMode, colorSchemesMap }) {
if (window.colorScheme) {
let resultColorSchemeMode = colorSchemeMode;
try {
if (isForcedColorSchemeMode) {
resultColorSchemeMode = colorSchemeMode;
window.colorScheme.isModeSavingAllowed = false;
}
} catch (e) {}
window.colorScheme.init({
mode: resultColorSchemeMode,
schemesMap: colorSchemesMap
});
}
}
return colorScheme;
})()({"colorSchemeMode":"auto","colorSchemesMap":{"bright_light":"vkcom_light","space_gray":"vkcom_dark"},"isForcedColorSchemeMode":false});} catch (e) {e.__inline_tag = "colorScheme.js"; e.name = `[colorScheme.js] ${e.name}`; throw e;};
</script>
<div style="display: block;" id="a11y_mvk_proposal" aria-label="Mobile version with enhanced screen-reader support." role="link" class="visually-hidden"></div>
<script type="module">;try{window.domStarted && window.domStarted();} catch (e) {e.__inline_tag = "555fdc1f"; e.name = `[555fdc1f] ${e.name}`; throw e;};</script>
<div class="scroll_fix_wrap _page_wrap" id="page_wrap"><style>
:root {
--layout-width: 960px;
--sidebar-width: 164px;
--page-body-width: 795px;
}
</style>
<div><div class="scroll_fix" style="width: 960px;">
<div id="page_header_cont" class="page_header_cont">
<div id="page_header_wrap" class="page_header_wrap" style="width: 960px;">
<a class="top_back_link" href="" id="top_back_link" onclick="if (nav.go(this, event, {back: true}) === false) { showBackLink(); return false; }" style="max-width: 765px;"></a>
<header id="page_header" class="p_head1 p_head_l3">
<div class="PortalNavigation" data-task-click="">
<div class="PortalNavigation__icon"></div>
</div>
<ul id="top_nav" class="HeaderNav">
<li class="HeaderNav__item HeaderNav__item--logo" onclick="window.statlogsValueEvent('web_logo_click', 1)">
<a class="TopHomeLink " href="/" aria-label="Home" accesskey="1">
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 14.4C0 7.61 0 4.22 2.1 2.1 4.23 0 7.62 0 14.4 0h1.2c6.79 0 10.18 0 12.3 2.1C30 4.23 30 7.62 30 14.4v1.2c0 6.79 0 10.18-2.1 12.3C25.77 30 22.38 30 15.6 30h-1.2c-6.79 0-10.18 0-12.3-2.1C0 25.77 0 22.38 0 15.6v-1.2Z" fill="#07F"></path><path d="M15.96 21.61c-6.84 0-10.74-4.68-10.9-12.48H8.5c.11 5.72 2.63 8.14 4.63 8.64V9.13h3.23v4.93c1.97-.21 4.05-2.46 4.75-4.94h3.22a9.53 9.53 0 0 1-4.38 6.23 9.87 9.87 0 0 1 5.13 6.26h-3.55c-.76-2.37-2.66-4.21-5.17-4.46v4.46h-.39Z" fill="#fff"></path></svg>
</a>
<a href="/video" class="VKVideoLogo" aria-label="Go to VK Video main page" accesskey="1"><svg xmlns="http://www.w3.org/2000/svg" width="107" height="24" fill="none" viewBox="0 0 107 24"><g clip-path="url(#logo_vk_video_color_eng_with_text_24__a)"><g clip-path="url(#logo_vk_video_color_eng_with_text_24__b)"><path fill="#07F" d="M0 8.77C0 1.55 1.55 0 8.77 0h6.46C22.45 0 24 1.55 24 8.77v6.46c0 7.22-1.55 8.77-8.77 8.77H8.77C1.55 24 0 22.45 0 15.23V8.77Z"></path><path fill="#FF2B42" d="M12.9 24h2.28c7.1 0 8.74-1.48 8.82-8.28V8.24C23.92 1.47 22.26 0 15.18 0H12.9C5.64 0 4.08 1.55 4.08 8.77v6.46c0 7.22 1.56 8.77 8.82 8.77Z"></path><path fill="#fff" d="M16.93 9.92c1.22.7 1.82 1.05 2.03 1.51.18.4.18.86 0 1.25-.2.46-.81.81-2.03 1.51l-3.32 1.92c-1.21.7-1.82 1.05-2.32 1a1.54 1.54 0 0 1-1.08-.63c-.3-.4-.3-1.1-.3-2.5v-3.84c0-1.4 0-2.1.3-2.5A1.54 1.54 0 0 1 11.29 7c.5-.06 1.1.3 2.32 1l3.32 1.91Z"></path></g><path fill="currentColor" d="M36.26 18.06h3L43.64 6h-2.17l-3.53 9.94h-.34L34.21 6H32l4.26 12.06Zm18.63 0-5.54-6.24L54.46 6h-2.53l-4.28 4.91h-.5v-4.9H45.1v12.05h2.06V12.9h.51l4.51 5.16h2.7Zm7.5 0h3L69.8 6H67.6l-3.52 9.94h-.34L60.35 6h-2.21l4.26 12.06ZM72.16 7.9c.7 0 1.22-.5 1.22-1.2s-.52-1.21-1.22-1.21c-.72 0-1.23.51-1.23 1.21s.51 1.2 1.23 1.2Zm-1 10.16h1.97v-8.9h-1.96v8.9Zm8.11.17c1.63 0 2.76-.85 3.37-1.6l.41 1.43h1.47V6h-1.96v4.52A4.26 4.26 0 0 0 79.26 9c-2.54 0-4.34 1.93-4.34 4.61 0 2.69 1.8 4.62 4.34 4.62Zm.48-1.76c-1.64 0-2.77-1.18-2.77-2.86s1.13-2.85 2.77-2.85c1.66 0 2.8 1.18 2.8 2.85s-1.14 2.86-2.8 2.86Zm15.8-2.96A4.43 4.43 0 0 0 90.94 9a4.45 4.45 0 0 0-4.62 4.61 4.45 4.45 0 0 0 4.62 4.62c1.85 0 3.59-.87 4.26-2.56l-1.85-.31a2.7 2.7 0 0 1-2.3 1.08c-1.5 0-2.49-.93-2.68-2.3h7.15c.02-.18.04-.39.04-.63Zm-4.61-2.8c1.23 0 2.15.78 2.48 1.9h-4.93a2.49 2.49 0 0 1 2.45-1.9Zm10.39 7.52c2.79 0 4.75-1.91 4.75-4.62 0-2.7-1.96-4.61-4.75-4.61s-4.75 1.91-4.75 4.61 1.96 4.62 4.75 4.62Zm0-1.8c-1.6 0-2.7-1.14-2.7-2.82 0-1.67 1.1-2.82 2.7-2.82s2.7 1.15 2.7 2.82c0 1.68-1.1 2.83-2.7 2.83Z"></path></g><defs><clipPath id="logo_vk_video_color_eng_with_text_24__a"><path fill="#fff" d="M0 0h107v24H0z"></path></clipPath><clipPath id="logo_vk_video_color_eng_with_text_24__b"><path fill="#fff" d="M0 0h24v24H0z"></path></clipPath></defs></svg></a>
</li>
<li id="search-video-form" class="HeaderNav__item HeaderNav__search"><div id="react_rootSearchFormHeader" class="SearchHeaderForm"></div></li>
<li class="HeaderNav__item HeaderNav__item--gap"><div id="react_rootTopSearchAnonymous" class="TopSearchAnonymousRoot"><div class="vkui__root"><div class="TopSearchRoot__app--nn41J"><div class="vkuiInternalSearch vkuiSearch vkuiSearch--sizeY-compact vkuiSearch--has-after TopSearchRoot__search--oyazg"><div class="vkuiSearch__field"><label for="search-:r0:" class="vkuiSearch__label">Search</label><div class="vkuiSearch__input"><svg aria-hidden="true" display="block" class="vkuiIcon vkuiIcon--16 vkuiIcon--w-16 vkuiIcon--h-16 vkuiIcon--search_outline_16" width="16" height="16" viewBox="0 0 16 16" style="width: 16px; height: 16px;"><use xlink:href="#search_outline_16" style="fill: currentcolor;"></use></svg><input class="vkuiSearch__nativeInput vkuiHeadline--sizeY-compact vkuiHeadline--level-1 vkuiTypography vkuiTypography--normalize vkuiTypography--weight-3 vkuiRootComponent" type="search" data-testid="search_top_input" id="search-:r0:" placeholder="Search" autocomplete="off" value=""></div><div class="vkuiSearch__controls"><button class="vkuiIconButton vkuiIconButton--sizeY-compact vkuiSearch__icon vkuiTappable vkuiTappable--hasPointer-none vkuiClickable__resetButtonStyle vkuiClickable__host vkuiClickable__realClickable vkui-focus-visible vkuiRootComponent" type="button" tabindex="-1"><span class="vkuiVisuallyHidden vkuiRootComponent">Очистить</span><svg aria-hidden="true" display="block" class="vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--cancel_24" width="24" height="24" viewBox="0 0 24 24" style="width: 24px; height: 24px;"><use xlink:href="#cancel_24" style="fill: currentcolor;"></use></svg><span aria-hidden="true" class="vkuiTappable__stateLayer vkuiTappable__ripple"></span></button></div></div></div></div></div></div></li>
<li id="top_notifications_layer_place" class="HeaderNav__item HeaderNav__btns"></li>
<li class="HeaderNav__item HeaderNav__audio">
<div id="top_audio_layer_place" class="top_audio_layer_place"></div>
</li>
<li class="HeaderNav__item HeaderNav__item--acts"><a class="top_nav_link top_nav_link--hidden-on-index-page" href="" id="top_switch_lang" style="display: none;" onclick="Language.changeLang(this, 3, ''); return false;">
Switch to English
</a><a class="top_nav_link" href="/join" id="top_reg_link" style="" onclick="return !showBox('join.php', {act: 'box', from: nav.strLoc}, {}, event)">
sign up
</a></li>
</ul>
<div id="ts_cont_wrap" class="ts_cont_wrap" ontouchstart="event.cancelBubble = true;" onmousedown="event.cancelBubble = true;"></div>
</header>
</div>
</div>
<div id="page_layout">
<div id="side_bar" class="side_bar fl_l sticky_top_force" style="top: 0px;">
<div id="side_bar_inner" class="side_bar_inner">
<div id="quick_login" class="quick_login quick_login--vkid">
<div><iframe class="upload_frame" id="quick_login_frame" name="quick_login_frame"></iframe></div><form method="POST" name="login" id="quick_login_form" action="https://login.vk.com/?act=login" style="display: none" target="quick_login_frame">
<input type="hidden" name="act" value="login">
<input type="hidden" name="role" value="al_frame">
<input type="hidden" name="expire" id="quick_expire_input" value="">
<input type="hidden" name="to" id="quick_login_to" value="d2FsbC0yMjQwOTU0OTJfODg-">
<input type="hidden" name="recaptcha" id="quick_recaptcha" value="">
<input type="hidden" name="captcha_sid" id="quick_captcha_sid" value="">
<input type="hidden" name="captcha_key" id="quick_captcha_key" value="">
<input type="hidden" name="_origin" value="https://vk.com">
<input type="hidden" name="ip_h" value="e280d71ae9ecd84933">
<input type="hidden" name="lg_domain_h" value="af2c52b50beb9ae10d">
<input type="hidden" name="ul" id="quick_login_ul" value="">
<div class="label">Phone or email</div>
<div class="labeled"><input type="text" name="email" class="dark" id="quick_email" value=""></div>
<div class="label">Password</div>
<div class="labeled"><input type="password" name="pass" class="dark" id="quick_pass" onkeyup="toggle('quick_expire', !!this.value);toggle('quick_forgot', !this.value)"></div>
<input type="submit" class="submit">
</form>
<button class="quick_login_button flat_button button_wide" onclick="top.showBox('al_login.php', {act: 'box', from: nav.strLoc})">Sign in</button>
<button class="quick_reg_button flat_button button_wide" id="quick_reg_button" style="" onclick="top.showBox('join.php', {act: 'box', from: nav.strLoc})">Sign up</button>
</div><div class="WideSeparator"></div><div class="side_bar_nav_wrap">
<nav class="side_bar_nav">
<ol class="side_bar_ol">
<li id="l_aud" class="LeftMenu__item">
<a class="LeftMenu__itemLink" href="/audio">
<div class="LeftMenu__icon">
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g id="music_outline_20__Icons" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="music_outline_20__Icons-20/music_outline_20"><g id="music_outline_20__music_outline_20"><path d="M0 0h20v20H0z"></path><path d="M14.73 2.05a2.28 2.28 0 0 1 2.75 2.23v7.99c0 3.57-3.5 5.4-5.39 3.51-1.9-1.9-.06-5.38 3.52-5.38h.37V6.76L8 8.43v5.82c0 3.5-3.35 5.34-5.27 3.62l-.11-.1c-1.9-1.9-.06-5.4 3.51-5.4h.37V6.24c0-.64.05-1 .19-1.36l.05-.13c.17-.38.43-.7.76-.93.36-.26.7-.4 1.41-.54ZM6.5 13.88h-.37c-2.32 0-3.34 1.94-2.45 2.82.88.89 2.82-.13 2.82-2.45v-.37Zm9.48-1.98h-.37c-2.32 0-3.34 1.94-2.46 2.82.89.89 2.83-.13 2.83-2.45v-.37Zm-.02-7.78a.78.78 0 0 0-.92-.6L9.06 4.77c-.4.09-.54.15-.68.25a.8.8 0 0 0-.27.33c-.08.18-.1.35-.1.88v.67l7.97-1.67V4.2Z" id="music_outline_20__Icon-Color" fill="currentColor" fill-rule="nonzero"></path></g></g></g></svg>
</div>
<span class="LeftMenu__itemLabel">Music</span>
</a>
</li><li id="l_vid" class="LeftMenu__item">
<a class="LeftMenu__itemLink" href="/video" target="_blank">
<div class="LeftMenu__icon">
<svg fill="none" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M12.06 1.5c.65 0 1.23 0 1.7.04.51.04 1.04.13 1.56.4a4 4 0 0 1 1.74 1.74c.27.52.36 1.05.4 1.56.04.47.04 1.05.04 1.7v6.12c0 .65 0 1.23-.04 1.7a4.07 4.07 0 0 1-.4 1.56 4 4 0 0 1-1.74 1.74c-.52.27-1.05.36-1.56.4-.47.04-1.05.04-1.7.04H7.94c-.65 0-1.23 0-1.7-.04a4.06 4.06 0 0 1-1.56-.4 4 4 0 0 1-1.74-1.74 4.06 4.06 0 0 1-.4-1.56c-.04-.47-.04-1.05-.04-1.7V6.94c0-.65 0-1.23.04-1.7.04-.51.13-1.04.4-1.56a4 4 0 0 1 1.74-1.74 4.06 4.06 0 0 1 1.56-.4c.47-.04 1.05-.04 1.7-.04zM4.27 4.37C4 4.9 4 5.6 4 7v6c0 1.4 0 2.1.27 2.63.24.48.62.86 1.1 1.1C5.9 17 6.6 17 8 17h4c1.4 0 2.1 0 2.63-.27a2.5 2.5 0 0 0 1.1-1.1C16 15.1 16 14.4 16 13V7c0-1.4 0-2.1-.27-2.63a2.5 2.5 0 0 0-1.1-1.1C14.1 3 13.4 3 12 3H8c-1.4 0-2.1 0-2.63.27a2.5 2.5 0 0 0-1.1 1.1zM6 14c0-.33 0-.49.06-.62a.65.65 0 0 1 .32-.32c.13-.06.3-.06.62-.06s.49 0 .62.06c.14.06.26.18.32.32.06.13.06.3.06.62s0 .49-.06.62a.65.65 0 0 1-.32.32c-.13.06-.3.06-.62.06s-.49 0-.62-.06a.65.65 0 0 1-.32-.32C6 14.49 6 14.32 6 14zm.06-4.62C6 9.51 6 9.68 6 10c0 .33 0 .49.06.62.06.14.18.26.32.32.13.06.3.06.62.06s.49 0 .62-.06a.65.65 0 0 0 .32-.32c.06-.13.06-.3.06-.62 0-.33 0-.49-.06-.62a.65.65 0 0 0-.32-.32C7.49 9 7.32 9 7 9s-.49 0-.62.06a.65.65 0 0 0-.32.32zM12 6c0-.33 0-.49.06-.62a.65.65 0 0 1 .32-.32c.13-.06.3-.06.62-.06s.49 0 .62.06c.14.06.26.18.32.32.06.13.06.3.06.62s0 .49-.06.62a.65.65 0 0 1-.32.32c-.13.06-.3.06-.62.06s-.49 0-.62-.06a.65.65 0 0 1-.32-.32C12 6.49 12 6.32 12 6zm.06 7.38c-.06.13-.06.3-.06.62s0 .49.06.62c.06.14.18.26.32.32.13.06.3.06.62.06s.49 0 .62-.06a.65.65 0 0 0 .32-.32c.06-.13.06-.3.06-.62s0-.49-.06-.62a.65.65 0 0 0-.32-.32c-.13-.06-.3-.06-.62-.06s-.49 0-.62.06a.65.65 0 0 0-.32.32zM12 10c0-.33 0-.49.06-.62a.65.65 0 0 1 .32-.32c.13-.06.3-.06.62-.06s.49 0 .62.06c.14.06.26.18.32.32.06.13.06.3.06.62 0 .33 0 .49-.06.62a.65.65 0 0 1-.32.32c-.13.06-.3.06-.62.06s-.49 0-.62-.06a.65.65 0 0 1-.32-.32c-.06-.13-.06-.3-.06-.62zM6.06 5.38C6 5.51 6 5.68 6 6s0 .49.06.62c.06.14.18.26.32.32.13.06.3.06.62.06s.49 0 .62-.06a.65.65 0 0 0 .32-.32C8 6.49 8 6.32 8 6s0-.49-.06-.62a.65.65 0 0 0-.32-.32C7.49 5 7.32 5 7 5s-.49 0-.62.06a.65.65 0 0 0-.32.32z" fill="currentColor" fill-rule="evenodd"></path></svg>
</div>
<span class="LeftMenu__itemLabel">Videos</span>
</a>
</li><li id="l_gr" class="LeftMenu__item">
<a class="LeftMenu__itemLink" href="/groups/recommendations">
<div class="LeftMenu__icon">
<svg fill="none" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M10 7.75a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5zM7.25 6.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0zm-.5 7.25c0-.42.23-.83.8-1.17A4.81 4.81 0 0 1 10 12c1.03 0 1.88.23 2.45.58.57.34.8.75.8 1.17 0 .3-.1.44-.22.54-.14.11-.4.21-.78.21h-4.5c-.39 0-.64-.1-.78-.21-.12-.1-.22-.25-.22-.54zM10 10.5c-1.22 0-2.37.27-3.23.8-.88.53-1.52 1.37-1.52 2.45 0 .7.28 1.3.78 1.71.48.39 1.1.54 1.72.54h4.5c.61 0 1.24-.15 1.72-.54.5-.4.78-1 .78-1.71 0-1.08-.64-1.92-1.52-2.45-.86-.53-2-.8-3.23-.8zm4-5.59c.06-.4.44-.7.85-.64a2.5 2.5 0 0 1-.35 4.98.75.75 0 0 1 0-1.5 1 1 0 0 0 .14-1.99.75.75 0 0 1-.63-.85zM15.76 10a.75.75 0 0 0 0 1.5c1.16 0 1.75.67 1.75 1.25 0 .22-.07.41-.19.55-.1.12-.24.2-.46.2a.75.75 0 0 0 0 1.5c1.43 0 2.15-1.21 2.15-2.25 0-1.71-1.6-2.75-3.25-2.75zM5 10.75a.75.75 0 0 0-.75-.75C2.61 10 1 11.04 1 12.75 1 13.79 1.72 15 3.15 15a.75.75 0 0 0 0-1.5.57.57 0 0 1-.47-.2.86.86 0 0 1-.18-.55c0-.58.6-1.25 1.75-1.25.41 0 .75-.34.75-.75zm.14-6.47a.75.75 0 0 1 .22 1.48 1 1 0 0 0 .14 1.99.75.75 0 1 1 0 1.5 2.5 2.5 0 0 1-.36-4.97z" fill="currentColor" fill-rule="evenodd"></path></svg>
</div>
<span class="LeftMenu__itemLabel">Communities</span>
</a>
</li><li id="l_mini_apps" class="LeftMenu__item">
<a class="LeftMenu__itemLink" href="/services">
<div class="LeftMenu__icon">
<svg fill="none" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M11.76 7.7c-.28-.27-.52-.51-.7-.73a2.3 2.3 0 0 1-.47-.77 2.25 2.25 0 0 1 0-1.4c.1-.3.27-.54.46-.77.19-.22.45-.48.73-.76l.25-.24.24-.25c.28-.28.54-.54.76-.73.23-.19.47-.36.77-.46.46-.14.94-.14 1.4 0 .3.1.54.27.77.46.22.19.46.43.74.7l.26.28.27.26c.28.28.52.52.7.74.2.23.37.47.47.77.14.46.14.94 0 1.4-.1.3-.27.54-.46.77-.19.22-.45.48-.73.76l-.25.24-.24.25c-.28.28-.54.54-.76.73-.23.19-.47.36-.77.46-.46.14-.94.14-1.4 0a2.3 2.3 0 0 1-.77-.46 13.4 13.4 0 0 1-.74-.7l-.26-.28-.27-.26zm4.4-1.03-.25.24-.24.25c-.3.3-.5.5-.67.64a.85.85 0 0 1-.27.18.75.75 0 0 1-.46 0A.86.86 0 0 1 14 7.8c-.16-.14-.36-.33-.67-.64l-.24-.25-.25-.24c-.3-.3-.5-.5-.64-.67a.85.85 0 0 1-.18-.27.75.75 0 0 1 0-.46.85.85 0 0 1 .18-.27c.14-.16.33-.36.64-.67l.25-.24.24-.25c.3-.3.5-.5.67-.64a.86.86 0 0 1 .27-.18.75.75 0 0 1 .46 0c.04.01.11.05.27.18.16.14.36.33.67.64l.24.25.25.24c.3.3.5.5.64.67.13.16.17.23.18.27.05.15.05.31 0 .46a.86.86 0 0 1-.18.27c-.14.16-.33.36-.64.67zM11 14.12c0-.4 0-.74.02-1.02.03-.3.08-.59.23-.87.21-.42.56-.77.98-.98.28-.15.58-.2.87-.23.28-.02.65-.02 1.05-.02h.7c.4 0 .77 0 1.05.02.3.03.59.08.87.23.42.21.77.56.98.98.15.28.2.58.23.87.02.28.02.63.02 1.02v.76c0 .4 0 .74-.02 1.02a2.25 2.25 0 0 1-1.2 1.86c-.3.14-.59.2-.88.22-.28.02-.65.02-1.05.02h-.7c-.4 0-.77 0-1.05-.02-.3-.03-.59-.08-.87-.23a2.25 2.25 0 0 1-.98-.98 2.3 2.3 0 0 1-.23-.87c-.02-.28-.02-.63-.02-1.02v-.38zm3.85 2.38h-.7c-.43 0-.71 0-.92-.02a.86.86 0 0 1-.32-.06.75.75 0 0 1-.33-.33.86.86 0 0 1-.06-.32c-.02-.2-.02-.49-.02-.92v-.7c0-.43 0-.71.02-.92.01-.2.04-.28.06-.32a.75.75 0 0 1 .33-.33.85.85 0 0 1 .32-.06c.2-.02.49-.02.92-.02h.7c.43 0 .71 0 .92.02.2.01.28.04.32.06.14.07.26.19.33.33.02.04.05.11.06.32.02.2.02.49.02.92v.7c0 .43 0 .71-.02.92a.86.86 0 0 1-.06.32.75.75 0 0 1-.33.33.86.86 0 0 1-.32.06c-.2.02-.49.02-.92.02zM2 5.12v.76c0 .4 0 .74.02 1.02a2.25 2.25 0 0 0 1.2 1.86c.3.14.59.2.88.22.28.02.65.02 1.05.02h.7c.4 0 .77 0 1.05-.02a2.25 2.25 0 0 0 1.86-1.2c.14-.3.2-.59.22-.88C9 6.62 9 6.27 9 5.88v-.76c0-.4 0-.74-.02-1.02a2.3 2.3 0 0 0-.23-.87 2.25 2.25 0 0 0-.98-.98 2.3 2.3 0 0 0-.87-.23C6.62 2 6.25 2 5.85 2h-.7c-.4 0-.77 0-1.05.02a2.25 2.25 0 0 0-1.86 1.2c-.14.3-.2.59-.22.88C2 4.38 2 4.73 2 5.12zM5.5 7.5h.35c.43 0 .71 0 .92-.02.2-.01.28-.04.32-.06a.75.75 0 0 0 .33-.33.85.85 0 0 0 .06-.32c.02-.2.02-.49.02-.92v-.7c0-.43 0-.71-.02-.92a.85.85 0 0 0-.06-.32.75.75 0 0 0-.33-.33.86.86 0 0 0-.32-.06c-.2-.02-.49-.02-.92-.02h-.7c-.43 0-.71 0-.92.02a.86.86 0 0 0-.32.06.75.75 0 0 0-.33.33.85.85 0 0 0-.06.32c-.02.2-.02.49-.02.92v.7c0 .43 0 .71.02.92.01.2.04.28.06.32.07.14.19.26.33.33.04.02.11.05.32.06.2.02.49.02.92.02zM2 14.12c0-.4 0-.74.02-1.02.03-.3.08-.59.23-.87.21-.42.56-.77.98-.98.28-.15.58-.2.87-.23.28-.02.65-.02 1.05-.02h.7c.4 0 .77 0 1.05.02.3.03.59.08.87.23.42.21.77.56.98.98.15.28.2.58.23.87.02.28.02.63.02 1.02v.76c0 .4 0 .74-.02 1.02a2.25 2.25 0 0 1-1.2 1.86c-.3.14-.59.2-.88.22-.28.02-.65.02-1.05.02h-.7c-.4 0-.77 0-1.05-.02a2.25 2.25 0 0 1-1.86-1.2 2.3 2.3 0 0 1-.22-.88C2 15.62 2 15.27 2 14.88v-.38zm3.85 2.38h-.7c-.43 0-.71 0-.92-.02a.86.86 0 0 1-.32-.06.75.75 0 0 1-.33-.33.85.85 0 0 1-.06-.32c-.02-.2-.02-.49-.02-.92v-.7c0-.43 0-.71.02-.92.01-.2.04-.28.06-.32a.75.75 0 0 1 .33-.33.85.85 0 0 1 .32-.06c.2-.02.49-.02.92-.02h.7c.43 0 .71 0 .92.02.2.01.28.04.32.06.14.07.26.19.33.33.02.04.05.11.06.32.02.2.02.49.02.92v.7c0 .43 0 .71-.02.92a.85.85 0 0 1-.06.32.75.75 0 0 1-.33.33.86.86 0 0 1-.32.06c-.2.02-.49.02-.92.02z" fill="currentColor" fill-rule="evenodd"></path></svg>
</div>
<span class="LeftMenu__itemLabel">Mini apps</span>
</a>
</li><li id="l_ap" class="LeftMenu__item">
<a class="LeftMenu__itemLink" href="/games">
<div class="LeftMenu__icon">
<svg fill="none" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M11.5 4h-3c-2.32 0-4.25.43-5.58 1.76S1.02 9.15 1 12c0 .8.05 1.99.46 3 .2.5.5 1.01.98 1.4.48.39 1.09.61 1.81.61.8 0 1.37-.33 1.81-.77.31-.31.58-.72.8-1.07l.17-.24c.28-.42.55-.76.91-1 .35-.24.82-.42 1.56-.42h1c.74 0 1.21.18 1.56.42.36.24.63.58.91 1l.16.24c.23.35.5.76.8 1.07.45.44 1.02.77 1.82.77a2.8 2.8 0 0 0 1.81-.61c.47-.39.78-.9.98-1.4.4-1.01.47-2.2.46-3-.02-2.84-.6-4.9-1.92-6.23C15.75 4.43 13.82 4 11.5 4zm-1 8h-1c-1.01 0-1.79.26-2.4.68-.6.4-1 .94-1.31 1.4l-.23.34c-.21.32-.37.56-.57.76a.95.95 0 0 1-.74.32c-.4 0-.67-.12-.87-.28a1.9 1.9 0 0 1-.53-.79 6.82 6.82 0 0 1-.35-2.42c.02-2.71.57-4.28 1.48-5.19.91-.9 2.34-1.32 4.52-1.32h3c2.18 0 3.61.42 4.52 1.32.9.91 1.46 2.48 1.48 5.19 0 .75-.06 1.7-.35 2.42a1.9 1.9 0 0 1-.53.8c-.2.15-.47.27-.87.27a.95.95 0 0 1-.74-.32c-.2-.2-.36-.44-.57-.76l-.23-.34c-.3-.46-.7-1-1.3-1.4A4.13 4.13 0 0 0 10.5 12zM7.25 7.5a.75.75 0 0 0-1.5 0v.75H5a.75.75 0 0 0 0 1.5h.75v.75a.75.75 0 0 0 1.5 0v-.75H8a.75.75 0 0 0 0-1.5h-.75zm5.25.75a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5z" fill="currentColor" fill-rule="evenodd"></path></svg>
</div>
<span class="LeftMenu__itemLabel">Games</span>
</a>
</li>
</ol>
</nav>
</div>
<div class="WideSeparator"></div>
<div class="LeftMenuAppPromo">
<div class="LeftMenuAppPromo__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path fill="currentColor" d="M9.35 14a.75.75 0 0 0 0 1.5h1.3a.75.75 0 0 0 0-1.5h-1.3Z"></path><path fill="currentColor" fill-rule="evenodd" d="M4 6.72c0-1.83 0-2.74.36-3.44a3.26 3.26 0 0 1 1.42-1.42c.7-.36 1.61-.36 3.44-.36h1.56c1.83 0 2.74 0 3.44.36a3.26 3.26 0 0 1 1.42 1.42c.36.7.36 1.61.36 3.44v6.56c0 1.83 0 2.74-.36 3.44a3.26 3.26 0 0 1-1.42 1.42c-.7.36-1.61.36-3.44.36H9.22c-1.83 0-2.74 0-3.44-.36a3.26 3.26 0 0 1-1.42-1.42C4 16.02 4 15.11 4 13.28V6.72ZM9.22 3h1.56c.94 0 1.55 0 2.02.04.45.04.64.1.74.15a1.76 1.76 0 0 1 .77.77c.05.1.11.29.15.74.04.47.04 1.08.04 2.02v6.56c0 .94 0 1.55-.04 2.02-.04.45-.1.64-.15.74a1.76 1.76 0 0 1-.77.77c-.1.05-.29.11-.74.15-.47.04-1.08.04-2.02.04H9.22c-.94 0-1.55 0-2.02-.04-.45-.04-.64-.1-.74-.15a1.76 1.76 0 0 1-.77-.77c-.05-.1-.11-.29-.15-.74-.04-.47-.04-1.08-.04-2.02V6.72c0-.94 0-1.55.04-2.02.04-.45.1-.64.15-.74a1.76 1.76 0 0 1 .77-.77c.1-.05.29-.11.74-.15C7.67 3 8.28 3 9.22 3Z" clip-rule="evenodd"></path></svg>
</div>
<a href="/mobile?utm_source=menu" target="_blank" class="LeftMenuAppPromo__link">
Mobile app
</a>
</div><div class="WideSeparator WideSeparator--legalRecommendationsLink"></div>
<div class="LeftMenuAppPromo">
<div class="LeftMenuAppPromo__icon">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10 9.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75z" fill="currentColor"></path><path d="M11 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M3.99 3.99A8.48 8.48 0 0 1 10 1.5c2.35 0 4.47.95 6.01 2.49A8.48 8.48 0 0 1 18.5 10a8.48 8.48 0 0 1-2.49 6.01A8.48 8.48 0 0 1 10 18.5a8.48 8.48 0 0 1-6.01-2.49A8.48 8.48 0 0 1 1.5 10c0-2.35.95-4.47 2.49-6.01zM10 3a6.98 6.98 0 0 0-4.95 2.05A6.98 6.98 0 0 0 3 10c0 1.93.78 3.68 2.05 4.95A6.98 6.98 0 0 0 10 17a6.97 6.97 0 0 0 4.95-2.05A6.97 6.97 0 0 0 17 10a6.98 6.98 0 0 0-2.05-4.95A6.98 6.98 0 0 0 10 3z" fill="currentColor"></path></svg>
</div>
<a href="/legal/recommendations" class="LeftMenuAppPromo__link">
Recommendation technologies used
</a>
</div>
</div>
</div>
<div id="page_body" class="fl_r " style="width: 795px;">
<div id="wrap_between"></div>
<div id="spa_root"><div class="vkui__root"></div></div>
<script type="text/javascript">window.spaReady && window.spaReady()</script>
<div id="wrap3"><div id="content"><div class="wide_column_left">
<div class="narrow_column_wrap">
<div class="narrow_column" id="narrow_column" style="margin-top: 0px;">
<div class="page_block ui_rmenu ui_rmenu_pr" id="wall_rmenu" role="list">
<a class="ui_ownblock clear_fix" href="/ahmetcadirci" onclick="return nav.go(this, event, {back: true});">
<div class="ui_ownblock_img">
<img class="ui_ownblock_img" src="https://sun6-23.userapi.com/s/v1/ig2/N8Bg3WSKn5Li4AOMPVMFQq2j3zSixG5_uFJ_s2Asq2Feimt9_tE5He_YcvJDmxsoKDNcEfYeIqKPPK0FhdtQNF40.jpg?quality=95&crop=0,0,512,512&as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&ava=1&cs=50x50" alt="Ahmet &#199;ad&#305;rc&#305;">
</div>
<div class="ui_ownblock_info">
<div class="ui_ownblock_label">Ahmet Çadırcı</div>
<div class="ui_ownblock_hint">back to page</div>
</div>
</a><div class="ui_rmenu_sep"></div><a id="ui_rmenu_own" href="/wall-224095492?own=1" class="ui_rmenu_item _ui_item_own" data-testid="search_global_tab_own" onclick="return uiRightMenu.go(this, event, undefined, undefined);">
<span class="ui_rmenu_item_label "><span class="ui_rmenu_label-text">Community posts</span></span>
</a><a id="ui_rmenu_all" href="/wall-224095492" class="ui_rmenu_item _ui_item_all" data-testid="search_global_tab_all" onclick="return uiRightMenu.go(this, event, undefined, undefined);">
<span class="ui_rmenu_item_label "><span class="ui_rmenu_label-text">All posts</span></span>
</a><a id="ui_rmenu_search" href="/wall-224095492?search=1" class="ui_rmenu_item _ui_item_search" data-testid="search_global_tab_search" onclick="return uiRightMenu.go(this, event, undefined, undefined);">
<span class="ui_rmenu_item_label "><span class="ui_rmenu_label-text">Search posts</span></span>
</a><a id="ui_rmenu_one" href="/wall-224095492_88" class="ui_rmenu_item _ui_item_one ui_rmenu_item_sel" data-testid="search_global_tab_one" onclick="return uiRightMenu.go(this, event, undefined, undefined);">
<span class="ui_rmenu_item_label "><span class="ui_rmenu_label-text">Wall posts </span></span>
</a>
</div>
</div>
</div>
<div class="wide_column_wrap">
<div class="wide_column" id="wide_column" role="main">
<div class="wall_wrap clear_fix">
<div class="big_wall">
<div class="wall_module">
<div id="page_wall_posts" class="mark_top_verified "><div id="post-224095492_88" class="_post post page_block post--withPostBottomAction post--with-likes closed_comments deep_active Post--redesign feed_post_indicator" data-post-id="-224095492_88" onclick="wall.postClick('-224095492_88', event);" data-post-signer-or-author-id="-224095492" data-post-author-id="-224095492" data-post-track-code="0719acb0d15WAZm7VH7-g2Ww4FSLxfNSGQLsKikgS_lRhaKqjWMgVjM5178DK_aKsBIS9I_9zyV4boAqL00" post_view_hash="e58ed827dcb19a4f45" tabindex="-1">
<div class="_post_content">
<div class="PostHeader PostHeader--compact PostHeader--inPost js-PostHeader">
<div class="AvatarRichContainer PostHeader__avatar" style="width: 40px; height: 40px;">
<a href="/ahmetcadirci" tabindex="-1" aria-hidden="true" data-task-click="Post/ownerLinkClick" data-item-owner-id="-224095492" data-event="open_group" class="AvatarRich AvatarRich--sz-40 AvatarRich--shadow PostHeader__avatar" style="width: 40px; height: 40px; border-radius: 50%;
--avatar-rich-stroke-width: 2px; --avatar-rich-nft-frame-width: 2px ">
<div class="AvatarRich__background"></div>
<img src="https://sun6-23.userapi.com/s/v1/ig2/N8Bg3WSKn5Li4AOMPVMFQq2j3zSixG5_uFJ_s2Asq2Feimt9_tE5He_YcvJDmxsoKDNcEfYeIqKPPK0FhdtQNF40.jpg?quality=95&crop=0,0,512,512&as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&ava=1&u=Ywo5cXaJv1c_lynaJ7VrbPHT6itofJAqC-AFpQ5mChg&cs=100x100" alt="Ahmet &#199;ad&#305;rc&#305;" class="AvatarRich__img" data-post-id="-224095492_88" data-post-click-type="post_owner_img">
</a>
</div>
<div class="PostHeaderInfo PostHeaderInfo--inHeader ">
<div class="PostHeaderTitle">
<div class="PostHeaderTitle__authorBlock">
<h5 class="PostHeaderTitle__author" aria-level="3">
<a class="PostHeaderTitle__authorLink" href="/ahmetcadirci" data-from-id="-224095492" data-post-id="-224095492_88" data-post-click-type="post_owner_link" data-task-click="Post/ownerLinkClick" data-item-owner-id="-224095492" data-event="open_group">
<span class="PostHeaderTitle__authorName">Ahmet Çadırcı</span>
</a>
</h5>
</div>
</div>
<div class="PostHeaderSubtitle PostHeaderSubtitle--layoutDefault">
<a class="PostHeaderSubtitle__link" href="/wall-224095492_88" onclick="return showWiki({w: 'wall-224095492_88'}, false, event, {trackCode: '0719acb0d15WAZm7VH7-g2Ww4FSLxfNSGQLsKikgS_lRhaKqjWMgVjM5178DK_aKsBIS9I_9zyV4boAqL00', source: 'date_link'});">
<time class="PostHeaderSubtitle__item">25 Sep at 8:21 pm</time>
</a>
</div>
</div>
<div class="PostHeader__statuses">
<div class="PostHeader__status "></div>
</div>
<div class="PostHeaderActions PostHeaderActions--inPost">
<div class="PostHeaderActions__action"><div class="PostContextMenuReact__root PostContextMenu"><div class="vkui__root"><div class="PostContextMenu__wrapper--srRl5 vkuiFlex vkuiFlex--align-center vkuiFlex--justify-center vkuiRootComponent"><button class="vkuiIconButton vkuiIconButton--sizeY-compact vkuiTappable vkuiTappable--hasPointer-none vkuiClickable__resetButtonStyle vkuiClickable__host vkuiClickable__realClickable vkui-focus-visible vkuiRootComponent" type="button" data-testid="post_context_menu_toggle" aria-expanded="false"><span class="vkuiVisuallyHidden vkuiRootComponent">Actions</span><svg aria-hidden="true" display="block" class="vkuiIcon vkuiIcon--24 vkuiIcon--w-24 vkuiIcon--h-24 vkuiIcon--more_horizontal_24 vkitgetColorClass__colorIconTertiary--ZChL6" width="24" height="24" viewBox="0 0 24 24" style="width: 24px; height: 24px;"><use xlink:href="#more_horizontal_24" style="fill: currentcolor;"></use></svg><span aria-hidden="true" class="vkuiTappable__stateLayer vkuiTappable__ripple"></span></button></div></div></div><div class="PostContextMenuReact__root PostContextMenu ReactEntryRootClone" style="display: none;"></div></div>
</div>
</div>
<div class="post_content">
<div class="post_info">
<div class="wall_text"><div id="wpt-224095492_88" class="wall_post_cont _wall_post_cont"><div class="wall_post_text" data-testid="wall_post_text">Hacking programları, hackerlar, pentesterlar ve güvenlik araştırmacıları için hazırlanmış bir hacking araçları listesidir.</div><div class="SecondaryAttachmentContainer SecondaryAttachmentContainer--inPost">
<div class="SecondaryAttachmentGroup js-SecondaryAttachmentGroup">
<a class="SecondaryAttachment js-SecondaryAttachment SecondaryAttachment--interactive" href="https://vk.com/away.php?to=https%3A%2F%2Fhacking.ahmetcadirci.com&track_code=0719acb0d15WAZm7VH7-g2Ww4FSLxfNSGQLsKikgS_lRhaKqjWMgVjM5178DK_aKsBIS9I_9zyV4boAqL00&post=-224095492_88" target="_blank" rel="nofollow noopener">
<div class="SecondaryAttachmentAvatar SecondaryAttachmentAvatar--icon SecondaryAttachmentAvatar--style-square" style="" aria-hidden="true">
<div class="SecondaryAttachmentAvatar__iconContent CardHeaderOverlayImage__cutTarget"><svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="currentColor" viewBox="0 0 28 28"><path fill-rule="evenodd" d="M6.07 3.8c1.1-.58 2.17-.8 4.62-.8H13a1 1 0 1 1 0 2h-2.3c-2.34 0-3.03.21-3.69.56a3.47 3.47 0 0 0-1.44 1.45C5.2 7.67 5 8.36 5 10.7v6.62c0 2.33.21 3.02.56 3.68a3.47 3.47 0 0 0 1.45 1.45c.66.35 1.35.56 3.68.56h6.62c2.33 0 3.02-.21 3.68-.56a3.47 3.47 0 0 0 1.45-1.45c.35-.66.56-1.35.56-3.68V15a1 1 0 1 1 2 0v2.3c0 2.46-.22 3.53-.8 4.63a5.46 5.46 0 0 1-2.27 2.27c-1.1.58-2.17.8-4.62.8h-6.62c-2.45 0-3.52-.22-4.62-.8a5.46 5.46 0 0 1-2.27-2.27c-.58-1.1-.8-2.17-.8-4.62v-6.62c0-2.45.22-3.52.8-4.62A5.47 5.47 0 0 1 6.07 3.8ZM18 5a1 1 0 1 1 0-2h6a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V6.41l-6.3 6.3a1 1 0 0 1-1.4-1.42L21.58 5H18Z" clip-rule="evenodd"></path></svg></div>
</div>
<div class="SecondaryAttachment__main">
<div class="SecondaryAttachment__content">
<div class="SecondaryAttachment__children SecondaryAttachmentTitle ">
<div class="SecondaryAttachment__childrenText">Hacking Programları</div>
<div class="SecondaryAttachment__childrenTextAfter"></div>
</div>
<div class="SecondaryAttachment__description SecondaryAttachmentSubhead">hacking.ahmetcadirci.com</div>
</div>
</div>
<div class="SecondaryAttachment__after"><div class="SecondaryAttachment__buttonBase" aria-hidden="true"><div class="SecondaryAttachment__chevron"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.47 4.22a.75.75 0 0 0 0 1.06L12.19 10l-4.72 4.72a.75.75 0 1 0 1.06 1.06l5.25-5.25a.75.75 0 0 0 0-1.06L8.53 4.22a.75.75 0 0 0-1.06 0z" fill="currentColor"></path></svg></div></div></div>
</a>
</div>
</div></div></div>
<div class="like_wrap _like_wall-224095492_88 ">
<div class="like_cont PostBottomActionLikeBtns PostBottomActionLikeBtns--withBgButtons">
<div class="like_btns">
<div class="PostBottomActionContainer PostButtonReactionsContainer" data-section-ref="reactions-button-container">
<div class="PostBottomAction PostBottomAction--withBg PostButtonReactions PostButtonReactions--post " role="button" tabindex="0" aria-label="Send reaction Like" onclick="Reactions && Reactions.onReactionClick(this, event)" onkeydown="Reactions && Reactions.onReactionKeyDown(this, event)" onmouseenter="Reactions && Reactions.initReactionByMouseEvent(this, event)" data-reaction-hash="stub_reaction_hash_guest" data-reaction-set-id="reactions" data-reaction-style-variant="post" data-reaction-target-object="wall-224095492_88" data-section-ref="reactions-button" data-reaction-preview-variant="action_status_bar" data-reactions-menu-disabled="">
<span class="PostBottomAction__icon _like_button_icon" aria-hidden="true"><div class="PostButtonReactions__icon " data-section-ref="reactions-button-icon" aria-label="Like"><svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"></path><path d="M16 4a5.95 5.95 0 0 0-3.89 1.7l-.12.11-.12-.11A5.96 5.96 0 0 0 7.73 4 5.73 5.73 0 0 0 2 9.72c0 3.08 1.13 4.55 6.18 8.54l2.69 2.1c.66.52 1.6.52 2.26 0l2.36-1.84.94-.74c4.53-3.64 5.57-5.1 5.57-8.06A5.73 5.73 0 0 0 16.27 4zm.27 1.8a3.93 3.93 0 0 1 3.93 3.92v.3c-.08 2.15-1.07 3.33-5.51 6.84l-2.67 2.08a.04.04 0 0 1-.04 0L9.6 17.1l-.87-.7C4.6 13.1 3.8 11.98 3.8 9.73A3.93 3.93 0 0 1 7.73 5.8c1.34 0 2.51.62 3.57 1.92a.9.9 0 0 0 1.4-.01c1.04-1.3 2.2-1.91 3.57-1.91z" fill="currentColor" fill-rule="nonzero"></path></g></svg></div></span>
<span class="PostBottomAction__label _like_button_label PostBottomAction__label--withBg"><div class="PostButtonReactions__title _counter_anim_container PostButtonReactions__title--textual" data-section-ref="reactions-button-title" aria-hidden="true">Like</div></span>
<span class="PostBottomAction__count _like_button_count _counter_anim_container PostBottomAction__count--withBg" aria-hidden="true"></span>
</div>
<button class="visually-hidden" role="button" data-section-ref="reactions-hidden-button" onclick="Reactions && Reactions.initReactionByMouseEvent(this, event)" aria-label="Select reaction" tabindex="0"></button><div data-section-ref="reactions-menu-mount"></div>
</div><div class="PostBottomAction PostBottomAction--withBg share _share empty" role="button" tabindex="0" onclick="Likes && Likes.share('wall-224095492_88', {}, this); return false;" onmouseover="Likes && Likes.showShare(this, 'wall-224095492_88');" data-count="0" title="Share" data-like-button-type="share" aria-label="0 shares">
<span class="PostBottomAction__icon _like_button_icon" aria-hidden="true"><svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"></path><path d="M12 3.73c-1.12.07-2 1-2 2.14v2.12h-.02a9.9 9.9 0 0 0-7.83 10.72.9.9 0 0 0 1.61.46l.19-.24a9.08 9.08 0 0 1 5.84-3.26l.2-.03.01 2.5a2.15 2.15 0 0 0 3.48 1.69l7.82-6.14a2.15 2.15 0 0 0 0-3.38l-7.82-6.13c-.38-.3-.85-.46-1.33-.46zm.15 1.79c.08 0 .15.03.22.07l7.82 6.14a.35.35 0 0 1 0 .55l-7.82 6.13a.35.35 0 0 1-.57-.28V14.7a.9.9 0 0 0-.92-.9h-.23l-.34.02c-2.28.14-4.4.98-6.12 2.36l-.17.15.02-.14a8.1 8.1 0 0 1 6.97-6.53.9.9 0 0 0 .79-.9V5.87c0-.2.16-.35.35-.35z" fill="currentColor" fill-rule="nonzero"></path></g></svg></span>
<span class="PostBottomAction__label _like_button_label PostBottomAction__label--withBg"></span>
<span class="PostBottomAction__count _like_button_count _counter_anim_container PostBottomAction__count--withBg" aria-hidden="true"></span>
</div>
<span class="blind_label" tabindex="0" role="link" onclick="Likes && Likes.showSharesList(this, 'wall-224095492_88')">Show shared copies</span>
</div>
<div class="like_views like_views--inActionPanel" role="img" onmouseover="Likes && Likes.updateViews('wall-224095492_88', event);" title="1 view">
<span class="like_views__icon "><svg fill="none" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><path d="M9.5 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z"></path><path clip-rule="evenodd" d="M15.5 8c0-1-3-5-7.5-5S.5 7 .5 8s3 5 7.5 5 7.5-4 7.5-5zm-4 0a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0z" fill-rule="evenodd"></path></g></svg></span>
<span class="_views">1</span>
</div>
</div>
</div>
<div class="replies"><div class="replies_wrap" id="replies_wrap-224095492_88" style="">
<div class="replies_list _replies_list" id="replies-224095492_88" data-can_reply_as_any_group="1"></div>
<div id="reply_box_wrap-224095492_88" class="reply_box_wrap hidden_override">
<div class="reply_box_inner_wrap " style="bottom: 0px;">
<div class="reply_fakebox_wrap" id="reply_fakebox-224095492_88" onclick="return window.Wall && Wall.showEditReply('-224095492_88', event, false, true)" data-owner-photo="" data-owner-href="" data-owner-name="" data-owner-is-nft="" data-user-name="DELETED">
<div class="reply_fakebox_wrap_image" onmouseover="return window.wall && wall.fakeReplyAsGroupOver(this);" onmousedown="return window.wall && wall.fakeReplyAsGroupCheck(this, '-224095492_88', event);" role="button" aria-label="Comment as">
<a href="/id" class="post_field_user_link _post_field_author" onclick="if (!checkEvent(event)) return nav.go(this, event); event.cancelBubble = true;">
<span onclick="if (!checkEvent(event)) return nav.go(this, event); event.cancelBubble = true;" role="link" class="AvatarRich AvatarRich--sz-34 AvatarRich--shadow post_field_user_image _post_field_image" style="width: 34px; height: 34px; border-radius: 50%;
--avatar-rich-stroke-width: 2px; --avatar-rich-nft-frame-width: 2px " aria-hidden="true">
<div class="AvatarRich__background"></div>
<img src="https://pp.userapi.com/94aVrHyY-wHPkZnMULeXIFx8l7bTfrHK4yPPBA/QulWsGFAn5k.png" alt="DELETED" class="AvatarRich__img">
</span>
<span onclick="if (!checkEvent(event)) return nav.go(this, event); event.cancelBubble = true;" role="link" class="AvatarRich AvatarRich--sz-34 AvatarRich--shadow post_field_user_image post_field_image_secondary _post_field_image" style="width: 34px; height: 34px; border-radius: 50%;
--avatar-rich-stroke-width: 2px; --avatar-rich-nft-frame-width: 2px " aria-hidden="true">
<div class="AvatarRich__background"></div>
<img src="https://pp.userapi.com/94aVrHyY-wHPkZnMULeXIFx8l7bTfrHK4yPPBA/QulWsGFAn5k.png" alt="DELETED" class="AvatarRich__img">
</span>
</a>
</div>
<div class="reply_fakebox_container">
<div class="reply_fakebox" role="button" tabindex="0" onkeydown="if (event.keyCode == 13 || event.keyCode == 32) return window.Wall && Wall.showEditReply('-224095492_88', event, false, true)" aria-label="Leave a comment">Leave a comment...</div>
<button class="reply_fake_emoji emoji_smile_icon_vector" onmouseover="window.wall && wall.replyFakeEmojiOver('-224095492_88')" aria-label="Add emoji or sticker"></button>
<button class="reply_box_photo" onclick="return window.wall && wall.replyEditPhoto(this, '-224095492_88', event)" onmouseover="window.showTitle && showTitle(this, undefined, undefined, {noZIndex: true})" data-title="Photo" aria-label="Photo"></button>
<span class="reply_fake_more_attaches" onmouseover="return window.wall && wall.replyMoreAttachShow(this, '-224095492_88', event);" onmousedown="return wall && wall.replyMoreAttachShow(this, '-224095492_88', event);" aria-label="Add attachment" role="button"></span>
</div>
<div class="WallCheckComment__timer"><div><span></span></div><div><span></span></div></div>
<button class="reply_send_button reply_send_disabled" id="reply_button-224095492_88" onclick="window.wall && wall.sendReply('-224095492_88', event, {});" onmouseover="window.wall && wall.replySubmitTooltip('-224095492_88', 1, this);" onmouseout="window.wall && wall.replySubmitTooltip('-224095492_88', 0, this);" aria-label="Post"><span class="ReplySendButtonIcon"><svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g id="send_24__Page-2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="send_24__send_24"><path id="send_24__Rectangle-76" d="M0 0h24v24H0z"></path><path d="M5.74 15.75a39.14 39.14 0 0 0-1.3 3.91c-.55 2.37-.95 2.9 1.11 1.78 2.07-1.13 12.05-6.69 14.28-7.92 2.9-1.61 2.94-1.49-.16-3.2C17.31 9.02 7.44 3.6 5.55 2.54c-1.89-1.07-1.66-.6-1.1 1.77.17.76.61 2.08 1.3 3.94a4 4 0 0 0 3 2.54l5.76 1.11a.1.1 0 0 1 0 .2L8.73 13.2a4 4 0 0 0-3 2.54Z" id="send_24__Mask" fill="currentColor"></path></g></g></svg></span></button>
</div>
</div>
</div>
</div></div>
</div>
</div>
</div>
</div></div>
</div>
</div>
</div>
</div>
</div>
</div></div></div>
<script type="text/javascript">window.layoutReady && window.layoutReady()</script>
</div>
<div id="footer_wrap" class="footer_wrap fl_r" style="width: 960px;"><div class="footer_nav" id="bottom_nav">
<div class="footer_copy"><a href="/about">VK</a> © 2006-2024</div>
<div class="footer_links">
<a class="bnav_a" href="/about">About VK</a>
<a class="bnav_a" href="/support?act=home" style="display: none;">Help</a>
<a class="bnav_a" href="/terms">Terms</a>
<a class="bnav_a" href="/biz?utm_source=vk_inside&utm_medium=authorization" target="_blank" style="display: none;">For business</a>
<a class="bnav_a" href="https://dev.vk.com">Developers</a>
<a class="bnav_a" href="/jobs" style="display: none;">Careers</a>
</div>
<div class="footer_lang"><a class="footer_lang_link" onclick="Language.changeLang(this, 3, '6287d330f721479ec1')">English</a><a class="footer_lang_link" onclick="Language.changeLang(this, 0, '6287d330f721479ec1')">Русский</a><a class="footer_lang_link" onclick="if (vk.al) { showBox('lang.php', {act: 'lang_dialog', all: 1}, {params: {bodyStyle: 'padding: 0px'}, noreload: true}); } else { changeLang(1); } return false;">All languages</a></div>
</div>
<div class="footer_bench clear">
</div></div>
<div class="clear"></div>
</div>
</div></div><noscript><div style="position:absolute;left:-10000px;">
<img src="//top-fwz1.mail.ru/counter?id=2579437;js=na" style="border:0;" height="1" width="1" />
</div></noscript></div>
<div class="progress" id="global_prg"></div>
<div id="svg-resources" style="height: 0; width: 0; overflow: hidden; position: absolute"><svg xmlns="http://www.w3.org/2000/svg" style="position: absolute; width: 0; height: 0" id="avatar_rich_svg_graphics_wrapper">
<defs>
<clipPath id="AvatarHeptagonSvgClip" clipPathUnits="objectBoundingBox">
<path d="M 0.316 0.0391 A 0.1164 0.1164 90 0 1 0.4285 0.0089 l 0.3784 0.1014 a 0.1164 0.1164 90 0 1 0.0823 0.0823 l 0.1014 0.3784 a 0.1164 0.1164 90 0 1 -0.0302 0.1125 L 0.6836 0.9605 a 0.1164 0.1164 90 0 1 -0.1125 0.0302 l -0.3784 -0.1014 a 0.1164 0.1164 90 0 1 -0.0823 -0.0823 L 0.0089 0.4285 a 0.1164 0.1164 90 0 1 0.0302 -0.1125 L 0.316 0.0391 Z"></path>
</clipPath>
<clipPath id="AvatarDecorationCircleClip42">
<path d="
M 21 0
a 21 21 0 0 1 0 42
a 21 21 0 0 1 0 -42
v 2
a 19 19 0 0 0 0 38
a 19 19 0 0 0 0 -38
"></path>
</clipPath>
<clipPath id="AvatarDecorationNftClip42">
<path d="M12.5153 2.85774C14.2837 1.08937 16.8612 0.398735 19.2768 1.046L32.4693 4.58093C34.885 5.2282 36.7718 7.11503 37.4191 9.53068L40.954 22.7232C41.6013 25.1388 40.9106 27.7163 39.1423 29.4847L29.4847 39.1423C27.7163 40.9106 25.1388 41.6013 22.7232 40.954L9.53068 37.4191C7.11504 36.7718 5.2282 34.885 4.58093 32.4693L1.04601 19.2768C0.398736 16.8612 1.08936 14.2837 2.85774 12.5153L12.5153 2.85774"></path>
</clipPath>
<mask id="AvatarDecorationNftMask38">
<rect fill="white" x="0" y="0" width="42" height="42"></rect>
<path d="M 13.0512 4.8577 C 14.8196 3.0894 17.3971 2.3987 19.8127 3.046 L 31.0052 6.045 C 33.4209 6.6923 35.3077 8.5791 35.955 10.9948 L 38.954 22.1873 C 39.6013 24.6029 38.9106 27.1804 37.1423 28.9488 L 28.9488 37.1423 C 27.1804 38.9106 24.6029 39.6013 22.1873 38.954 L 10.9948 35.955 C 8.5791 35.3077 6.6923 33.4209 6.045 31.0052 L 3.046 19.8127 C 2.3987 17.3971 3.0894 14.8196 4.8577 13.0512 L 13.0512 4.8577"></path>
</mask>
<linearGradient id="avatar_hept_underlay_fill" x1="0" y1="0" x2="50" y2="50" gradientUnits="userSpaceOnUse">
<stop stop-color="#2EE6A8"></stop>
<stop offset="0.34375" stop-color="#3399FF"></stop>
<stop offset="0.692708" stop-color="#9933FF"></stop>
<stop offset="1" stop-color="#FF3399"></stop>
</linearGradient>
</defs>
</svg></div>
<script type="module">
if (parent && parent != window && (browser.msie || browser.opera || browser.mozilla || browser.chrome || browser.safari || browser.iphone)) {
document.body.innerHTML = '';
}
</script>
<script type="module">
;try{window.domReady && window.domReady();} catch (e) {e.__inline_tag = "113110f2"; e.name = `[113110f2] ${e.name}`; throw e;};
</script>
<script type="module">
;try{/*al_sScript*/
(function () {
'use strict';
function al_sScript({ balance }) {
const userAgent = navigator.userAgent.toLowerCase();
window.updateMoney && window.updateMoney(balance);
window.initPageLayoutUI && window.initPageLayoutUI();
if (/iphone/i.test(userAgent) || /ipad/i.test(userAgent) || /ipod/i.test(userAgent)) {
document.body.style.webkitTextSizeAdjust = 'none';
}
}
return al_sScript;
})()({"balance":0});} catch (e) {e.__inline_tag = "al_sScript.js"; e.name = `[al_sScript.js] ${e.name}`; throw e;};
addLangKeys({"global_warning":"Warning","global_https_request_error":"Unable to complete encrypted authorization. This can happen if your date and time settings are not configured correctly on your system. Please check your date & time settings and restart the browser."}, false);;try{/*al_sLeftGuestNavScript*/
(function () {
'use strict';
function al_sLeftGuestNavScript() {
let qf = ge('quick_login_form');
if (!qf) {
return;
}
let ql = ge('quick_login');
let qe = ge('quick_email');
let qp = ge('quick_pass');
let qlb = ge('quick_login_button');
let prgBtn = qlb;
let qinit = function() {
setTimeout(function() {
ql.insertBefore(ce('div', {
innerHTML: '<iframe class="upload_frame" id="quick_login_frame" name="quick_login_frame"></iframe>'
}), qf);
qf.target = 'quick_login_frame';
qe.onclick = window.loginByCredential;
qp.onclick = window.loginByCredential;
}, 1);
};
if (window.top && window.top != window) {
window.onload = qinit;
} else {
setTimeout(qinit, 0);
}
qf.onsubmit = function() {
if (!ge('quick_login_frame')) {
return false;
}
if (!val('quick_login_ul') && !trim(qe.value)) {
window.notaBene(qe);
return false;
} else if (!trim(qp.value)) {
window.notaBene(qp);
return false;
}
window.lockButton(window.__qfBtn = prgBtn);
prgBtn = qlb;
clearTimeout(window.__qlTimer);
window.__qlTimer = setTimeout(window.loginSubmitError, 35000);
domFC(domPS(qf)).onload = function() {
clearTimeout(window.__qlTimer);
window.__qlTimer = setTimeout(window.loginSubmitError, 3500);
};
return true;
};
window.loginSubmitError = function() {
window.showFastBox(getLang('global_warning'), getLang('global_https_request_error'));
};
window.focusLoginInput = function() {
scrollToTop(0);
window.notaBene('quick_email');
};
window.changeQuickRegButton = function(noShow) {
window.cur.noquickreg = noShow;
if (noShow) {
hide('top_reg_link', 'quick_reg_button');
} else {
show('top_reg_link', 'quick_reg_button');
}
// Если кнопку переключения языка надо показать, то просто убрать у нее `style="display: none"` вместо присвоения `style="display: block"`.
// Иначе дополнительные классы, которые управляют свойством `display`, не будут иметь эффекта.
if (noShow && window.langConfig && window.langConfig.id != 3) {
const topSwitchLang = document.getElementById('top_switch_lang');
if (topSwitchLang !== null) {
topSwitchLang.style.display = null;
}
} else {
hide('top_switch_lang');
}
};
window.submitQuickLoginForm = function(email, pass, opts) {
window.setQuickLoginData(email, pass, opts);
if (opts && opts.prg) {
prgBtn = opts.prg;
}
if (qf.onsubmit()) {
qf.submit();
}
};
window.setQuickLoginData = function(email, pass, opts) {
if (email !== undefined) {
ge('quick_email').value = email;
}
if (pass !== undefined) {
ge('quick_pass').value = pass;
}
let params = opts && opts.params || {};
each(params, function(i, v) {
let el = ge('quick_' + i) || ge('quick_login_' + i);
if (el) {
val(el, params[i]);
} else {
qf.appendChild(ce('input', {
type: 'hidden',
name: i,
id: 'quick_login_' + i,
value: v
}));
}
});
};
window.loginByCredential = function() {
if (!browserFeatures.cmaEnabled || !window.submitQuickLoginForm || window._loginByCredOffered) {
return false;
}
window._loginByCredOffered = true;
navigator.credentials.get({
password: true,
mediation: 'required'
}).then(function(cred) {
if (cred) {
window.submitQuickLoginForm(cred.id, cred.password);
return true;
} else {
return false;
}
}).catch((error)=>console.log(error.toString()));
};
if (qlb) {
qlb.onclick = function() {
if (qf.onsubmit()) {
qf.submit();
}
};
}
if (browser.opera_mobile) {
show('quick_expire');
}
}
return al_sLeftGuestNavScript;
})()({});} catch (e) {e.__inline_tag = "al_sLeftGuestNavScript.js"; e.name = `[al_sLeftGuestNavScript.js] ${e.name}`; throw e;};;try{/*al_sTopSearch*/
(function () {
'use strict';
function al_sTopSearch({ hideSupport }) {
if (hideSupport) {
hide('support_link_td', 'top_support_link');
}
TopSearch.init();
}
return al_sTopSearch;
})()({"hideSupport":true});} catch (e) {e.__inline_tag = "al_sTopSearch.js"; e.name = `[al_sTopSearch.js] ${e.name}`; throw e;};;try{/*al_sShortCurrency*/
(function () {
'use strict';
function al_sShortCurrency() {
window.shortCurrency && shortCurrency();
}
return al_sShortCurrency;
})()({});} catch (e) {e.__inline_tag = "al_sShortCurrency.js"; e.name = `[al_sShortCurrency.js] ${e.name}`; throw e;};;try{/*al_handlePageParams*/
(function () {
'use strict';
function al_handlePageParams({ params }) {
window.handlePageParams && handlePageParams(params);
}
return al_handlePageParams;
})()({"params":{"id":0,"loc":null,"wrap_page":1,"width":960,"width_dec":165,"width_dec_footer":0,"body_class":" anonym anonym_nav ","to":"d2FsbC0yMjQwOTU0OTJfODg-","counters":[]}});} catch (e) {e.__inline_tag = "al_handlePageParams.js"; e.name = `[al_handlePageParams.js] ${e.name}`; throw e;};;try{/*al_docClickHandler*/
(function () {
'use strict';
function al_docClickHandler() {
addEvent(document, 'click', window.onDocumentClick);
}
return al_docClickHandler;
})()({});} catch (e) {e.__inline_tag = "al_docClickHandler.js"; e.name = `[al_docClickHandler.js] ${e.name}`; throw e;};;try{/*zombieReload*/
(function () {
'use strict';
// eslint-disable-next-line no-restricted-syntax
function zombieReload({ startupVersion, reloadTimeout, isReloadTimeoutEnabled }) {
const ENDPOINT = 'static.php';
const FREQUENCY = 1000 * 60 * 1;
const THRESHOLD = 1000 * 60 * 30;
const SPREAD = 1000 * 60 * 10;
const RELOAD_TIMEOUT = reloadTimeout || 1000 * 60 * 60 * 24 * 10;
let lastInteraction = null;
function getRandom(min, max) {
return Math.floor(Math.random() * (max - min + 1) + min);
}
const Reload = {
timerId: null,
run: function(forceReload) {
if (forceReload) {
window.location.reload();
} else {
this.timerId = setTimeout(()=>{
window.location.reload();
}, getRandom(0, SPREAD));
}
},
stop: function() {
if (this.timerId) {
clearTimeout(this.timerId);
this.timerId = null;
}
}
};
const Survey = {
timerId: null,
requestController: null,
getCurrentVersion: async function() {
let currentVersion = null;
try {
this.requestController = new AbortController();
// eslint-disable-next-line no-restricted-globals
const response = await fetch(ENDPOINT, {
signal: this.requestController.signal
});
currentVersion = (await response.json()).version;
} catch {
currentVersion = startupVersion;
}
this.requestController = null;
return currentVersion;
},
run: function() {
this.timerId = setTimeout(async ()=>{
const idleTimeMs = Date.now() - lastInteraction;
const isZombie = idleTimeMs > THRESHOLD;
const forceReload = isReloadTimeoutEnabled && idleTimeMs >= RELOAD_TIMEOUT;
if (!isZombie) {
this.run();
return;
}
if (forceReload) {
this.stop();
Reload.run(true);
} else {
const currentVersion = await this.getCurrentVersion();
if (currentVersion !== startupVersion) {
this.stop();
Reload.run();
} else {
this.run();
}
}
}, FREQUENCY);
},
stop: function() {
if (this.requestController) {
this.requestController.abort();
}
if (this.timerId) {
clearTimeout(this.timerId);
this.timerId = null;
}
}
};
function onShow() {
lastInteraction = null;
Survey.stop();
Reload.stop();
}
function onHide() {
lastInteraction = Date.now();
Survey.run();
}
if (document.hidden) {
onHide();
}
document.addEventListener('visibilitychange', ()=>{
if (document.hidden) {
onHide();
} else {
onShow();
}
});
}
return zombieReload;
})()({"startupVersion":8,"reloadTimeout":864000000,"isReloadTimeoutEnabled":true});} catch (e) {e.__inline_tag = "zombieReload.js"; e.name = `[zombieReload.js] ${e.name}`; throw e;};
</script>
<script type="module">
addTemplates({"_":"_","event_snippet_private_info":"<div class=\"page_media_event_bottom page_media_event_bottom_info\">\n This is a closed event. Only you and other members can view information about it\n<\/div>","event_snippet":"<div class=\"page_media_thumbed_link page_media_event page_media_event%id% %class%\">\n <a class=\"page_media_event_content\" href=\"%href%\" >\n <div class=\"page_media_event_cover fl_l\" style=\"background-image: url('%cover_url%')\"><\/div>\n <div class=\"page_media_event_info\">\n <div class=\"page_media_event_name\">\n <span class=\"page_media_event_name_text\">%title%<\/span>\n %title_icon%\n <\/div>\n <div class=\"page_media_event_text\">%address%<\/div>\n <div class=\"page_media_event_text\">%date%<\/div>\n <\/div>\n <\/a>\n %bottom%\n \n<\/div>","stickers_sticker_url":"https:\/\/vk.com\/sticker\/1-%id%-%size%"});
addLangKeys({"wall_post_copyright_source_text":"Source","wall_post_copyright_edit_button":"Edit source","wall_post_copyright_add_button":"Add source","audio_podcast_attach_media":"Podcast","audio_podcast_episode_time_hour":"{hour} h","audio_podcast_episode_time_min":"{min} min","audio_podcast_episode_time_sec":"{sec} sec","events_media_type":"Event","global_close":"Close","audio_add_to_audio":"Add to my music","global_delete_audio":"Remove track","global_yes":"Yes","global_cancel":"Cancel","Save":"Save","audio_save_recommendation_audio_block_as_playlist_success_notification_title":"Playlist added to your music","audio_save_recommendation_audio_block_as_playlist_success_notification_text":"You can now find it in the section with playlists and tracks you've added","audio_delete_all_title":"Delete audio files","global_delete":"Delete","global_audio_play":"Play","global_audio_pause":"Pause","global_error":"Error","audio_error_loading":"An error occurred while loading the audio file. Please try refreshing the page.","audio_delete_from_current":"Remove from current playlist","audio_dont_show":"Stop suggesting","audio_remove_from_list":"Remove from listened","audio_podcast_delete_episode":"Delete episode","audio_restore_audio":"Undo","global_media_selector_more":"More","audio_podcast_restore_episode":"Restore episode","audio_add_to_group":"Add to community music","audio_podcast_edit_episode":"Edit episode","audio_edit_audio":"Edit track","audio_set_next_audio":"Play next","audio_show_recommendations":"Show similar tracks","audio_podcast_listen_later":"Listen later","audio_show_lyrics":"Show lyrics","audio_longtap_tooltip_text":"Listen to a snippet","global_audio_replace":"Replace","audio_copy_audio_link":"Copy link","audio_share_audio":"Share","audio_add_to_playlist":"Add to playlist","audio_open_album":"Open album","audio_podcast_open_episode":"Open episode","audio_add_to_new_pl":"New playlist","audio_row_show_all_playlists":"Show all...","global_save":"Save","audio_error_deleted_playlist_box":"Playlist unavailable\/This playlist doesn't exist or has been deleted by its creator.","audio_playlist_btn_added":"Added","audio_playlist_btn_add":"Add","global_add_media":"Attach","audio_ok":"ОК","audio_playlist_link_copied":"Link copied to clipboard","audio_restriction_title_claim":"Track unavailable. This was the decision of the artist or their representative.","audio_album_part":"Part {part}","audio_following_artist_button":"Following","audio_follow_artist_success_notification_text":"New releases from the artist will appear in the new music section.","audio_follow_artist_success_notification_title":"You're following this artist","audio_follow_artist_button":"Follow","audio_success_msg_multiple":"All audio files have been successfully uploaded.","audio_success_msg":"Your audio file was uploaded successfully.","audio_uploading_over":"File uploaded","audio_loading_error":"An error occurred, error code: {code}","audio_playlist_recoms_was_hidden":"Playlist hidden from recommendations","audio_playlist_recoms_show":"Show in recommendations","global_unknown_error":"Unknown error","audio_playlist_recoms_was_showed":"Playlist returned to recommendations","audio_playlist_recoms_hide":"Hide from recommendations","audio_track_has_no_lyrics_yet":"This track doesn't have lyrics yet","audio_lyrics_ads":"Ad","audio_lyrics_error_btn_retry":"Try again","audio_lyrics_error":"Something went wrong. Please try again or play a different track.","global_audio_prev":"Previous track","global_audio_next":"Next track","audio_shuffle":"Shuffle and play","audio_repeat_tooltip":"Repeat","audio_playback_rate":"Playback speed","audio_player_block_remove_from_group_hint":"Delete","audio_player_block_add_to_group_hint":"Add","audio_player_block_remove_from_my_music_hint":"Remove from my music","audio_player_block_add_to_my_music_hint":"Add to my music","global_audio_ad_more":"Details","audio_player_block_playback_progress_time_aria_label":"Change playback time mode","audio_action_dislike":"Dislike","audio_player_block_podcast_remove_from_favorites_hint":"Remove from Bookmarks","audio_player_block_podcast_add_to_favorites_hint":"Add to Bookmarks","audio_share":"Share","audio_player_block_volume_slider_mute_button_aria_label":"Mute","audio_player_block_broadcast_tooltip_title":"Broadcast audio:","audio_player_block_broadcast_tooltip_user_page_checkbox":"On my profile","audio_player_block_broadcast_tooltip_clubs_container_title":"Broadcast in community","global_audio_ad":"Ads","global_audio_ads_off":"Disable","months_of":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"},"global_date":["","{day} {month} {year}","yesterday","today","tomorrow"],"global_short_date":["","{day} {month}","yesterday","today","tomorrow"],"global_just_now":"just now","global_word_mins_ago":["","one minute ago","two minutes ago","three minutes ago","4 minutes ago","5 minutes ago"],"global_mins_ago":["","%s minute ago","%s minutes ago"],"global_word_hours_ago":["","one hour ago","two hours ago","three hours ago","four hours ago","five hours ago"],"global_hours_ago":["","%s hour ago","%s hours ago"],"months_sm_of":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"},"global_short_date_time":["","{day} {month} at {hour}:{minute} {am_pm}","yesterday at {hour}:{minute} {am_pm}","today at {hour}:{minute} {am_pm}","tomorrow at {hour}:{minute} {am_pm}"],"global_to_top":"Go up","global_back":"Back","box_close":"Close","global_box_title_back":"Back","vkconnect_refresh_captcha":"Refresh","global_captcha_input_here":"Enter code","captcha_enter_code":"Enter the code from the picture","captcha_send":"Send","captcha_cancel":"Cancel","vkconnect_refresh_captcha_via":"Refresh in {time}","global_recaptcha_title":"Confirm action","global_user_is_online_mobile":"online from mobile","global_user_is_online":"online","global_warning":"Warning","calls_are_you_sure_to_call_this_user":"Are you sure you want to call this user?","global_share_button_call":"Call","global_reload_app_modal_title":"Update website","global_reload_app_modal_content":"Website updated. Reload the page for it to work properly.","global_reload_app_modal_action":"Reload","global_charged_zone_title":"Warning","global_charged_zone_continue":"Continue","text_N_symbols_remain":["","%s character remaining","%s characters remaining"],"text_exceeds_symbol_limit":["","You've exceeded the limit by %s character","You've exceeded the limit by %s characters"],"votes_flex":["","vote","votes"],"global_money_amount_rub":["","%s ruble","%s rubles"],"video_postponed_publication":"Scheduled post","video_added_less_than_a_minute_ago":"Less than a minute ago","video_word_mins_ago":["","one minute ago","two minutes ago","three minutes ago","4 minutes ago","5 minutes ago"],"video_mins_ago":["","%s minute ago","%s minutes ago"],"video_word_hours_ago":["","one hour ago","two hours ago","three hours ago","four hours ago","five hours ago"],"video_hours_ago":["","%s hour ago","%s hours ago"],"video_word_days_ago":["","one day ago","two days ago","three days ago","four days ago","five days ago"],"video_days_ago":["","%s day ago","%s days ago"],"video_word_months_ago":["","one month ago","two months ago","three months ago","four months ago","five months ago"],"video_months_ago":["","%s month ago","%s months ago"],"video_word_years_ago":["","one year ago","two years ago","three years ago","four years ago","five years ago"],"video_years_ago":["","%s year ago","%s years ago"],"video_album_updated_time":"Updated {updated_time_ago}","video_postponed_publication_date":["","{num_day} {month} at {num_hour}:{minute} {am_pm}","{num_day} {month} at {num_hour}:{minute} {am_pm}","Today at {num_hour}:{minute} {am_pm}","Tomorrow at {num_hour}:{minute} {am_pm}"],"video_postponed_publication_full_date":["","{num_day} {month} {year} at {num_hour}:{minute} {am_pm}","{num_day} {month} {year} at {num_hour}:{minute} {am_pm}","Today at {num_hour}:{minute} {am_pm}","Tomorrow at {num_hour}:{minute} {am_pm}"],"video_N_views_list":["","%s view","%s views"],"global_video_soon":"Soon","video_interactive_label":"Interactive","video_feature_relation_text":" feat. ","video_N_views_thousand":"K views","video_N_views_million":"M views","video_N_group_members_count":["","%s follower","%s followers"],"video_N_subscribers_thousand":" K followers","video_N_subscribers_million":"M followers","video_N_thousand":"K","video_N_million":"M","video_showcase_N_viewers":["","%s view","%s views"],"global_short_years_fixed":["","%s y","%s y"],"global_short_months":"%s m","global_short_weeks":"%s w","global_short_days":"%s d","global_short_hours":"%s hr.","global_short_minutes":"%s min","global_short_seconds":"%s s","audio_music_playlist_crash_placeholder_header":"Playlist not loading","audio_music_playlist_crash_placeholder_description":"Music is unavailable right now. Please try again later","audio_action_sub_sheet_additional_loading":"Loading... ","head_fr_online_tip":"Show friends","box_send":"Send","purchases_stickers_purchase_result_pack_and_styles":["","Sticker pack {pack_title} and {n} style added","Sticker pack {pack_title} and {n} styles added"],"purchases_stickers_purchase_result_pack":"{title} added","purchases_stickers_purchase_result_1_style":"Style {title} added","purchases_stickers_purchase_result_2_styles":"Styles {title1} and {title2} added","purchases_stickers_purchase_result_3_styles":"Styles {title1}, {title2} and {title3} added","purchases_stickers_purchase_result_3_styles_and_1_more":"Styles {title1}, {title2}, {title3} and one other added","purchases_stickers_purchase_result_3_styles_and_n_more":["","Styles {title1}, {title2}, {title3} and {n} other added","Styles {title1}, {title2}, {title3} and {n} others added"],"gifts_nobody_found":"User not found","gifts_start_typing_recipient":"Start typing a name","purchases_stickers_gift_box_title":"Confirmation","purchases_gift_price_label":"Price:","global_n_votes":["","%s vote","%s votes"],"gifts_you_have_X_votes":"You have {votes}","gifts_receiver":"Recipient","gifts_choose_recipients":"Select recipients","purchases_gift_your_message":"Your message","gifts_receiver_only":"Only the recipient can see my name and message","purchases_stickers_gift_details_label":"How the price is calculated","purchases_stickers_gift_send_for":"Send for {price}","purchases_stickers_gift_send":"Send","purchases_stickers_gift_title_1_style":"Style: {title}","purchases_stickers_gift_description_with_pack":"Together with the {title} sticker pack.","purchases_stickers_gift_description_for_pack":"For the {title} sticker pack.","purchases_stickers_gift_title_pack":"Sticker pack: {title}","purchases_stickers_gift_description_with_2_styles":"Together with styles: {title1} and {title2}.","purchases_stickers_gift_description_with_3_styles":"Together with styles: {title1}, {title2} and {title3}.","purchases_stickers_gift_description_with_3_styles_and_1_more":"Together with styles: {title1}, {title2}, {title3} and one other.","purchases_stickers_gift_description_with_3_styles_and_n_more":["","Together with styles: {title1}, {title2}, {title3} and {n} other.","Together with styles: {title1}, {title2}, {title3} and {n} others."],"purchases_stickers_gift_title_2_styles":"Styles: {title1} and {title2}","purchases_stickers_gift_title_3_styles":"Styles: {title1}, {title2} and {title3}","purchases_stickers_gift_title_3_styles_and_1_more":"Styles: {title1}, {title2}, {title3} and one other","purchases_stickers_gift_title_3_styles_and_n_more":["","Styles: {title1}, {title2}, {title3} and {n} other","Styles: {title1}, {title2}, {title3} and {n} others"],"purchases_stickers_gift_description_styles":"The recipient will be able to select a style of stickers and use them for free in messages, comments and stories.","purchases_stickers_gift_description":"The recipient will be able to use stickers for free in messages, comments and stories.","purchases_stickers_gift_result_1_recipient_single":["","{name} received your gift: {products}","{name} received your gift: {products}"],"purchases_stickers_gift_result_1_recipient_multiple":["","{name} received your gifts: {products}","{name} received your gifts: {products}"],"purchases_stickers_gift_result_2_recipients":["","{name1} and {name2} received your gift: {products}","{name1} and {name2} received your gifts: {products}"],"purchases_stickers_gift_result_3_recipients":["","{name1}, {name2} and {name3} received your gift: {products}","{name1}, {name2} and {name3} received your gifts: {products}"],"purchases_stickers_gift_result_4_recipients":["","{name1}, {name2}, {name3} and {name4} received your gift: {products}","{name1}, {name2}, {name3} and {name4} received your gifts: {products}"],"purchases_stickers_gift_result_5_recipients":["","{name1}, {name2}, {name3}, {name4} and {name5} received your gift: {products}","{name1}, {name2}, {name3}, {name4} and {name5} received your gifts: {products}"],"purchases_stickers_gift_result_4_recipients_and_n_more_single":["","{name1}, {name2}, {name3}, {name4} and {n} other person received your gift: {product}","{name1}, {name2}, {name3}, {name4} and {n} other people received your gift: {product}"],"purchases_stickers_gift_result_4_recipients_and_n_more_multiple":["","{name1}, {name2}, {name3}, {name4} and {n} other person received your gifts: {products}","{name1}, {name2}, {name3}, {name4} and {n} others received your gifts: {products}"],"purchases_stickers_gift_result_products_pack_and_styles":["","sticker pack: {title} and {styles_num} style","sticker pack: {title} and {styles_num} styles"],"purchases_stickers_gift_result_products_pack":"{title} sticker pack","purchases_stickers_gift_result_products_1_style":"style: {title}","purchases_stickers_gift_result_products_2_styles":"styles: {title1} and {title2}","purchases_stickers_gift_result_products_3_styles":"styles: {title1}, {title2} and {title3}","purchases_stickers_gift_result_products_3_styles_and_1_more":"styles: {title1}, {title2}, {title3} and one other","purchases_stickers_gift_result_products_3_styles_and_n_more":["","styles: {title1}, {title2}, {title3} and {n} other","styles: {title1}, {title2}, {title3} and {n} others"],"purchases_stickers_gift_details_summary_pack_with_styles":["","You're sending the standard sticker pack for <b>{pack_price_sum}<\/b> and an additional style for <b>{styles_price_sum}<\/b>.","You're sending the standard sticker pack for <b>{pack_price_sum}<\/b> and {styles_num} additional styles for <b>{styles_price_sum}<\/b>."],"purchases_stickers_gift_details_summary_pack":"You're sending a sticker pack for <b>{pack_price_sum}<\/b>.","purchases_stickers_gift_details_summary_styles":["","You're sending an additional style for {styles_price_sum}.","You're sending {styles_num} additional styles for {styles_price_sum}."],"purchases_stickers_gift_details_recipient_style_title":"{title}","purchases_stickers_gift_details_recipient_pack_and_styles":["","Sticker pack: {pack_title}, and style: {style_titles}.","Sticker pack: {pack_title}, and styles: {style_titles}."],"purchases_stickers_gift_details_recipient_pack":"Sticker pack: {title}","purchases_stickers_gift_details_recipient_styles":["","Style: {style_titles}.","Styles: {style_titles}."],"purchases_stickers_n_for_m":"%n for %m","purchases_for_free_btn":"Free","payments_go_change_pay_type":"Change payment method","payments_get_votes_new":"Get votes","payments_get_votes_box_close_notice":"The transaction is being processed. We will send you a notification when the votes have been added to your account.","payments_unbind_card_confirm":"Are you sure you want to unlink this payment card?","payments_revoke_token_confirm":"Are you sure you want to unlink this wallet?","global_action_confirmation":"Confirm action","payments_unbind_card_btn":"Delete","apps_personal_discount_amount_gift_calc":["","+%s for free","+%s for free"],"payments_votes_cost_in_rubles":["","Cost: %s ruble","Cost: %s rubles"],"payments_bonus_votes":["","+ bonus %s vote","+ bonus %s votes"],"payments_get_votes_for_X":"Get votes for {amount}","payments_back_to_ps_list":"Back to list","payments_go_ps_list":"Back to payment methods","payments_pay_order_btn":"Pay","payments_web_no_sum":"Please select the desired number of votes.","payments_min_amount_limit_votes":"The minimum number of votes you can buy using the selected payment system is %s.","payments_max_amount_limit_votes":"Maximum number of votes for paying through the chosen payment system — %s.","payments_rest_amount_day_votes":"Your daily limit has been exceeded. The maximum number of votes you can buy using the selected payment system is %s.","payments_rest_amount_week_votes":"Your weekly limit has been exceeded. The maximum number of votes you can buy using the selected payment system is %s.","payments_error_invalid_email":"Invalid email entered.","payments_money_for_votes":["","{money} (%s vote)","{money} (%s votes)"],"payments_landing_cancelled":"{tag_span}Unfortunately, your payment was not accepted.{\/tag_span}<br>Please contact {link}Support{\/link}.","payments_payment_cancelled":"The payment process was canceled.","payments_cards_redirect":"Redirecting to payment gateway.<br>Please wait...","payment_redirect":"Redirecting to <b>%s<\/b>.<br>Please wait...","payments_sms_money_fail":"Your request could not be processed. Please try again later.","payments_invalid_code":"Incorrect code.","payments_change_phone_number":"Change the number","payments_spasibo_rules_not_accepted":"Please accept the terms to continue","payments_to_get_send_sms":["","To get <b>%s<\/b> vote, send an SMS with <b>{text}<\/b> to <b>{number}<\/b>","To get <b>%s<\/b> votes, send an SMS with <b>{text}<\/b> to <b>{number}<\/b>"],"payments_service_cost":"The service costs <b>{amount}<\/b>","payments_get_votes_input_phone":"Please enter a <b>phone number<\/b> for payment:","payments_save_phone":"Save number","payments_box_title_back":"Back","global_error_occured":"An error occurred","payments_waiting_payment_complete":"Completing payment. Please wait...","payments_waiting_payment_complete_still":"Please wait...","payments_internet_getting_votes":"Get Votes","payments_get_votes_delay":"We are waiting for a reply from the payment gateway. As soon as we receive it, we will credit the votes to {link}your account{\/link} immediately.<br><br>If you do not receive votes to your account within an hour, please contact our {link2}payment support team{\/link2}.","payments_get_votes_ps_enter_code":"To pay, please enter the confirmation code that was sent to you","payments_instant_pay_amount_limit_error":"Your account has insufficient funds, or the limit for charging without confirmation has been reached.<br>To make a payment with confirmation, please click {link}Proceed to payment{\/link}.","payments_for_get_n_votes":["","<b>%s<\/b> vote","<b>%s<\/b> votes"],"payments_service_cost_rubles":["","The service costs <b>%s ruble<\/b>.","The service costs <b>%s rubles<\/b>."],"payments_back_to_offers_list":"Back to list","payments_waiting_app_order_complete":"Completing transfer...","payments_app_order_box_title":"Votes transfer","payments_app_add_votes_delay":"We are waiting for confirmation from the app. If the transfer is not confirmed within an hour, we will return the votes to your balance.","vkconnect_auth_captcha_image_aria_label":"Graphic code","vkconnect_auth_captcha_submit_button":"Continue","vkconnect_auth_captcha_refresh_button_aria_label":"Refresh image","vkconnect_auth_captcha_refresh_audio_button_aria_label_new_ux":"New audio","vkconnect_auth_captcha_play_audio_button_aria_label_new_ux":"Play audio","vkconnect_auth_captcha_loading_error_caption":"Failed to load picture","vkconnect_auth_audio_captcha_loading_error_caption":"Failed to load audio","vkconnect_auth_captcha_image_loading_error_retry_aria_label":"Failed to load image. Please try again.","vkconnect_auth_captcha_sound_loading_error_retry_aria_label":"Failed to load audio. Please try again.","vkconnect_auth_captcha_loading_error_refresh_text":"Try again","vkconnect_auth_captcha_enable_audio_aria_label":"Audio test","vkconnect_auth_captcha_enable_image_aria_label":"Back to graphic code","vkconnect_auth_audio_captcha_title":"Enter any word you hear","vkconnect_auth_label_captcha":"Enter the code from the picture","vkconnect_auth_label_captcha_audio_new_ux":"Enter a word","vkconnect_auth_audio_captcha_info_text":"Press CTRL to listen again. To hear a different audio, press <b>Refresh<\/b>.","payments_money_transfer_new_card":"New card","votes_transfer_start_typing_recipient":"Start typing a friend's name","votes_transfer_choose_recipients":"Select a user","payments_money_request_error_no_accept_card":"Please enter your card information to receive transfers automatically.","payments_money_request_error_min_chunk_amount_currency":"Recommended minimum amount: {min_amount}","payments_money_request_error_max_chunk_amount_currency":"Recommended maximum amount: {max_amount}","payments_money_request_error_chunk_amount_too_big":"The recommended amount cannot be larger than the overall requested amount.","payments_waiting_transfer_complete":"Transfer awaiting confirmation","payments_remember_card_btn":"Yes, receive on this card","payments_dont_remember_card_btn":"No","payments_vkpay_low_balance_title":"Insufficient funds","payments_vkpay_low_balance_text":"Add funds to your balance for free.","payments_vkpay_topup_button":"Add funds","payments_money_transfer_amount_limits":"Minimum amount: {min_amount}","payments_money_transfer_error_min_amount_currency":"Minimum transfer amount: {min_amount}","payments_money_transfer_error_max_amount_currency":"Maximum transfer amount: {max_amount}","payments_money_transfer_low_balance":"Insufficient funds","payments_money_transfer_will_be_requested":"Request amount: {amount}","payments_money_transfer_about_title":"Terms","payments_money_link_btn_feature_text":"Share a link or QR code on VK or elsewhere to start collecting money","payments_money_link_tab_feature_text":"This is where you can find links and a QR code","payments_transfer_without_fee":"No fee","payments_money_transfer_btn":"Send money","payments_transfer_method_without_fee_for_mastercard":"No fee from 300 rubles for Mastercard and Maestro","payments_money_transfer_commission_undefined":"Commission is dependent on card's payment system","index_error_bad_phone":"Invalid phone number","vkconnect_auth_empty_login":"Phone number or email address required","vkconnect_auth_security_error_title":"An error occurred","vkconnect_auth_security_error_text":"Refresh the page and try again","vkconnect_auth_save_user_tooltip_header":"Save user","vkconnect_auth_save_user_tooltip_body":"Check this box if you want your account information saved for quick login on this device","index_sel_bday":"Day","vkconnect_vkcom_auth_save_user":"Save user","left_enter":"Sign in","reg0_reg_button":"Sign up","vkconnect_auth_or_with":"or use","vkconnect_auth_qr_code":"QR code","vkconnect_auth_phone_tab":"Phone","vkconnect_auth_email_tab":"Email","vkconnect_auth_label_email_or_phone":"Email or phone","vkconnect_auth_phone_mask_placeholder_text":"Country or code","vkconnect_auth_phone_mask_no_result":"Nothing found","vkconnect_auth_qr_more_link":"Learn more","vkconnect_auth_index_qr_title":"Quick sign-in","vkconnect_auth_promo_more_link":"Learn more about VK ID","vkconnect_auth_hover_qr_title":"Scan the QR code with your camera","vkconnect_auth_phone_mask_country_bq":"Caribbean Netherlands","vkconnect_auth_phone_mask_country_ci":"Côte d'Ivoire","vkconnect_auth_phone_mask_country_gf":"French Guiana","vkconnect_auth_phone_mask_country_gp":"Guadeloupe","vkconnect_auth_phone_mask_country_nc":"New Caledonia","vkconnect_auth_phone_mask_country_re":"Réunion","vkconnect_auth_phone_mask_country_td":"Chad","vkconnect_auth_phone_mask_country_tl":"East Timor","vkconnect_auth_phone_mask_country_af":"Afghanistan","vkconnect_auth_phone_mask_country_al":"Albania","vkconnect_auth_phone_mask_country_dz":"Algeria","vkconnect_auth_phone_mask_country_ad":"Andorra","vkconnect_auth_phone_mask_country_ao":"Angola","vkconnect_auth_phone_mask_country_ag":"Antigua and Barbuda","vkconnect_auth_phone_mask_country_ar":"Argentina","vkconnect_auth_phone_mask_country_am":"Armenia","vkconnect_auth_phone_mask_country_aw":"Aruba","vkconnect_auth_phone_mask_country_au":"Australia","vkconnect_auth_phone_mask_country_at":"Austria","vkconnect_auth_phone_mask_country_az":"Azerbaijan","vkconnect_auth_phone_mask_country_bs":"Bahamas","vkconnect_auth_phone_mask_country_bh":"Bahrain","vkconnect_auth_phone_mask_country_bd":"Bangladesh","vkconnect_auth_phone_mask_country_bb":"Barbados","vkconnect_auth_phone_mask_country_by":"Belarus","vkconnect_auth_phone_mask_country_be":"Belgium","vkconnect_auth_phone_mask_country_gq":"Equatorial Guinea","vkconnect_auth_phone_mask_country_bz":"Belize","vkconnect_auth_phone_mask_country_bj":"Benin","vkconnect_auth_phone_mask_country_bt":"Bhutan","vkconnect_auth_phone_mask_country_bo":"Bolivia","vkconnect_auth_phone_mask_country_ba":"Bosnia and Herzegovina","vkconnect_auth_phone_mask_country_bw":"Botswana","vkconnect_auth_phone_mask_country_br":"Brazil","vkconnect_auth_phone_mask_country_io":"British Indian Ocean Territory","vkconnect_auth_phone_mask_country_bn":"Brunei","vkconnect_auth_phone_mask_country_bg":"Bulgaria","vkconnect_auth_phone_mask_country_bf":"Burkina Faso","vkconnect_auth_phone_mask_country_bi":"Burundi","vkconnect_auth_phone_mask_country_kh":"Cambodia","vkconnect_auth_phone_mask_country_cm":"Cameroon","vkconnect_auth_phone_mask_country_ca":"Canada","vkconnect_auth_phone_mask_country_cv":"Cape Verde","vkconnect_auth_phone_mask_country_ky":"Cayman Islands","vkconnect_auth_phone_mask_country_cf":"Central African Republic","vkconnect_auth_phone_mask_country_cl":"Chile","vkconnect_auth_phone_mask_country_cn":"China","vkconnect_auth_phone_mask_country_co":"Colombia","vkconnect_auth_phone_mask_country_km":"Comoro Islands","vkconnect_auth_phone_mask_country_cd":"Democratic Republic of the Congo","vkconnect_auth_phone_mask_country_cg":"Congo","vkconnect_auth_phone_mask_country_cr":"Costa Rica","vkconnect_auth_phone_mask_country_hr":"Croatia","vkconnect_auth_phone_mask_country_cu":"Cuba","vkconnect_auth_phone_mask_country_cw":"Curaçao","vkconnect_auth_phone_mask_country_cy":"Cyprus","vkconnect_auth_phone_mask_country_cz":"Czechia","vkconnect_auth_phone_mask_country_dk":"Denmark","vkconnect_auth_phone_mask_country_dj":"Djibouti","vkconnect_auth_phone_mask_country_dm":"Dominica","vkconnect_auth_phone_mask_country_do":"Dominican Republic","vkconnect_auth_phone_mask_country_ec":"Ecuador","vkconnect_auth_phone_mask_country_eg":"Egypt","vkconnect_auth_phone_mask_country_sv":"El Salvador","vkconnect_auth_phone_mask_country_er":"Eritrea","vkconnect_auth_phone_mask_country_ee":"Estonia","vkconnect_auth_phone_mask_country_et":"Ethiopia","vkconnect_auth_phone_mask_country_fj":"Fiji","vkconnect_auth_phone_mask_country_fi":"Finland","vkconnect_auth_phone_mask_country_fr":"France","vkconnect_auth_phone_mask_country_pf":"French Polynesia","vkconnect_auth_phone_mask_country_ga":"Gabon","vkconnect_auth_phone_mask_country_gm":"Gambia","vkconnect_auth_phone_mask_country_ge":"Georgia","vkconnect_auth_phone_mask_country_de":"Germany","vkconnect_auth_phone_mask_country_gh":"Ghana","vkconnect_auth_phone_mask_country_gr":"Greece","vkconnect_auth_phone_mask_country_gl":"Greenland","vkconnect_auth_phone_mask_country_gd":"Grenada","vkconnect_auth_phone_mask_country_gu":"Guam","vkconnect_auth_phone_mask_country_gt":"Guatemala","vkconnect_auth_phone_mask_country_gn":"Guinea","vkconnect_auth_phone_mask_country_gw":"Guinea-Bissau","vkconnect_auth_phone_mask_country_gy":"Guyana","vkconnect_auth_phone_mask_country_ht":"Haiti","vkconnect_auth_phone_mask_country_hn":"Honduras","vkconnect_auth_phone_mask_country_hk":"Hong Kong","vkconnect_auth_phone_mask_country_hu":"Hungary","vkconnect_auth_phone_mask_country_is":"Iceland","vkconnect_auth_phone_mask_country_in":"India","vkconnect_auth_phone_mask_country_id":"Indonesia","vkconnect_auth_phone_mask_country_ir":"Iran","vkconnect_auth_phone_mask_country_iq":"Iraq","vkconnect_auth_phone_mask_country_ie":"Ireland","vkconnect_auth_phone_mask_country_il":"Israel","vkconnect_auth_phone_mask_country_it":"Italy","vkconnect_auth_phone_mask_country_jm":"Jamaica","vkconnect_auth_phone_mask_country_jp":"Japan","vkconnect_auth_phone_mask_country_jo":"Jordan","vkconnect_auth_phone_mask_country_kz":"Kazakhstan","vkconnect_auth_phone_mask_country_ke":"Kenya","vkconnect_auth_phone_mask_country_ki":"Kiribati","vkconnect_auth_phone_mask_country_xk":"Kosovo","vkconnect_auth_phone_mask_country_kw":"Kuwait","vkconnect_auth_phone_mask_country_kg":"Kyrgyzstan","vkconnect_auth_phone_mask_country_la":"Laos","vkconnect_auth_phone_mask_country_lv":"Latvia","vkconnect_auth_phone_mask_country_lb":"Lebanon","vkconnect_auth_phone_mask_country_ls":"Lesotho","vkconnect_auth_phone_mask_country_lr":"Liberia","vkconnect_auth_phone_mask_country_ly":"Libya","vkconnect_auth_phone_mask_country_li":"Liechtenstein","vkconnect_auth_phone_mask_country_lt":"Lithuania","vkconnect_auth_phone_mask_country_lu":"Luxembourg","vkconnect_auth_phone_mask_country_mo":"Macau","vkconnect_auth_phone_mask_country_mk":"North Macedonia","vkconnect_auth_phone_mask_country_mg":"Madagascar","vkconnect_auth_phone_mask_country_mw":"Malawi","vkconnect_auth_phone_mask_country_my":"Malaysia","vkconnect_auth_phone_mask_country_mv":"Maldives","vkconnect_auth_phone_mask_country_ml":"Mali","vkconnect_auth_phone_mask_country_mt":"Malta","vkconnect_auth_phone_mask_country_mh":"Marshall Islands","vkconnect_auth_phone_mask_country_mq":"Martinique","vkconnect_auth_phone_mask_country_mr":"Mauritania","vkconnect_auth_phone_mask_country_mu":"Mauritius","vkconnect_auth_phone_mask_country_mx":"Mexico","vkconnect_auth_phone_mask_country_fm":"Micronesia","vkconnect_auth_phone_mask_country_md":"Moldova","vkconnect_auth_phone_mask_country_mc":"Monaco","vkconnect_auth_phone_mask_country_mn":"Mongolia","vkconnect_auth_phone_mask_country_me":"Montenegro","vkconnect_auth_phone_mask_country_ma":"Morocco","vkconnect_auth_phone_mask_country_mz":"Mozambique","vkconnect_auth_phone_mask_country_mm":"Myanmar","vkconnect_auth_phone_mask_country_na":"Namibia","vkconnect_auth_phone_mask_country_nr":"Nauru","vkconnect_auth_phone_mask_country_np":"Nepal","vkconnect_auth_phone_mask_country_nl":"Netherlands","vkconnect_auth_phone_mask_country_nz":"New Zealand","vkconnect_auth_phone_mask_country_ni":"Nicaragua","vkconnect_auth_phone_mask_country_ne":"Niger","vkconnect_auth_phone_mask_country_ng":"Nigeria","vkconnect_auth_phone_mask_country_kp":"North Korea","vkconnect_auth_phone_mask_country_no":"Norway","vkconnect_auth_phone_mask_country_om":"Oman","vkconnect_auth_phone_mask_country_pk":"Pakistan","vkconnect_auth_phone_mask_country_pw":"Palau","vkconnect_auth_phone_mask_country_ps":"Palestine","vkconnect_auth_phone_mask_country_pa":"Panama","vkconnect_auth_phone_mask_country_pg":"Papua New Guinea","vkconnect_auth_phone_mask_country_py":"Paraguay","vkconnect_auth_phone_mask_country_pe":"Peru","vkconnect_auth_phone_mask_country_ph":"Philippines","vkconnect_auth_phone_mask_country_pl":"Poland","vkconnect_auth_phone_mask_country_pt":"Portugal","vkconnect_auth_phone_mask_country_pr":"Puerto Rico","vkconnect_auth_phone_mask_country_qa":"Qatar","vkconnect_auth_phone_mask_country_ro":"Romania","vkconnect_auth_phone_mask_country_ru":"Russia","vkconnect_auth_phone_mask_country_rw":"Rwanda","vkconnect_auth_phone_mask_country_kn":"Saint Kitts and Nevis","vkconnect_auth_phone_mask_country_lc":"Saint Lucia","vkconnect_auth_phone_mask_country_vc":"Saint Vincent and the Grenadines","vkconnect_auth_phone_mask_country_ws":"Samoa","vkconnect_auth_phone_mask_country_sm":"San Marino","vkconnect_auth_phone_mask_country_st":"São Tomé and Príncipe","vkconnect_auth_phone_mask_country_sa":"Saudi Arabia","vkconnect_auth_phone_mask_country_sn":"Senegal","vkconnect_auth_phone_mask_country_rs":"Serbia","vkconnect_auth_phone_mask_country_sc":"Seychelles","vkconnect_auth_phone_mask_country_sl":"Sierra Leone","vkconnect_auth_phone_mask_country_sg":"Singapore","vkconnect_auth_phone_mask_country_sk":"Slovakia","vkconnect_auth_phone_mask_country_si":"Slovenia","vkconnect_auth_phone_mask_country_sb":"Solomon Islands","vkconnect_auth_phone_mask_country_so":"Somalia","vkconnect_auth_phone_mask_country_za":"South Africa","vkconnect_auth_phone_mask_country_kr":"South Korea","vkconnect_auth_phone_mask_country_ss":"South Sudan","vkconnect_auth_phone_mask_country_es":"Spain","vkconnect_auth_phone_mask_country_lk":"Sri Lanka","vkconnect_auth_phone_mask_country_sd":"Sudan","vkconnect_auth_phone_mask_country_sr":"Suriname","vkconnect_auth_phone_mask_country_sz":"Swaziland","vkconnect_auth_phone_mask_country_se":"Sweden","vkconnect_auth_phone_mask_country_ch":"Switzerland","vkconnect_auth_phone_mask_country_sy":"Syria","vkconnect_auth_phone_mask_country_tw":"Taiwan","vkconnect_auth_phone_mask_country_tj":"Tajikistan","vkconnect_auth_phone_mask_country_tz":"Tanzania","vkconnect_auth_phone_mask_country_th":"Thailand","vkconnect_auth_phone_mask_country_tg":"Togo","vkconnect_auth_phone_mask_country_to":"Tonga","vkconnect_auth_phone_mask_country_tt":"Trinidad and Tobago","vkconnect_auth_phone_mask_country_tn":"Tunisia","vkconnect_auth_phone_mask_country_tr":"Turkey","vkconnect_auth_phone_mask_country_tm":"Turkmenistan","vkconnect_auth_phone_mask_country_tv":"Tuvalu","vkconnect_auth_phone_mask_country_ug":"Uganda","vkconnect_auth_phone_mask_country_ua":"Ukraine","vkconnect_auth_phone_mask_country_ae":"United Arab Emirates","vkconnect_auth_phone_mask_country_gb":"United Kingdom","vkconnect_auth_phone_mask_country_us":"United States of America","vkconnect_auth_phone_mask_country_uy":"Uruguay","vkconnect_auth_phone_mask_country_uz":"Uzbekistan","vkconnect_auth_phone_mask_country_vu":"Vanuatu","vkconnect_auth_phone_mask_country_va":"Vatican City","vkconnect_auth_phone_mask_country_ve":"Venezuela","vkconnect_auth_phone_mask_country_vn":"Vietnam","vkconnect_auth_phone_mask_country_ye":"Yemen","vkconnect_auth_phone_mask_country_zm":"Zambia","vkconnect_auth_phone_mask_country_zw":"Zimbabwe","bottom_copyright":"VK","global_footer_legal_recommendations_link_text":"Recommendation technologies used","global_footer_rules_link_text":"Terms","global_footer_advertisement_link_text":"VK Ads","global_footer_to_developers_link_text":"Developers","vkconnect_auth_enter_vk_title":"Sign in to VK","vkconnect_auth_button_enter_with_phone_okru":"Other sign-in options","login_form_header":"Sign in to VK","vkconnect_auth_index_agreements_text":"By pressing Sign in, you agree to the {terms}Terms of Service{\/terms} and {privacy}Privacy Policy{\/privacy}","vkconnect_auth_index_saved_subtitle":"Select an account to sign in","vkconnect_auth_login_to_another_acc":"Sign in to other account","global_search_placeholder":"Search VK","vkconnect_auth_index_a11y_saved_users_remove":"Sign out of {name}'s account","vkconnect_auth_index_close":"Close","vkconnect_auth_index_unknown_error_text":"Service temporarily unavailable","vkconnect_error_unknown_error":"Something went wrong","apps_connect_modal_messages_scopes_edit":"Edit","apps_connect_modal_messages_scopes_text":"The app will have access to:","reg0_error_bad_email":"Incorrect email.","reg0_change_mail":"Change email","login_fast_unblocked_wait_description":"Account unblocked. You'll be able to use VK again in a few seconds.","login_blocked_delete_page_header":"Delete profile","login_blocked_sure_delete_page_question":"Are you sure you want to delete your profile?","box_yes":"Yes","box_no":"No","login_unban_fetch_ban_data_internal_error":"A server error occurred. Please try again later.","login_unban_data_expired":"Your session has expired. To reactivate your account, you need to start the process over again.","login_authcheck_called_phone_label":"Last 4 digits of phone number","login_confirmation_code":"Confirmation code","login_authcheck_call_reset_sent":"<b>Calling...<\/b><br>We are calling your phone.","login_authcheck_sms_resent":"<b>Code sent<\/b><br>An SMS confirmation code has been resent.","join_send_code_via_sms_time":"Send SMS code in %s","join_resend_code_time":"Resend the code in %s","login_authcheck_send_call_reset_delay":"Request another call in %s","join_send_code_via_sms":"Send code via SMS","join_no_code":"I didn't get a code","login_authcheck_send_call_reset_message":"Request a call","reg_code_limit_exceeded":"Code resend request limit exceeded. Please try requesting another code later.","join_country_label":"Country\/Region","login_mobile_phone":"Mobile phone number","login_unblock_form_change_phone":"Change","vkui_blocked_no_phone_access":"I don't have access to this number","login_authcheck_enter_code":"Enter code","join_pwd_level0":"Password too short","join_pwd_level1":"Password too weak","join_pwd_level2":"Weak password","join_pwd_level3":"Good password","join_pwd_level4":"Strong password","join_pwd_level5":"A password cannot contain spaces","login_new_password_label":"New password","login_enter_password":"Enter a password","reg_validate_call_reset_button":"Call","login_receive_code":"Get code","login_check_code":"Submit code","login_blocked_unblock_page":"Unblock account","restore_change_phone_done_wait_banned":"Your request to unblock your account and change the number linked to it has been approved. Sign in to your account after <b>{date}<\/b> to unblock it.","login_delayed_its_not_me":"It wasn't me","login_delayed_request_finished":"To access your account, please sign in to the website using your new number and the password you created when restoring your account. If you did not make a request to update your number, click "It wasn't me".","login_unblock_redirect_to_auth":"Go to login page","login_unblock_form_explanation":"To unblock this account, please confirm that you're the owner.","login_blocked_call_title":"Restore account","login_reset_sessions_tooltip_text":"Uncheck the box to leave active sessions open on other devices","login_reset_sessions":"Sign out on all devices except the current one","stories_creator_text_label_modern":"Modern","stories_creator_text_label_playful":"Playful","stories_creator_text_label_aesthetic":"Aesthetic","stories_creator_text_label_dynamic":"Dynamic","stories_creator_text_label_classic":"Classic","stories_creator_text_label_elegant":"Elegant","stories_creator_text_label_rounded":"Rounded","stories_creator_text_label_standard":"Standard","stories_creator_text_label_handwritten":"Cursive","stories_creator_text_label_bookish":"Typewriter","reports_thanks_for_report":"Thank you, your complaint has been accepted.","audio_claimed_geo":"{audio} is not available in your region.","audio_claim_warning_title":"Arguable Audio File","audio_site_rules_violation_warning":"{audio} has been removed from public access for violating the VK Terms of Service.","audio_site_rules_violation_header":"Prohibited audio file","audio_claimed_replacement_available":"This audio file has been blocked at the request of the copyright holder. You can replace it with the original audio file of the copyright holder <b>{original}<\/b>.","global_audio_only_with_subscription_title":"This track is only available through subscription","global_audio_only_with_subscription_text":"Access has been limited by the artist or their representative. Subscribe and gain access to a wider range of music.","global_audio_only_with_subscription_btn":"Learn more","audio_claim_warning":"The audio file {audio} was removed from public access by request of the copyright holder.","audio_claim_objection":"by filling out a special form","audio_claim_delete":"delete the track","audio_replace_with_original":"Replace","audio_claim_delete_capital":"Delete track","settings_addrbox_title":"A short and elegant link to your page","settings_addrbox_hint":"Please use <b>Latin<\/b> letters, <b>numbers<\/b>, or <b>"_"<\/b>.","mail_money_transfer_cancel_confirm":"Are you sure you want to cancel the money transfer?","mail_money_transfer_cancel_btn":"Cancel transfer","news_fb_money_transfer_decline_confirm":"Are you sure you want to decline the money transfer?","news_fb_money_transfer_decline_btn":"Decline","mail_money_transfer_decline_confirm":"Are you sure you want to decline the money transfer?","mail_money_transfer_decline_btn":"Decline","events_mon":"Mon","events_tue":"Tue","events_wed":"Wed","events_thu":"Thu","events_fri":"Fri","events_sat":"Sat","events_sun":"Sun","datepicker_date_format":"{day} {month} {year}","datepicker_month_format":"{month} {year}","global_day_label":"Day:","global_year_label":"Year:","global_month_label":"Month:","Month1":"January","Month1_of":"January","month1_of":"January","Month2":"February","Month2_of":"February","month2_of":"February","Month3":"March","Month3_of":"March","month3_of":"March","Month4":"April","Month4_of":"April","month4_of":"April","Month5":"May","Month5_of":"May","month5_of":"May","Month6":"June","Month6_of":"June","month6_of":"June","Month7":"July","Month7_of":"July","month7_of":"July","Month8":"August","Month8_of":"August","month8_of":"August","Month9":"September","Month9_of":"September","month9_of":"September","Month10":"October","Month10_of":"October","month10_of":"October","Month11":"November","Month11_of":"November","month11_of":"November","Month12":"December","Month12_of":"December","month12_of":"December","stories_view_sticker_pack":"Show pack","stories_link_attach_clip":"Watch clip","voting_N_voted":["","%s person voted","%s people voted"],"voting_nobody_voted":"No one's voted yet","stories_stat_off":"Disabled","stories_narrative_block_onboarding_text":"Your moments can be found here","global_unexpected_error_try_later":"Unknown error. Try again later.","global_share_link_failed":"Please enter a URL or phone number.","global_continue":"Continue","groups_donut_snippet_link_title":"Community with VK Donut","wall_online_booking_title":"Online booking","global_article":"Article","global_audio_playlist":"Playlist","audio_listen_snippet":"Play","global_artist":"Artist","global_curator":"Curator","global_type_narrative":"Moment","wall_edit_album_description":["","Album · %s photo","Album · %s photos"],"wall_market_album_compact_description":"Products · {group_name}","groups_media_type_community":"Сообщество","wall_send":"Post","wall_publish_suggest":"Post","classifieds_post_edit_product_snippet_title":"Объявление","wall_post_copyright_mb_title_text_edit":"Edit source","wall_post_copyright_mb_title_text":"Add source","global_link_choose_own_photo":"Choose a photo","global_link_choose_own_video":"Choose video","global_link_remove_photo":"Delete image","global_link_edit_title":"Edit title","global_link_edit_desc":"Edit description","global_link_edit_url":"Edit URL","marketitemreview_main_block_review_text":["","%s review","%s reviews"],"global_share_button_remove_tooltip":"Remove button","apps_snippet_game":"Game","apps_snippet_mini_app":"Mini app","global_link_invalid_url":"Invalid URL","global_share_button_text_tooltip":"You can edit the button name","profile_wall_postpone_at":"at","wall_post_timer_reset":"Reset","wall_publication_now":"Now","wall_best_friends_only":"Close friends only","friends_cancel_event_invite":"Cancel invite","friends_send_event_invite":"Send invite","groups_notifications_on":"Enable notifications","groups_notifications_set_up":"Notifications enabled","groups_hidden_members_message_box_title":"Followers hidden","groups_hidden_members_message_box_content":"Community managers hid the list of followers","groups_delete_cover_confirm_new":"Are you sure you want to delete the cover?","groups_delete_cover_confirm":"Are you sure you want to delete this cover?<br><br>Your community will be displayed in a classical view with a photo on the right.","groups_delete_cover_title":"Delete cover","wall_doc_added_short":"Added","wall_doc_add_short":"Add","photos_restriction_button_watch":"View","reactions_n_reacted":["","%s person reacted","%s people reacted"],"reactions_button_unset_reaction_title":"Remove {reaction_name}","reactions_button_set_reaction_with_name":"Send reaction {reaction_name}","reactions_button_title":"React","wall_post_with_video_different_dates_title":"The post contains videos with different posting times","wall_post_with_video_different_dates_info":"Some of them may be available in the Videos section before this post is published. Videos with later posting times will become available when the post is published.","wall_post_with_video_later_title":"Post scheduled later than attached video","wall_post_with_video_later_info":["","The video will be available in the Videos section on {day} {month} at {hour}:{minute}, earlier than the wall post","The video will be available in the Videos section on {day} {month} at {hour}:{minute}, earlier than the wall post","The video will be available in the Videos section today at {hour}:{minute}, earlier than the wall post","The video will be available in the Videos section tomorrow at {hour}:{minute}, earlier than the wall post"],"wall_post_with_video_earlier_title":"Post scheduled earlier than attached video","wall_post_with_video_earlier_info":["","The video will be published together with the post and become available on {day} {month} at {hour}:{minute}","The video will be published together with the post and become available on {day} {month} at {hour}:{minute}","The video will be published together with the post and become available today at {hour}:{minute}","The video will be published together with the post and become available tomorrow at {hour}:{minute}"],"wall_post_with_video_publish_together_title":"The video will be published with the post and become available right away","global_posting_carousel_ratio_original":"Original","global_posting_carousel_ratio_hint":"Здесь можно сменить<br>соотношение сторон — для этих<br>фото лучше всего подойдёт ","wall_unfix_post":"Unpin post","wall_fix_post":"Pin post","wall_delete_suggested_box":"Are you sure you want to delete all previous suggested posts? After deletion, you will be unable to restore them.","wall_delete_suggested_btn":"Delete all previous suggested posts","wall_publish_postponed_confirm":"Are you sure you want to post this right now?","wall_publish_postponed_btn":"Post","wall_publish_donut_as_free_confirmation_warn":"This post has paid attachments. If you make it public, the attachments will also be available to everyone.","wall_publish_donut_as_free_confirmation_title":"Confirmation","wall_publish_donut_as_free_confirmation_confirm":"Are you sure you want to make this post public?","wall_publish_donut_as_free_confirmation_btn":"Yes","global_recommended_exceeded":["","The recommended size has been exceeded by %s character.","The recommended size has been exceeded by %s characters."],"global_recommended_lines":["","The recommended size has been exceeded by %s line.","The recommended size has been exceeded by %s lines."],"profile_mention_start_typing":"Start typing a name...","profile_mention_not_found":"User was not found","wall_choose_best_friends":"Select close friends","wall_best_friends_settings_box_conversation_friends_count":["","%s friend","%s friends"],"wall_check_sign_disabled":"Display my signature if the post is edited","wall_check_sign_enabled":"Hide my signature if the post is edited","global_share_too_many_attachments":"Promoted posts with a button may not have attachments.","global_ads_post_too_many_newlines":"Promoted posts with buttons can have no more than four line breaks.","global_ads_post_too_long_message":"Promoted posts with buttons can contain text of no more than 2,000 characters.","global_share_too_many_links":"Promoted posts with a button must not contain more than one link.","global_share_title_required":"Enter a link title.","global_share_url_required":"Enter a valid URL","global_share_image_required":"Choose a link image.","wall_publish_donut_freeing_attaches_confirmation_title":"This post has paid attachments. When it becomes public after the specified period, the attachments will also become available to everyone.","wall_next_n_replies":["","Show next comment","Show more comments"],"wall_prev_n_replies":["","Show previous comment","Show previous comments"],"wall_reply_add_attach_label":"Add attachment","global_reply_to":"replying to {user}","wall_reply_submit_settings":"Shortcuts","wall_reply_submit_settings_1":"<b>Enter<\/b>: send message<br><b>Shift+Enter<\/b>: new line","wall_reply_submit_settings_2":"<b>Ctrl+Enter<\/b>: send message<br><b>Enter<\/b>: new line","wall_replied_to_group":"Community","box_cancel":"Cancel","global_X_post_views":["","view","views"],"global_X_shared":["","share","shares"],"global_like":"Like","voting_x_voted_short":["","<b>%s<\/b> person","<b>%s<\/b> people"],"voting_x_voted":["","<b>%s<\/b> person voted","<b>%s<\/b> people voted"],"wall_my_friends_only":"Only your friends can see this post","profile_status_word_secs_ago":["","one second ago","two seconds ago","three seconds ago","four seconds ago","five seconds ago"],"wall_post_privacy_friends":"for friends","news_x_new_replies_more":["","%s new comment added","%s new comments added"],"wall_show_n_last_replies":["","Show the last %s comment","Show the last %s comments"],"wall_show_all_n_replies":["","Show %s comment","Show all %s comments"],"wall_hide_replies":"Hide comments","wall_preview_link":"View page","wall_x_new_replies_more":["","%s new comment added","%s new comments added"],"profile_wall_postpone_btn":"Schedule","wall_reply_as_group":"post as community","wall_reply_as_user":"on behalf of the user","global_on_behalf_group":"Post as group","global_on_behalf_me":"Comment as yourself","global_search":"Search","wall_open_comments":"Enable comments","wall_closing_comments":"Disable comments","wall_post_copyright_feature_text":"You can now add a source link to your post","intro_hint_description_online_booking_attach_add_web":"You can now add an online booking button","wall_new_posters_new_year":"Share the holiday spirit with your friends with new posters!","global_replied_to_reply_count":["","%s reply","%s replies"],"events_snippet_will_participate_active":"You're going","events_snippet_cant_participate_active":"You're not going","profile_hashtag_start_typing":"Start typing a hashtag","profile_hashtag_not_found":"Hashtag not found","global_report_sent":"Report sent","reports_warning_sent":"Your report has been sent and will be reviewed as soon as possible.","group_leave_group":"Unfollow community","global_ads_wall_post_ord_mark_as_ads_added":"Tagged as ad","global_ads_wall_post_ord_mark_as_ads_removed":"Untagged as ad","groups_have_donuts_total":["","%s donation","%s donations"],"groups_wkview_donuts_total":["","%s donation","%s donations"],"wall_post_text_show_more":"Show more","video_upload_encode_error_too_short_1s":"Failed to process video. Clip must be longer than one second.","video_upload_encode_error_too_long":"Failed to process video. Clip must be shorter than 180 seconds.","video_upload_error_uploading":"Failed to upload video. Please try again","video_upload_error_incorrect_publish_date":"Invalid posting time. Please select another.","video_upload_error_limit_postpone_posts":"Too many scheduled posts","video_upload_error_day_limit_postpone_posts":"Too many scheduled posts on selected day","video_upload_error_same_publish_date":"There is already a scheduled post at this time","video_upload_error_day_limit_posts":"Too many posts on this day","video_claimed_not_uploaded":"Video cannot be saved due to copyright issues.","video_upload_error_info_limit_postpone_posts":"To schedule this post, delete one of your existing scheduled posts","video_upload_error_info_day_limit_postpone_posts":"To schedule this post, change the video posting day","video_upload_error_info_same_publish_date":"To create a scheduled post, change the video posting time","profile_convert_to_article_short":"Continue in the editor","global_share_too_many_newlines":"Promoted posts with a button may not have more than two line breaks.","global_share_too_long_message":"Promoted posts with a button may not exceed 220 characters.","awards_restricted_tittle":"Awards not available for this creator","awards_restricted_subheader":"Try making their day another time! For now, you can send an award to someone else.","awards_restricted_button":"I'll be waiting!","awards_not_available_tittle":"Awards not yet available to everyone","awards_not_available_subheader":"Please wait some time until you're able to send and receive awards","awards_not_available_button":"OK","global_date_l":["","{day} {month} {year}","yesterday","today","tomorrow"],"global_date_year_l":["","{day} {month} {year}","Yesterday","Today","Tomorrow"],"global_short_date_time_l":["","{day} {month} at {hour}:{minute} {am_pm}","yesterday at {hour}:{minute} {am_pm}","today at {hour}:{minute} {am_pm}","tomorrow at {hour}:{minute} {am_pm}"],"global_update_photo_error_too_small":"The photo must be at least {width} pixels wide and {height} pixels high.","global_word_secs_ago":["","one second ago","two seconds ago","three seconds ago","four seconds ago","five seconds ago"],"global_secs_ago":["","%s second ago","%s seconds ago"],"wall_post_mins_ago":["","%s min","%s min"],"wall_post_hours_ago":["","%s h","%s h"],"wall_add_photo_error":"Unable to upload the image","global_error_generic_reason":"Something went wrong","reports_strikes_avatar_upload_error":"Restrictions are currently in place for {name} due to violating VK's rules. This action will become available again on {day} {month} {year} at {hour}:{minute}. {link}Learn more{\/link}","wall_no_replies":"No comments","wall_clear_date_filter":"Reset filter","global_add":"Add","settings_menu_box":"Menu item settings","gifts_gift_modal_load_error_not_found":"Подарок не найден","gifts_server_error":"The gift was not sent due to a server error.","gifts_gift_sent":"Your gift has been sent.","gifts_free_send_left":["","You can send this free gift to <b>%s friend<\/b>.","You can send this free gift to <b>%s friends<\/b>."],"gifts_gift_price_label":"Price:","gifts_your_balance":"Your balance:","gifts_receivers":"Recipients","gifts_your_message":"Your message","gifts_gift_modal_recipients_load_more":"Load more","gifts_send_confirm":["","<b>%s vote<\/b> will be deducted from your account.","<b>%s votes<\/b> will be deducted from your account."],"gifts_confirmation_modal_title":"Confirmation","global_store_stickers":"Sticker store","global_emoji_cat_recent":"Frequently Used","global_emoji_cat_1":"Faces","global_emoji_cat_2":"Animals & Nature","global_emoji_cat_3":"Hands & People","global_emoji_cat_4":"Food & Drink","global_emoji_cat_5":"Activity","global_emoji_cat_6":"Travel & Transport","global_emoji_cat_7":"Objects","global_emoji_cat_8":"Symbols","global_emoji_cat_9":"Flags","purchases_stickers_favorite_rm_tt":"Remove from favorites","purchases_stickers_favorite_add_tt":"Add to favorites","purchases_stickers_select_style":"Select style","purchases_stickers_keyboard_pack_setup":"Settings","vmoji_keyboard_create_avatar":"Create avatar","global_box_error_title":"Error","purchases_stickers_product_not_found":"Product not found","purchases_please_sign_in":"Please sign in or {link}sign up{\/link} to use stickers.","purchases_stickers_get_pack_btn":"Get the pack","purchases_stickers_catalog_purchase_details_title":"Not for sale","purchases_stickers_product_unavailable":"Unavailable","purchases_stickers_product_purchased":"Added","purchases_stickers_buy_for":"Buy for {regular_price} {price}","purchases_stickers_get_for_free":"Get for {regular_price} free","purchases_stickers_gift":"Send as gift","purchases_stickers_order_summary_pack_for_styles_for":["","Sticker pack for {pack_price}, style for {styles_price_sum}","Sticker pack for {pack_price}, {styles_num} styles for {styles_price_sum}"],"purchases_stickers_order_summary_pack_for_styles_free":["","Sticker pack for {pack_price}, one style for free","Sticker pack for {pack_price}, {styles_price_num} styles for free"],"purchases_stickers_order_summary_pack_for":"Stickers for {pack_price}","purchases_stickers_order_summary_pack_free_styles_for":["","Sticker pack for free, one style for {styles_price_sum}","Sticker pack for free, {styles_num} styles for {styles_price_sum}"],"purchases_stickers_order_summary_pack_free_styles_free":"Sticker pack and style for free","purchases_stickers_order_summary_pack_free":"Stickers for free","purchases_stickers_order_summary_styles_for":["","One style for {styles_price_sum}","{styles_num} styles for {styles_price_sum}"],"purchases_stickers_order_summary_styles_free":["","One style for free"," {styles_num} styles for free"],"purchases_stickers_product_preview_title_base_pack":"Standard sticker pack","purchases_stickers_product_preview_title_style":"Style: {title}","purchases_stickers_style_selection_for_pack":"Select a style for the "{title}" sticker pack","stickers_layer_gift":"Send as gift","purchases_stickers_product_settings_save":"Save","purchases_stickers_stickers_of_style":"Stickers in the "{title}" style","purchases_stickers_preview_add_item":"Add","purchases_stickers_purchased_styles":"Your styles","purchases_stickers_other_styles":"More styles","purchases_stickers_styles_hint":"Styles add new colors to sticker packs. You can buy a style for either yourself or as a gift for someone who already has the basic sticker pack. If they don't have it, you can buy it together with the style. ","purchases_stickers_product_preview_title_pack":"Sticker pack: {title}","purchases_stickers_preview_remove_item":"Remove","purchases_stickers_you_have_it":"Added","purchases_stickers_active_style":"Active","intro_hint_description_feed_author_like_onboarding":"Now, your likes as the post's author stand out","global_dislike":"Unlike","likes_comments_N_aria_short":["","%s comment","%s comments"],"likes_likes_N_aria_short":["","%s person liked this","%s people liked this"],"likes_shares_N_aria_short":["","%s share","%s shares"],"wall_poll_actionsheet_group_title":"Poll by {community_name}","wall_poll_actionsheet_user_title":"Poll by: {author}","voting_anonymous":"Anonymous poll","voting_public":"Public poll","voting_no_voted":"No one's voted yet","voting_vote_first":"Your vote will be the first!","voting_ended":"finished","voting_unvote_disabled":"Can't retract votes","voting_time_until":["","until {day} {month}, {hour}:{minute} {am_pm}","yesterday until {hour}:{minute} {am_pm}","today until {hour}:{minute} {am_pm}","until {day} {month}, {hour}:{minute} {am_pm}"],"voting_fetch_poll_failed":"Failed to load poll. Please try again.","voting_vote_failed":"Failed to vote. Please try again.","voting_unvote_failed":"Failed to cancel vote. Please try again.","news_feed_reactions_menu_reacted_users_none":"No reactions yet","news_feed_reactions_menu_reacted_users":["","{count} reaction","{count} reactions"],"stories_bad_browser":"Stories are not supported by your browser","stories_mask_sent":"Mask sent to phone","video_feed_player_clip_deleted":"Clip deleted","video_clip_restriction_user_access":"Access restricted by creator","video_feed_player_clip_more":"More on VK Clips","video_feed_player_clip_repeat":"Watch again","video_clip_sound_restriction_error":"The clip volume is muted since the sound used in it is unavailable","video_clips_banner_close_btn":"OK","voting_closed":"closed","voting_vote":"Vote","voting_revote":"Retract vote","voting_report":"Report","voting_share":"Share","voting_export":"Get poll code","global_actions_button":"Actions","mobile_voting_answers":["","%s reply","%s replies"],"voting_show_variants":"Show all options","voting_show_results":"Show results","pages_albums_label_long":["","Album · {size} photo","Album · {size} photos"],"pages_articles_label_long":"Article · by {author}","pages_articles_label":"Article","fave_delete":"Remove from Bookmarks","fave_add":"Add to Bookmarks","pages_article_snippet_deleted_long":"Article deleted","pages_articles_donut_access_title":"This article is only available to donors","pages_articles_snippet_protected":"Only community followers<br>can access this article.","pages_articles_snippet_banned":"Article unavailable","pages_articles_read_article_button":"Read article","communityreview_community_info_review_count":["","%s review","%s reviews"],"communityreview_community_info_no_reviews":"No reviews","wall_attachments_link_go":"Open link","public_subscribe":"Follow","global_tb":"ТБ","global_gb":"GB","global_mb":"MB","global_kb":"KB","mobile_post_photos_count":["","%s photo","%s photos"],"video_restriction_title_unavailable":"Video unavailable","photos_geo_restriction_title":"Photo blocked","wall_restriction_action_text":"View","global_wall_photo":"Photo","global_wall_photo_group":"Photo {number} of {count}","wall_attachment_secondary_show_more":"Show %s more","global_video_online":"Live","profile_X_market_services_items":["","%s service","%s services"],"profile_X_market_items":["","%s item","%s items"],"search_goto":"Go","fave_link_snippet_added_text":"Link added to Bookmarks","fave_article_added_text":"Article saved to Bookmarks","audio_primary_attachment_audio_listen":"Play","audio_delete_audio":"Remove track","audio_restriction_title_geo":"This track isn't available in your region. This was the decision of the artist or their representative.","mobile_audio_player_pause":"Pause","mobile_audio_player_play":"Play","global_add_to_audio":"Add to my music","wall_doc_share":"Share","wall_doc_add":"Add to Files","voting_voting":"Poll","global_open":"Open","audio_music_track_row_remove_from_group_music_action_hint":"Remove track","audio_music_track_row_add_to_group_music_action_hint":"Add to community music","audio_music_track_row_remove_from_my_music_action_hint":"Remove from My music","audio_music_track_row_add_to_my_music_action_hint":"Add to My music","audio_music_playlist_subtitle":"Playlist","audio_music_album_playlist_type_album":"Album","audio_music_album_playlist_type_ep":"EP","audio_music_album_playlist_type_collection":"Collection","audio_music_album_playlist_type_single":"Single","audio_music_playlist_remove_mm_action_label":"Remove from my music","audio_music_playlist_add_mm_action_label":"Add","audio_music_playlist_pause_action_label":"Pause ","audio_music_playlist_play_action_label":"Play ","wall_posting_poll_show_results":"View results","wall_posting_poll_header_text":"Poll","wall_obscene_box_aria_label":"Obscene text","wall_obscene_box_alert_tooltip_hint":"Profanity","wall_coauthors_modal_title":"Creators","wall_coowner_status_pending_by_group":"Awaiting confirmation","wall_coowner_status_pending":["","Awaiting confirmation","Awaiting confirmation"],"groups_government_community":"Government organization","news_you_subscribed":"Following","global_fan_subscribe":"Follow","global_search_not_found":"Your search for {search} returned no results.","friends_no_user_selected":"You haven't selected anyone.","global_photo_full_size":"View photos"}, false);
window.cur = window.cur || {};
cur['deepRepliesActive']=true;
;try{;if (window.Reactions) {
window.Reactions.storageSetConfig && window.Reactions.storageSetConfig({"reportJsErrors":true,"openedDefaultReactionId":null});
window.Reactions.storageAddSets && window.Reactions.storageAddSets({"reactions":[{"asset":{"images":[{"url":"https:\/\/vk.com\/reaction\/1-reactions-0-32?c_uniq_tag=464ba6bdc06e9f204a9b2c865a046355d835f601d8d82be4dc77e43a028741ff","width":32,"height":32},{"url":"https:\/\/vk.com\/reaction\/1-reactions-0-48?c_uniq_tag=e6bee176471af6e4f7ca0f57ac099847d57b8101bf07944e47b42b097a6d8455","width":48,"height":48},{"url":"https:\/\/vk.com\/reaction\/1-reactions-0-96?c_uniq_tag=0a64c3d34d3a1368b05716ff24f94ff51b2257a2287957423ced36a00b020cb6","width":96,"height":96},{"url":"https:\/\/vk.com\/reaction\/1-reactions-0-144?c_uniq_tag=47a911186fd9ce6d9aba1f9273e49ef70d1e0149e7470d1dae40941d81a1ece4","width":144,"height":144}],"animation_url":"https:\/\/vk.com\/reaction\/3-reactions-0?c_uniq_tag=83b2081a8e4adfc36ee536f5f1b4ad470174c89678369a4b9dc5547614a3955e"},"id":0,"title":"Like","color_sets":{"foreground":{"light":"#FF3347","dark":"#FF5C5C"},"background":{"light":"#FFEDED","dark":"#3E2526"}}},{"asset":{"images":[{"url":"https:\/\/vk.com\/reaction\/1-reactions-1-32?c_uniq_tag=2119d7ea78675f5702dcf43035f5f7fe13d6dd0f444b3a7d1735699d659b49b7","width":32,"height":32},{"url":"https:\/\/vk.com\/reaction\/1-reactions-1-48?c_uniq_tag=8f5eb3a1d6a6ec81aceff211782af3c9e9a5d1c837f0bfade6965a6844786f8b","width":48,"height":48},{"url":"https:\/\/vk.com\/reaction\/1-reactions-1-96?c_uniq_tag=647ccf722698732a8b13033eadd1f02c5c917b0bdc3f9fb16d6cd0ade8706c99","width":96,"height":96},{"url":"https:\/\/vk.com\/reaction\/1-reactions-1-144?c_uniq_tag=68c571ccb2f08b9e0404e5307b41a48a057454b44375480a7a89f1dc8fb8b521","width":144,"height":144}],"animation_url":"https:\/\/vk.com\/reaction\/3-reactions-1?c_uniq_tag=a47193579880c0f53dd597a15d3bd57d4827820687c73d6128df2720647b42b9"},"id":1,"title":"Haha","color_sets":{"foreground":{"light":"#FF8000","dark":"#FFC233"},"background":{"light":"#FFF2D6","dark":"#352E23"}}},{"asset":{"images":[{"url":"https:\/\/vk.com\/reaction\/1-reactions-2-32?c_uniq_tag=e919477a3e650ebae5d810b30dcc7529a52b072f2470327f95220b778abfb449","width":32,"height":32},{"url":"https:\/\/vk.com\/reaction\/1-reactions-2-48?c_uniq_tag=2a6544dce8827d216db7ea91eafc726cd3a823f5d465ba00216901a6de2801ad","width":48,"height":48},{"url":"https:\/\/vk.com\/reaction\/1-reactions-2-96?c_uniq_tag=51275507a335aeafd7c43735d92d11a6b3acf2bb5595273a44a4f844c055b2ce","width":96,"height":96},{"url":"https:\/\/vk.com\/reaction\/1-reactions-2-144?c_uniq_tag=223a080cabb1e69212b9b1cdb455dcfb8bcbbdc40d93ae339717ecd32ea95f4c","width":144,"height":144}],"animation_url":"https:\/\/vk.com\/reaction\/3-reactions-2?c_uniq_tag=b946fcbe262642bc920331746b6eccd9f175bb17d8ef37e54d232fa35ca2c750"},"id":2,"title":"Wow!","color_sets":{"foreground":{"light":"#FF8000","dark":"#FFC233"},"background":{"light":"#FFF2D6","dark":"#352E23"}}},{"asset":{"images":[{"url":"https:\/\/vk.com\/reaction\/1-reactions-3-32?c_uniq_tag=a95fe4eb836477892e54dcd8f464598e49a611249ec93d5eb7d7a1401cb77cff","width":32,"height":32},{"url":"https:\/\/vk.com\/reaction\/1-reactions-3-48?c_uniq_tag=eda1a2c18d733b356babdeed5f52cdcc64dd59f1f69776a133fc34a5627eecee","width":48,"height":48},{"url":"https:\/\/vk.com\/reaction\/1-reactions-3-96?c_uniq_tag=b08f5ff31b4bd18e465f14262708e4aac56d34f343b8d355171df7d73bb34497","width":96,"height":96},{"url":"https:\/\/vk.com\/reaction\/1-reactions-3-144?c_uniq_tag=484984c408a4b1f82d51229ce061ccbc5ad2efffbf2b684636ecfaa60f567f89","width":144,"height":144}],"animation_url":"https:\/\/vk.com\/reaction\/3-reactions-3?c_uniq_tag=c6ed3add99e841dccda5479c8e21779954e61e0fba15f94a2ae16706df492123"},"id":3,"title":"Love","color_sets":{"foreground":{"light":"#FF8000","dark":"#FFC233"},"background":{"light":"#FFF2D6","dark":"#352E23"}}},{"asset":{"images":[{"url":"https:\/\/vk.com\/reaction\/1-reactions-5-32?c_uniq_tag=a07ac888553814f1cbc8c9342b636bf30ca6d80d14e7e38170ea02dad0bfafbf","width":32,"height":32},{"url":"https:\/\/vk.com\/reaction\/1-reactions-5-48?c_uniq_tag=31bcb230babad96120a62589c52af22811aaba54d4ed73a36cfd499d9d94102f","width":48,"height":48},{"url":"https:\/\/vk.com\/reaction\/1-reactions-5-96?c_uniq_tag=8cff3bac94202cbb5bee1d598f113134e0038804a3837be750f28ff27d3ffb05","width":96,"height":96},{"url":"https:\/\/vk.com\/reaction\/1-reactions-5-144?c_uniq_tag=8bf31a92656dd0c0d3482505bf1b6fb3d2493a3e4c93e0e62723aef81c7da052","width":144,"height":144}],"animation_url":"https:\/\/vk.com\/reaction\/3-reactions-5?c_uniq_tag=c61122c8c334154cb10ccf0e0687057bf1f0f40c2817198b2e1150df534c22c4"},"id":5,"title":"Sad","color_sets":{"foreground":{"light":"#4986CC","dark":"#71AAEB"},"background":{"light":"#EDF3FA","dark":"#27303C"}}},{"asset":{"images":[{"url":"https:\/\/vk.com\/reaction\/1-reactions-4-32?c_uniq_tag=ac5ab70367285c3fbbee7ba2adde88cbb65db2d35e05b09b4ae5593ee0bcc535","width":32,"height":32},{"url":"https:\/\/vk.com\/reaction\/1-reactions-4-48?c_uniq_tag=c80e3224c299a73384c057ff065c9458dcd533d57a1458875eb98883c3a96783","width":48,"height":48},{"url":"https:\/\/vk.com\/reaction\/1-reactions-4-96?c_uniq_tag=5495709e616048fd43683ac693ebd09f3615c797af2493d0334402befded2885","width":96,"height":96},{"url":"https:\/\/vk.com\/reaction\/1-reactions-4-144?c_uniq_tag=a79fce98e0d7769284290ab78936b3aa6d15a42caa50e6071bdeb5013d950251","width":144,"height":144}],"animation_url":"https:\/\/vk.com\/reaction\/3-reactions-4?c_uniq_tag=063e6b2dd888bb5a9716cf6153f03bf9c0c9707713b857eed8fe1e4e09aea2b3"},"id":4,"title":"&$#%!","color_sets":{"foreground":{"light":"#EF5203","dark":"#FA5300"},"background":{"light":"#FDEBE8","dark":"#3C2421"}}}]});
};} catch (e) {e.__inline_tag = "3355a2db"; e.name = `[3355a2db] ${e.name}`; throw e;};
window.cur = window.cur || {};
cur['emojiHintsSendLogHash']="6e3915228aff2df0db";
window.cur = window.cur || {};
cur['my_added_videos_path']="\/video\/@id0\/added";
extend(window.cur || {}, {"apiPrefetchCache":[]});Promise.resolve().then(() => {try { window.PageBottomBanners && window.PageBottomBanners.initUnauthBanner({"type":"unauth","hide_url":"","hide_params":[],"group_id":0,"icon_type":"vk_logo","header":"Read only the most interesting posts<br>","text":"We'll find posts according to your preferences and create a whole feed from them. Just sign in to check it out.","feed_sections":[],"sections":[],"can_close":false,"actions_layout":null,"actions":[{"type":"sign_up","mode":"overlay_primary","label":"Sign up","url":"","wide":false,"params":[]},{"type":"sign_in","mode":"overlay_primary","label":"Sign in","url":"","wide":false,"params":[]}],"is_animated":true,"background_type":"blue","html":"<div class=\"PageBottomBanner PageBottomBanner--unauth PageBottomBanner--animated PageBottomBanner--bg-blue\">\n <div class=\"PageBottomBanner__in\">\n <div class=\"PageBottomBanner__icon PageBottomBanner__icon--vk_logo\"><svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.97 5.97C4 7.94 4 11.1 4 17.44v1.12c0 6.34 0 9.5 1.97 11.47C7.94 32 11.1 32 17.44 32h1.12c6.34 0 9.5 0 11.47-1.97C32 28.06 32 24.9 32 18.56v-1.12c0-6.34 0-9.5-1.97-11.47C28.06 4 24.9 4 18.56 4h-1.12C11.1 4 7.94 4 5.97 5.97Zm2.68 6.78c.16 7.28 3.99 11.67 10.3 11.67h.37v-4.17c2.3.23 4.02 1.95 4.72 4.17h3.32a9.22 9.22 0 0 0-4.69-5.85 8.89 8.89 0 0 0 3.99-5.82h-3.02c-.64 2.32-2.52 4.42-4.32 4.62v-4.62h-3.07v8.08c-1.86-.46-4.3-2.73-4.4-8.08h-3.2Z\" fill=\"currentColor\"\/><\/svg><\/div>\n <div class=\"PageBottomBanner__content\">\n <div class=\"PageBottomBanner__header\">Read only the most interesting posts<br><\/div>\n <div class=\"PageBottomBanner__text\">We'll find posts according to your preferences and create a whole feed from them. Just sign in to check it out.<\/div>\n <\/div>\n <div class=\"PageBottomBanner__actions\">\n <button class=\"PageBottomBanner__actionBtn Button Button--size-m Button--overlay_primary\" data-action=\"{"type":"sign_up","mode":"overlay_primary","label":"Sign up","url":"","wide":false,"params":[]}\">Sign up<\/button><button class=\"PageBottomBanner__actionBtn Button Button--size-m Button--overlay_primary\" data-action=\"{"type":"sign_in","mode":"overlay_primary","label":"Sign in","url":"","wide":false,"params":[]}\">Sign in<\/button>\n<\/div>\n \n <\/div>\n<\/div>"}); } catch (e) {}}).catch((error) => { error.name = "[unsafeJs inject_unauth_banner] " + error.name; error.__inline_tag = "inject_unauth_banner"; throw error });Promise.resolve().then(() => {try { window.Unauthorized2 && window.Unauthorized2.initScrollMoreBox({"action":"more","html":"<div class=\"UnauthActionBox UnauthActionBox--vkid\">\n <div class=\"UnauthActionBox__in\">\n <button class=\"UnauthActionBox__close\" onmouseover=\"showTitle(this, 'Close');\" aria-label=\"Close\"><\/button>\n\n <div class=\"UnauthActionBox__hero\">\n <div class=\"UnauthActionBox__ownerPhoto\" style=\"background-image: url(https:\/\/sun6-23.userapi.com\/s\/v1\/ig2\/N8Bg3WSKn5Li4AOMPVMFQq2j3zSixG5_uFJ_s2Asq2Feimt9_tE5He_YcvJDmxsoKDNcEfYeIqKPPK0FhdtQNF40.jpg?quality=95&crop=0,0,512,512&as=32x32,48x48,72x72,108x108,160x160,240x240,360x360,480x480&ava=1&cs=200x200)\"><\/div>\n <div class=\"UnauthActionBox__header\">Sign up to view Ahmet Çadırcı<\/div>\n <div class=\"UnauthActionBox__text\">Read and comment on posts you like from this community<\/div>\n <\/div>\n\n <div class=\"UnauthActionBox__actions VkIdForm__form1\">\n <div class=\"UnauthActionBox__action\">\n <button class=\"FlatButton FlatButton--primary FlatButton--size-l FlatButton--round FlatButton--wide UnauthActionBox__login VkIdForm__button\" type=\"button\" >\n <span class=\"FlatButton__in\">\n \n <span class=\"FlatButton__content\">Sign in<\/span>\n \n <\/span>\n<\/button>\n <\/div>\n <div class=\"UnauthActionBox__action\">\n <button class=\"FlatButton FlatButton--secondary FlatButton--size-l FlatButton--round FlatButton--wide UnauthActionBox__join VkIdForm__button\" type=\"button\" >\n <span class=\"FlatButton__in\">\n \n <span class=\"FlatButton__content\">Sign up<\/span>\n \n <\/span>\n<\/button>\n <\/div>\n <\/div>\n <\/div>\n<\/div>","withForm":false,"formOptions":[],"showOnLoad":false}) } catch (e) {}}).catch((error) => { error.name = "[unsafeJs init_scroll_more_box] " + error.name; error.__inline_tag = "init_scroll_more_box"; throw error });;try{var opts = {"owner_id":-224095492,"post_id":88,"note_id":false,"post_raw":"-224095492_88","note":false,"seen":[{"-224095492_88":1}],"scroll":false,"start":0,"offset":40,"per_page":20,"count":0,"url":"\/wall-224095492_88","params":false,"href":"\/wall-224095492_88?offset=","max_post_len":280,"max_post_full_length":16384,"post_hash":"","rmedia_types":[["photo","Photo"],["video","Video"],["audio","Audio"],["doc","File"],["short_video","Clip"],["map","Map"],["market","Product",{"tt_text":"You can now <a onclick=\"showBox('al_market.php', {act: 'a_edit_item_box', attach: 1, from_wall: 1}); return false\">attach a product<\/a> to your post.","tt_words":["sell","sell","sells","selling","sale","sold","give","gives","gave","given","for","free","rent","for","rent","rental","rents","rented","renting","give for free","giving for free","gives for free","for free","for rent","rent room","rent a room","renting a room","rents room","rents a room","renting room"]}],["postpone","Timer",{"lang":{"profile_choose_timer":"Posting time","profile_wall_postpone_at":"at","wall_publication_now":"Now","wall_post_timer_reset":"Reset","export_to_twitter":"Export to Twitter","export_to_facebook":"Export to Facebook","friends_only":"Friends only","wall_post_access_all":"Public post","profile_wall_postpone_btn":"Schedule"},"date":1733992219,"postpone_item_hidden":false}]],"share":{"timehash":"1733988619_f1704317d9c6240a26","allow_custom_photo":true,"allow_edit_title":true,"allow_edit_url":true,"max_title_len":100},"upload":null,"upload_video":null,"check_comments":true,"reply_names":[],"wall_type":"full","view_hash":"e58ed827dcb19a4f45","replies_page_count":20}, preload = [0,60,"",[]];
cur.lang = extend(cur.lang || {}, {
dont_attach: 'Remove attachment',
wall_n_replies: ["","%s comment","%s comments"],
wall_no_replies: 'No comments',
global_add_media: 'Attach',
global_store_stickers: 'Sticker store',
global_store_stickers_new_available: 'New stickers available',
global_link_choose_own_photo: 'Choose a photo',
global_link_choose_own_video: 'Choose video',
global_link_remove_photo: 'Delete image',
global_link_invalid_url: 'Invalid URL',
global_link_edit_url: 'Edit URL',
});
var st = opts.scroll;
if (st) {
st = ge(st);
}
if (st) {
opts.scroll = getXY(st)[1] - getSize(document.querySelector('#page_header'))[1];
Wall.highlightReply(st);
}
FullWall.initOnePost(opts, preload);} catch (e) {e.__inline_tag = "a6a3e0b2"; e.name = `[a6a3e0b2] ${e.name}`; throw e;};;try{Page.initGifAutoplay();} catch (e) {e.__inline_tag = "32149992"; e.name = `[32149992] ${e.name}`; throw e;};;try{Page.initVideoAutoplay();} catch (e) {e.__inline_tag = "aea2c227"; e.name = `[aea2c227] ${e.name}`; throw e;};;try{
window.initReactApplication('TopSearchAnonymous', null);} catch (e) {e.__inline_tag = "ee15a0e2"; e.name = `[ee15a0e2] ${e.name}`; throw e;};;window.cur = Object.assign(window.cur || {}, {isVideoStandalone: false});;try{
;(function (d, w) {
if (w.__dev) {
return
}
var ts = d.createElement("script"); ts.type = "text/javascript"; ts.async = true;
ts.src = (d.location.protocol == "https:" ? "https:" : "http:") + "//top-fwz1.mail.ru/js/code.js";
var f = function () {var s = d.getElementsByTagName("script")[0]; s.parentNode.insertBefore(ts, s);};
if (w.opera == "[object Opera]") { d.addEventListener("DOMContentLoaded", f, false); } else { f(); }
})(document, window);} catch (e) {e.__inline_tag = "7738f3ab"; e.name = `[7738f3ab] ${e.name}`; throw e;};;try{;(function (d, w) {
if (w.__dev) {
return;
}
if(!w._tns){w._tns = {}};
w._tns.tnsPixelSocdem = "13"
w._tns.tnsPixelType = "unauth"
})(document, window);} catch (e) {e.__inline_tag = "2f462be7"; e.name = `[2f462be7] ${e.name}`; throw e;};
</script>
<script type="module">
;try{window.curReady && window.curReady();} catch (e) {e.__inline_tag = "6f9bb66e"; e.name = `[6f9bb66e] ${e.name}`; throw e;};
</script>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="position:absolute;width:0;height:0" aria-hidden="true" id="__SVG_SPRITE_NODE__"><symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 44" id="spinner_44"><path fill="currentColor" d="M22 44a1.5 1.5 0 0 1 0-3c10.493 0 19-8.507 19-19S32.493 3 22 3 3 11.507 3 22c0 2.208.376 4.363 1.103 6.397a1.5 1.5 0 1 1-2.825 1.01A22 22 0 0 1 0 22C0 9.85 9.85 0 22 0s22 9.85 22 22-9.85 22-22 22"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="search_outline_16"><path fill="currentColor" d="M6.5 1a5.5 5.5 0 0 1 4.384 8.823l3.895 3.9a.75.75 0 0 1-1.061 1.06l-3.895-3.9A5.5 5.5 0 1 1 6.5 1m0 1.5a4 4 0 1 0 0 8 4 4 0 0 0 0-8"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="cancel_24"><path d="M7.536 6.264a.9.9 0 0 0-1.272 1.272L10.727 12l-4.463 4.464a.9.9 0 0 0 1.272 1.272L12 13.273l4.464 4.463a.9.9 0 1 0 1.272-1.272L13.273 12l4.463-4.464a.9.9 0 1 0-1.272-1.272L12 10.727z"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="more_horizontal_24"><path d="M18 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-6 4c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2m-6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"></path></symbol></svg><div id="rc_4364rfc3ydh_0"></div><div id="system_msg" class="fixed"></div><div id="layer_bg" class="fixed" style="height: 600px;"></div><div id="layer_wrap" class="scroll_fix_wrap fixed layer_wrap" style="width: 800px; height: 600px;"><div id="layer" style="width: 789px;"></div></div><div id="box_layer_bg" class="fixed" style="height: 600px;"></div><div id="box_layer_wrap" class="scroll_fix_wrap fixed" style="width: 800px; height: 600px;"><div id="box_layer" style="width: 789px;"><div id="box_loader"><div class="vkitScreenSpinner__rootOverlay--txrCS vkuiScreenSpinner vkuiRootComponent"><span class="vkuiScreenSpinner__spinner vkuiSpinner vkuiRootComponent" role="status"><svg aria-hidden="true" display="block" class="vkuiIcon vkuiIcon--44 vkuiIcon--w-44 vkuiIcon--h-44 vkuiIcon--spinner_44" width="44" height="44" viewBox="0 0 44 44" style="width: 44px; height: 44px;"><use xlink:href="#spinner_44" style="fill: currentcolor;"><animateTransform attributeType="XML" attributeName="transform" type="rotate" from="0 22 22" to="360 22 22" dur="0.7s" repeatCount="indefinite"></animateTransform></use></svg><span class="vkuiVisuallyHidden vkuiRootComponent">Пожалуйста, подождите...</span></span></div></div></div></div><div id="stl_left" style="width: 0px;"><div id="stl_bg"><div id="stl_text"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="m12 10.3-5.36 4.47a1 1 0 1 1-1.28-1.54l6-5a1 1 0 0 1 1.28 0l6 5a1 1 0 1 1-1.28 1.54L12 10.3Z"></path></svg> Go up</div></div></div><div id="stl_side" style="left: 0px; width: 175px; top: 448px; height: 152px;"></div><div class="advertblock b-rb textAd banner_240 textad rb-slot rb_body" style="position: absolute !important; top: -9999px !important; left: -9999px !important; width: 1px !important; height: 1px !important;" id="trg-b-banners-1" data-view="SlotView.mimic"></div><div></div><div></div><script type="text/javascript" async="" src="https://privacy-cs.mail.ru/static/sync-loader.js"></script><div class="p-target textads text-ads pub_300x250 advertblock advblock textAd" style="position: absolute !important; top: -9999px !important; left: -9999px !important; width: 1px !important; height: 1px !important;" id="trg-b-banners-1" data-view="SlotView.mimic"></div><script type="text/javascript" async="" src="https://top-fwz1.mail.ru/js/dyn-goal-config.js?ids=2579437"></script><div id="page_bottom_banners_root"><div class="PageBottomBanner PageBottomBanner--unauth PageBottomBanner--animated PageBottomBanner--bg-blue">
<div class="PageBottomBanner__in">
<div class="PageBottomBanner__icon PageBottomBanner__icon--vk_logo"><svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.97 5.97C4 7.94 4 11.1 4 17.44v1.12c0 6.34 0 9.5 1.97 11.47C7.94 32 11.1 32 17.44 32h1.12c6.34 0 9.5 0 11.47-1.97C32 28.06 32 24.9 32 18.56v-1.12c0-6.34 0-9.5-1.97-11.47C28.06 4 24.9 4 18.56 4h-1.12C11.1 4 7.94 4 5.97 5.97Zm2.68 6.78c.16 7.28 3.99 11.67 10.3 11.67h.37v-4.17c2.3.23 4.02 1.95 4.72 4.17h3.32a9.22 9.22 0 0 0-4.69-5.85 8.89 8.89 0 0 0 3.99-5.82h-3.02c-.64 2.32-2.52 4.42-4.32 4.62v-4.62h-3.07v8.08c-1.86-.46-4.3-2.73-4.4-8.08h-3.2Z" fill="currentColor"></path></svg></div>
<div class="PageBottomBanner__content">
<div class="PageBottomBanner__header">Read only the most interesting posts<br></div>
<div class="PageBottomBanner__text">We'll find posts according to your preferences and create a whole feed from them. Just sign in to check it out.</div>
</div>
<div class="PageBottomBanner__actions">
<button class="PageBottomBanner__actionBtn Button Button--size-m Button--overlay_primary" data-action="{"type":"sign_up","mode":"overlay_primary","label":"Sign up","url":"","wide":false,"params":[]}">Sign up</button><button class="PageBottomBanner__actionBtn Button Button--size-m Button--overlay_primary" data-action="{"type":"sign_in","mode":"overlay_primary","label":"Sign in","url":"","wide":false,"params":[]}">Sign in</button>
</div>
</div>
</div></div><div></div><div class="advertblock pub_300x250 text-ad-links text-ads rb_body pub_728x90 advblock" style="position: absolute !important; top: -9999px !important; left: -9999px !important; width: 1px !important; height: 1px !important;" id="trg-b-banners-1" data-view="SlotView.mimic"></div><div class="pub_300x250 b-rb text-ad-links p-target textad advertBlock rb-floating" style="position: absolute !important; top: -9999px !important; left: -9999px !important; width: 1px !important; height: 1px !important;" id="trg-b-banners-1" data-view="SlotView.mimic"></div></body></html>