/* =========================================================
   custom.css (NEW, from scratch)
   Project: Nexthost template overrides
   Rule: change ONLY here, never edit style.css
   ========================================================= */

/* -----------------------------
   1) Design tokens
------------------------------ */
:root{
  --c-primary: #0364ff; /* основной синий */
  --c-accent:  #00c3ff; /* бирюзовый акцент */
  --c-success: #03a87c;
  --c-warning: #f76d00;

  --c-text:  #333;
  --c-muted: #666;
  --c-border:#e8e8e8;
  --c-bg:    #fff;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);

  --t: 0.3s ease;
}

/* -----------------------------
   2) Small global hygiene
   (НЕ ломаем шаблон)
------------------------------ */

/* Убираем горизонтальный скролл на мобилках (частая проблема из-за баннеров/оверлеев) */
@media (max-width: 991.98px){
  html, body{
    overflow-x: hidden;
    max-width: 100%;
  }
}

/* Утилита для переносов длинных строк/ссылок (whois, домены и т.п.) */
.u-break{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* -----------------------------
   3) Mobile menu: scroll lock
   (будет использоваться в Части 5/6)
------------------------------ */
body.menu-open{
  overflow: hidden !important;
}

/* -----------------------------
   4) Prevent drag on logo/media (опционально)
------------------------------ */
.logo img{
  -webkit-user-drag: none;
  user-drag: none;
}

/* =========================================================
   Part 2/6 — Wiki / single-page / article content
   ========================================================= */

/* -----------------------------
   Wiki / статьи: контейнер и типографика
------------------------------ */
.single-page{
  padding: 60px 0;
  background: #f8f9fa;
}

.single-page .container{
  background: var(--c-bg);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 1140px;
}

@media (max-width: 768px){
  .single-page .container{
    padding: 25px 20px;
  }
}

/* Заголовки внутри single-page — локально, без глобального h2 { ... !important } */
.single-page h2{
  color: #1145d9;
  font-size: 2rem;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #1145d9;
  clear: both;
}

.single-page h2:first-of-type{
  margin-top: 0;
}

.single-page h3{
  color: #123fc0;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 30px 0 15px;
  clear: both;
}

.single-page h4{
  color: #2c3e50;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 20px 0 12px;
}

.single-page p{
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--c-text);
  margin-bottom: 20px;
}

.single-page ul,
.single-page ol{
  margin-bottom: 25px;
  padding-left: 25px;
}

.single-page li{
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #444;
}

.single-page strong{
  color: #1145d9;
  font-weight: 600;
}

/* Маркеры списков */
.single-page ul li::marker{
  color: #1145d9;
}

/* -----------------------------
   Картинки в wiki/статьях
   (единое правило вместо дублей)
------------------------------ */
.single-page img,
.wiki-image{
  display: block;
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 30px auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  clear: both;
  transition: transform var(--t);
}

.single-page img:hover,
.wiki-image:hover{
  transform: scale(1.02);
}

@media (max-width: 768px){
  .single-page img,
  .wiki-image{
    max-width: 100%;
  }
}

/* -----------------------------
   Code / pre / inline code (локально)
------------------------------ */
.single-page code{
  background: #f4f4f4;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  color: #d63384;
}

.single-page pre,
.single-page pre code{
  background: #2d3748;
  color: #e2e8f0;
}

.single-page pre{
  padding: 20px;
  border-radius: var(--radius-sm);
  margin: 25px 0;
  overflow-x: auto;
  line-height: 1.6;
  border-left: 4px solid #1145d9;
}

/* Если используешь класс code-block */
.code-block,
pre.code-block{
  background: #2d3748;
  color: #e2e8f0;
  padding: 20px;
  border-radius: var(--radius-sm);
  margin: 25px 0;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  border-left: 4px solid #1145d9;
}

/* -----------------------------
   “Glassmorphism” блок
------------------------------ */
.glassmorphism{
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 30px;
  margin: 50px 0;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.5);
  clear: both;
  overflow: hidden;
}

.glassmorphism h2:first-child,
.glassmorphism h3:first-child{
  margin-top: 0;
}

.glassmorphism > div{
  margin-bottom: 20px;
}
.glassmorphism > div:last-child{
  margin-bottom: 0;
}

@media (max-width: 768px){
  .glassmorphism{
    padding: 20px;
    margin: 30px 0;
  }

  .single-page h2{ font-size: 1.6rem; }
  .single-page h3{ font-size: 1.3rem; }
  .single-page p,
  .single-page li{ font-size: 1rem; }
}

/* -----------------------------
   Wiki hero / поиск (если используется)
------------------------------ */
.wiki-search-box{
  max-width: 600px;
  margin: 30px auto 0;
  position: relative;
  z-index: 2;
}

.wiki-search-box input{
  width: 100%;
  padding: 18px 60px 18px 25px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transition: all var(--t);
}

.wiki-search-box input:focus{
  outline: none;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.wiki-search-box button{
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--c-accent) 0%, #1145d9 100%);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all var(--t);
}

.wiki-search-box button:hover{
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 5px 15px rgba(0,195,255,0.4);
}

/* -----------------------------
   Хлебные крошки (если нужно скрыть старые)
------------------------------ */
.breadcrumbs,
#main-nav ol{
  display: none;
}

/* =========================================================
   Part 3/6 — WHOIS / pre blocks / domain status
   ========================================================= */

/* -----------------------------
   WHOIS: иконки ОС (os-image)
------------------------------ */
.os-image{
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: transform var(--t);
}

.os-image:hover{
  transform: scale(1.08);
}

/* -----------------------------
   WHOIS: блок с ответом / pre
------------------------------ */
#vopros{
  margin-top: 40px;
}

/* контейнер вокруг pre (у тебя был align-left-bottom) */
.align-left-bottom{
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
}

@media (max-width: 768px){
  .align-left-bottom{
    max-width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 350px){
  .align-left-bottom{
    padding: 0 10px;
  }
}

.align-left-bottom pre{
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #e0e0e0;
  padding: 25px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.6;
  overflow-x: auto;

  /* читаемость длинных строк */
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;

  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px){
  .align-left-bottom pre{
    padding: 18px;
    font-size: 12px;
    border-radius: 10px;
  }
}

@media (max-width: 350px){
  .align-left-bottom pre{
    padding: 12px;
    font-size: 11px;
    border-radius: 8px;
  }
}

/* подсветка важных фрагментов в pre */
.align-left-bottom pre b{
  color: #64b5f6;
  font-size: 14px;
}

/* -----------------------------
   Сообщение статуса домена
------------------------------ */
.domain-status-msg{
  max-width: 800px;
  margin: 30px auto 20px;
  padding: 0 20px;
  text-align: center;
}

.domain-status-msg h2{
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--c-text);
}

.domain-status-msg a{
  display: inline-block;
  font-size: 18px;
  text-decoration: none;
  color: var(--c-primary);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.domain-status-msg a:hover{
  color: var(--c-accent);
}

@media (max-width: 768px){
  .domain-status-msg{
    padding: 0 15px;
  }

  .domain-status-msg h2{
    font-size: 20px;
  }

  .domain-status-msg a{
    font-size: 16px;
  }
}

@media (max-width: 350px){
  .domain-status-msg{
    padding: 0 10px;
  }

  .domain-status-msg h2{
    font-size: 18px;
  }

  .domain-status-msg a{
    font-size: 14px;
  }
}


/* =========================================================
   Part 4/6 — Payment logos + Responsive table
   ========================================================= */

/* -----------------------------
   Логотипы на странице оплаты
------------------------------ */
.payment-logo{
  width: 32px;
  height: 32px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 20px;
  border-radius: 4px;
}

@media (max-width: 768px){
  .payment-logo{
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
}

@media (max-width: 350px){
  .payment-logo{
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
}

/* -----------------------------
   Таблица: desktop -> mobile cards
   Использование:
   <table class="responsive-table"> ... </table>
   На мобильных td должны иметь data-title="Название колонки"
------------------------------ */
.responsive-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  font-size: 15px;
}

.responsive-table thead{
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.responsive-table th{
  padding: 18px 20px;
  font-weight: 600;
  color: #333;
  text-align: left;
  border-bottom: 2px solid #dee2e6;
  white-space: nowrap;
}

.responsive-table td{
  padding: 16px 20px;
  color: #555;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.responsive-table tbody tr:last-child td{
  border-bottom: none;
}

.responsive-table tbody tr:hover{
  background: #f8faff;
}

.responsive-table td:first-child{
  font-weight: 600;
  color: #222;
}

.responsive-table td:last-child{
  font-weight: 700;
  color: #123fc0;
}

/* Доп. текстовые блоки рядом с таблицей (как у тебя было) */
.page-description{
  text-align: left;
  padding: 0 20px;
}

.widget_about .menu-container p{
  font-size: 13px;
  line-height: 1.6;
}

/* -----------------------------
   Mobile (<=768px): карточки вместо таблицы
------------------------------ */
@media (max-width: 768px){
  /* если у тебя есть .table-responsive вокруг — не делаем горизонтальный скролл */
  .table-responsive{
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: visible;
  }

  .responsive-table{
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .responsive-table thead{
    display: none;
  }

  .responsive-table tbody{
    display: block;
  }

  .responsive-table tr{
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e5e5e5;
  }

  .responsive-table tbody tr:hover{
    background: #fff;
  }

  .responsive-table td{
    display: block;
    padding: 8px 0;
    border: none;
    text-align: left;
  }

  .responsive-table td::before{
    content: attr(data-title);
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .responsive-table td:first-child{
    font-size: 17px;
    padding-top: 0;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
  }

  .responsive-table td:first-child::before{
    display: none;
  }

  .responsive-table td:last-child{
    font-size: 20px;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid #eee;
  }
}

/* -----------------------------
   Mobile narrow (<=450px): проще и плотнее
------------------------------ */
@media (max-width: 450px){
  .responsive-table tr{
    padding: 14px;
  }

  .responsive-table td:first-child{
    font-size: 14px;
  }

  .responsive-table td:last-child{
    font-size: 16px;
  }
}

/* Tiny screens (<=329px) */
@media (max-width: 329px){
  .responsive-table tr{
    padding: 12px;
  }
}


/* =========================================================
   Part 5/6 — Mobile menu (custom offcanvas)
   ========================================================= */

/* Overlay для мобильного меню */
.mobile-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}

.mobile-menu-overlay.active{
  opacity: 1;
  visibility: visible;
}

/* Кнопка вызова меню (контейнер) */
.mobile-menu-toggle{
  display: none; /* включаем на мобилках ниже */
  position: relative;
  z-index: 10001;
}

/* Кнопка-бургер */
.mobile-menu-btn{
  background: linear-gradient(-45deg, #123fc0 0%, #1145d9 100%);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 8px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  box-shadow: 0 4px 15px rgba(18,63,192,0.3);
}

.mobile-menu-btn:hover{
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(18,63,192,0.4);
  border-color: rgba(255,255,255,0.4);
}

.mobile-menu-btn span{
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.25s ease;
}

/* Крестик при активном бургер-кнопке */
.mobile-menu-btn.active span:nth-child(1){
  transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-btn.active span:nth-child(2){
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3){
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Sticky: пусть кнопка остаётся контрастной */
.header-main.sticky .mobile-menu-btn{
  background: linear-gradient(-45deg, #123fc0 0%, #1145d9 100%);
  border-color: rgba(18,63,192,0.3);
}
.header-main.sticky .mobile-menu-btn span{
  background: #fff;
}

/* -----------------------------
   Desktop (>=992px): показываем обычное меню
------------------------------ */
@media (min-width: 992px){
  .mobile-menu-toggle{
    display: none !important;
  }

  /* Шаблонное меню должно работать как есть */
  .nav-wrapper{
    display: block !important;
  }

  .nav-wrap-inner{
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    padding: 0 !important;
    transition: none !important;
    z-index: auto !important;
    overflow: visible !important;
    box-shadow: none !important;
    transform: none !important;
    right: auto !important;
    display: block !important;
  }

  .header-right{
    display: flex !important;
  }
}

/* -----------------------------
   Mobile/Tablet (<=991.98px): offcanvas
------------------------------ */
@media (max-width: 991.98px){
  /* Позиционируем кнопку справа в шапке */
  .header .col-12{
    position: relative;
  }

  .mobile-menu-toggle{
    display: block !important;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    flex-shrink: 0;
  }

  /* На мобилках header-right скрываем, чтобы не мешал */
  .header-right{
    display: none !important;
  }

  /* Прячем стандартную оболочку навигации (если есть) */
  .nav-wrapper{
    display: none;
  }

  /* Offcanvas панель */
  .nav-wrap-inner{
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(-45deg, #123fc0 0%, #1145d9 100%);
    padding: 0;
    transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    z-index: 99999;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    display: block !important;
  }

  /* Активное состояние */
  .nav-wrap-inner.active{
    right: 0 !important;
    display: flex !important;
    flex-direction: column;
  }

  /* Header внутри offcanvas (если используешь) */
  .mobile-menu-header{
    padding: 15px 50px 12px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    background: rgba(0,0,0,0.1);
    position: relative;
  }

  .mobile-menu-close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--t), background var(--t), border-color var(--t), color var(--t);
    font-size: 18px;
    color: #fff;
  }

  .mobile-menu-close:hover{
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
    border-color: var(--c-accent);
    color: var(--c-accent);
  }

  /* Навигация внутри панели */
  .nav{
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    padding: 0 30px;
    margin: 0;
    flex: 1;
  }

  .nav > li{
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0; /* важно: убираем padding из шаблона */
  }

  .nav > li:last-child{
    border-bottom: none;
  }

  .nav > li > a{
    display: block;
    padding: 18px 0;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: padding-left var(--t), color var(--t);
    position: relative;
  }

  .nav > li > a:hover{
    color: var(--c-accent) !important;
    padding-left: 10px;
  }

  .nav > li > a::before{
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--c-accent), #fff);
    transition: width var(--t);
  }

  .nav > li > a:hover::before{
    width: 20px;
  }

  /* Подменю (если используешь .sub-menu) */
  .sub-menu{
    position: static !important;
    background: rgba(0,0,0,0.2) !important;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.2) !important;
    border-radius: 8px;
    margin: 10px 0 15px;
    padding: 15px 0;
    display: none;
    border-left: 3px solid var(--c-accent);
  }

  .nav > li.has-submenu.active .sub-menu{
    display: block;
    animation: mmSlideDown 0.25s ease;
  }

  @keyframes mmSlideDown{
    from{ opacity: 0; transform: translateY(-10px); }
    to{ opacity: 1; transform: translateY(0); }
  }

  .sub-menu > li{
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0;
  }

  .sub-menu > li:last-child{
    border-bottom: none;
  }

  .sub-menu > li > a{
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.85) !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: padding-left var(--t), color var(--t), background var(--t);
    position: relative;
    text-transform: none;
    letter-spacing: 0.3px;
  }

  .sub-menu > li > a:hover{
    color: var(--c-accent) !important;
    padding-left: 30px;
    background: rgba(0,195,255,0.1);
  }

  /* Footer внутри offcanvas (если используешь) */
  .mobile-menu-footer{
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.1);
  }

  .mobile-menu-cta{
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: background var(--t), color var(--t);
    border: 2px solid #fff;
  }

  .mobile-menu-cta:hover{
    background: #fff;
    color: #123fc0;
  }
}

/* -----------------------------
   Размеры offcanvas для разных экранов
------------------------------ */
@media (min-width: 768px) and (max-width: 991.98px){
  .nav-wrap-inner{ width: 350px !important; }
  .mobile-menu-btn{ width: 45px; height: 45px; }
}

@media (max-width: 767.98px) and (min-width: 576px){
  .nav-wrap-inner{ width: 280px !important; }
}

@media (max-width: 399.98px){
  .nav-wrap-inner{ width: 250px !important; }
}

@media (max-width: 359.98px){
  .nav-wrap-inner{ width: 230px !important; }
}

@media (max-width: 335px){
  .nav-wrap-inner{ width: 210px !important; }

  .mobile-menu-close{
    width: 28px !important;
    height: 28px !important;
    top: 15px !important;
    right: 15px !important;
    font-size: 16px !important;
  }
}


/* =========================================================
   Part 6/6 — Components & fixes (without global ломания)
   ========================================================= */

/* -----------------------------
   1) FAQ categories grid (vopros.html)
------------------------------ */
.faq-categories-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-category-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  border: 1px solid #eee;
}

.faq-category-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(18, 63, 192, 0.15);
  border-color: #123fc0;
}

.faq-card-icon{
  width: 60px;
  height: 60px;
  background: linear-gradient(-45deg, #123fc0 0%, #1145d9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.faq-card-icon i{
  font-size: 24px;
  color: #fff;
}

.faq-category-card h4{
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.faq-category-card p{
  font-size: 13px;
  color: #666;
  margin: 0;
}

@media (max-width: 991px){
  .faq-categories-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px){
  .faq-categories-grid{ grid-template-columns: 1fr; gap: 15px; }
  .faq-category-card{ padding: 25px 15px; }
}
@media (max-width: 350px){
  .faq-category-card{ padding: 20px 12px; }
  .faq-card-icon{ width: 50px; height: 50px; }
  .faq-card-icon i{ font-size: 20px; }
  .faq-category-card h4{ font-size: 14px; }
  .faq-category-card p{ font-size: 12px; }
}

/* FAQ accordion: выравниваем текст ответа (локально, без глобального .accordion-body на весь сайт) */
.faq-accordion .accordion-body{
  padding-left: 25px; /* совпадает с header padding */
}
.faq-accordion .accordion-body p{
  text-align: left;
}

/* -----------------------------
   2) Utilities: text align, ruble sign
------------------------------ */
.text-justify-custom{ text-align: justify; }
.ruble-sign{ font-weight: 400; }

/* -----------------------------
   3) Featured items: выравнивание карточек без ломания Bootstrap колонок
   (НЕ трогаем display у [class*="col-"] глобально)
------------------------------ */
.featured-items > .row > [class*="col-"]{
  /* оставляем как есть у Bootstrap */
}

.featured-items .featured-item{
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.featured-items .featured-item .content{
  flex: 1;
  text-align: left;
}

.featured-items .featured-item .icon{
  text-align: left;
  margin-left: 0;
}

.featured-items .featured-item .content h3,
.featured-items .featured-item .content p{
  text-align: left;
}

/* Если у шаблона были смещения nth-child (2/3), делаем мягче и предсказуемо */
@media (min-width: 992px){
  .featured-items > .row [class*="col-"]:nth-child(2){ margin-top: 0 !important; }
  .featured-items > .row [class*="col-"]:nth-child(3){ margin-top: 40px !important; }
}

/* Средние экраны */
@media (min-width: 768px) and (max-width: 991px){
  .featured-items > .row [class*="col-"]:nth-child(2){ margin-top: 0 !important; }
  .featured-items > .row [class*="col-"]:nth-child(3){ margin-top: 40px !important; }
}

/* -----------------------------
   4) Pricing: правки для single-price style--two
------------------------------ */

/* Убираем странный сдвиг цены (в шаблоне был отрицательный margin-left) */
.single-price .pricing-area .price-content .price-amount{
  margin-left: 0;
}

/* Список характеристик слева, с аккуратной иконкой */
.single-price.style--two .price-body ul{
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}

.single-price.style--two .price-body ul li{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0;
}

.single-price.style--two .price-body ul li i{
  min-width: 20px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* “Слипание” карточек на десктопе — чуть больше gutter */
@media (min-width: 992px){
  .price-bg-shape.style--two .row.gx-lg-0{
    --bs-gutter-x: 24px;
  }

  .single-price.style--two{
    margin: 0 12px 30px;
  }
}

/* Адаптивный размер цены на средних экранах */
@media (min-width: 992px) and (max-width: 1399.98px){
  .price-bg-shape .price-amount{
    font-size: clamp(22px, 2vw, 28px) !important;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .price-bg-shape .price-amount span{
    font-size: 0.6em !important;
  }

  .single-price.style--two{
    padding: 40px 25px 50px !important;
  }
}

@media (max-width: 991.98px){
  .price-bg-shape .price-amount{
    font-size: clamp(20px, 4vw, 26px) !important;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .price-bg-shape .price-amount span{
    font-size: 0.55em !important;
  }

  .single-price.style--two{
    border-radius: 5px !important;
    padding: 35px 20px 45px !important;
  }
}

/* Мобильная версия карточек тарифов: компактный центр и левый текст */
@media (max-width: 767px){
  .single-price.style--two{
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .single-price.style--two .price-head,
  .single-price.style--two .pricing-area,
  .single-price.style--two .price-body{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .single-price.style--two .price-head .price-icon,
  .single-price.style--two .price-head h2,
  .single-price.style--two .pricing-area .price-content,
  .single-price.style--two .price-body ul,
  .single-price.style--two .price-body .btn{
    width: 180px;
    text-align: left;
  }
}

/* -----------------------------
   5) Footer: выравнивание колонок и адаптив на 576–991px
------------------------------ */
.footer-main > .container > .row{
  align-items: flex-start !important;
}

.footer-main .widget{
  margin-bottom: 40px;
}

.footer-main .widget_about{
  display: flex;
  flex-direction: column;
  max-width: 320px;
}

.footer-main .widget_about .logo{
  margin-top: -5px;
}

/* Лого в футере меньше */
.footer .logo-icon{ font-size: 24px; }
.footer .logo-main{ font-size: 18px; text-transform: none; }
.footer .logo-tagline{ font-size: 8px; letter-spacing: 1px; }
.footer .logo-container{ gap: 8px; }

.footer-main .widget_nav_menu .widget-title{
  margin-top: 0;
  font-size: 18px;
}

.footer-main .widget_nav_menu ul li a{
  text-transform: none;
}

/* На 576–991: делаем сетку футера аккуратной (1 колонка + две по 50%) */
@media (min-width: 576px) and (max-width: 991px){
  .footer-widgets .row{
    display: flex !important;
    flex-wrap: wrap !important;
  }

  .footer .col-xl-4.col-lg-6{
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 30px !important;
  }

  .footer .col-xl-2.col-lg-3.col-sm-6{
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 25px !important;
  }
}

/* Footer bottom центрируем на мобильных */
@media (max-width: 991px){
  .footer-bottom .row{
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom .col-lg-8,
  .footer-bottom .col-lg-4{
    width: 100%;
    text-align: center !important;
  }

  .footer-bottom-content{
    justify-content: center !important;
  }

  .footer-bottom .certificate{
    justify-content: center !important;
    margin-top: 15px;
  }
}

/* Политики в столбик на очень маленьких */
@media (max-width: 575px){
  .footer .widget_about .menu-container small{
    display: block;
    margin-bottom: 5px;
  }
  .footer .widget_about .menu-container small:last-child{
    margin-bottom: 0;
  }
}

/* -----------------------------
   6) Page title breadcrumbs separator (аккуратно)
   В шаблоне был FontAwesome-стрелка.
   Мы делаем "/" и отключаем старый.
------------------------------ */
.page-title ul li:not(:last-child):after{
  display: none !important; /* гасим шаблонную иконку */
}

.page-title ul li:not(:last-child){
  position: relative;
}

.page-title ul li:not(:last-child)::after{
  content: "/" !important;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: inherit;
  font-size: 0.9em;
  color: #6c757d;
}

@media (max-width: 767px){
  .page-title ul li:not(:last-child)::after{
    right: -6px;
    font-size: 0.8em;
  }
}

@media (max-width: 480px){
  .page-title ul li:not(:last-child)::after{
    right: -4px;
    font-size: 0.7em;
  }
}

/* -----------------------------
   7) Banner fixes (без незакрытых @media)
   Цель: на мобилках картинка показывается, баннер не ломает верстку
------------------------------ */

/* Показать баннер-картинку всегда */
.banner .banner-img,
.banner.style--three .banner-img,
.banner.style--four .banner-img{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
}

.banner .banner-img img,
.banner.style--three .banner-img img,
.banner.style--four .banner-img img{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: 100% !important;
  height: auto !important;
}

/* style--three: убираем серый overlay (если он добавлен классом overlay) */
.banner.style--three.overlay::after,
.banner.style--three::after{
  display: none !important;
  opacity: 0 !important;
}

/* Мобильные настройки баннера */
@media (max-width: 991.98px){
  .banner.layer.style--three,
  .banner.style--three{
    min-height: auto !important;
    padding-top: 160px !important;
    padding-bottom: 140px !important;
    overflow: hidden !important;
  }

  .banner.style--three .col-lg-5{
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 18px !important;
    padding: 0 !important;
    display: block !important;
  }

  .banner.style--three .row > .col-lg-7,
  .banner.style--three .row > .col-lg-5{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .banner.style--three .banner-img{
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
    margin-top: 18px !important;
  }

  .banner.style--three .banner-img img.main-img{
    max-width: 320px !important;
    width: 100% !important;
    margin: 0 !important;
    transform: translateX(-18px) translateY(0) !important;
  }
}

/* style--four на мобилках — меньше top padding */
@media (max-width: 767px){
  .banner.style--four{
    padding-top: 110px !important;
    min-height: auto !important;
  }
}

/* -----------------------------
   8) LIR page padding fix (локально)
------------------------------ */
@media (max-width: 768px){
  section.pt-80.pb-80 .row .col-lg-8,
  section.pt-80.pb-80 .row .col-lg-4{
    padding-left: 15px;
    padding-right: 15px;
  }

  section.pt-80.pb-80 .row .col-lg-8 p.text-center{
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* HOTFIX: скрыть мобильный хедер/логотип в десктопной шапке */
@media (min-width: 992px) {
  .mobile-menu-header,
  .mobile-menu-footer,
  .mobile-menu-overlay {
    display: none !important;
  }

  /* если “центральный” логотип собирается этими классами */
  .mobile-menu-logo-container,
  .mobile-menu-logo,
  .mobile-menu-logo-icon,
  .mobile-menu-tagline,
  .mobile-menu-close {
    display: none !important;
  }
}

/* =========================================================
   FINAL LOGO (single source of truth)
   Header = Footer typography
   Footer always the same (dark)
   Also fixes duplicate mobile-logo on desktop
   ========================================================= */

/* Base (common) */
.logo-link{
  text-decoration: none;
  display: inline-block;
}

.logo-container{
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text{
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* Typography: HEADER = FOOTER */
.logo-main{
  font-family: "Lato", sans-serif;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: none;
  font-size: 22px;
}

.logo-tagline{
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: none;
  font-size: 10px;
  margin-top: 3px;
  opacity: 0.95;
}

/* Icon */
.logo-icon{
  font-size: 28px;
  line-height: 1;
  color: #00d4ff;
  text-shadow: 0 2px 10px rgba(0,212,255,0.35);
}

/* Header colors (dark/blue header) */
.header-main .logo-main{
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.header-main .logo-tagline{
  color: #00d4ff;
}

/* Sticky header (white bg) */
.header-main.sticky .logo-main{
  color: #111 !important;
  text-shadow: none !important;
}
.header-main.sticky .logo-tagline,
.header-main.sticky .logo-icon{
  color: #00d4ff !important;
  text-shadow: none !important;
}

/* Footer colors (footer always one, dark) */
.footer .logo-main{
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.footer .logo-tagline{
  color: #00d4ff;
}

/* Hover (subtle) */
.logo-link:hover .logo-icon{
  transform: translateY(-1px);
  transition: transform 0.3s ease;
}

/* Mobile scaling (only 2 breakpoints, no spam) */
@media (max-width: 575.98px){
  .logo-icon{ font-size: 24px; }
  .logo-main{ font-size: 20px; }
  .logo-tagline{ font-size: 9px; }
}

@media (max-width: 399.98px){
  .logo-icon{ font-size: 22px; }
  .logo-main{ font-size: 18px; }
  .logo-tagline{ font-size: 8px; }
}

/* Prevent duplicate "mobile menu logo" showing on desktop
   (only inside nav-wrap-inner/offcanvas) */
@media (min-width: 992px){
  .nav-wrap-inner .mobile-menu-header,
  .nav-wrap-inner .mobile-menu-footer,
  .nav-wrap-inner .mobile-menu-logo-container,
  .nav-wrap-inner .mobile-menu-logo,
  .nav-wrap-inner .mobile-menu-logo-icon,
  .nav-wrap-inner .mobile-menu-tagline,
  .nav-wrap-inner .mobile-menu-close{
    display: none !important;
  }
}

/* Mobile menu logo styles (if you use mobile-menu-logo* classes) */
@media (max-width: 991.98px){
  .nav-wrap-inner .mobile-menu-logo-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .nav-wrap-inner .mobile-menu-logo-icon{
    color: #00d4ff !important;
    text-shadow: 0 2px 10px rgba(0,212,255,0.35);
  }

  .nav-wrap-inner .mobile-menu-logo{
    color: #fff !important;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    letter-spacing: 0.4px;
    font-size: 18px !important;
    text-transform: none;
  }

  .nav-wrap-inner .mobile-menu-tagline{
    color: #00d4ff !important;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 0.6px;
    font-size: 9px !important;
    text-transform: none;
    opacity: 0.95;
  }
}

/* HEADER logo text: сделать как в footer (капс + spacing) */
.header-main .logo-main,
.header-main .logo-tagline {
  text-transform: uppercase !important;
}

/* Подгоняем “жёсткость” как на {HOSTNAME} */
.header-main .logo-main {
  letter-spacing: 0.8px !important; /* можно 0.6–1.2 */
}

/* Tagline обычно более разреженный */
.header-main .logo-tagline {
  letter-spacing: 1.4px !important; /* можно 1.0–1.8 */
  font-weight: 700 !important;
}
/* Вариант A: заголовки и текст в этом блоке строго по одной левой вертикали */
.section-title.c4 {
  text-align: left !important;
}

.section-title.c4 h5,
.section-title.c4 h2,
.section-title.c4 p {
  text-align: left !important;
}

/* Убираем возможные причины “съезда” абзаца */
.section-title.c4 p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-indent: 0;
}


/* ======================================================================
   TEXT ALIGN: headings centered, paragraphs left with equal side offsets
   - Section titles (.section-title.text-center inside centered row/col)
   - Service cards (.single-service.style--two)
   - Includes extra tuning for very small screens (<= 350px)
   ====================================================================== */

/* --- 1) SECTION TITLES (your blocks "Тарифные планы", "Преимущества" etc.) --- */
/* Keep headings centered */
.row.justify-content-center > .col-lg-8 > .section-title.text-center h5,
.row.justify-content-center > .col-lg-8 > .section-title.text-center h2 {
  text-align: center !important;
}

/* Paragraph: left aligned, but the paragraph block is centered -> equal left/right offsets */
.row.justify-content-center > .col-lg-8 > .section-title.text-center p {
  text-align: left !important;

  /* equal side offsets by centering the paragraph block */
  width: min(100%, 60ch); /* adjust if needed: 52ch..70ch */
  margin-left: auto !important;
  margin-right: auto !important;

  /* safety resets */
  text-indent: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
}

/* --- 2) SERVICE CARDS (your block .single-service style--two) --- */
.single-service.style--two .service-content p {
  text-align: left !important;

  /* equal side offsets inside the card */
  width: min(100%, 42ch); /* usually narrower looks better in cards */
  margin-left: auto !important;
  margin-right: auto !important;

  /* safety resets */
  text-indent: 0 !important;
  max-width: none !important;
}

/* --- 3) VERY SMALL MOBILE (<= 350px) --- */
@media (max-width: 350px) {
  .row.justify-content-center > .col-lg-8 > .section-title.text-center p {
    width: min(100%, 32ch);
  }

  .single-service.style--two .service-content p {
    width: min(100%, 30ch);
  }
}

/* Убираем фиксированную ширину 180px у кнопки "Заказать" в тарифах (мобилка) */
@media (max-width: 767px) {
  .price-bg-shape.style--two .single-price.style--two .price-body .btn,
  .price-bg-shape.style--two .single-price.style--two .price-body .btn.btn-style4 {
    width: fit-content !important;   /* ключевое: ширина по тексту + padding */
    text-align: center !important;
    white-space: nowrap;
  }
}
/* =========================================
   WIKI HOME  //
    :
   .wiki-categories > .container > .row > .col-* > .category-card
   ========================================= */

#wikiHome.wiki-categories {
    padding: 60px 0;
    background: #f8f9fa;
}

#wikiHome .row {
    row-gap: 24px; /*        */
}

/*   */
#wikiHome .category-card {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 26px 26px 22px;
    box-shadow: 0 10px 30px rgba(17, 69, 217, 0.08);
    border: 1px solid rgba(17, 69, 217, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#wikiHome .category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(17, 69, 217, 0.14);
    border-color: rgba(17, 69, 217, 0.18);
}

/*  */
#wikiHome .category-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c3ff 0%, #1145d9 100%);
    color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 10px 25px rgba(0, 195, 255, 0.25);
}

#wikiHome .category-icon i {
    font-size: 22px;
    line-height: 1;
}

/* / */
#wikiHome .category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1f2a44;
}

#wikiHome .category-card p {
    margin: 0 0 16px;
    color: #5b667a;
    line-height: 1.6;
    font-size: 15px;
}

/*   */
#wikiHome .article-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

#wikiHome .article-list li {
    margin: 0;
}

#wikiHome .article-list a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #2b3445;
    background: #f7f9ff;
    border: 1px solid rgba(17, 69, 217, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

#wikiHome .article-list a i {
    margin-top: 2px;
    color: #1145d9;
    font-size: 12px;
    opacity: 0.9;
}

#wikiHome .article-list a:hover {
    background: #eef3ff;
    border-color: rgba(17, 69, 217, 0.18);
    transform: translateX(2px);
    color: #1145d9;
}

/*  */
@media (max-width: 768px) {
    #wikiHome.wiki-categories {
        padding: 40px 0;
    }

    #wikiHome .category-card {
        padding: 20px;
        border-radius: 14px;
    }

    #wikiHome .category-card h3 {
        font-size: 18px;
    }

    #wikiHome .category-card p {
        font-size: 14px;
    }
}

/*    : max-width: 450px !important; */

/*      (/) */
.single-page img,
.wiki-image {
    max-width: 320px !important; /*  450px */
}

/*       280px */
/*
.single-page img,
.wiki-image {
    max-width: 280px !important;
}
*/


/*      */
.featured-items > .row [class*="col-"]:nth-child(3),
.featured-items > .row [class*="col-"]:nth-child(4) {
    margin-top: 40px !important;
}

/*     */
.featured-items > .row [class*="col-"] {
    display: flex;
}

.featured-items .featured-item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.featured-items .featured-item .content {
    flex-grow: 1;
}

.featured-items .featured-item .content h3,
.featured-items .featured-item .content p {
    text-align: left !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/*     (768-991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .featured-items > .row [class*="col-"]:nth-child(2) {
        margin-top: 0 !important;
    }

    .featured-items > .row [class*="col-"]:nth-child(3) {
        margin-top: 40px !important;
    }
}

/*     (1300px+) */
@media (min-width: 1300px) {
    .featured-items > .row [class*="col-"]:nth-child(2) {
        margin-top: 0 !important;
    }

    .featured-items > .row [class*="col-"]:nth-child(3) {
        margin-top: 40px !important;
    }
}

/*     1199px */
@media (min-width: 992px) and (max-width: 1299px) {
    .featured-items > .row [class*="col-"]:nth-child(2) {
        margin-top: 0 !important;
    }

    .featured-items > .row [class*="col-"]:nth-child(3) {
        margin-top: 40px !important;
    }

    .featured-items .featured-item {
        padding: 25px 20px !important;
    }

    .featured-items .featured-item .icon {
        margin-bottom: 15px !important;
    }

    .featured-items .featured-item .icon i {
        font-size: 40px !important;
    }

    .featured-items .featured-item .content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }

    .featured-items .featured-item .content p {
        font-size: 0.9rem !important;
    }
}

/*   () */
.featured-items > .row > [class*="col-"] {
    display: block !important;
}

.featured-items .featured-item {
    display: flex;
    flex-direction: column;
}


/*   h2    */
@media (max-width: 768px) {
    .page-title h2,
    .banner h2,
    .section-title h2,
    h2 {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .page-title h2,
    .banner h2,
    .section-title h2,
    h2 {
        font-size: 20px !important;
    }
}

@media (max-width: 350px) {
    .page-title h2,
    .banner h2,
    .section-title h2,
    h2 {
        font-size: 18px !important;
    }
}

/* FAQ accordion -      */
.accordion-body {
    padding-left: 20px !important;
    margin-left: 15px !important;
}

.accordion-body p {
    text-align: left !important;
}

/* =========================================================
   MOBILE:  <p>  section-title ( ""   )
      :
   <div class="section-title ... text-center"> ... <p>...</p>
   ========================================================= */
@media (max-width: 767.98px) {

  /*     */
  .section-title.text-center h5,
  .section-title.text-center h2{
    text-align: center !important;
  }

  /*       */
  .section-title.text-center p{
    text-align: left !important;

    /*   :   ,     */
    max-width: 36ch;                 /*  34ch..42ch */
    margin: 10px auto 0 !important;  /*    */

    /*       360480px */
    padding-left: 14px !important;
    padding-right: 14px !important;

    font-size: 13px !important;
    line-height: 1.5 !important;

    /*   ""  */
    text-indent: 0 !important;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/*    ~437px ( ,   3 ,   5) */
@media (min-width: 401px) and (max-width: 480px) {
  .section-title.text-center p{
    max-width: 40ch !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* =========================================
   FIX:   180px ( ""   )
   :     width:180px  text-align:left
   :   
   ========================================= */
@media (max-width: 767px){
  /*  "" */
  .single-price.style--two .price-body .btn,
  .single-price.style--two .price-body .btn.btn-style4{
    width: auto !important;           /*  180px */
    max-width: 100% !important;
    display: inline-flex !important;  /*      */
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  /*         */
  .single-price.style--two .price-body{
    text-align: center !important;
  }
}