/*
  SaldoYa redesign foundation.
  Scoped with sy-* classes so the legacy UI can keep working while screens are migrated.
*/

:root {
  --sy-bg: #f5f7fb;
  --sy-surface: #ffffff;
  --sy-text: #111827;
  --sy-heading: #242424;
  --sy-muted: #4b5563;
  --sy-help: #6b7280;
  --sy-brand: #00419b;
  --sy-action: #49de80;
  --sy-action-hover: #36c96f;
  --sy-action-text: #063f2b;
  --sy-success-soft: #ecfdf5;
  --sy-success-faint: #f6fffb;
  --sy-success-border: #bbf7d0;
  --sy-border: #d7dce3;
  --sy-border-soft: #e5e7eb;
  --sy-footer: #081427;
  --sy-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --sy-shadow-header: 0 8px 26px rgba(15, 23, 42, 0.08);
  --sy-radius-sm: 8px;
  --sy-radius-md: 12px;
  --sy-radius-lg: 18px;
}

.sy-page,
.sy-page * {
  box-sizing: border-box;
}

.sy-page {
  padding: 65px;
  background: var(--sy-bg);
  color: var(--sy-text);
  font-family: 'Quicksand', Arial, sans-serif;
}

.sy-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.sy-grid {
  display: grid;
  gap: 24px;
}

.navbar-site {
  height: 76px;
  min-height: 76px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
  border-bottom: 0 !important;
  border-radius: 0;
  background: #ffffff !important;
  box-shadow: var(--sy-shadow-header);
}

.sy-header-grid {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 680px);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  min-height: 76px;
}

.sy-header-logo-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.sy-header-logo-box .navbar-brand {
  margin-right: 0;
  padding: 0;
  padding-top: 10px;
}

.sy-header-logo-box img {
  max-width: 236px;
  height: auto;
  display: block;
}

.sy-header-actions-box {
  justify-content: flex-end;
  min-width: 0;
}

.sy-header-actions-box .navbar-left {
  display: none;
}

.sy-header-actions-box .navbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
  width: 100%;
  margin-left: auto !important;
}

.navbar.navbar-site .navbar-nav > li,
.navbar.navbar-light .navbar-nav > li {
  margin-top: 0;
  margin-bottom: 0;
}

.navbar.navbar-site .navbar-nav > li.postadd,
.navbar.navbar-light .navbar-nav > li.postadd {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #374151;
  height: auto;
  padding: 0;
  border-radius: 0;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--sy-brand);
}

.btn-post.btn-danger {
  padding: 9px 18px;
  border-color: var(--sy-action);
  border-radius: var(--sy-radius-md);
  background: var(--sy-action);
  color: var(--sy-action-text) !important;
  box-shadow: none;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  text-shadow: none;
  text-transform: none;
}

.btn-post.btn-danger:hover,
.btn-post.btn-danger:focus {
  border-color: var(--sy-action-hover);
  background: var(--sy-action-hover);
  color: var(--sy-action-text) !important;
}

.sy-home-page {
  padding-top: 40px;
}

.sy-login-page {
  padding-top: 40px;
  background:
    radial-gradient(circle at top left, rgba(73, 222, 128, 0.12), transparent 30%),
    radial-gradient(circle at right center, rgba(0, 65, 155, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, var(--sy-bg) 58%);
}

.sy-contact-page {
  padding-top: 40px;
  background:
    radial-gradient(circle at top left, rgba(73, 222, 128, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 65, 155, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, var(--sy-bg) 60%);
}

.sy-register-page {
  padding-top: 40px;
  background:
    radial-gradient(circle at top left, rgba(73, 222, 128, 0.12), transparent 30%),
    radial-gradient(circle at center right, rgba(0, 65, 155, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, var(--sy-bg) 60%);
}

.sy-home-section {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 680px);
  align-items: flex-start;
  gap: clamp(28px, 4vw, 56px);
  min-height: 585px;
  max-height: 690px;
  overflow: visible;
}

.sy-home-section > .sy-hero-copy {
  align-self: flex-start;
  padding-top: 52px;
}

.sy-hero-copy h1 {
  margin: 0 0 28px;
  color: var(--sy-heading);
  font-size: 50px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.sy-steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 34px;
}

.sy-step-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--sy-muted);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.28;
}

.sy-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  min-width: 34px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sy-brand);
  font-size: 28px;
}

.sy-step-text {
  flex: 1;
}

.review-widget {
  display: inline-block;
  max-width: 470px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.trustpilot-link {
  display: inline-block;
  margin-bottom: 6px;
  color: inherit;
  text-decoration: none !important;
}

.trustpilot-title {
  margin-bottom: 8px;
  color: var(--sy-text);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.trustpilot-stars {
  display: flex;
  gap: 7px;
  margin-bottom: 8px;
  color: #f5a623;
  font-size: 30px;
  line-height: 1;
}

.trustpilot-copy {
  margin-top: 4px;
  color: var(--sy-muted);
}

.review-widget strong {
  color: var(--sy-text);
  font-weight: 700;
}

.sy-calculator-card {
  width: 100%;
  max-width: 100%;
  padding: 24px 28px;
  border-radius: 28px;
  border: 0;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.sy-home-page .sy-calculator-card.sy-card {
  border: 0;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.sy-conversion-box {
  position: relative;
  min-width: 0;
  margin-bottom: 14px;
  padding: 8px 18px 14px;
  border: 1px solid var(--sy-border);
  border-radius: 20px;
  background: #ffffff;
}

.sy-conversion-box > label {
  position: relative;
  top: -19px;
  left: -4px;
  display: inline-block;
  margin: 0;
  padding: 0 8px;
  background: #ffffff;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
}

.sy-conversion-row {
  display: flex;
  align-items: center;
  min-width: 0;
  margin-top: -12px;
}

.sy-amount-input {
  flex: 1 1 auto;
  min-width: 280px;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--sy-text);
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  padding-left: 0;
  box-shadow: none !important;
  white-space: nowrap;
}

.sy-amount-input:focus {
  background: transparent;
  outline: none;
  box-shadow: none !important;
}

.sy-divider {
  flex-shrink: 0;
  width: 1px;
  height: 50px;
  margin: 0 18px;
  background: var(--sy-border-soft);
}

.sy-select-wrap,
.sy-image-select-shell {
  flex: 0 0 250px;
  min-width: 0;
}

.sy-home-page .cryptoexchanger-select {
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--sy-text);
  font-size: 17px;
  font-weight: 700;
}

.sy-home-page .dd-container,
.sy-home-page .dd-select,
.sy-home-page .dd-options {
  width: 100% !important;
}

.sy-home-page .dd-select {
  min-height: 58px;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  overflow: hidden;
}

.sy-home-page .dd-selected,
.sy-home-page .dd-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 8px 30px 8px 4px;
  color: var(--sy-text);
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
}

.sy-home-page .dd-option {
  font-size: 15px;
  padding: 12px 14px;
}

.sy-home-page .dd-selected-image,
.sy-home-page .dd-option-image {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin: 0 !important;
}

.sy-home-page .dd-option-image {
  flex-basis: 36px;
  width: 36px;
  height: 36px;
}

.sy-home-page .dd-selected-text,
.sy-home-page .dd-option-text {
  display: block;
  position: static;
  top: auto;
  left: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--sy-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2 !important;
  white-space: normal;
}

.sy-home-page .dd-option-text {
  font-size: 15px;
}

.sy-home-page .dd-pointer {
  right: 14px;
}

.sy-home-page .dd-options {
  border: 1px solid var(--sy-border);
  border-radius: 16px;
  box-shadow: var(--sy-shadow-soft);
  overflow: hidden;
}

.sy-swap-icon {
  display: flex;
  justify-content: center;
  margin: 14px 0;
  color: var(--sy-brand);
}

.sy-swap-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sy-success-border);
  border-radius: 50%;
  background: var(--sy-success-soft);
}

.sy-rate-box {
  margin-top: 18px;
}

.sy-rate-main {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--sy-success-border);
  border-radius: var(--sy-radius-sm);
  background: var(--sy-success-faint);
}

.sy-rate-icon,
.sy-message-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sy-success-soft);
  color: var(--sy-brand);
}

.sy-discount-icon {
  border-radius: 0;
  background: transparent;
  color: #00419b;
}

.sy-discount-icon i {
  font-size: 18px;
}

.sy-rate-content {
  min-width: 0;
  flex: 1 1 auto;
}

.sy-rate-label {
  color: var(--sy-help);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sy-rate-value {
  color: var(--sy-action-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.sy-rate-help {
  color: var(--sy-brand);
}

.sy-rate-message {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid var(--sy-border-soft);
  border-radius: var(--sy-radius-sm);
  background: #ffffff;
  color: var(--sy-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.sy-rate-message strong,
.sy-rate-message small {
  display: block;
}

.sy-rate-message strong {
  margin-bottom: 2px;
  color: var(--sy-text);
  font-size: 18px;
  font-weight: 800;
}

.sy-rate-message small {
  color: var(--sy-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.sy-home-page .sy-main-button {
  width: 100%;
  margin-top: 18px;
}

.sy-main-button.is-loading,
.sy-main-button.disabled,
.sy-main-button:disabled {
  cursor: wait;
  opacity: 1;
  border-color: var(--sy-action);
  background: var(--sy-action);
  color: var(--sy-action-text) !important;
  box-shadow: 0 12px 24px rgba(73, 222, 128, 0.26);
}

.sy-main-button.is-loading i,
.sy-main-button.disabled .spinner-border,
.sy-main-button:disabled .spinner-border {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-width: 2px;
  font-size: .95em;
}

.sy-home-page #ce_status_loading {
  display: none !important;
}

.sy-loading-status,
.sy-form-status,
.sy-general-messages {
  margin-top: 12px;
  text-align: center;
}

.sy-small-note {
  margin-top: 12px;
  color: var(--sy-help);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.sy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid var(--sy-success-border);
  border-radius: 999px;
  background: var(--sy-success-soft);
  color: #065f46;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.sy-page-title {
  margin: 14px 0 0;
  color: var(--sy-heading);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.12;
}

.sy-page-subtitle {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--sy-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.sy-card {
  border: 1px solid var(--sy-border-soft);
  border-radius: var(--sy-radius-sm);
  background: var(--sy-surface);
  box-shadow: var(--sy-shadow-soft);
}

.sy-card-title {
  margin: 0;
  color: var(--sy-text);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
}

.sy-card-description {
  margin: 8px 0 0;
  color: var(--sy-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.sy-auth-shell {
  padding-top: 14px;
  padding-bottom: 56px;
}

.sy-auth-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(460px, 620px);
  gap: 32px;
  align-items: start;
}

.sy-auth-copy {
  padding: 22px 0 0;
}

.sy-auth-copy .sy-page-title,
.sy-auth-copy .sy-page-subtitle {
  max-width: 720px;
}

.sy-auth-panel {
  width: 100%;
  max-width: 620px;
  padding: 32px;
}

.sy-login-page .sy-card-header {
  margin-bottom: 18px;
}

.sy-auth-results:empty {
  display: none;
}

.sy-auth-form {
  margin-top: 10px;
}

.sy-auth-group {
  margin-bottom: 18px;
}

.sy-auth-label {
  display: block;
  margin-bottom: 8px;
  color: var(--sy-text);
  font-size: 14px;
  font-weight: 700;
}

.sy-auth-input-wrap {
  position: relative;
}

.sy-auth-input-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #7b8794;
  font-size: 15px;
  pointer-events: none;
}

.sy-auth-input.form-control {
  height: 56px;
  padding: 0 16px 0 46px;
  border: 1px solid var(--sy-border-soft);
  border-radius: 16px;
  box-shadow: none;
  color: var(--sy-text);
  font-size: 16px;
  font-weight: 600;
}

.sy-auth-input.form-control:focus {
  border-color: rgba(0, 65, 155, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 65, 155, 0.08);
}

.sy-auth-captcha {
  margin-top: 6px;
}

.sy-auth-actions {
  margin: 22px 0 0;
}

.sy-auth-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--sy-border-soft);
}

.sy-auth-link {
  color: var(--sy-brand);
  font-size: 14px;
  font-weight: 700;
}

.sy-auth-link:hover,
.sy-auth-link:focus {
  color: #002f70;
  text-decoration: none;
}

.sy-auth-signup {
  margin: 0;
  color: var(--sy-muted);
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.sy-auth-signup a {
  color: var(--sy-brand);
}

.sy-contact-shell {
  padding-top: 14px;
  padding-bottom: 56px;
}

.sy-contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(520px, 700px);
  gap: 32px;
  align-items: start;
}

.sy-contact-copy {
  padding: 22px 0 0;
}

.sy-contact-copy .sy-page-title,
.sy-contact-copy .sy-page-subtitle {
  max-width: 760px;
}

.sy-contact-highlights {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.sy-contact-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
}

.sy-contact-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--sy-success-border);
  border-radius: 14px;
  background: var(--sy-success-soft);
  color: var(--sy-brand);
  font-size: 20px;
}

.sy-contact-highlight h2 {
  margin: 0;
  color: var(--sy-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.sy-contact-highlight p {
  margin: 7px 0 0;
  color: var(--sy-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.sy-contact-highlight-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--sy-brand);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.sy-contact-highlight-link:hover,
.sy-contact-highlight-link:focus {
  color: #002f70;
  text-decoration: none;
}

.sy-contact-panel {
  width: 100%;
  max-width: 700px;
  padding: 32px;
}

.sy-contact-results:empty {
  display: none;
}

.sy-contact-form {
  margin-top: 8px;
}

.sy-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.sy-contact-group {
  margin: 0;
}

.sy-contact-group-full {
  grid-column: 1 / -1;
}

.sy-contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--sy-text);
  font-size: 14px;
  font-weight: 700;
}

.sy-contact-input.form-control,
.sy-contact-textarea.form-control {
  border: 1px solid var(--sy-border-soft);
  border-radius: 16px;
  box-shadow: none;
  color: var(--sy-text);
  font-size: 16px;
  font-weight: 600;
}

.sy-contact-input.form-control {
  height: 56px;
  padding: 0 16px;
}

.sy-contact-textarea.form-control {
  min-height: 170px;
  padding: 14px 16px;
  resize: vertical;
}

.sy-contact-input.form-control:focus,
.sy-contact-textarea.form-control:focus {
  border-color: rgba(0, 65, 155, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 65, 155, 0.08);
}

.sy-contact-captcha {
  margin-top: 20px;
}

.sy-contact-actions {
  margin: 22px 0 0;
}

.sy-register-shell {
  padding-top: 14px;
  padding-bottom: 56px;
}

.sy-register-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(520px, 700px);
  gap: 32px;
  align-items: start;
}

.sy-register-copy {
  padding: 22px 0 0;
}

.sy-register-copy .sy-page-title,
.sy-register-copy .sy-page-subtitle {
  max-width: 760px;
}

.sy-register-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 22px;
}

.sy-register-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--sy-success-border);
  border-radius: 14px;
  background: var(--sy-success-soft);
  color: var(--sy-brand);
  font-size: 20px;
}

.sy-register-highlight h2 {
  margin: 0;
  color: var(--sy-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.sy-register-highlight p {
  margin: 7px 0 0;
  color: var(--sy-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.sy-register-panel {
  width: 100%;
  max-width: 700px;
  padding: 32px;
}

.sy-register-results:empty {
  display: none;
}

.sy-register-form {
  margin-top: 8px;
}

.sy-register-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.sy-register-group {
  margin: 0;
}

.sy-register-group-full {
  grid-column: 1 / -1;
}

.sy-register-label {
  display: block;
  margin-bottom: 8px;
  color: var(--sy-text);
  font-size: 14px;
  font-weight: 700;
}

.sy-register-label sup {
  color: var(--sy-brand);
}

.sy-register-input.form-control {
  height: 56px;
  padding: 0 16px;
  border: 1px solid var(--sy-border-soft);
  border-radius: 16px;
  box-shadow: none;
  color: var(--sy-text);
  font-size: 16px;
  font-weight: 600;
}

.sy-register-input.form-control:focus {
  border-color: rgba(0, 65, 155, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 65, 155, 0.08);
}

.sy-register-help {
  display: block;
  margin-top: 8px;
  color: var(--sy-help);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.sy-register-captcha {
  margin-top: 20px;
}

.sy-register-terms {
  margin-top: 18px;
}

.sy-register-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: var(--sy-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.sy-register-checkbox input {
  margin-top: 3px;
  flex: 0 0 auto;
}

.sy-register-checkbox a {
  color: var(--sy-brand);
  font-weight: 700;
}

.sy-register-actions {
  margin: 22px 0 0;
}

.sy-exchange-hero {
  padding: 16px 0 54px;
}

.sy-exchange-page {
  padding-top: 32px;
}

.sy-order-page {
  padding-top: 32px;
}

.sy-pay-page {
  padding-top: 32px;
}

.sy-page-title-block {
  margin-bottom: 24px;
}

.sy-exchange-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.sy-exchange-card {
  padding: 26px;
}

.sy-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.sy-card-header-centered {
  justify-content: center;
  text-align: center;
}

.sy-rate-update {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--sy-brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.sy-operation-summary-card {
  padding: 18px;
  border: 1px solid var(--sy-border-soft);
  border-radius: var(--sy-radius-sm);
  background: #fbfdff;
}

.sy-confirmation-card {
  padding: 26px;
}

.sy-order-id-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--sy-success-border);
  border-radius: 999px;
  background: var(--sy-success-soft);
  color: var(--sy-action-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.sy-operation-card {
  padding: 18px;
  border: 1px solid var(--sy-border-soft);
  border-radius: var(--sy-radius-sm);
  background: #fbfdff;
}

.sy-operation-summary-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.sy-operation-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.sy-operation-side {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.sy-operation-side.is-receive {
  justify-content: flex-start;
}

.sy-operation-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.sy-gateway-logo {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  border: 1px solid var(--sy-border-soft);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.sy-gateway-name {
  display: block;
  color: var(--sy-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.sy-gateway-meta {
  display: block;
  color: var(--sy-brand);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.sy-operation-amount {
  display: block;
  color: var(--sy-brand);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.18;
}

.sy-operation-arrow-wrap {
  display: flex;
  justify-content: center;
}

.sy-operation-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sy-success-soft);
  color: var(--sy-action-text);
  border: 1px solid var(--sy-success-border);
}

.sy-operation-limits {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  margin-top: 12px;
  color: var(--sy-help);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.sy-form-section {
  margin-top: 26px;
}

.sy-form-section-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--sy-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.sy-form-section-title i {
  color: var(--sy-brand);
}

.sy-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.sy-flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--sy-border-soft);
  border-radius: var(--sy-radius-sm);
  background: var(--sy-surface);
  color: var(--sy-help);
}

.sy-flow-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef2f7;
  color: var(--sy-help);
  font-size: 13px;
  font-weight: 800;
}

.sy-flow-step-text {
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.sy-flow-step.is-active {
  border-color: var(--sy-success-border);
  background: var(--sy-success-soft);
  color: var(--sy-action-text);
}

.sy-flow-step.is-active .sy-flow-step-number {
  background: var(--sy-action);
  color: var(--sy-action-text);
}

.sy-flow-step.is-done .sy-flow-step-number {
  background: var(--sy-brand);
  color: #ffffff;
}

.sy-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sy-form-group {
  margin-bottom: 0;
}

.sy-form-group.is-full {
  grid-column: 1 / -1;
}

.sy-form-group label,
.sy-form-label {
  display: block;
  margin-bottom: 7px;
  color: var(--sy-text);
  font-size: 14px;
  font-weight: 700;
}

.sy-form-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius-sm);
  background: #ffffff;
  color: var(--sy-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: none;
}

.sy-form-control:focus {
  border-color: var(--sy-brand);
  box-shadow: 0 0 0 3px rgba(0, 65, 155, 0.12);
}

textarea.sy-form-control {
  min-height: 96px;
  resize: vertical;
}

.sy-field-help {
  display: block;
  margin-top: 6px;
  color: var(--sy-help);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.sy-user-fields .form-group {
  margin-bottom: 0;
}

.sy-user-fields .form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--sy-text);
  font-size: 14px;
  font-weight: 700;
}

.sy-user-fields .form-group .form-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius-sm);
  background: #ffffff;
  color: var(--sy-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: none;
}

.sy-user-fields .form-group textarea.form-control {
  min-height: 96px;
  resize: vertical;
}

.sy-user-fields .form-group .form-control:focus {
  border-color: var(--sy-brand);
  box-shadow: 0 0 0 3px rgba(0, 65, 155, 0.12);
}

.sy-submit-area {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--sy-border-soft);
}

.sy-recaptcha-slot:empty {
  display: none;
}

.sy-terms-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: var(--sy-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.sy-terms-row input {
  margin-top: 3px;
}

.sy-terms-row a {
  color: var(--sy-brand);
  font-weight: 700;
}

.sy-submit-actions {
  display: flex;
  justify-content: center;
}

.sy-main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  height: 56px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--sy-action);
  border-radius: 16px;
  background: var(--sy-action);
  color: var(--sy-action-text) !important;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 0 12px 24px rgba(73, 222, 128, 0.26);
}

.sy-main-button:hover,
.sy-main-button:focus {
  border-color: var(--sy-action-hover);
  background: var(--sy-action-hover);
  color: var(--sy-action-text) !important;
}

.sy-rate-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--sy-success-border);
  border-radius: var(--sy-radius-sm);
  background: var(--sy-success-faint);
}

.sy-rate-inline-label,
.sy-rate-inline-value {
  min-width: 0;
  color: var(--sy-action-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.sy-rate-inline-value {
  text-align: right;
}

.sy-rate-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--sy-success-border);
  border-radius: var(--sy-radius-sm);
  background: var(--sy-success-faint);
}

.sy-rate-strip-label,
.sy-rate-strip-value {
  min-width: 0;
  color: var(--sy-action-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.sy-rate-strip-value {
  text-align: right;
}

.sy-confirmation-summary {
  margin-top: 22px;
  border: 1px solid var(--sy-border-soft);
  border-radius: var(--sy-radius-sm);
  overflow: hidden;
  background: #ffffff;
}

.sy-summary-table {
  width: 100%;
  margin: 0;
  color: var(--sy-text);
  font-size: 14px;
  font-weight: 600;
}

.sy-summary-table td {
  padding: 13px 16px;
  border-top: 1px solid var(--sy-border-soft);
  vertical-align: middle;
}

.sy-summary-table tr:first-child td {
  border-top: 0;
}

.sy-summary-table td:first-child {
  width: 32%;
  color: var(--sy-muted);
  background: #f8fafc;
  font-weight: 700;
}

.sy-summary-table .float-right {
  float: none !important;
  display: block;
  text-align: right;
  overflow-wrap: anywhere;
}

.sy-summary-table .float-left {
  float: none !important;
}

.sy-order-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.sy-order-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  border-radius: var(--sy-radius-md);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.sy-order-actions .btn-primary {
  border-color: var(--sy-action);
  background: var(--sy-action);
  color: var(--sy-action-text) !important;
}

.sy-order-actions .btn-primary:hover,
.sy-order-actions .btn-primary:focus {
  border-color: var(--sy-action-hover);
  background: var(--sy-action-hover);
  color: var(--sy-action-text) !important;
}

.sy-order-actions .btn-danger {
  border-color: #fee2e2;
  background: #fff1f2;
  color: #9f1239 !important;
}

.sy-pay-form,
.sy-pay-form .pay_form {
  font-size: 16px;
}

.sy-pay-home-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.sy-pay-home-action:empty {
  display: none;
}

.sy-pay-home-action .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  border-radius: var(--sy-radius-md);
  font-size: 16px;
  font-weight: 800;
}

.sy-manual-pay {
  display: grid;
  gap: 22px;
}

.sy-pay-page .sy-operation-card {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.sy-instructions-body {
  display: grid;
  gap: 18px;
}

.sy-instruction-panel {
  padding: 18px;
  border: 1px solid var(--sy-success-border);
  border-radius: var(--sy-radius-sm);
  background: var(--sy-success-faint);
  color: var(--sy-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.sy-pay-page .sy-instruction-panel {
  font-size: 28px;
}

.sy-exchange-rules:empty,
.sy-attachment-area:empty,
.sy-transaction-area:empty {
  display: none;
}

.sy-exchange-rules {
  border-radius: var(--sy-radius-sm);
  overflow: visible;
}

.sy-exchange-rules .dxaccordion {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--sy-border-soft);
  border-radius: var(--sy-radius-sm);
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.sy-exchange-rules .dxtheme-white li a {
  border-bottom-color: var(--sy-border-soft);
  background: #ffffff;
  color: var(--sy-text);
}

.sy-exchange-rules .dxtheme-white li a:hover,
.sy-exchange-rules .dxtheme-white li > a:hover,
.sy-exchange-rules .dxtheme-white li > a.dxopen {
  background: var(--sy-success-soft);
  color: var(--sy-action-text);
}

.sy-exchange-rules .dxtheme-white ul li > section {
  padding: 18px;
  color: var(--sy-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.sy-exchange-rules .dxtheme-white li a .dxaccordion-indicator {
  border-left-color: var(--sy-border-soft);
}

.sy-attachment-area,
.sy-transaction-area {
  padding-top: 2px;
}

.sy-attachment-area form,
.sy-transaction-area form {
  margin: 0;
}

.sy-attachment-area .row,
.sy-transaction-area .row {
  align-items: center;
}

.sy-attachment-area .attachment-msg {
  color: var(--sy-muted);
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.45;
}

.sy-attachment-area .input-group,
.sy-transaction-area .input-group {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.sy-attachment-area .form-control {
  min-height: 46px;
  border-color: var(--sy-border);
  border-radius: var(--sy-radius-sm) 0 0 var(--sy-radius-sm);
}

.sy-attachment-area .btn,
.sy-transaction-area .btn:not(.sy-main-button) {
  min-height: 46px;
  border-radius: var(--sy-radius-sm);
  font-weight: 800;
}

.sy-attachment-area .input-group-append .btn {
  border-radius: 0 var(--sy-radius-sm) var(--sy-radius-sm) 0;
}

.sy-transaction-area center {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  color: var(--sy-muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.sy-instruction-message {
  margin-bottom: 42px;
  color: var(--sy-text);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 1px;
  text-align: center;
}

.sy-whatsapp-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
}

.sy-whatsapp-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 370px;
  height: 58px;
  padding: 8px 18px;
  border-radius: 12px;
  background: #00d20f;
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(0, 210, 15, 0.22);
  text-decoration: none !important;
  transition: all .2s ease;
}

.sy-whatsapp-banner:hover,
.sy-whatsapp-banner:focus {
  background: #00bf0d;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

.sy-whatsapp-banner i {
  width: 38px;
  height: 38px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 25px;
}

.sy-whatsapp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.sy-whatsapp-text small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 800;
}

.sy-whatsapp-text strong {
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .4px;
}

.sy-transaction-area .input-group-append {
  justify-content: center;
}

.sy-transaction-area div[style*="margin-left"] {
  margin-left: 0 !important;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.sy-hidden-calculator-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.sy-seo-section {
  padding: 0 0 64px;
}

.sy-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sy-seo-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--sy-border-soft);
  border-radius: var(--sy-radius-sm);
  background: #ffffff;
}

.sy-seo-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--sy-success-soft);
  color: var(--sy-brand);
}

.sy-seo-card h3 {
  margin: 0 0 7px;
  color: var(--sy-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.sy-seo-card p {
  margin: 0;
  color: var(--sy-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.cryptoexchanger-reviews {
  margin: 0;
  padding: 64px 0 70px;
  border-radius: 0;
  background: #8efff0;
  color: var(--sy-text);
  font-family: 'Quicksand', Arial, sans-serif;
}

.cryptoexchanger-reviews .sy-shell {
  max-width: 1440px;
}

.cryptoexchanger-reviews .testimonial-card-heading {
  margin: 0 0 14px;
  color: var(--sy-text);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.cryptoexchanger-reviews .testimonial-author-name-three {
  margin: 0 0 8px;
  color: var(--sy-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.cryptoexchanger-reviews .testimonial-text-three {
  margin: 0 0 6px;
  color: #374151;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.cryptoexchanger-opstatus {
  padding: 64px 0 70px;
  background: #ffffff;
  color: var(--sy-text);
  font-family: 'Quicksand', Arial, sans-serif;
}

.cryptoexchanger-opstatus .sy-shell {
  max-width: 1440px;
}

.sy-quotes-header {
  max-width: 960px;
  margin-bottom: 28px;
}

.sy-quotes-kicker {
  margin: 0 0 8px;
  color: var(--sy-brand);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.sy-quotes-title {
  margin: 0 0 12px;
  color: var(--sy-text);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.sy-quotes-description {
  margin: 0;
  color: var(--sy-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.sy-quotes-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.sy-quotes-table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
}

.sy-quotes-table th,
.sy-quotes-table td {
  padding: 18px 20px;
  color: var(--sy-text);
  font-size: 16px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.sy-quotes-table thead tr {
  background: #beffe8;
}

.sy-quotes-table th {
  color: #064e3b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.sy-quotes-table tbody tr {
  border-bottom: 1px solid var(--sy-border-soft);
}

.sy-quotes-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.sy-quotes-table tbody tr:last-child {
  border-bottom: 0;
}

.sy-quotes-table td:not(:first-child) {
  font-weight: 500;
}

.sy-quote-logo {
  display: block;
  max-width: 150px;
  height: auto;
}

.sy-quotes-note {
  max-width: 980px;
  margin: 20px auto 0;
  border-left: 0;
  color: var(--sy-brand);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.cryptoexchanger-news {
  margin: 0;
  padding: 64px 0 70px;
  border-radius: 0;
  background: var(--sy-bg);
  color: var(--sy-text);
  font-family: 'Quicksand', Arial, sans-serif;
}

.cryptoexchanger-news .sy-shell {
  max-width: 1440px;
}

.sy-news-header {
  margin-bottom: 24px;
}

.sy-news-title {
  margin: 0;
  color: var(--sy-text);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.sy-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.sy-news-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sy-news-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #8efff0;
  color: var(--sy-brand);
  font-size: 25px;
}

.sy-news-content {
  flex: 1;
  min-width: 0;
}

.sy-news-card h4 {
  margin: 0 0 8px;
  color: var(--sy-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.22;
}

.sy-news-card h4 a {
  color: inherit;
  text-decoration: none;
}

.sy-news-card h4 a:hover {
  color: var(--sy-brand);
  text-decoration: none;
}

.sy-news-card p {
  margin: 0 0 12px;
  color: var(--sy-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.sy-news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sy-brand);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-decoration: none;
}

.sy-news-link:hover {
  color: #003176;
  text-decoration: none;
}

.main-footer {
  padding: 0;
  background: var(--sy-footer);
  color: #dbeafe;
  font-family: 'Quicksand', Arial, sans-serif;
}

.main-footer .footer-content {
  padding: 58px 0 26px;
  border: 0;
  background: var(--sy-footer);
  color: #dbeafe;
}

.main-footer .container {
  max-width: 1440px;
}

.main-footer .footer-brand {
  max-width: 340px;
  margin-bottom: 30px;
}

.main-footer .footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.main-footer .footer-logo img {
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.main-footer .footer-brand-text {
  margin: 0 0 18px;
  color: #b6c6da;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.main-footer .footer-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(142, 255, 240, 0.18);
  border-radius: 999px;
  background: rgba(142, 255, 240, 0.10);
  color: #8efff0;
  font-size: 13px;
  font-weight: 700;
}

.main-footer .footer-col {
  margin-bottom: 28px;
}

.main-footer .footer-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.main-footer .footer-nav {
  margin: 0;
  padding: 0;
}

.main-footer .footer-nav li {
  margin-bottom: 10px;
}

.main-footer .footer-nav li:last-child {
  margin-bottom: 0;
}

.main-footer .footer-nav a {
  color: #b6c6da;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: color .15s ease;
}

.main-footer .footer-nav a:hover {
  color: #8efff0;
  text-decoration: none;
}

.main-footer .footer-nav-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.main-footer .footer-nav-inline li {
  margin-bottom: 0;
}

.main-footer .icon-color {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(142, 255, 240, 0.11);
  color: #8efff0 !important;
  font-size: 22px;
  text-decoration: none;
}

.main-footer .icon-color:hover {
  background: var(--sy-action);
  color: var(--sy-action-text) !important;
  transform: translateY(-1px);
}

.main-footer .copy-info {
  margin-top: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa3bb;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.main-footer br {
  display: none;
}

@media (max-width: 1199.98px) {
  .sy-header-grid,
  .sy-home-section {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 560px);
    gap: 28px;
  }

  .sy-hero-copy h1 {
    font-size: 42px;
  }

  .sy-step-item {
    font-size: 18px;
  }

  .sy-calculator-card {
    padding: 22px;
  }

  .sy-conversion-box {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sy-amount-input {
    min-width: 160px;
    font-size: 32px;
  }

  .sy-divider {
    margin-left: 10px;
    margin-right: 10px;
  }

  .sy-select-wrap,
  .sy-image-select-shell {
    flex-basis: 200px;
  }
}

@media (max-width: 1099.98px) {
  .sy-home-section {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    max-height: none;
    align-items: stretch;
    padding-bottom: 42px;
  }

  .sy-home-section > .sy-hero-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .sy-calculator-card {
    max-width: 680px;
  }

  .sy-auth-grid {
    grid-template-columns: 1fr;
  }

  .sy-auth-panel {
    max-width: 680px;
  }

  .sy-contact-grid {
    grid-template-columns: 1fr;
  }

  .sy-contact-panel {
    max-width: 760px;
  }

  .sy-register-grid {
    grid-template-columns: 1fr;
  }

  .sy-register-panel {
    max-width: 760px;
  }
}

@media (max-width: 991.98px) {
  .sy-page {
    padding-top: 96px;
  }

  .sy-header-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sy-header-logo-box {
    width: 100%;
    justify-content: space-between;
  }

  .sy-header-actions-box {
    width: 100%;
    margin-top: 12px;
  }

  .sy-header-actions-box .navbar-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
  }

  .sy-exchange-page {
    padding-top: 88px;
  }

  .sy-order-page {
    padding-top: 88px;
  }

  .sy-pay-page {
    padding-top: 88px;
  }

  .sy-page-title {
    font-size: 34px;
  }

  .sy-home-page {
    padding-top: 88px;
  }

  .sy-login-page {
    padding-top: 88px;
  }

  .sy-contact-page {
    padding-top: 88px;
  }

  .sy-register-page {
    padding-top: 88px;
  }

  .sy-home-section {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
    padding-top: 0;
  }

  .sy-hero-copy h1 {
    font-size: 42px;
  }

  .sy-exchange-card {
    padding: 22px;
  }

  .sy-auth-shell {
    padding-bottom: 36px;
  }

  .sy-auth-copy {
    padding-top: 0;
  }

  .sy-auth-panel {
    padding: 24px;
  }

  .sy-auth-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .sy-auth-signup {
    text-align: left;
  }

  .sy-contact-shell {
    padding-bottom: 36px;
  }

  .sy-contact-copy {
    padding-top: 0;
  }

  .sy-contact-panel {
    padding: 24px;
  }

  .sy-contact-form-grid {
    grid-template-columns: 1fr;
  }

  .sy-register-shell {
    padding-bottom: 36px;
  }

  .sy-register-copy {
    padding-top: 0;
  }

  .sy-register-panel {
    padding: 24px;
  }

  .sy-register-form-grid {
    grid-template-columns: 1fr;
  }

  .sy-card-header {
    flex-direction: column;
  }

  .sy-operation-summary-main {
    grid-template-columns: 1fr;
  }

  .sy-operation-main {
    grid-template-columns: 1fr;
  }

  .sy-operation-arrow-wrap {
    justify-content: flex-start;
    padding-left: 70px;
  }

  .sy-operation-arrow {
    transform: rotate(90deg);
  }

  .sy-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sy-seo-grid {
    grid-template-columns: 1fr;
  }

  .cryptoexchanger-opstatus {
    padding: 46px 0 52px;
  }

  .sy-quotes-title {
    font-size: 28px;
  }

  .sy-quotes-table-wrap {
    overflow-x: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .sy-quotes-table,
  .sy-quotes-table thead,
  .sy-quotes-table tbody,
  .sy-quotes-table tr,
  .sy-quotes-table td,
  .sy-quotes-table th {
    display: block;
  }

  .sy-quotes-table {
    border-radius: 0;
    background: transparent;
  }

  .sy-quotes-table thead {
    display: none;
  }

  .sy-quotes-table tbody tr {
    margin-bottom: 14px;
    padding: 16px;
    border: 1px solid var(--sy-border-soft);
    border-radius: 18px;
    background: #ffffff !important;
  }

  .sy-quotes-table tbody tr td {
    position: relative;
    min-height: 44px;
    padding: 12px 0 12px 46%;
    border-bottom: 1px solid #f1f5f9;
    white-space: normal;
  }

  .sy-quotes-table tbody tr td:last-child {
    border-bottom: 0;
  }

  .sy-quotes-table tbody tr td:before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 40%;
    color: var(--sy-brand);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
  }

  .sy-quotes-table tbody tr td:nth-child(1):before {
    content: "Plataforma";
  }

  .sy-quotes-table tbody tr td:nth-child(2):before {
    content: "Transf. Bcria.";
  }

  .sy-quotes-table tbody tr td:nth-child(3):before {
    content: "Efvo. ARS";
  }

  .sy-quotes-table tbody tr td:nth-child(4):before {
    content: "Efvo. USD";
  }

  .sy-quotes-table tbody tr td:nth-child(5):before {
    content: "USDT";
  }

  .sy-quote-logo {
    max-width: 135px;
  }
}

@media (max-width: 575.98px) {
  .sy-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sy-page-title {
    font-size: 30px;
  }

  .sy-page-subtitle {
    font-size: 16px;
  }

  .sy-hero-copy h1 {
    font-size: 34px;
  }

  .sy-header-logo-box img {
    width: 196px;
  }

  .sy-calculator-card {
    padding: 16px;
  }

  .sy-conversion-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .sy-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .sy-amount-input {
    min-width: 0;
    font-size: 32px;
    text-align: center;
  }

  .sy-select-wrap,
  .sy-image-select-shell {
    flex: 0 0 auto;
    width: 100%;
  }

  .sy-flow-steps,
  .sy-form-grid {
    grid-template-columns: 1fr;
  }

  .sy-exchange-card,
  .sy-confirmation-card,
  .sy-operation-summary-card,
  .sy-operation-card {
    padding: 16px;
  }

  .sy-auth-panel {
    padding: 20px 18px;
  }

  .sy-auth-input.form-control {
    height: 52px;
  }

  .sy-contact-highlight {
    padding: 18px;
  }

  .sy-contact-panel {
    padding: 20px 18px;
  }

  .sy-contact-input.form-control {
    height: 52px;
  }

  .sy-register-highlight {
    padding: 18px;
  }

  .sy-register-panel {
    padding: 20px 18px;
  }

  .sy-register-input.form-control {
    height: 52px;
  }

  .sy-operation-amount {
    font-size: 24px;
  }

  .sy-operation-limits {
    justify-content: flex-start;
  }

  .sy-main-button {
    width: 100%;
    min-width: 0;
  }

  .sy-rate-inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .sy-rate-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .sy-rate-inline-value {
    text-align: left;
  }

  .sy-rate-strip-value {
    text-align: left;
  }

  .sy-summary-table,
  .sy-summary-table tbody,
  .sy-summary-table tr,
  .sy-summary-table td {
    display: block;
    width: 100%;
  }

  .sy-summary-table td {
    padding: 11px 13px;
  }

  .sy-summary-table td:first-child {
    width: 100%;
    padding-bottom: 4px;
  }

  .sy-summary-table td + td {
    padding-top: 4px;
  }

  .sy-summary-table .float-right {
    text-align: left;
  }

  .sy-order-actions .btn {
    width: 100%;
  }

  .sy-pay-home-action .btn {
    width: 100%;
  }

  .sy-instruction-panel {
    text-align: left;
  }

  .sy-pay-page .sy-operation-card {
    width: 100%;
  }

  .sy-pay-page .sy-instruction-panel {
    font-size: 22px;
  }

  .sy-transaction-area center {
    font-size: 16px;
  }

  .sy-instruction-message {
    font-size: 24px;
    letter-spacing: 0;
  }

  .sy-whatsapp-banner {
    min-width: 0;
    width: 100%;
    max-width: 370px;
  }

  .sy-whatsapp-text strong {
    font-size: 18px;
  }

  .cryptoexchanger-reviews,
  .cryptoexchanger-news {
    padding: 46px 0 52px;
  }

  .sy-news-title {
    font-size: 28px;
  }

  .sy-news-card {
    align-items: flex-start;
  }

  .sy-news-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 22px;
  }

  .sy-news-card h4 {
    font-size: 20px;
  }

  .sy-news-card p {
    font-size: 15px;
  }
}
