

/* Start:/zooyarmarka/style.css?177549283121484*/
.eventshead {
    padding: 15px 0 40px;
}

:root {
    --cyber-purple-dark: #0a0014;
    --cyber-purple: #1a0033;
    --cyber-purple-light: #330066;
    --cyber-pink: #ff1493;
    --cyber-blue: #00ffff;
}

.event-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
}

.event-item {
    width: 100%;
    box-sizing: border-box;
}

.event-title {
    font-size: 2em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    user-select: none;
    position: relative;
    color: white;
}

.event-banner{
    padding: 40px 20px;
    height: 100%;
    border-radius: 15px;
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 40px;    
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.event-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1em;
    position: relative;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
    box-sizing: border-box;   
    transition: transform 0.3s ease;
}

.event-button:hover{
    transform: translateY(-3px);
}

.event-label {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 0 5px;
    border-radius: 0 0px 0px 6px;
    font-size: 9px;
    color: #1a1a1a;
    background: rgba(255, 215, 0, 0.9);
    z-index: 10;
    pointer-events: none;
}


.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* =======================================================================
   КИБЕР-ЯРМАРКА
   ======================================================================= */
.kiber-banner {
    background: linear-gradient(135deg, #0a0014 0%, #1a0033 25%, #330066 50%, #1a0033 75%, #0a0014 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Анимированная граница */
.kiber-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff1493, #00ffff, #ff1493, #00ffff);
    background-size: 400% 400%;
    animation: border-glow 4s ease infinite;
    border-radius: 15px;
    z-index: -2;
}

.kiber-banner::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #0a0014 0%, #1a0033 25%, #330066 50%, #1a0033 75%, #0a0014 100%);
    border-radius: 13px;
    z-index: -1;
}

@keyframes border-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Матричный фон */
.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Контент баннера */


/* Главный заголовок */
.kiber-title {
    margin-top: 15px !important;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* Стилизация слова K1BERЯРМАРКА */
.kiber-word {
    font-size: 40px;
    background: linear-gradient(45deg, #ff1493, #8a2be2, #ff69b4, #9370db, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.kiber-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 20, 147, 0.2) 25%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(255, 20, 147, 0.2) 75%, 
        transparent 100%
    );
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.kiber-word::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff1493, #00ffff);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px #00ffff;
}

/* Остальная часть заголовка */
.title-rest {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}


/* Стили кнопок */
.cyber-button {
    background: linear-gradient(45deg, #1a0033, #330066, #1a0033);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff1493, #00ffff, #ff1493, #00ffff);
    background-size: 400% 400%;
    animation: border-glow 4s ease infinite;
    border-radius: 10px;
    z-index: -2;
}

.cyber-button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(45deg, #1a0033, #330066, #1a0033);
    border-radius: 8px;
    z-index: -1;
}

/* Кнопка "Как это было" */
.cyber-button.history {
    background: linear-gradient(45deg, #1a0033, #330066, #1a0033);
}

.cyber-button.history::after {
    background: linear-gradient(45deg, #1a0033, #330066, #1a0033);
}

.cyber-button.history:hover {
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
    color: #ff1493;
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.8);
}

/* Кнопка "Победители и призы" */
.cyber-button.winners {
    background: linear-gradient(45deg, #0a0033, #001a33, #0a0033);
}

.cyber-button.winners::after {
    background: linear-gradient(45deg, #0a0033, #001a33, #0a0033);
}

.cyber-button.winners:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

/* Общие эффекты при наведении на баннер */
.kiber-banner:hover .kiber-word {
    font-weight: 900;
    transform: scale(1.05) perspective(1000px) rotateX(5deg);
    text-shadow: 
        0 0 20px #ff1493,
        0 0 40px #ff1493,
        0 0 60px #ff1493,
        0 0 80px #ff1493,
        0 0 100px rgba(255, 20, 147, 0.8),
        0 0 120px rgba(255, 20, 147, 0.6),
        2px 2px 0px #00ffff,
        4px 4px 0px rgba(0, 255, 255, 0.5);
    filter: 
        drop-shadow(0 0 30px rgba(255, 20, 147, 1))
        drop-shadow(0 0 50px rgba(255, 20, 147, 0.8))
        drop-shadow(0 0 70px rgba(255, 20, 147, 0.6));
    animation: glitch 0.3s ease-in-out, intense-glow 1.5s ease-in-out infinite alternate;
}

.kiber-banner:hover .kiber-word::before {
    opacity: 1;
    animation: neon-pulse-intense 1s ease-in-out infinite alternate;
}

.kiber-banner:hover .kiber-word::after {
    width: calc(100% + 20px);
}

.kiber-banner:hover .title-rest {
    text-shadow: 
        0 0 15px #00ffff,
        0 0 25px #00ffff,
        0 0 35px rgba(0, 255, 255, 0.5);
}

/* Анимации */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glitch {
    0%, 100% { transform: scale(1.05) perspective(1000px) rotateX(5deg); }
    20% { transform: scale(1.05) perspective(1000px) rotateX(5deg) translateX(-2px); }
    40% { transform: scale(1.05) perspective(1000px) rotateX(5deg) translateX(2px); }
    60% { transform: scale(1.05) perspective(1000px) rotateX(5deg) translateX(-1px); }
    80% { transform: scale(1.05) perspective(1000px) rotateX(5deg) translateX(1px); }
}

@keyframes intense-glow {
    0% { 
        text-shadow: 
            0 0 20px #ff1493,
            0 0 40px #ff1493,
            0 0 60px #ff1493,
            0 0 80px #ff1493,
            0 0 100px rgba(255, 20, 147, 0.8),
            0 0 120px rgba(255, 20, 147, 0.6),
            2px 2px 0px #00ffff,
            4px 4px 0px rgba(0, 255, 255, 0.5);
    }
    100% { 
        text-shadow: 
            0 0 30px #ff1493,
            0 0 60px #ff1493,
            0 0 90px #ff1493,
            0 0 120px #ff1493,
            0 0 150px rgba(255, 20, 147, 1),
            0 0 180px rgba(255, 20, 147, 0.8),
            2px 2px 0px #00ffff,
            4px 4px 0px rgba(0, 255, 255, 0.7);
    }
}

@keyframes neon-pulse-intense {
    0% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 20, 147, 0.4) 25%, 
            rgba(0, 255, 255, 0.4) 50%, 
            rgba(255, 20, 147, 0.4) 75%, 
            transparent 100%
        );
        box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
    }
    100% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 20, 147, 0.8) 25%, 
            rgba(0, 255, 255, 0.8) 50%, 
            rgba(255, 20, 147, 0.8) 75%, 
            transparent 100%
        );
        box-shadow: 0 0 40px rgba(255, 20, 147, 1);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.8; 
    }
}

/* =======================================================================
   Зооярмарка 2024
   ======================================================================= */

.zoo2024-banner {
    background: linear-gradient(135deg, #2B2A28 0%, #3A3120 100%);
    overflow: hidden;
}


.zoo2024-banner::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 193px;
    left: -40px;
    top: -40px;

    background: url('/zooyarmarka/files/sun.png') no-repeat center / contain;
    filter: brightness(0) saturate(100%) invert(78%) sepia(95%) saturate(900%) hue-rotate(360deg);
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease, opacity 0.6s ease;
    transform-origin: 60% 60%;
}

.zoo2024-banner:hover::before {
    transform: scale(0.85);
    opacity: 0.3;
    animation: sun-sway 5s ease-in-out infinite;
}

.zoo2024-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 189px;
    right: -30px;
    bottom: -30px;
    background: url('/zooyarmarka/files/palm.png') no-repeat center / contain;

    filter: brightness(0) saturate(100%) invert(78%) sepia(95%) saturate(900%) hue-rotate(360deg);
    opacity: 0.3;

    pointer-events: none;
    z-index: 1;

}

@keyframes sun-float {
    0%, 100% { transform: scale(1) translateY(0) rotate(0deg); }
    50%      { transform: scale(1) translateY(10px) rotate(3deg); }
}

@keyframes sun-sway {
    0%, 100% { rotate: -6deg; }
    50%      { rotate:  6deg; }
}

.zoo2024-logo {
    max-width: 150px;
}
.zoo2024-button {
    background: #e25636;
    text-transform: uppercase;
    color: white;
}

.zoo2024-button:hover {
    font-weight: 700;
    color: white;    
}

/* =======================================================================
   Зимний марафон 25
   ======================================================================= */

.winter25-banner {
    background: #860507;
    overflow: visible;
}

.winter25-title {
    font-family: "Pacifico", cursive !important;
    font-weight: 400;
    padding-top: 10px;
    line-height: 40px;    
    background: linear-gradient(
        180deg,
        #fff4cf 0%,
        #fec06d 45%,
        #c98a12 100%
    );
    text-transform: none;
    font-size: 50px;
    height: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;  
}

.winter25-button {
    background: #ffe9cf;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .10);
    color: #2b1b14;
    text-transform: uppercase;
}

.winter25-button:hover {
    font-weight: 700;   
}

.winter25-label {
    border-radius: 9px;
}

.evroyear-hero__decor{
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5; 
}

.evroyear-hero__decor > span{
    position: absolute;
    top: -15px; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

.evroyear-hero__decor--left{
    left: -30px;
    width: 200px;
    height: 188px;
    background-image: url("/zooyarmarka/evroyear/steps/left.png");
}

.evroyear-hero__decor--center{
    left: 50%;
    top: -8px !important;
    transform: translateX(-50%);
    width: 240px;
    height: 50px;
    background-image: url("/zooyarmarka/evroyear/steps/center.png");
}

.evroyear-hero__decor--right{
    right: -30px;
    width: 200px;
    height: 188px;
    background-image: url("/zooyarmarka/evroyear/steps/right.png");
}

.evroyear-snow{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  z-index: 3;
}

/* общий слой */
.evroyear-snow::before,
.evroyear-snow::after{
  content:"";
  position:absolute;
  inset:-200px 0 0 0; 
  background-repeat: repeat;
  will-change: background-position;
  background-position: 0 0;
}


.evroyear-snow::before{
  background-image:
    radial-gradient(2px 2px at 10% 10%, rgba(255,255,255,.95) 55%, transparent 60%),
    radial-gradient(2.4px 2.4px at 25% 30%, rgba(255,255,255,.85) 55%, transparent 60%),
    radial-gradient(1.8px 1.8px at 40% 15%, rgba(255,255,255,.90) 55%, transparent 60%),
    radial-gradient(2.2px 2.2px at 55% 25%, rgba(255,255,255,.88) 55%, transparent 60%),
    radial-gradient(2.6px 2.6px at 70% 12%, rgba(255,255,255,.80) 55%, transparent 60%),
    radial-gradient(2px 2px at 85% 28%, rgba(255,255,255,.92) 55%, transparent 60%);

  background-size: 180px 180px;   /* было 320 — стало чаще */
  animation: snowBig 14s linear infinite; /* чуть быстрее, но не дергается */
  opacity: .85;
}

.evroyear-snow::after{
  background-image:
    radial-gradient(1.2px 1.2px at 12% 20%, rgba(255,255,255,.70) 55%, transparent 60%),
    radial-gradient(1px 1px at 28% 45%, rgba(255,255,255,.65) 55%, transparent 60%),
    radial-gradient(1.3px 1.3px at 48% 30%, rgba(255,255,255,.72) 55%, transparent 60%),
    radial-gradient(1.1px 1.1px at 65% 50%, rgba(255,255,255,.68) 55%, transparent 60%),
    radial-gradient(1.2px 1.2px at 82% 35%, rgba(255,255,255,.70) 55%, transparent 60%);

  background-size: 130px 130px;  /* было 220 — стало плотнее */
  animation: snowMid 20s linear infinite;
  opacity: .65;
}


@keyframes snowBig{
  from { background-position: 0 0; }
  to   { background-position: 120px 700px; } 
}

@keyframes snowMid{
  from { background-position: 0 0; }
  to   { background-position: -60px 800px; }
}



/* =======================================================================
   Адаптивы
   ======================================================================= */

@media (max-width: 768px) {
    .event-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .event-title {
        font-size: 2em;
    }
    
    .buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .event-button {
        min-width: 180px;
    }
    
    .event-banner {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .event-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }    
    .event-title {
        font-size: 2em;
    }
    
    .event-button {
        min-width: 160px;
        font-size: 0.9em;
    }
    
    .event-banner {
        padding: 25px 10px;
    }
    .winter25-title {
        margin-bottom: -10px;
        padding-top: 30px;
    } 
}

/* =======================================================================
   Зооярмарка 2026 
   ======================================================================= */

.zoo26-ev-banner{background:#1a1210;overflow:hidden;transition:background .4s}
.zoo26-ev-banner:hover{background:#1e1614}

.zoo26-ev-label{
  position:absolute;top:6px;right:8px;z-index:20;pointer-events:none;
  display:flex;align-items:center;gap:3px;
}
.zoo26-ev-label-fire{
  font-size:16px;
  animation:zoo26evFlk 1.5s ease-in-out infinite alternate;
  filter:drop-shadow(0 0 4px rgba(255,61,0,.6));
}
@keyframes zoo26evFlk{0%{transform:scale(1) rotate(-5deg)}100%{transform:scale(1.2) rotate(5deg)}}
.zoo26-ev-label-text{
  font-size:10px;font-weight:700;letter-spacing:.5px;
  background:linear-gradient(180deg,#ffa040,#ff6b2c,#ff3d00);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  filter:drop-shadow(0 0 3px rgba(255,61,0,.4));
}

/* Градусник */
.zoo26-ev-thermo{
  position:absolute;z-index:10;display:flex;flex-direction:column;align-items:center;
  right:16px;top:50%;transform:translateY(-50%);
}
.zoo26-ev-thermo-tube{
  width:5px;height:80px;border-radius:3px;
  background:rgba(255,255,255,.06);overflow:hidden;position:relative;
}
.zoo26-ev-thermo-fill{
  position:absolute;bottom:0;left:0;right:0;border-radius:3px;
  background:linear-gradient(to top,#ff3d00,#ff6b2c,#ffa040);
  animation:zoo26evThFill 3s ease-in-out infinite alternate;
}
@keyframes zoo26evThFill{0%{height:25%}100%{height:85%}}
.zoo26-ev-thermo-bulb{
  width:10px;height:10px;border-radius:50%;background:#ff3d00;margin-top:-1px;
  box-shadow:0 0 6px rgba(255,61,0,.4);
}
.zoo26-ev-thermo-lbl{
  font-size:7px;color:rgba(250,240,230,.2);writing-mode:vertical-rl;
  letter-spacing:1px;margin-top:4px;text-transform:uppercase;
}

/* Свечение снизу */
.zoo26-ev-glow{
  position:absolute;bottom:-4px;left:20px;right:20px;height:50px;z-index:4;
  background:radial-gradient(ellipse at center bottom,rgba(255,61,0,.1),transparent 70%);
  pointer-events:none;border-radius:50%;
}

.zoo26-ev-grill{
  position:absolute;bottom:0px;left:0;width:100%;height:40px;z-index:5;pointer-events:none;
}

/* Пар */
.zoo26-ev-steam{
  position:absolute;top:0;left:0;right:0;height:160px;z-index:5;
  pointer-events:none;
}
.zoo26-ev-st{
  position:absolute;bottom:0;width:60px;opacity:0;
  animation:zoo26evSteam var(--sd) ease-in-out infinite var(--sdl);
}
.zoo26-ev-st::before{
  content:'';display:block;width:100%;height:70px;
  background:radial-gradient(ellipse,rgba(255,255,255,.1),transparent 60%);filter:blur(10px);
}
@keyframes zoo26evSteam{
  0%{opacity:0;transform:translateY(60px) scaleX(.4)}
  20%{opacity:.65}
  50%{opacity:.75;transform:translateY(-10px) scaleX(1.6) translateX(var(--sx))}
  70%{opacity:.95;transform:translateY(-40px) scaleX(1.2) translateX(var(--sx))}
  100%{opacity:.25;transform:translateY(-60px) scaleX(.6) translateX(calc(var(--sx)*-1.5))}
}

/* Заголовок */
.zoo26-ev-title{line-height:1.1 !important;margin-bottom:8px !important}
.zoo26-ev-title{
  text-transform:none !important;
  font-size:28px !important;
  animation:zoo26evTitleSway 4s ease-in-out infinite;
}

@keyframes zoo26evTitleSway{
  0%,100%{transform:rotate(0deg) skewX(0deg)}
  25%{transform:rotate(.2deg) skewX(.3deg)}
  50%{transform:rotate(-.3deg) skewX(-.2deg)}
  75%{transform:rotate(.2deg) skewX(.2deg)}
}
.zoo26-ev-fire{
  font-size:24px;display:inline-block;
  animation:zoo26evFlk 1.5s ease-in-out infinite alternate;
}
.zoo26-ev-name{color:#ff6b2c}
.zoo26-ev-20{color:#0891b2;font-weight:800}
.zoo26-ev-26{color:#0891b2;font-weight:800}
.zoo26-ev-banner .banner-content{
    justify-content: center;
    gap: 20px;
}
/* Кнопка */
.zoo26-ev-btn{
  background:linear-gradient(135deg,#0891b2,#22d3ee) !important;
  color:white !important;text-transform:uppercase;
  font-weight:700;letter-spacing:1px;
  box-shadow:0 0 20px rgba(34,211,238,.15);
  transition:all .3s !important;
}
.zoo26-ev-btn:hover{
  box-shadow:0 0 30px rgba(34,211,238,.3),0 8px 24px rgba(0,0,0,.3) !important;
  color:white !important;
}

.zoo26-ev-sp{
  position:absolute;width:2px;height:2px;border-radius:50%;bottom:0;
  pointer-events:none;
  animation:zoo26evSpark var(--d) ease-out infinite var(--dl);
}
@keyframes zoo26evSpark{
  0%{opacity:.7;transform:translate(0,0)}
  20%{transform:translate(var(--x1),var(--y1))}
  50%{opacity:.4;transform:translate(var(--x2),var(--y2))}
  100%{opacity:0;transform:translate(var(--x3),var(--y3)) scale(0)}
}
/* End */


/* Start:/bitrix/templates/aspro_max/components/bitrix/news.list/content-list-blocks/style.min.css?17486647023980*/
.content-list-blocks-view .item__column{margin-bottom:28px}@media screen and (min-width:568px) and (max-width:767px){.content-list-blocks-view .item__column.col-xs-12{width:50%}}@media screen and (min-width:768px){.content-list-blocks-view .item__column{margin-bottom:32px}}@media screen and (min-width:568px){.content-list-blocks-view .item_wrap{height:100%}}@media screen and (min-width:768px){.content-list-blocks-view .item__column:hover{z-index:1}.content-list-blocks-view .item_wrap:hover .order_service_in_list--abs,.content-list-blocks-view .item_wrap:hover .services_buy_block--abs{opacity:1;pointer-events:all;border-color:#fff}}@media screen and (min-width:992px){.content-list-blocks-view .item_wrap:hover .order_service_in_list--abs,.content-list-blocks-view .item_wrap:hover .services_buy_block--abs{box-shadow:0 10px 20px 0 rgb(0 0 0 / 10%)}}@media screen and (max-width:991px){.content-list-blocks-view .item_wrap:hover{border-color:var(--stroke_black);background-color:initial}}.content-list-blocks-view .item{display:flex;flex-direction:column}.content-list-blocks-view .item .body-info{display:flex;flex-direction:column;flex-grow:1;justify-content:space-between;padding:23px 28px}.content-list-blocks-view .item .title{margin-bottom:14px}.content-list-blocks-view .item .previewtext.item__preview-text{margin-bottom:16px;margin-top:0}.content-list-blocks-view .properties{margin-bottom:17px}.content-list-blocks-view .properties .inner-wrapper{position:relative;padding:0 10px}.content-list-blocks-view .properties .inner-wrapper::before{background-color:#333;background-color:var(--fill_dark_light_hover);border-radius:50%;content:"";display:block;height:3px;left:0;position:absolute;top:12px;width:3px}.content-list-blocks-view .prices{display:flex}.content-list-blocks-view .prices .price_old{margin-left:10px;text-decoration:line-through}.content-list-blocks-view .sale_block{margin:9px 0 2px}.services_buy_block--abs .counter_wrapp{display:flex;padding-top:0;margin-bottom:0}.services_buy_block--abs .counter_block_inner{margin-bottom:0;width:50%;min-width:unset}.services_buy_block--abs .button_block{margin-bottom:0;width:50%}.order_service_in_list--abs .btn,.services_buy_block--abs .btn,.services_buy_block--abs .counter_wrapp .button_block.wide .btn.in-cart{width:100%}.content-sections1~.content-list-blocks-view{margin-top:32px}.bx-touch .services_buy_block--abs{margin-top:15px}.bx-touch .order_service_in_list--abs .btn-exlg,.bx-touch .services_buy_block--abs .btn-exlg{padding:12px 21px 11px}.bx-touch .services_buy_block--abs .counter_block.big,.bx-touch .services_buy_block--abs .counter_block.big input[type=text]{height:100%}.property .darken{word-break:break-word}@media screen and (max-width:991px){.bx-no-touch .services_buy_block--abs{margin-top:15px}.bx-no-touch .order_service_in_list--abs .btn-exlg,.bx-no-touch .services_buy_block--abs .btn-exlg{padding:12px 21px 11px}.bx-no-touch .services_buy_block--abs .counter_block.big,.bx-no-touch .services_buy_block--abs .counter_block.big input[type=text]{height:100%}}@media screen and (min-width:992px){.bx-no-touch .order_service_in_list--abs,.bx-no-touch .services_buy_block--abs{border-radius:0 0 4px 4px;left:-1px;opacity:0;overflow:hidden;pointer-events:none;position:absolute;right:-1px;top:100%;z-index:1}.bx-no-touch .services_buy_block--abs .counter_block_inner{border-radius:0 0 0 4px;margin-bottom:0;margin-right:0;width:50%}.bx-no-touch .services_buy_block--abs .counter_block{border-bottom:unset;border-left:unset;border-radius:0 0 0 4px;border-right:unset;height:100%}.bx-no-touch .services_buy_block--abs .button_block{border-radius:0 0 4px 4px;border-radius:0;margin-bottom:0;width:100%}.bx-no-touch .services_buy_block--abs .button_block .btn,.order_service_in_list--abs .btn{border-radius:inherit;height:100%}.bx-no-touch .services_buy_block--abs .counter_block_inner+.button_block:not(.wide){border-radius:0 0 4px 0;width:50%}.order_service_in_list--abs{margin-top:0}}
/* End */
/* /zooyarmarka/style.css?177549283121484 */
/* /bitrix/templates/aspro_max/components/bitrix/news.list/content-list-blocks/style.min.css?17486647023980 */
