/*
  Сгенерировано extract-styles.js
  Источник: index.html
  Дата: 2026-02-14T13:30:51.835Z
*/

/* Header Styles */
      :root {
        /* Color system */
        --primary: #e13c3c;
        --primary-dark: #c53333;
        --primary-light: #e85c5c;
        --secondary: #181818;
        --secondary-light: #2c2c2c;
        --neutral-100: #f5f5f7;
        --neutral-200: #e5e5e5;
        --neutral-300: #d1d1d6;
        --neutral-400: #86868b;
        --neutral-500: #6e6e73;
        --neutral-600: #3d3d3d;
        --white: #ffffff;

        /* Spacing system (multiples of 8) */
        --space-1: 0.5rem; /* 8px */
        --space-2: 1rem; /* 16px */
        --space-3: 1.5rem; /* 24px */
        --space-4: 2rem; /* 32px */
        --space-5: 2.5rem; /* 40px */
        --space-6: 3rem; /* 48px */

        /* Other variables */
        --header-height: 4.5rem;
        --header-bg: rgba(255, 255, 255, 0.95);
        --header-bg-scrolled: rgba(255, 255, 255, 0.98);
        --shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
        --transition: 0.3s ease;
        --border-radius: 0.5rem;
      }

      /* Main header styles */
      .site-header {
        top: 0;
        left: 0;
        width: 100%;
        height: var(--header-height);
        background-color: var(--header-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1000;
        transition: background-color var(--transition),
          box-shadow var(--transition);
      }

      .site-header.scrolled {
        background-color: var(--header-bg-scrolled);
        box-shadow: var(--shadow);
      }

      .header-container {
        max-width: 1200px;
        height: 100%;
        margin: 0 auto;
        padding: 0 var(--space-2);
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      /* Logo styles */
      .logo-container {
        display: flex;
        align-items: center;
      }

      .logo {
        display: flex;
        align-items: center;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--secondary);
        letter-spacing: -0.02em;
      }

      .logo-dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        background-color: var(--primary);
        border-radius: 50%;
        margin-right: 0.25rem;
      }

      .logo-text {
        transform: translateY(1px);
      }

      /* Navigation styles */
      .main-nav {
        display: none;
      }

      .nav-list {
        display: flex;
        gap: var(--space-3);
      }

      .nav-item {
        position: relative;
      }

      .nav-link {
        color: var(--secondary);
        font-size: 1rem;
        font-weight: 500;
        padding: var(--space-1) 0;
        transition: color var(--transition);
      }

      .nav-link:hover {
        color: var(--primary);
      }

      .nav-link::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
      }

      .nav-link:hover::after {
        transform: scaleX(1);
        transform-origin: left;
      }

      /* CTA button styles */
      .cta-container {
        display: none;
      }

      .cta-button {
        display: inline-block;
        background-color: #0154c5;
        color: var(--white);
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
        border-radius: var(--border-radius);
        transition: background-color var(--transition),
          transform var(--transition);
      }

      .cta-button:hover {
        background-color: #0154c5;
        transform: translateY(-1px);
      }

      .cta-button:active {
        transform: translateY(0);
      }

      /* Mobile menu toggle */
      .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        background-color: #fff;
        z-index: 1001;
        border: 1px #fff;
      }

      .bar {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--secondary);
        transition: var(--transition);
      }

      .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }

      .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      /* Mobile menu */
      .mobile-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--white);
        overflow: hidden;
        transition: height var(--transition);
        z-index: 999;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
      }

      .mobile-menu.active {
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
      }

      .mobile-nav-list {
        padding: var(--space-3) var(--space-2);
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
      }

      .mobile-nav-link {
        display: block;
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--secondary);
        padding: var(--space-1) 0;
        transition: color var(--transition);
      }

      .mobile-nav-link:active {
        color: var(--primary);
      }

      .mobile-nav-cta {
        margin-top: var(--space-2);
      }

      .mobile-cta-button {
        display: inline-block;
        background-color: var(--primary);
        color: var(--white);
        font-weight: 600;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        border-radius: var(--border-radius);
        transition: background-color var(--transition);
      }

      .mobile-cta-button:active {
        background-color: var(--primary-dark);
      }

      /* Media Queries */
      @media (min-width: 768px) {
        .main-nav {
          display: block;
        }

        .cta-container {
          display: block;
        }

        .mobile-menu-toggle {
          display: none;
        }

        .mobile-menu {
          display: none;
        }
      }

      @media (min-width: 992px) {
        .header-container {
          padding: 0 var(--space-4);
        }

        .nav-list {
          gap: var(--space-4);
        }

        .nav-link {
          font-size: 1.1rem;
        }

        .cta-button {
          padding: 0.75rem 1.5rem;
          font-size: 1rem;
        }
      }

      @media (min-width: 1200px) {
        .header-container {
          padding: 0 var(--space-2);
        }
      }
      html {
        scroll-behavior: smooth;
      }
      #signupForm {
        scroll-behavior: smooth;
      }
      .form-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        box-shadow: 0px 1px 10px 1px #ebebeb !important;
        padding-bottom: 10px;
      }

      .form-header {
        margin-bottom: 1.5rem;
      }
      .footer-risk-disclaimer {
        text-align: center;
        font-size: 11px;
        color: #777;
        padding: 10px;
        background: #f8f8f8;
      }
      .footer-risk-disclaimer a {
        color: #555;
        text-decoration: underline;
      }
      .form-header h1 {
        font-size: 1.5rem;
        font-weight: bold;
        color: #000;
        line-height: 1.3;
      }

      .signup-form {
        background: white;
        border-radius: 14px;
        padding: 1rem;
      }

      .input-group {
        position: relative;
        margin-bottom: 1rem;
        display: flex !important;
        margin-right: 15px;
        margin-left: 15px;
      }

      .input-field {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border: none;
        background: #f0f0f0;
        border-radius: 5px;
        transition: background 0.2s;
      }

      .input-field:focus {
        outline: none;
        background: #e8e8e8;
      }

      .phone-group {
        display: flex;
        gap: 0.5rem;
        margin-right: 15px;
        margin-left: 15px;
      }

      .country-select-container {
        position: relative;
      }

      .selected-country {
        display: flex;
        align-items: center;
        padding: 1rem;
        background: #f0f0f0;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        height: 100%;
      }

      .country-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 300px;
        max-height: 300px;
        background: white;
        border-radius: 5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 100;
        overflow: hidden;
      }

      .country-dropdown.show {
        display: block;
      }

      .search-container {
        padding: 10px;
        border-bottom: 1px solid #eee;
      }

      #countrySearch {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
      }

      .country-list {
        max-height: 250px;
        overflow-y: auto;
      }

      .country-item {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        cursor: pointer;
        transition: background 0.2s;
      }

      .country-item:hover {
        background: #f5f5f5;
      }

      .country-flag {
        margin-right: 10px;
        font-size: 1.2rem;
      }
      .cta-section {
        background: linear-gradient(135deg, #46a24e 0%, #35841e 100%);
        padding: 2rem 0rem;
        text-align: center;
        color: white;
      }

      .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
      }

      .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
      }

      .country-name {
        flex: 1;
        text-align: left;
        font-size: 14px;
      }

      .country-dial {
        color: #666;
        font-size: 14px;
      }

      .phone-input {
        flex: 1;
        padding: 1rem;
        font-size: 1rem;
        border: none;
        background: #f0f0f0;
        border-radius: 5px;
      }

      .phone-input:focus {
        outline: none;
        background: #e8e8e8;
      }

      .submit-button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        font-weight: bold;
        color: white;
        background: #11bc01;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: opacity 0.2s;
        margin-top: 0.5rem;
      }

      .submit-button:hover {
        opacity: 0.9;
      }

      .terms {
        margin-top: 1rem;
        font-size: 0.8rem;
        color: #666;
        text-align: center;
        margin-right: 15px;
        margin-left: 15px;
      }

      .terms a {
        color: #000;
        text-decoration: none;
        font-weight: 500;
      }

      .terms a:hover {
        text-decoration: underline;
      }

      .preloader {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
      }

      .preloader-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      .spinner {
        width: 40px;
        height: 40px;
        border: 4px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top: 4px solid white;
        animation: spin 1s linear infinite;
      }

      @keyframes spin {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      /* Responsive styles */
      @media (max-width: 480px) {
        .signup-form {
          padding: 0.2rem;
        }

        .form-header h1 {
          font-size: 1.4rem;
        }

        .country-dropdown {
          width: 250px;
        }
      }

/* --- разделитель из разных <style> --- */

.loaderwrapper-as2-32 {
    display: none;
    justify-content: center;
    align-items: center;
    height: 300px;
    flex-direction: column;
    position: relative;
  }

  .loader-as2-32 {
    width: 48px;
    height: 48px;
    border: 5px solid #000;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }

  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .get-leads-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
  }

  .get-leads-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .get-leads-form .btn-fb-send-34v {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    padding: 10px;
    background-color: rgb(66, 38, 225);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .get-leads-form .btn-fb-send-34v[disabled] {
    background-color: #ccc;
    color: #fff;
    cursor: not-allowed;
  }

/* --- разделитель из разных <style> --- */

.dtpcnt{opacity: 0;}

/* --- разделитель из разных <style> --- */

.line {
        background-color: #ececec;
        text-align: center;
        padding: 4px 0;
      }

/* --- разделитель из разных <style> --- */

.st0-h {
                  fill: #cecccf;
                }
                .st1-h {
                  fill: #f5f1f2;
                }
                .st2-h {
                  fill: #28283a;
                }
                .st3-h {
                  font-family: "Arial-BoldMT";
                }
                .st4-h {
                  font-size: 13px;
                }
                .st5-h {
                  font-size: 9px;
                }
                .st6-h {
                  font-family: "ArialMT";
                }
                .st7-h {
                  font-size: 11px;
                }
                .st8-h {
                  fill: #217c3f;
                }
                .st9-h {
                  font-size: 12px;
                }
                .st10-h {
                  fill: none;
                  stroke: #000000;
                  stroke-width: 0.75;
                  stroke-miterlimit: 10;
                }
                img.hero-deposit-img {
                  padding: 0;
                  display: inline-block;
                  width: 65.4%;
                  margin: 0;
                  float: left;
                }
                .hero-deposit-svg {
                  padding: 0;
                  display: inline-block;
                  width: 33.9%;
                  margin: 0;
                }
                @media only screen and (max-width: 576px) {
                  img.hero-deposit-img,
                  .hero-deposit-svg {
                    width: 100%;
                  }
                }

/* --- разделитель из разных <style> --- */

.iti {
      display: block !important;
    }

    .error {
      background: #f78282 !important;
      display: block !important;
    }

    .iti__country-list.iti__country-list--dropup {
      z-index: 2222;
    }
