/* ===============================
   ROOT VARIABLES
================================= */
:root {

  --bg: #121922;

  --surface: linear-gradient(180deg,#1f2833 0%,#161d26 100%);
  --block: linear-gradient(180deg,#202a36 0%,#171e27 100%);
    --blockb:#202a36;
    --popup-bg: var(--blockb);

  --hdback: linear-gradient( to bottom, #aab8c2 0%,#90a4b2 30%, #6f889a 60%, #4f6a7d 85%, #3b5568 100% );
/*  --hdback: linear-gradient(to bottom, #a9b6bf 0%, #8fa3b0 25%, #6e8798 55%, #4e6a7d 80%, #3b5568 100%); */
--hdbackb: linear-gradient(to bottom,#7f96a6 0%,#6e8797 30%,#586f80 60%,#455b6c 85%,#34495a 100%);
--msg-green: linear-gradient(to bottom,#4e7a63 0%,#3f6854 50%,#355a49 100%);
  
  --text: #e6e6e6;
  --muted: #8fa2b5;
  /* основной акцент */
  --accent: #4aa3ff;
  /* дополнительные */
  --accent-primary: #3d8bfd;
  --accent-secondary: #5ac8fa;
/* ===============================
   ACCENT GRADIENT (для кнопок и hover)
================================= */
  --accent-gradient: linear-gradient(135deg,var(--accent-primary),var(--accent-secondary));
/*  --accent-gradient: linear-gradient(135deg,#4aa3ff,#5ac8fa); */
  --accentlink: #2a437f;
--btn-green-grad: linear-gradient(to bottom,#6a9d86 0%,#588b76 45%,#467764 55%,#355f52 100%);
--btn-green-hover: linear-gradient(to bottom,#7caf97 0%,#679b85 45%,#558572 55%,#436b5c 100%);    
/*--btn-green-grad: linear-gradient(to bottom,#6f9f7a 0%,#5e8f6b 45%,#4c7e5b 55%,#3d6b4c 100%);
--btn-green-hover: linear-gradient(to bottom,#7fb28a 0%,#6ea37a 45%,#5b8f67 55%,#4a7b56 100%);  */
/*    --btn-green-grad: linear-gradient( to bottom, #a8d07a 0%, #8fbc5a 45%, #6f9f3d 55%, #5c8c2c 100%);
  --btn-green-hover: linear-gradient( to bottom, #b9e18a 0%, #9ed066 45%, #7fb24b 55%, #689e37 100% );
*/ 
/*    --btn-green-grad: linear-gradient(to bottom,#5e8c73 0%,#4f7b64 45%,#3f6854 55%,#315444 100%);
--btn-green-hover: linear-gradient(to bottom,#6fa085 0%,#5e8f76 45%,#4c7a63 55%,#3a6351 100%); */
--menu-btn:linear-gradient(180deg,#2b3c49,#22323e);
--menu-btn-hover:linear-gradient(180deg,#334957,#2a3c48);
--menu-btn-active:linear-gradient(180deg,#3d5666,#314956);
  --border: #2a3441;
  --shadow-soft: 0 6px 18px rgba(0,0,0,0.35);
  /* текстовые алиасы */
  --tt: var(--text);
  --tt-fade: var(--muted);
  --tt-fadest: #a8a8a8;
  
  --ui-bg: #fff; --ui-bg-darker: #f6f6f8; --ui-bg-darkest: #e4e5e7; --ui-accent: #06c;
	--ui-bdc: #e3e3e3; --ui-tt-fade: #888; --ui-fw-bolder: 700; --ui-fw-fa: 900;
	--ui-bsh: 0 12px 40px rgba(0,0,0,0.3); --ui-bsh-inset: inset 1px 2px 5px rgba(0,0,0,0.1); --ui-bdrs: 4px;
	--ui-gradient: linear-gradient(to bottom, #5c4f68, #352d3c); --ui-bg-black: #352d3c;

}
/* ===============================
   LIGHT THEME 5
================================= */
body.light{

  --bg:
  radial-gradient(rgba(0,0,0,.05) 1px, transparent 1px),
  radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
  linear-gradient(180deg,#e3dccf 0%,#d6cfc2 100%);
  background-size:3px 3px,5px 5px,100% 100%;
  background-position:0 0,1px 1px,0 0;

/*  --surface: linear-gradient(180deg,#ddd4c6 0%,#cfc6b6 100%);
  --block: linear-gradient(180deg,#d2c8b8 0%,#bfb5a4 100%); */
/*  --surface: linear-gradient(180deg,#e9e2d6 0%,#ddd4c6 100%);
--block: linear-gradient(180deg,#e3dacd 0%,#d2c8b8 100%); */
--surface: linear-gradient(180deg,#efe8dc 0%,#e2d9cc 100%);
--block: linear-gradient(180deg,#e8dfd2 0%,#d6ccbd 100%);

  --blockb:#c8bead;
  --popup-bg:var(--blockb);

  --border:#b4aa9a;

  --text:#2a2a2a;
  --muted:#6d6a63;

  --accent:#2f7cf6;
  --accent-primary:#1f6feb;
  --accent-secondary:#4aa3ff;
    
   --menu-btn: linear-gradient(180deg,#e6ded0,#d5ccbc);
  --menu-btn-hover: linear-gradient(180deg,#efe7d8,#ddd3c3);
  --menu-btn-active: linear-gradient(180deg,#d8cfbf,#c6bba9);

  --btn-green-grad: linear-gradient(to bottom,#9fcab3 0%,#86b89f 45%,#6da287 55%,#5a8d72 100%);

}

body {background: radial-gradient(500px at 20% 0%, rgba(74,163,255,0.12), transparent 60%),
radial-gradient(400px at 80% 100%, rgba(90,200,250,0.1), transparent 60%),var(--bg);}

$(document).on('click', '.nav__btn', function(e){
    e.preventDefault();
    e.stopPropagation();

    var $li = $(this).closest('li');
    var $sub = $li.children('.nav__hidden');

    if (!$sub.length) return;

    $li.toggleClass('is-active');
    $sub.stop(true, true).slideToggle(200);
});


body::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: 0.25; background-image: url("data:image/svg+xml,\
<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'>\
<filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter>\
<rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/>\</svg>");}

.login__social:has(.login__social-caption:last-child), .serv__social:has(.serv__subtitle:last-child) {display: none;}
.animated-element, button, .btn, a
{transition: color 0.3s, background-color 0.3s, opacity 0.3s, box-shadow 0.3s, transform 0.3s, border-color 0.3s;}
.login__close:hover {background-color:var(--ui-red); color:var(--tt-btn);}
.show-text:hover, .header__login-menu a:hover {text-decoration: underline; color: var(--accent-primary);}

.header__settings-btn:hover {background-color: var(--bg); color: var(--text);}
.header__btn-login:hover, .header__btn-link a:hover {text-decoration: underline; color: var(--accent-secondary);}
.header__login-menu a:hover, .speedbar2 a:hover, .page__meta a:hover {text-decoration: underline;}

button, select, textarea, input[type="text"], input[type="password"], input[type="button"], [type="reset"], input[type="submit"] 
{appearance: none; -webkit-appearance: none; font-size: 16px; font-family: inherit; font-weight: inherit;}
input[type="button"], input[type="submit"] {font-size: 12px; font-weight: 600;}
button, .btn, [type="button"], [type="reset"], [type="submit"], .pmessages__links a, .qq-upload-button, .plupload_button 
{display: inline-flex; justify-content: center; align-items: center;  
	cursor: pointer; padding: 0 20px; height: 40px; white-space: nowrap; gap: 10px; border-radius: var(--ui-bdrs);
	font-size: 14px; font-weight: 700; text-transform: uppercase; background-color: var(--bg-btn); color: var(--tt-btn);}
button:active, input[type="button"]:active, input[type="submit"]:active {box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.1);}
.color-btn, [class*=fr], [class*=plyr], [class*=owl-], [id*=mceu], [class*=tox-], .ui-dialog-titlebar-close {padding: 0; margin: 0; 
	line-height: 1.4; border: 0; box-shadow: none; background: none; border-radius: 0;}
.btn-without-bg {background: none; color: var(--text); padding: 0; height: 40px; min-width: 40px; box-shadow: none;}
.btn-secondary, .dle-popup-complaint .ui-dialog-buttonset button:first-child:not(:hover), 
.dle-popup-sendpm .ui-dialog-buttonset button:first-child:not(:hover),
.dle-popup-userprofile .ui-dialog-buttonset button:not(:first-child,:hover), 
.dle-popup-confirm .ui-dialog-buttonset button:first-child:not(:hover), 
.dle-popup-promt .ui-dialog-buttonset button:first-child:not(:hover)
 {background-color: var(--bg); color: var(--muted);}

[type="text"], [type="password"] {height: 40px; line-height: 39px; padding: 0 15px;}
select {height: 40px; padding: 0 15px; display: block; font-size: 15px;}
select:not([multiple]) {/*background-image: url(../dleimages/chevron-down.svg);*/ padding-right: 30px;
	background-repeat: no-repeat; background-position: right 15px top 50%; background-size: 12px auto;}
select option {padding: 6px 10px;}
select[multiple] option {padding: 3px 10px;}
select[multiple] {padding: 9px 5px; border-radius: var(--ui-bdrs);}
textarea {padding: 15px; overflow: auto; vertical-align: top; resize: vertical;}
[type="text"], [type="password"], select, textarea {width: 100%; background-color: var(--bg); color: var(--text); 
	border: 1px solid var(--ui-bdc); box-shadow: var(--ui-bsh-inset); border-radius: var(--ui-bdrs);}
[type="text"]:focus, [type="password"]:focus, textarea:focus {border-color: var(--accent);}
input::placeholder, textarea::placeholder {color: var(--ui-tt-fade); opacity: 1; font-size: 14px;} 
input:focus::placeholder, textarea:focus::placeholder {color: transparent}
/* SNIPPETS
----------------------------------------------- */

.clearfix::after {content: ""; display: table; clear: both;}

.has-expanded-link__trg::before {content: ''; position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 10;}

.d-flex {display: flex; flex-wrap: wrap; flex-direction: row;}
.fd-column {flex-direction: column; flex-wrap: nowrap;} 
.jc-space-between {justify-content: space-between;}
.jc-flex-start {justify-content: flex-start;}
.jc-center {justify-content: center;}
.jc-flex-end {justify-content: flex-end;}
.ai-flex-start {align-items: flex-start;}
.ai-center {align-items: center;}
.ai-flex-end {align-items: flex-end;}
.order-first {order: -1;}
.order-last {order: 10;}
.flex-grow-1, .ui-dialog-title, .ac-form__bottom .comments_subscribe {flex: 1 1 0; max-width: 100%; min-width: 50px;}

.pi-center {display: inline-grid; place-items: center;}
.ta-center {text-align: center;}
.gap-10 {gap: 10px;}

#dle-content {display: inherit; gap: inherit; grid-template-columns: inherit;}

.hidden, .d-none, .full-text .quote + br, 
#category option:empty, .ui-helper-hidden-accessible:empty, #related_news:empty, #result-registration:empty, 
.info br, #fullsearch + form .mass_comments_action, .bb-sep, .bb-pane > .clr, .trl h1 a {display: none;} 
.login__social:has(.login__social-caption:last-child), .serv__social:has(.serv__subtitle:last-child) {display: none;}
.animated-element, button, .btn, a
{transition: color 0.3s, background-color 0.3s, opacity 0.3s, box-shadow 0.3s, transform 0.3s, border-color 0.3s;}
@font-face {font-family: 'exo-2'; src: url('../webfonts/exo-2-300.woff2') format('woff2');
	font-weight: 300; font-style: normal; font-display: swap;}
@font-face {font-family: 'exo-2'; src: url('../webfonts/exo-2-500.woff2') format('woff2');
	font-weight: 500; font-style: normal; font-display: swap;}
@font-face {font-family: 'exo-2'; src: url('../webfonts/exo-2-700.woff2') format('woff2');
	font-weight: 700; font-style: normal; font-display: swap;}
	
@media (hover: hover) and (pointer: fine) {
	a:hover {color: var(--text); text-decoration: none;}
	button:hover, .btn:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, 
	.pmessages__links a:hover, .qq-upload-button:hover, .us__btn a:hover, .plupload_button:hover, 
	#searchsuggestions span.seperator a:hover 
	{background-color: var(--bg-btn-hover); color: var(--tt-btn); border-color: var(--bg-btn-hover);}
	.btn-without-bg:hover {background: none; color: var(--text); border-color: transparent; box-shadow: none;}
	.ui-dialog-titlebar-close:hover, .login__close:hover {background-color: var(--ui-red); color: var(--tt-btn);}
	.xfieldimagegallery a:hover, .comments-image-gallery a:hover {opacity: 0.8;}
	.fs-result:hover {background-color: var(--bg);}

	
	.header__btn-login:hover, .header__btn-link a:hover {text-decoration: underline; color: var(--accent-secondary);}
	a.sect__link:hover, .menu-block a:hover, .lcomm__link:hover, .footer__link:hover, 
	.sect__btn-filter:hover, .show-text:hover, .header__login-menu a:hover {text-decoration: underline; color: var(--accent-primary);}
	
	.header__login-menu a:hover, .speedbar2 a:hover, .page__meta a:hover {text-decoration: underline;}
	.pagination a:hover, .coll:hover .coll__title {border-color: var(--accent-primary); color: #fff; background-color: var(--accent-secondary);}
	
	.trl__close:hover, .page__fav a:hover {background-color: var(--ui-red); color: var(--tt-btn);}
	.header__favlink:hover {color: var(--accent-primary);}

	
}


:root{
  --ui-bg: var(--blockb);
  --ui-bg-black: var(--blockb);
  --ui-bg-darker: var(--surface);
  --ui-bg-attention: var(--block);
  --ui-bdc: var(--border);
  --ui-bd-attention: var(--accent);
  --ui-accent: var(--accent);
  --ui-tt: var(--tt);
  --ui-tt-fade: var(--muted);
  --ui-red: #e85319;
}
/* ===============================
   GLOBAL BACKGROUND
================================= */

html { background: var(--bg);}
body { color: var(--text);}

/* ===============================
   BLOCKS
================================= */
.block,.surface { border:1px solid var(--border); box-shadow:var(--shadow-soft);}
.block,.base-box,.content,.story,.short-story,.full-story { background: var(--block); border: 1px solid var(--border); border-radius: 8px;}
.wrapper {/*  background: transparent; */ border: none;}
.leftside,.rightside { background: var(--surface); border: 1px solid var(--border); border-radius: 8px;}
.short-meta i {width:18px;text-align:center;margin-right:6px;color:var(--muted);}
/* ===============================
   TEXT NORMALIZATION
================================= */
body,#content,#content a,.base-box,.block,.short-story,.full-story { color:var(--text);}
/* ===============================
   SHADOWS
================================= */
.base-box,.short-story,.full-story,.leftside,.rightside { box-shadow:var(--shadow-soft);}
/* ===============================
   PAGE BACKGROUND WRAPPER
================================= */
.pagebg { max-width: 98% /*1400px */; margin: 0 auto; padding: 0 20px;}
/* =============================
   BASE LAYOUT WRAPPER
============================= */
.structure { display: grid; grid-template-columns: 260px 1fr 260px; gap: 20px; align-items: start;}
/* ===============================
   FLEX / LAYOUT UTILS
   перенос из шаблона-донора
================================= */
.d-flex{display:flex;}
.ai-center{align-items:center;}
.ai-start{align-items:flex-start;}
.ai-end{align-items:flex-end;}
.jc-center{justify-content:center;}
.jc-between{justify-content:space-between;}
.jc-around{justify-content:space-around;}
.jc-end{justify-content:flex-end;}
.flex-column{flex-direction:column;}
.flex-wrap{flex-wrap:wrap;}
.p-relative{position:relative;}
.p-absolute{position:absolute;}
.d-none{display:none;}
.img-fixed-size{position:relative;overflow:hidden;flex-shrink:0;}
.img-fixed-size img{width:100%;height:100%;object-fit:cover;display:block;}
.animated-element{transition:all .25s ease;}
.btn-without-bg{background:none;border:0;cursor:pointer;}

/* ===============================
   GLOBAL OVERLAY
================================= */

.site-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
z-index:900;
opacity:0;
transition:opacity .25s ease;
}

.site-overlay.active{
opacity:1;
}

.login{
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%);
z-index:1000;
}


/* убиваем системную картинку DLE */
/*.meta-fav img{display:none !important;}*/

/* иконка *//*
.meta-fav a:before{content:"\f004";font-family:"Font Awesome 5 Free";font-weight:400;position:absolute;left:0;top:1px;font-size:16px;
color:var(--accent);}
.meta-fav a img{display:none !important;}
.meta-fav a {background-image:none !important;}
*//* Делаем ссылку нормальным контейнером */
/*.meta-fav a {position:relative;padding-left:22px;text-decoration:none;}*/
/* Добавляем иконку FontAwesome */
/*.meta-fav a:before {content:"\f004";font-family:"Font Awesome 5 Free";font-weight:400;position:absolute;left:0;top:1px;
font-size:16px;color:var(--accent);} */

/* ICONS Иконки */
/* ссылка избранного */
.meta-fav span{cursor:pointer;font-size:16px;color:var(--accent);transition:.2s;}
.meta-fav span:hover{transform:scale(1.1);}

/* Цветные Hover иконок */
.meta li:nth-child(1):hover span {color:var(--accent-primary);}
.meta li:nth-child(2):hover span {color:var(--accent-secondary);}
.meta li:nth-child(3):hover span {color:var(--accent);}
.meta li:nth-child(4):hover span {color:var(--accent-primary);}

/* META CLEAN */
.meta{display:flex;flex-wrap:wrap;gap:8px;margin:0;padding:0;list-style:none;font-size:13px;color:var(--muted);}
.meta li{display:inline-flex;align-items:center;gap:6px;padding:4px 8px;border-radius:6px;transition:.25s;}
.meta span{color:var(--accent);font-size:14px;transition:transform .25s,color .25s;}
.meta li:hover{background:var(--accent-gradient);color:var(--text);transform:translateY(-1px);opacity:0.7;}
.meta li:hover span{transform:scale(1.15);color:var(--text);}

/* ===============================
   BASE BUTTON STYLE MODERN
   базовый стиль всех кнопок
================================= */
.buttonnext{
    /* базовая геометрия */
    display:inline-block;
    padding:4px 18px;
    /* градиент из темы */
    background:var(--hdback);
    /* текст */
    color:var(--text);
    font-size:18px;
    font-weight:600;
    /* красивый современный шрифт */
    font-family: "Segoe UI", "Inter", system-ui, sans-serif;
    /* убираем подчеркивание ссылок */
    text-decoration:none;
    /* форма кнопки */
    border-radius:999px;
    /* чтобы текст не переносился */
    white-space:nowrap;
    /* лёгкая тень из root */
    box-shadow:var(--shadow-soft);
    /* плавные анимации */
    transition:all .25s ease;
    /* =BUTTON TEXT STYLE= */
    letter-spacing:.3px;
/*    box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 2px 6px rgba(0,0,0,0.3); */
}

/* ===============================
   BUTTON HOVER EFFECT
================================= */
.buttonnext:hover{
    /* меняем фон на акцентный */
    background:var(--btn-green-hover);
    /* лёгкое осветление */
    filter:brightness(1.1);
    /* небольшой подъём */
    transform:translateY(-2px);
    /* убираем подчеркивание ссылок */
    text-decoration:none;
}
/* ===============================
   BUTTON ACTIVE PRESS
================================= */
.buttonnext:active{ transform:translateY(0px); filter:brightness(.95);}
/* ===============================
   BUTTON ALIGN RIGHT
   используется только где нужно
================================= */
.btn-right{ float:right; margin-top:10px;}

/* ===============================
   BASE BUTTON
   базовый стиль всех кнопок сайта
================================= */
.button{
    /* расположение */
    display:inline-flex;
    align-items:center;
    justify-content:center;
    /* размер */
    padding:8px 18px;
    /* форма */
    border-radius:999px;
    /* текст */
    font-family:"Segoe UI","Inter",system-ui,sans-serif;
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;
    /* убираем подчеркивание ссылок */
    text-decoration:none;
    /* цвета */
    color:var(--text);
    /* граница */
    border:1px solid var(--border);
    /* тень */
    box-shadow:var(--shadow-soft);
    /* плавность */
    transition:all .25s ease;
}
/* ===============================
   PRIMARY BUTTON
   основная кнопка сайта
================================= */
.button-primary{ background:var(--accent-gradient); border:none; color:#fff;}
.button-primary:hover{transform:translateY(-2px);filter:brightness(1.08);}
/* ===============================
   SECONDARY BUTTON
   вторичная кнопка
================================= */
.button-secondary{ background:var(--surface); color:var(--text);}
.button-secondary:hover{ background:var(--block); transform:translateY(-2px);}
/* ===============================
   GHOST BUTTON
   минималистичная кнопка
================================= */
.button-ghost{ background:transparent; border:1px solid var(--border); box-shadow:none;}
.button-ghost:hover{ background:var(--surface); transform:translateY(-1px);}
/* ===============================
   ACCENT GLOW EFFECT
   мягкое свечение при наведении
================================= */
.button-primary:hover{box-shadow: 0 4px 12px rgba(0,0,0,.25), 0 0 12px rgba(74,163,255,.35);}
/* ===============================
   GREEN READMORE BUTTON
   кнопка "Подробнее"
================================= */
.button-readmore{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:2px 16px;
    margin-bottom:10px;
    font-family:"Segoe UI","Inter",system-ui,sans-serif;
    font-size:18px;
    font-weight:600;
    color:#fff;
    text-decoration:none;
    background:var(--hdback);
    border-radius:999px;
    border:none;
    box-shadow:var(--shadow-soft);
    transition:all .25s ease;
    text-decoration:none;
}
/* ===============================
   GREEN BUTTON HOVER
================================= */
.button-readmore:hover{ background:var(--btn-green-hover);transform:translateY(-1px);box-shadow:var(--shadow-soft);
 color:#907030; text-decoration:none;
}
/* ===============================
   READMORE ARROWS >>
================================= */
.button-readmore::after{ content: "»»"; font-size:14px; color:var(--btn-green);opacity:.9; transition:transform .25s ease;}
.button-readmore:hover::after{ transform:translateX(3px);}
/* ===============================
   HR STYLE
   линия разделителя новостей
================================= */
/* hr{ border:none; height:1px; background:linear-gradient( to right,transparent,var(--border),transparent); margin:20px 0;} */

hr{border:none;height:1px;background:linear-gradient(to right,transparent,var(--border),transparent);opacity:.6;}

.d-flex {display: flex; flex-wrap: wrap; flex-direction: row;}
.fd-column {flex-direction: column; flex-wrap: nowrap;} 
.jc-space-between {justify-content: space-between;}
.jc-flex-start {justify-content: flex-start;}
.jc-center {justify-content: center;}
.jc-flex-end {justify-content: flex-end;}
.ai-flex-start {align-items: flex-start;}
.ai-center {align-items: center;}
.ai-flex-end {align-items: flex-end;}
.order-first {order: -1;}
.order-last {order: 10;}
.flex-grow-1, .ui-dialog-title, .ac-form__bottom .comments_subscribe {flex: 1 1 0; max-width: 100%; min-width: 50px;}
.flex-grow-1-column {flex: 1 0 min-content}
.pi-center {display: inline-grid; place-items: center;}
.ta-center {text-align: center;}
.gap-10 {gap: 10px;}
.d-grid-items {display: grid; gap: 20px; grid-template-columns: repeat(auto-fill,minmax(180px,1fr));}
.d-grid-items > *:not(.grid-item), #dle-content > *:not(.grid-item) {grid-column: 1 / -1;}
.d-grid-items--main {gap: 20px; grid-template-columns: repeat(2,minmax(0,1fr));}
/**/
*, *::before, *::after {box-sizing: border-box;}

/* -----------------------------------------------
Обрезаем рекламу на нужную ширину --------
-----------------------------------------------  */
/* все рекламные блоки DLE */
.responsive { max-width:100%;min-width:5px;height:auto; display:block;}
[class*="dle_b_"] {display: flex;justify-content: center;}
/* img {max-width:100%;min-width:50px;height: auto;} */
/* [class*="dle_b_"] {max-width: 100%;} */
/* всё внутри них */
/* [class^="dle_b_"] img { max-width: 100%; height: auto; display: block;} */
/* [class*="dle_b_"] img {max-width: 100%;height: auto;} */
/* .wrapper {overflow-x: hidden;} */
[class*="dle_b_"] img { max-width:100%;min-width:10px;height:auto;}