/* =========================================================================
   Скупка123.рф — статическая копия сайта (HTML5 / CSS3 / Vanilla JS)
   Структура:
     1. Переменные и сброс
     2. Типографика
     3. Сетка (container / row / col)
     4. Кнопки и общие утилиты
     5. Шапка (desktop) и мобильная шапка
     6. Первый экран (promo)
     7. Секция «Оценка товара за 5 минут» / «Бесплатный выезд» (zakaz)
     8. «Что мы покупаем?» (drawer)
     9. «Мы ценим доверие наших клиентов» (trust)
    10. Отзывы (extra)
    11. Преимущества (advantages)
    12. FAQ + 4 шага
    13. Корпоративным клиентам
    14. Трейд-ин (swap)
    15. «Остались вопросы?»
    16. Контакты
    17. Копирайт
    18. Формы (pweb-стилистика оригинала)
    19. Модальные окна
    20. Плавающий мессенджер-виджет
    21. Медиазапросы
   ========================================================================= */

/* ------------------------------------------------------------------ 1 --- */

@font-face {
  font-family: GothaProLig;
  src: url("../fonts/GothaProLig.otf") format("opentype");
  font-display: swap;
}

:root {
  --yellow: #fedd00;
  --black: #000;
  --text: #333;
  --link: #f90;
  --link-alt: #f89406;
  --white: #fff;
  --grey-line: #d4d4d4;
  --input-border: #aaa;
  --container: 1010px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 10px;                 /* базовый rem оригинала */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: var(--text);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  /* как в оригинале: padding у картинок увеличивает их габарит */
  box-sizing: content-box;
}

.vtem-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* clearfix bootstrap-3 (в т.ч. предотвращает схлопывание margin) */
.clearfix::before,
.clearfix::after,
.container::before,
.container::after,
.container-fluid::before,
.container-fluid::after,
.row::before,
.row::after {
  content: " ";
  display: table;
}

.clearfix::after,
.container::after,
.container-fluid::after,
.row::after {
  clear: both;
}

/* ------------------------------------------------------------------ 2 --- */

h1, h2, h3, h4, p, li, a, span, em, strong {
  font-family: GothaProLig, "Comic Sans MS", cursive;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4 {
  margin: 20px 0 10px;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; font-weight: 700; }

p {
  margin: 0 0 10px;
}

ul, ol {
  margin: 0 0 10px;
  padding-left: 40px;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--link);
  text-decoration: underline;
}

.reset-list {
  padding: 0;
  list-style: inside none disc;
}

.bold { font-weight: bold; }
.nowrap { white-space: nowrap; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.pull-right { float: right; }
.pull-left { float: left; }
.display-inline-block { display: inline-block; }

h2.title { font-size: 36pt; }

/* ------------------------------------------------------------------ 3 --- */

.container,
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) { .container { width: 750px; } }
@media (min-width: 992px) { .container { width: 970px; } }
@media (min-width: 1200px) { .container { width: var(--container); } }

.row {
  margin-right: -15px;
  margin-left: -15px;
}

[class*="col-"] {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-6 { float: left; width: 50%; }
.col-xs-12 { float: left; width: 100%; }

@media (min-width: 992px) {
  .col-md-2, .col-md-3, .col-md-4, .col-md-5,
  .col-md-6, .col-md-7, .col-md-9, .col-md-10, .col-md-12 { float: left; }
  .col-md-2  { width: 16.66666667%; }
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.33333333%; }
  .col-md-5  { width: 41.66666667%; }
  .col-md-6  { width: 50%; }
  .col-md-7  { width: 58.33333333%; }
  .col-md-9  { width: 75%; }
  .col-md-10 { width: 83.33333333%; }
  .col-md-12 { width: 100%; }
}

/* блоки vtem */
.vtem-section {
  padding-top: 60px;
  padding-bottom: 15px;
}

.vtem-block {
  position: relative;
}

/* видимость по брейкпоинтам (аналог bootstrap 3) */
@media (max-width: 991px) {
  .hidden-sm-down { display: none !important; }
}
@media (min-width: 992px) {
  .hidden-md-up { display: none !important; }
}

/* ------------------------------------------------------------------ 4 --- */

.btn {
  display: inline-block;
  margin-bottom: 0;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.42857143;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid var(--yellow);
  border-radius: 10px;
  color: var(--black);
  background: var(--yellow);
  -webkit-appearance: none;
  transition: color .2s, background .2s, border-color .2s;
}

.btn:hover,
.btn:focus {
  border: 2px solid var(--white);
  border-radius: 10px;
  color: var(--yellow);
  background: var(--black);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--yellow);
  border-color: var(--yellow);
}

a.btn-link-wrap,
a.btn-link-wrap:hover {
  text-decoration: none;
}

/* ------------------------------------------------------------------ 5 --- */

.section-header {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--black);
  width: 100%;
  z-index: 999;
}

.section-header .position-language,
.section-header .position-search,
.section-header .vtem-menu {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 37px;
  height: 40px;
}

.brand-text {
  display: block;
  text-align: center;
  font-size: 14pt;
  font-weight: 700;
  line-height: 26.6667px;
  color: var(--white);
}

.brand-text .accent { color: var(--yellow); }

.vtem-menu-wrapper {
  padding: 16px 0;
}

.main-vtem-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.main-vtem-menu > li {
  display: inline-block;
  position: relative;
  margin-left: 2px;
  vertical-align: top;
}

.main-vtem-menu > li > a {
  display: block;
  padding: 20px 5px 0 5px;
  color: var(--white);
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  border-bottom: 1px solid #676767;
  cursor: pointer;
}

.main-vtem-menu > li > a:hover,
.main-vtem-menu > li > a:focus {
  background-color: transparent;
  color: var(--white);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.menu-stick {
  display: none;
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 32px;
  cursor: pointer;
  position: relative;
  text-align: center;
  float: right;
  color: var(--white);
  z-index: 900;
  user-select: none;
}

.menu-stick:hover { font-size: 36px; line-height: 42px; }

.header-phone {
  margin: 0 0 10px;
  text-align: right;
}

.header-phone a { text-decoration: none; }

.header-phone .phone {
  color: var(--white);
  font-size: 16pt;
  font-weight: 700;
  line-height: 30.4762px;
}

.header-call {
  margin: 0 0 10px;
  text-align: right;
}

/* --- мобильная шапка --- */

.section-mobheader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0 5px;
  border-bottom: 2px solid var(--grey-line);
  background-color: var(--black);
  color: var(--white);
  z-index: 999;
}

.section-mobheader .mob-phone {
  margin: 0 0 10px;
  text-align: center;
  clear: both;
}

.section-mobheader .mob-phone a { text-decoration: none; }

.section-mobheader .mob-phone .phone {
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
}

.section-mobheader .mob-call {
  margin: 0;
  text-align: right;
}

.section-mobheader .mob-call .btn {
  background: transparent !important;
  border: 0 !important;
  color: #fff !important;
  font-size: 14px;
  padding: 0;
  text-decoration: underline;
  text-transform: lowercase;
}

.mynavbutton {
  float: right;
  position: relative;
}

#drop001 {
  display: inline-block;
  vertical-align: middle;
  margin: 8px 0;
  padding: 6px 12px;
  background: transparent !important;
  border: 2px solid transparent !important;
  cursor: pointer;
}

#drop001 .icon-bar {
  display: block;
  width: 18px;
  height: 3px;
  background-color: #f5f5f5;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
  margin-bottom: 5px;
}

#drop001 .icon-bar:last-child { margin-bottom: 0; }

.mynavbutton .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 1000;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 24px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.mynavbutton.open .dropdown-menu { display: block; }

.dropdown-menu > li > a {
  display: block;
  padding: 5px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

/* ------------------------------------------------------------------ 6 --- */

.promo {
  background-image: url("../images/promo_bg.jpg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto auto;
  margin-top: 110px;
}

.image-slider { float: left; width: 100%; }

.promo h1,
.hero-title {
  text-align: center;
  margin: 20px 0 10px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

.promo h1 span,
.hero-title span { font-size: 32pt; }

.no-bg { background: none !important; }

.promo-list-wrap {
  float: left;
  padding: 180px 30px;
}

.promoitem {
  list-style: none outside;
  vertical-align: middle;
  padding: 10px 0;
}

.promoitem img {
  border-radius: 50%;
  padding: 15px;
  background: var(--yellow);
}

.promoitem span {
  padding-left: 15px;
  font-size: 20px;
}

.promoitem .pi-ico {
  display: inline;
  vertical-align: middle;
  margin: 0 0 10px;
}

.promoitem .pi-txt {
  display: inline-flex;
  vertical-align: middle;
  margin: 0;
}

.mobile-section-promo {
  background: rgba(0, 0, 0, 0) url("../images/bg.png") repeat scroll 0 0 !important;
}

/* ------------------------------------------------------------------ 7 --- */

.zakaz {
  background-image: url("../images/order_bg.jpg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto auto;
}

.zakaz .zakaz-img {
  float: right;
  margin-top: -100px;
}

/* ------------------------------------------------------------------ 8 --- */

.drawer,
.extra,
.copyright {
  background: url("../images/bg.png") repeat scroll 0 0;
}

.drawer { background-color: rgba(0, 0, 0, .02); }

.drawer .custom { text-align: center; }

.drawer-title-box { min-height: 158px; overflow: hidden; }

.cat-row {
  margin: auto;
  display: table;
  border-bottom: 2px solid var(--grey-line);
}

.cat-card {
  width: 250px;
  height: 350px;
  text-align: left;
  float: left;
  margin: 20px;
}

.cat-card__img {
  height: 125px;
}

.cat-card__img img { margin-left: 0; }

.cat-card h4 { margin: 10px 0; }

.list {
  padding-left: 20px;
}

.list li {
  list-style: none outside;
  font-size: 16px;
}

.js-popup {
  margin-bottom: 0;
  padding-bottom: 0;
}

.drawer-more {
  text-align: center;
}

.drawer-more span { font-size: 14pt; }

/* ------------------------------------------------------------------ 9 --- */

.position-showcase {
  background: url("../images/trust_bg.jpg") no-repeat scroll 0 0;
}

.trust-bg {
  width: 100%;
  background: url("../images/trust_bg.jpg") no-repeat center top;
}

.mobshowcase,
.mobfeature {
  width: 45%;
  min-height: 300px;
  float: right;
}

.mobshowcase h2 {
  font-size: 28pt;
  text-align: left;
  line-height: 1;
  margin: 0;
}

.mobshowcase ul {
  text-align: left;
  padding: 0;
}

.mobshowcase .promoitem p {
  padding-left: 70px;
  line-height: 1;
  margin: 0;
}

.age-note {
  clear: both;
  display: table;
  margin: 0 auto;
  background-color: var(--yellow);
  border-radius: 10px;
  width: 100%;
}

.age-note img {
  float: left;
  vertical-align: middle;
  padding: 20px 10px 20px 40px;
}

.age-note p {
  padding: 20px 40px 20px 10px;
  font-size: 17px;
  margin: 0;
}

/* ----------------------------------------------------------------- 10 --- */

.reviews-grid::after {
  content: "";
  display: table;
  clear: both;
}

.review {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  margin: 15px;
}

.review__avatar {
  border-radius: 50%;
  vertical-align: middle;
  float: left;
  padding-right: 20px;
}

.review__text { font-size: 11px; }

.review__author { font-size: 13px; }

/* ----------------------------------------------------------------- 11 --- */

.custom .row { margin-top: 30px; }

.advantages__item {
  border-radius: 10px;
  margin: .313rem .313rem 1.875rem;
  overflow: hidden;
  position: relative;
  perspective: 1000px;
}

.advantages__flipper {
  position: relative;
  height: 18.875rem;
  transition: .6s;
  transform-style: preserve-3d;
}

.advantages__item:hover .advantages__flipper,
.advantages__item.is-flipped .advantages__flipper {
  transform: rotateY(180deg);
}

.advantages__back,
.advantages__front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18.875rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.advantages__front {
  padding-top: 11.875rem;
  background: var(--yellow);
  font-size: 1.688rem;
  font-weight: 600;
  transform: rotateY(0deg);
  text-align: center;
  z-index: 2;
}

.advantages__front::before {
  border-radius: 50%;
  content: '';
  display: block;
  position: absolute;
  top: 5rem;
  left: 48%;
  width: 5.125rem;
  height: 5.125rem;
  margin-left: -1.563rem;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.advantages__back {
  box-shadow: rgba(0, 0, 0, .3) 0 0 3px;
  border-radius: 10px;
  display: flex;
  flex: 1;
  align-items: center;
  width: 100%;
  padding: .938rem;
  background: #000;
  color: var(--yellow);
  font-size: 1.1rem;
  text-align: center;
  transform: rotateY(180deg);
}

.advantages__item--1 .advantages__front::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 16.6 16.6'%3E%3Cg fill='%23fedd00'%3E%3Cpath d='M16.4 5.4H3.2V3.2h2.4c.1 0 .3-.1.3-.3V.3c0-.2-.1-.3-.3-.3H.3C.1 0 0 .1 0 .3V3c0 .1.1.3.3.3h2.4v2.1H.3c-.2 0-.3.1-.3.2v10.7c0 .1.1.3.3.3h16.1c.1 0 .3-.1.3-.3V5.6c-.1-.1-.2-.2-.3-.2zM.5.5h4.8v2.1H.5V.5zm15.6 5.4v7.5H.5V5.9h15.6zM.5 16.1V14h15.6v2.1H.5z'/%3E%3Ccircle cx='3' cy='8.3' r='.5'/%3E%3Ccircle cx='5.6' cy='8.3' r='.5'/%3E%3Ccircle cx='8.3' cy='8.3' r='.5'/%3E%3Ccircle cx='11' cy='8.3' r='.5'/%3E%3Ccircle cx='13.7' cy='8.3' r='.5'/%3E%3Ccircle cx='3' cy='11' r='.5'/%3E%3Ccircle cx='5.6' cy='11' r='.5'/%3E%3Ccircle cx='8.3' cy='11' r='.5'/%3E%3Ccircle cx='11' cy='11' r='.5'/%3E%3Ccircle cx='13.7' cy='11' r='.5'/%3E%3C/g%3E%3C/svg%3E");
}

.advantages__item--2 .advantages__front::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='16' viewBox='0 0 16.7 8.6'%3E%3Cg fill='%23fedd00'%3E%3Cpath d='M0 0v8.6h16.7V0H0zm16.1 2.7c-1.1-.1-2-1-2.1-2.1h2.1v2.1zm0 .5v2.2c-1.4.1-2.5 1.3-2.7 2.7H3.2C3.1 6.6 2 5.5.5 5.4V3.2C2 3.1 3.1 2 3.2.5h10.2c.2 1.5 1.3 2.6 2.7 2.7zM2.7.5c-.1 1.1-1 2-2.1 2.1V.5h2.1zM.5 5.9c1.1.1 2 1 2.1 2.1H.5V5.9zM14 8.1c.1-1.1 1-2 2.1-2.1v2.1H14z'/%3E%3Cpath d='M8.3 1.3C7.1 1.3 6 2.7 6 4.3s1 3 2.3 3c1.3 0 2.3-1.3 2.3-3s-1-3-2.3-3zm0 5.4c-1 0-1.7-1.1-1.7-2.4 0-1.3.8-2.4 1.7-2.4 1 0 1.7 1.1 1.7 2.4.1 1.3-.7 2.4-1.7 2.4z'/%3E%3Ccircle cx='3.5' cy='4.3' r='.5'/%3E%3Ccircle cx='13.2' cy='4.3' r='.5'/%3E%3C/g%3E%3C/svg%3E");
}

.advantages__item--3 .advantages__front::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' viewBox='0 0 16.8 16.8'%3E%3Cg fill='%23fedd00'%3E%3Cpath d='M6.367 8.978l2.545-2.546.353.354L6.72 9.332zm1.9 1.9l2.545-2.547.354.356L8.62 11.23zm1.9 1.898l2.546-2.545.354.357-2.546 2.545z'/%3E%3Cpath d='M5.8 0H1.3C.6 0 0 .6 0 1.3v4.4l11 11 5.8-5.8L5.8 0zM.5 5.5V1.3c0-.4.4-.8.8-.8h4.2L16 11l-5 5L.5 5.5z'/%3E%3Cpath d='M3 3h1.1v1.1H3z'/%3E%3C/g%3E%3C/svg%3E");
}

.advantages__item--4 .advantages__front::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='31' viewBox='0 0 14 16.6'%3E%3Cpath fill='%23fedd00' d='M8.6 8.3c1.6-.6 2.6-2.2 2.6-4C11.3 1.9 9.4 0 7 0 4.6 0 2.7 1.9 2.7 4.3c0 1.8 1.1 3.3 2.6 4C2.3 9 0 11.8 0 15v1.6h14V15c0-3.2-2.3-6-5.4-6.7zm1.9-5.4c-.5.2-1 .4-1.6.4C7.4 3.2 6 2.3 5.4.9c.5-.2 1-.3 1.5-.3 1.6-.1 3 .9 3.6 2.3zM4.7 1.3c-.2.9-.7 1.6-1.4 2.2.2-.9.7-1.7 1.4-2.2zm-1.5 3v-.1c1-.6 1.7-1.5 2-2.6.8 1.3 2.2 2.2 3.7 2.2.6 0 1.2-.1 1.7-.4.1.3.1.6.1.9 0 2.1-1.7 3.8-3.8 3.8-2 0-3.7-1.7-3.7-3.8zm10.2 11.8H.5V15c0-3.6 2.9-6.4 6.4-6.4s6.4 2.9 6.4 6.4v1.1z'/%3E%3C/svg%3E");
}

.advantages__item--5 .advantages__front::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='23' viewBox='0 0 16.7 14'%3E%3Cpath fill='%23fedd00' d='M16.4 2.7h-5.1C11.1 1.2 9.9 0 8.3 0 6.8 0 5.5 1.2 5.4 2.7H.3c-.2 0-.3.1-.3.3v10.7c0 .1.1.3.3.3h16.1c.1 0 .3-.1.3-.3V3c0-.2-.2-.3-.3-.3zM8.3.5c1.2 0 2.3.9 2.4 2.1H5.9C6.1 1.5 7.1.5 8.3.5zm7.8 2.7v2.2L8.3 8 .5 5.4V3.2h15.6zM.5 13.4V6l7.7 2.6h.2L16.1 6v7.4H.5z'/%3E%3C/svg%3E");
}

.advantages__item--6 .advantages__front::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='17' viewBox='0 0 16.6 8.9'%3E%3Cg fill='%23fedd00'%3E%3Cpath d='M8.3 0C3.7 0 0 3.7 0 8.3v.3h5.9v-.3C5.9 7 7 5.9 8.3 5.9c.6 0 1.1.2 1.5.5L8.5 7.8h-.1c-.4 0-.6.2-.6.5s.2.5.5.5.5-.2.5-.5v-.1l1.4-1.4c.3.4.5.9.5 1.5v.3h5.9v-.3c0-4.6-3.7-8.3-8.3-8.3zm3 8.1c-.1-.6-.3-1.2-.7-1.6l2.7-2.7-.4-.4-2.7 2.7c-.5-.5-1.2-.7-1.9-.7-1.5 0-2.8 1.2-2.9 2.7H.5C.6 3.9 4.1.6 8.3.6c4.2 0 7.6 3.3 7.8 7.5h-4.8z'/%3E%3Cpath d='M8.1 1.6h.5v2.7h-.5zM5.305 5.625l-1.91-1.91.354-.352 1.907 1.91z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ----------------------------------------------------------------- 12 --- */

div.jwts_toggleControlContainer a.jwts_toggleControl {
  display: block;
  padding: 20px;
  color: #000;
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: url("../images/tab_bg.jpg") repeat-x;
  background-position-y: 40%;
  margin-bottom: 1px;
  line-height: normal;
  cursor: pointer;
}

div.jwts_toggleControlContainer a.jwts_toggleControl:hover { text-decoration: none; }

div.jwts_toggleControlContainer a.jwts_toggleOn {
  color: #c64934;
  margin-bottom: 0;
  border-radius: 2px 2px 0 0;
}

div.jwts_toggleControlContainer a.jwts_toggleControl span.jwts_togglePlus,
div.jwts_toggleControlContainer a.jwts_toggleControl span.jwts_toggleMinus { display: none; }

div.jwts_toggleControlContainer a.jwts_toggleOff span.jwts_toggleControlTitle {
  line-height: normal;
  background: url("../images/arrows.png") no-repeat 0 -1px;
  padding-left: 20px;
}

div.jwts_toggleControlContainer a.jwts_toggleOn span.jwts_toggleControlTitle {
  line-height: normal;
  background: url("../images/arrows.png") no-repeat 0 -146px;
  padding-left: 20px;
}

div.jwts_toggleControlContainer a.jwts_toggleOn span.jwts_toggleControlNotice {
  color: #999;
  font-size: 10px;
  display: block;
  float: right;
  line-height: 14px;
  vertical-align: bottom;
}

div.jwts_toggleControlContainer a.jwts_toggleOff span.jwts_toggleControlNotice { display: none; }

.jwts_clr { display: block; clear: both; height: 0; line-height: 0; margin: 0; padding: 0; border: 0; }

.jwts_toggleContent { display: none; }
.jwts_toggleContent.is-open { display: block; }

div.jwts_content {
  padding: 20px 30px;
  margin-bottom: 1px;
  border: 1px solid #ccc;
  border-top: 0;
  border-radius: 0 0 2px 2px;
}

.steps {
  list-style: none;
  margin: 1.25rem -12px 5.625rem;
  padding: 0;
  counter-reset: myCounter;
  overflow: hidden;
  position: relative;
}

.steps__item {
  position: relative;
  background-color: transparent;
  background-image: url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBAQFBAYFBQYJBgUGCQsIBgYICwwKCgsKCgwQDAwMDAwMEAwODxAPDgwTExQUExMcGxsbHB8fHx8fHx8fHx//2wBDAQcHBw0MDRgQEBgaFREVGh8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx//wgARCABlAGUDAREAAhEBAxEB/8QAGAABAQEBAQAAAAAAAAAAAAAAAAIDAQf/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIQAxAAAAH1QAkgkHSjQAAGRAAAOmpQBkQAAAAbFEmIAAAAOm5kQAAAAAaEHAAAAADoOAAAAAHTpIAAAABRRmAAAAAbFGBwAAAAs1BJiAAACjYAEmRwAAs1AAAMyDhRoUAD/8QAHxAAAQIHAQEAAAAAAAAAAAAAAQAwAhAREiAhMUEi/9oACAEBAAEFApkq4qpW1Uq7MlgHCItAyJb9UXW6/J6346et+ROU03CJkPEIjIQsG1alpCmP/8QAFBEBAAAAAAAAAAAAAAAAAAAAcP/aAAgBAwEBPwEp/8QAFBEBAAAAAAAAAAAAAAAAAAAAcP/aAAgBAgEBPwEp/8QAFBABAAAAAAAAAAAAAAAAAAAAcP/aAAgBAQAGPwIp/8QAIhAAAQQDAAICAwAAAAAAAAAAAQAQIUERIDFRYXGRMNHw/9oACAEBAAE/IXCEfgXsWfJDzoHaBB5tn5zcZ8rP3umWKUKFChQoUKFSzD22IfipA4Bi+ilSpUqVKlSpVN+jcrSFkLKHrVpTXpSFtaVtg/dDILU1tW1KIyMLhVNbU1tCATnw+eb1prYAkoDA0CflEHXprRD2AgAN/wCAyML3yvD3X//aAAwDAQACAAMAAAAQkkEAAkkkkkkAkkAAAAEkkkkkgkEgkkkEEgAgkEkEEkEkkAgkgkkgEAkEgkAAEgkgEggkEkAkkkgkAkkkEgEkn//EABQRAQAAAAAAAAAAAAAAAAAAAHD/2gAIAQMBAT8QKf/EABQRAQAAAAAAAAAAAAAAAAAAAHD/2gAIAQIBAT8QKf/EACcQAAIBAwMDBAMBAAAAAAAAAAABESExQVFxgRBhkSChscHR4fDx/9oACAEBAAE/EOsvlrCG7Qg239zK35MQ/KpaKt0LZafS2kpdhtDxq1IpdkPVkPVkPVkPVkPVjI5TJiVij5ehDRdF+76be5/b+r8tUeeS7WX6Op3dES9CXoS4sNvQl6EubEvQl6Cb0PaPc712JUTi8jnBWHDwRDHgiGCOzwR2eDh4I7PBFVvAl2eB/wB5HdGHP+it63bEqtToYvqRRV0MiVXUrVI1VVIrfAleuRuEex3BJJTlfDPnYrvgy5HZcEVvgSq9+lqq3PoLO7Hsxt6Mlyo7r7IGXdvyJVfAruR2XBFeBXe/S0pW5FeBK+7HPYc9iodKp8M7ZsxRL4KS5HELgp4CiXuU3jiVuUngw92Nd35I7vyc+J5uKY2RptTuoJq5HZcE+wTq9+luq3J9grPkf8goJT5dYMLPcqk01rI7LgzwK7p0t1W59BZ3ZHkqZYhCVl6FrxqINJlVwZ4Fd79Lutz6E1kciCEoXqcRW2ZKuZEScN8r9kZXG37FUpNXCS+yvbuv7+n/2Q==");
  background-position: 50% 0;
  background-repeat: no-repeat;
  counter-increment: myCounter;
  float: left;
  width: 25%;
  padding: 115px 12px 0;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
}

.steps__item::before,
.steps__item::after {
  left: 50%;
  display: block;
  position: absolute;
}

.steps__item::before {
  content: '';
  top: 0;
  width: 100px;
  height: 100px;
  margin-left: -50px;
}

.steps__item::after {
  border-radius: 50%;
  content: counter(myCounter);
  top: 7px;
  width: 20px;
  height: 20px;
  margin-left: -48px;
  background: var(--yellow);
  font-size: 11px;
  line-height: 20px;
  text-align: center;
}

.steps__item:nth-child(1)::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='18' viewBox='0 0 16.7 14'%3E%3Cpath d='M16.7 3c0-1.6-1.3-3-3-3H3C1.3 0 0 1.3 0 3v3h2.7v8H14V5.9h2.7V3zm-3.3 10.4H3.2V5.9h1.9V3.2h6.4v2.7h1.9v7.5zm2.7-8H12V2.7H4.6v2.7H.5V3C.5 1.7 1.6.6 2.9.6h10.7C14.9.6 16 1.7 16 3v2.4z'/%3E%3Cpath d='M8.3 5.4c-1.6 0-3 1.3-3 3 0 1.6 1.3 3 3 3s3-1.3 3-3-1.3-3-3-3zm0 5.3c-1.3 0-2.4-1.1-2.4-2.4C5.9 7 7 5.9 8.3 5.9c1.3 0 2.4 1.1 2.4 2.4 0 1.4-1 2.4-2.4 2.4z'/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 45px auto;
}

.steps__item:nth-child(2)::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='21' viewBox='0 0 14 16.6'%3E%3Cpath d='M8.6 8.3c1.6-.6 2.6-2.2 2.6-4C11.3 1.9 9.4 0 7 0 4.6 0 2.7 1.9 2.7 4.3c0 1.8 1.1 3.3 2.6 4C2.3 9 0 11.8 0 15v1.6h14V15c0-3.2-2.3-6-5.4-6.7zm1.9-5.4c-.5.2-1 .4-1.6.4C7.4 3.2 6 2.3 5.4.9c.5-.2 1-.3 1.5-.3 1.6-.1 3 .9 3.6 2.3zM4.7 1.3c-.2.9-.7 1.6-1.4 2.2.2-.9.7-1.7 1.4-2.2zm-1.5 3v-.1c1-.6 1.7-1.5 2-2.6.8 1.3 2.2 2.2 3.7 2.2.6 0 1.2-.1 1.7-.4.1.3.1.6.1.9 0 2.1-1.7 3.8-3.8 3.8-2 0-3.7-1.7-3.7-3.8zm10.2 11.8H.5V15c0-3.6 2.9-6.4 6.4-6.4s6.4 2.9 6.4 6.4v1.1z'/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 40px auto;
}

.steps__item:nth-child(3)::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 16.6 16.6'%3E%3Cpath d='M8.3 0C3.7 0 0 3.7 0 8.3c0 4.6 3.7 8.3 8.3 8.3 4.6 0 8.3-3.7 8.3-8.3 0-4.6-3.7-8.3-8.3-8.3zm0 16.1C4 16.1.5 12.6.5 8.3S4 .5 8.3.5s7.8 3.5 7.8 7.8-3.5 7.8-7.8 7.8z'/%3E%3Cpath d='M7.8 13.9h1.1V15H7.8zm0-12.2h1.1v1.1H7.8zm6.1 6.1H15v1.1h-1.1zm-12.2 0h1.1v1.1H1.7zm11.7-3.4L8.6 7.8H8L4.5 5.2l-.4.4 3.7 2.7v.6h1.1v-.6l4.8-3.4z'/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 45px auto;
}

.steps__item:nth-child(4)::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='12' viewBox='0 0 16.7 8.6'%3E%3Cpath d='M0 0v8.6h16.7V0H0zm16.1 2.7c-1.1-.1-2-1-2.1-2.1h2.1v2.1zm0 .5v2.2c-1.4.1-2.5 1.3-2.7 2.7H3.2C3.1 6.6 2 5.5.5 5.4V3.2C2 3.1 3.1 2 3.2.5h10.2c.2 1.5 1.3 2.6 2.7 2.7zM2.7.5c-.1 1.1-1 2-2.1 2.1V.5h2.1zM.5 5.9c1.1.1 2 1 2.1 2.1H.5V5.9zM14 8.1c.1-1.1 1-2 2.1-2.1v2.1H14z'/%3E%3Cpath d='M8.3 1.3C7.1 1.3 6 2.7 6 4.3s1 3 2.3 3c1.3 0 2.3-1.3 2.3-3s-1-3-2.3-3zm0 5.4c-1 0-1.7-1.1-1.7-2.4 0-1.3.8-2.4 1.7-2.4 1 0 1.7 1.1 1.7 2.4.1 1.3-.7 2.4-1.7 2.4z'/%3E%3Ccircle cx='3.5' cy='4.3' r='.5'/%3E%3Ccircle cx='13.2' cy='4.3' r='.5'/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 45px auto;
}

.steps__title {
  position: relative;
  margin: 0 0 .625rem;
  font-size: 1.938rem;
  font-weight: 600;
}

.steps__title::before {
  width: 44px;
  height: 21px;
  background-color: transparent;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAVCAMAAAAKL/xWAAAAxlBMVEUAAABlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXBlaXA/mzsBAAAAQXRSTlMACQNRP3XDb2NI8yQnM8YYV5/h27SEQpN+Nqjwrhv8FWCZ3g85+cyllmbY7ZDn9uQhEtJd6s8GhzA8vUXAbHstt4gHLC0AAADSSURBVBgZlcGJUoJQAAXQywMKCERJNExAsiCy1Wyj9f7/TwUDYw6Fvs7BVoqAPFWDPH0P8vZpQJpJ6wAdbKcisKZY7An84vYHHhuHQ3+E2pg8QkswYcvx1AgB2GQUYFM84J96MwUJeTLHj1OPpbM0O8/zmVPScj27YGVx6VyRE6yZ1zdDX71Fy52xZCnySN6jIbQYHfor1iwbu7lL1h4esUOoPqVsjLHNs+9xk4lOL0mRVLJ0wdrKhYTwVX9jqRCQ474X5AekfX5FAeSNpnP8Q/wNWJgs0rvrDkkAAAAASUVORK5CYII=);
  background-position: 0 0;
  background-repeat: no-repeat;
  content: '';
  display: block;
  position: absolute;
  top: -85px;
  left: 0;
  margin-left: -34px;
}

.steps__item:nth-child(3) .steps__title::before {
  top: -63px;
  transform: scale(1, -1);
}

/* ----------------------------------------------------------------- 13 --- */

.corporate {
  background: url("../images/corp_bg.jpg") no-repeat scroll 50% 0;
}

.corp-box {
  border-top: 2px solid var(--yellow);
  border-bottom: 1px solid var(--grey-line);
}

.corp-box p span { font-size: 14pt; }

.corp-actions { margin-top: 30px; }

.corp-actions .corp-btn-wrap { float: left; }

.corp-actions .corp-phone-wrap { float: left; margin-left: 20px; }

.corp-actions .corp-phone-wrap span { font-size: 14pt; }

/* ----------------------------------------------------------------- 14 --- */

.section-swap {
  padding: 25px 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.position-feature {
  background: url("../images/swap_bg.jpg") no-repeat scroll 0 0;
}

.mobfeature h2 {
  font-size: 28pt;
  text-align: left;
  line-height: 1;
  margin: 0;
}

.mobfeature ul {
  text-align: left;
  padding: 0;
}

.mobfeature ul p:first-child {
  padding-left: 30px;
  line-height: 1;
  margin: 0;
}

.swap-actions {
  clear: both;
  float: right;
}

.swap-actions p { float: left; }

.swap-actions .btn {
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13pt;
}

/* ----------------------------------------------------------------- 15 --- */

.question {
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: var(--yellow);
}

.question h2 { text-align: center; }

.question h2 a {
  text-decoration: underline;
  font-size: 26px;
  font-weight: normal;
  color: #000;
}

/* ----------------------------------------------------------------- 16 --- */

.contacts { padding-bottom: 3.125rem; }

.contacts .title { padding-left: 1.563rem; }

.contacts .title--small {
  font-size: 26pt;
  margin-top: 0;
  line-height: 1;
}

.contacts__item {
  display: flex;
  flex: 1;
  align-items: center;
  position: relative;
  width: 100%;
  height: 4.813rem;
  padding-left: 7.313rem;
  list-style: none;
}

.contacts__item::before {
  border-radius: 50%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 1.563rem;
  width: 4.813rem;
  height: 4.813rem;
  background-color: var(--yellow);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.contacts__item + .contacts__item { margin-top: 3rem; }

.contacts__item p { margin: 0; }

.contacts__item--tel2::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='18' viewBox='0 0 16.7 14'%3E%3Cpath d='M16.7 3c0-1.6-1.3-3-3-3H3C1.3 0 0 1.3 0 3v3h2.7v8H14V5.9h2.7V3zm-3.3 10.4H3.2V5.9h1.9V3.2h6.4v2.7h1.9v7.5zm2.7-8H12V2.7H4.6v2.7H.5V3C.5 1.7 1.6.6 2.9.6h10.7C14.9.6 16 1.7 16 3v2.4z'/%3E%3Cpath d='M8.3 5.4c-1.6 0-3 1.3-3 3 0 1.6 1.3 3 3 3s3-1.3 3-3-1.3-3-3-3zm0 5.3c-1.3 0-2.4-1.1-2.4-2.4C5.9 7 7 5.9 8.3 5.9c1.3 0 2.4 1.1 2.4 2.4 0 1.4-1 2.4-2.4 2.4z'/%3E%3C/svg%3E");
}

.contacts__item--email::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='14' viewBox='0 0 16.7 11.3'%3E%3Cpath d='M0 0v11.3h16.7V0H0zm15.5.5L8.3 5.3 1.2.5h14.3zM.5 10.7V.7L8.3 6 16.1.8v10H.5z'/%3E%3C/svg%3E");
}

.contacts__item--clock::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 16.6 16.6'%3E%3Cpath d='M8.3 0C3.7 0 0 3.7 0 8.3c0 4.6 3.7 8.3 8.3 8.3 4.6 0 8.3-3.7 8.3-8.3 0-4.6-3.7-8.3-8.3-8.3zm0 16.1C4 16.1.5 12.6.5 8.3S4 .5 8.3.5s7.8 3.5 7.8 7.8-3.5 7.8-7.8 7.8z'/%3E%3Cpath d='M7.8 13.9h1.1V15H7.8zm0-12.2h1.1v1.1H7.8zm6.1 6.1H15v1.1h-1.1zm-12.2 0h1.1v1.1H1.7zm11.7-3.4L8.6 7.8H8L4.5 5.2l-.4.4 3.7 2.7v.6h1.1v-.6l4.8-3.4z'/%3E%3C/svg%3E");
}

.contacts__item--location::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='22' viewBox='0 0 14 16.9'%3E%3Cpath d='M11.9 2C10.6.7 8.8 0 7 0 5.1 0 3.4.7 2 2-.7 4.7-.7 9.2 2 11.9l5 5 4.9-4.9c2.7-2.8 2.7-7.2 0-10zm-.4 9.5L7 16.1l-4.6-4.6C-.1 9-.1 4.9 2.4 2.4 3.6 1.2 5.3.5 7 .5c1.7 0 3.3.7 4.6 1.9C14 4.9 14 9 11.5 11.5z'/%3E%3Cpath d='M7 4C5.3 4 4 5.4 4 7s1.3 3 3 3c1.6 0 3-1.3 3-3-.1-1.6-1.4-3-3-3zm0 5.4C5.6 9.4 4.6 8.3 4.6 7c0-1.3 1.1-2.4 2.4-2.4 1.3 0 2.4 1.1 2.4 2.4 0 1.3-1.1 2.4-2.4 2.4z'/%3E%3C/svg%3E");
}

#skupka-map {
  width: 100%;
  height: 400px;
  background: #eee;
}

/* ----------------------------------------------------------------- 17 --- */

.copyright {
  border-top: 1px solid rgba(153, 153, 153, .2);
  padding: 30px 0;
  color: #000;
}

.vtemgotop {
  border: 1px solid rgba(130, 130, 130, .3);
  display: block;
  width: 32px;
  height: 32px;
  text-align: center;
  text-decoration: none !important;
  border-radius: 50%;
  position: relative;
  color: var(--link);
}

.vtemgotop::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-left: -5px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

/* ----------------------------------------------------------------- 18 --- */

/* шрифт форм — как в оригинале (mod_pwebcontact) */
.pwebcontact,
.pwebcontact-container,
.pwebcontact-form,
.pweb-input,
.pweb-label label,
.pweb-msg,
.konfa {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 17.1429px;
}

.pwebcontact-form button {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.pwebcontact-form .btn { line-height: 20px; }

.pwebcontact-container { padding: 5px; }

.pweb-fields::after { content: ""; display: table; clear: both; }

.pweb-field-container {
  position: relative;
  margin: 0 0 8px 20px;
}

.pweb-separator-text {
  font-size: 12px;
  line-height: 18px;
  overflow: hidden;                 /* margin потомков остаются внутри */
}

.pweb-separator-text p { margin: 0 0 10px; }

.pweb-label {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: opacity .15s;
}

.pweb-label label {
  display: block;
  padding: 3px 6px 0;
  font-weight: bold;
  font-size: 12px;
  line-height: 17.1429px;
  color: var(--input-border);
  cursor: text;
}

.pweb-asterisk { color: #f00; font-weight: bold; }

.pweb-field-container.is-filled .pweb-label,
.pweb-field-container.is-focused .pweb-label { opacity: 0; }

.pweb-input {
  display: inline-block;
  width: 100%;
  height: 42px;
  line-height: 42px;
  padding: 2px 4px;
  font-family: GothaProLig, "Comic Sans MS", cursive;
  font-size: 13.2px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--input-border);
  border-radius: 10px;
  box-shadow: rgb(187, 187, 187) 0 0 5px 0, rgba(0, 0, 0, .2) 0 1px 2px 0 inset;
  outline: none;
}

.pweb-input:focus { border-color: #E08506; }

.pweb-input.pweb-error { border-color: #f00 !important; }

.pweb-error-msg {
  display: block;
  color: #f00;
  font-size: 11px;
  padding: 2px 4px 0;
}

.pweb-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}

.konfa {
  font-size: 12px;
  line-height: 18px;
}

.konfa a { color: var(--link-alt); }

.pwebcontact-form .pweb-field-buttons .btn {
  padding: 10px 22px;
  font-size: 12px;
  color: #fff;
  box-shadow: rgba(255, 255, 255, .2) 0 1px 0 0 inset, rgba(0, 0, 0, .05) 0 1px 2px 0;
}

.pwebcontact-form .pweb-field-buttons .btn:hover {
  color: var(--yellow);
  background: #000;
}

.pweb-msg {
  font-size: 12px;
  line-height: 16px;
  min-height: 16px;
}

.pweb-msg .pweb-ok { color: #2f7d32; font-weight: bold; }
.pweb-msg .pweb-err { color: #f00; font-weight: bold; }

/* --- статические формы в секциях zakaz --- */

.static-zakaz .pweb-field-container { float: left; }

.static-zakaz .pweb-separator-text { width: calc(100% - 20px); }

.static-zakaz .pweb-separator-text.w400 { width: 400px; }

.static-zakaz .pweb-field-phone { width: 178px; max-width: 100%; }



.static-zakaz .pweb-field-buttons { width: auto; }

.static-zakaz label { padding: 13px 6px !important; }

.static-zakaz button.btn {
  border: none !important;
  background: #000 !important;
  font-size: 14px !important;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 22px;
}

.static-zakaz button.btn:hover { color: var(--yellow); }

.static-zakaz .zakaz-h { font-size: 24px; font-weight: bold; text-align: left; }
.static-zakaz .zakaz-p { font-size: 20px; font-weight: normal; padding: 20px 0; text-align: left; }
.static-zakaz .zakaz-p--sm { font-size: 16px; font-weight: normal; padding: 20px 0; text-align: left; }
.static-zakaz .zakaz-p--xs { font-size: 12px; font-weight: normal; padding: 0; text-align: left; }

/* ----------------------------------------------------------------- 19 --- */

.pweb-modal-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: #000;
  opacity: 0;
  z-index: 1040;
  transition: opacity .15s linear;
  display: none;
}

.pweb-modal-overlay.is-open { display: block; opacity: .5; }

.pweb-modal {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: 1050;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 10px;
  display: none;
  opacity: 0;
  transition: opacity .15s linear;
  -webkit-overflow-scrolling: touch;
}

.pweb-modal.is-open { display: block; }
.pweb-modal.is-visible { opacity: 1; }

.pweb-modal__dialog {
  width: 600px;
  max-width: 100%;
  margin: 30px auto;
  position: relative;
}

.pweb-modal__content {
  position: relative;
  padding: 15px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .3);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, .5) 0 0 4px 0;
}

.pweb-button-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: var(--link-alt);
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 3;
}

.pweb-button-close:hover { color: #d97706; }

.pweb-modal__content .pweb-field-container { margin-left: 20px; margin-right: 0; }

.pweb-modal__content .pweb-separator-text p {
  text-align: center;
  font-size: 18px;
  margin: 0 0 10px;
}

.pweb-modal__content .pweb-separator-text.upper p { text-transform: uppercase; }

body.pweb-modal-open { overflow: hidden; }

/* ----------------------------------------------------------------- 20 --- */

#msg-float-wrap {
  position: fixed;
  bottom: 43px;
  left: 43px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

#msg-popup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.95);
  transform-origin: bottom left;
  transition: opacity .25s ease, transform .25s ease;
}

#msg-toggle:checked ~ #msg-float-wrap #msg-popup {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

#msg-icon-arrow { display: none; }
#msg-drum-wrap { display: flex; }

#msg-toggle:checked ~ #msg-float-wrap #msg-icon-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

#msg-toggle:checked ~ #msg-float-wrap #msg-drum-wrap { display: none; }
#msg-toggle:checked ~ #msg-float-wrap .msg-pulse { display: none; }

.msg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 50px;
  padding: 10px 18px 10px 10px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.msg-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  text-decoration: none;
}

.msg-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #f0f0f0;
}

.msg-icon img { width: 30px; height: 30px; object-fit: contain; display: block; }
.msg-icon-call { background: #FFC107; }

.msg-label {
  font-family: sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

#msg-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FFC107;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 193, 7, .5);
  transition: background .2s, transform .15s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

#msg-btn:hover { background: #FFB300; transform: scale(1.08); }
#msg-btn:active { transform: scale(.96); }

#msg-drum-wrap {
  width: 26px;
  height: 26px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.msg-drum-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.msg-drum-slide {
  width: 26px;
  height: 26px;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.msg-pulse {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.msg-pulse::before,
.msg-pulse::after {
  content: '';
  position: absolute;
  top: -8px; right: -8px; bottom: -8px; left: -8px;
  inset: -8px;
  border-radius: 50%;
  background: rgba(255, 193, 7, .35);
  animation: msg-wave 2.2s ease-out infinite;
}

.msg-pulse::after { animation-delay: 1.1s; }

@keyframes msg-wave {
  0%   { transform: scale(1);    opacity: .65; }
  80%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}
/* ----------------------------------------------------------------- 21 --- */
/* Медиазапросы. Базовое поведение полностью повторяет оригинал:
   - до 991px показываются «мобильные» дубли блоков (аналог hidden-* Bootstrap 3);
   - до 780px desktop-шапка скрывается и включается мобильная;
   - остальные правила — копия @media screen and (max-width:780px) оригинала. */

/* --- скролл к якорям с учётом фиксированной шапки --- */
#objects, #reviews, #advantages, #visit, #contacts { scroll-margin-top: 130px; }

/* --- переключение desktop / mobile блоков --- */
@media (max-width: 991px) {
  .d-desktop { display: none !important; }
  .section-header .vtem-menu .main-vtem-menu { display: none; }
  .menu-stick { display: inline-block; }
  .main-vtem-menu.is-open { display: block; }
  .main-vtem-menu.is-open > li { display: block; width: 100% !important; margin: 1px 0 !important; }
}

@media (min-width: 992px) {
  .d-mobile { display: none !important; }
}

/* --- @media screen and (max-width: 780px) оригинала --- */
@media (max-width: 780px) {
  .section-header { display: none; }
  .section-mobheader { display: block; }

  .mobile-section-promo { padding-top: 0; }

  .position-slider h1 span,
  .position-slider .hero-title span { font-size: 35px !important; }

  .position-header .promo-list-wrap { padding: 30px 0 !important; }

  .trust { padding-top: 0; }

  .mobshowcase { width: 100% !important; }
  .mobfeature { width: 100% !important; }

  h2.title { font-size: 36px; }

  .steps__item { width: 100%; float: left; }

  .promoitem { list-style: inside; }
  .promoitem img { display: none; }

  .swap-actions .btn { text-transform: lowercase !important; }

  .contacts__item + .contacts__item { margin-top: 4rem; }
  .contacts__item { padding-left: 6rem; }
  .contacts__item::before { left: 0; }

  .position-right { padding-top: 30px; }
}

/* --- поля статичных форм не выходят за пределы блока --- */
.static-zakaz .pweb-field-container { max-width: calc(100% - 20px); }

/* --- преимущества: на тач-устройствах карточка переворачивается по тапу --- */
@media (hover: none) {
  .advantages__item:hover .advantages__flipper { transform: none; }
  .advantages__item.is-flipped .advantages__flipper { transform: rotateY(180deg); }
}

/* --- плавающий виджет связи (правила оригинала) --- */
@media (max-width: 480px) {
  #msg-float-wrap { bottom: 20px; left: 43px; }
  #msg-btn { width: 54px; height: 54px; }
  .msg-item { padding: 8px 14px 8px 8px; }
  .msg-icon { width: 40px; height: 40px; }
  .msg-icon img { width: 26px; height: 26px; }
  .msg-label { font-size: 14px; }
}

/* --- узкие экраны: длинные кнопки переносятся, а не обрезаются --- */
@media (max-width: 374px) {
  .swap-actions { float: none; }
  .swap-actions p { float: none; }
  .swap-actions .btn { white-space: normal; max-width: 100%; }
  .corp-actions .btn { white-space: normal; max-width: 100%; }
  .section-mobheader .mob-call .btn { white-space: normal; }
}

/* --- модальные окна на узких экранах --- */
@media (max-width: 480px) {
  .pweb-modal__dialog { margin: 15px auto; }
  .pweb-modal__content { padding: 12px; }
  .pweb-modal__content .pweb-field-container { margin-left: 10px; }
  .pweb-modal__content .pweb-separator-text p { font-size: 16px; }
}


/* --- контакты: блок «Мы ВКонтакте» и особенности мобильной верстки --- */
a.social {
  background: var(--yellow);
  border-radius: 50%;
  color: #000;
  display: inline-block;
  font-size: 20px;
  height: 35px;
  line-height: 35px;
  margin: 0 0 0 10px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  width: 35px;
  vertical-align: middle;
}

a.social svg { vertical-align: middle; }

a.social:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: .5s;
}

.contacts-social {
  display: none;
  clear: both;
  text-align: center;
  padding-top: 0;
  color: #333;
}

.mob-br { display: none; }

@media (max-width: 780px) {
  .contacts-inner { padding: 0 15px; }
  .contacts-social { display: block; }
  .mob-br { display: inline; }
  .contacts__item { margin: 20px 0; }
  .contacts__item:first-child { margin-top: 0; }
  .contacts__item + .contacts__item { margin-top: 20px; }
  .social { color: #333; }
}

/* ----------------------------------------------------------------- 22 --- */
/* Анимации появления блоков (как в оригинальном шаблоне vt_simple)         */

.vtem-animation.is-armed { visibility: hidden; }

.vtem-animation.animated {
  visibility: visible;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.vtem-animation.animated.bounceIn { animation-name: vtemBounceIn; }
.vtem-animation.animated.bounceInUp { animation-name: vtemBounceInUp; }
.vtem-animation.animated.bounceInLeft { animation-name: vtemBounceInLeft; }

@keyframes vtemBounceIn {
  0%, 20%, 40%, 60%, 80%, 100% { animation-timing-function: cubic-bezier(.215, .61, .355, 1); }
  0%   { opacity: 0; transform: scale3d(.3, .3, .3); }
  20%  { transform: scale3d(1.1, 1.1, 1.1); }
  40%  { transform: scale3d(.9, .9, .9); }
  60%  { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
  80%  { transform: scale3d(.97, .97, .97); }
  100% { opacity: 1; transform: scale3d(1, 1, 1); }
}

@keyframes vtemBounceInUp {
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(.215, .61, .355, 1); }
  0%   { opacity: 0; transform: translate3d(0, 300px, 0); }
  60%  { opacity: 1; transform: translate3d(0, -20px, 0); }
  75%  { transform: translate3d(0, 10px, 0); }
  90%  { transform: translate3d(0, -5px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes vtemBounceInLeft {
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(.215, .61, .355, 1); }
  0%   { opacity: 0; transform: translate3d(-300px, 0, 0); }
  60%  { opacity: 1; transform: translate3d(25px, 0, 0); }
  75%  { transform: translate3d(-10px, 0, 0); }
  90%  { transform: translate3d(5px, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .vtem-animation.is-armed { visibility: visible; }
  .vtem-animation.animated { animation: none; }
  .msg-pulse::before, .msg-pulse::after { animation: none; }
  .advantages__flipper { transition: none; }
}
