.fcf-open {
  overflow: hidden;
}

.fcf-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  box-sizing: border-box;
  font-family: Arial, "Helvetica Neue", sans-serif;
}

.fcf-modal.is-open {
  display: flex;
}

.fcf-shade {
  position: absolute;
  inset: 0;
  background: rgba(24, 23, 26, .54);
  backdrop-filter: blur(3px);
}

.fcf-dialog {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100vw - 56px));
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 184, 202, .55), transparent 32%),
    radial-gradient(circle at 95% 95%, rgba(255, 211, 220, .72), transparent 30%),
    linear-gradient(135deg, #fff6f8 0%, #fff 48%, #fff1f5 100%);
  box-shadow: 0 28px 90px rgba(70, 26, 42, .28);
}

.fcf-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #b7445f;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(117, 49, 70, .16);
}

.fcf-screen {
  min-height: 520px;
  padding: 44px 44px 34px;
  box-sizing: border-box;
}

.fcf-screen[hidden] {
  display: none !important;
}

.fcf-screen-intro {
  display: grid;
  grid-template-columns: 53% 47%;
  gap: 28px;
  align-items: center;
}

.fcf-media {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fcf-wheel-box {
  position: relative;
  width: min(470px, 100%);
}

.fcf-wheel-rotor {
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  will-change: transform;
}

.fcf-wheel {
  width: 100%;
  height: auto;
  display: block;
}

.fcf-pointer {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 76px;
  height: 76px;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff0a8 0%, #d9ac45 30%, #fff3b9 60%, #c99128 100%);
  box-shadow: 0 10px 28px rgba(113, 74, 12, .28);
  z-index: 5;
}

.fcf-pointer::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 38px solid #d9ac45;
}

.fcf-pointer::after {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 28px solid #ef4a77;
}

.fcf-pointer span {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #ef4a77;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.72);
}

.fcf-pointer span::before {
  content: "♥";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #fff;
}

.fcf-brand {
  margin-bottom: 16px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 38px;
  color: #20212b;
  text-align: center;
}

.fcf-brand span {
  color: #ef496f;
  font-size: .55em;
  margin-left: 4px;
}

.fcf-title {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.05;
  color: #20212b;
  text-align: center;
}

.fcf-text {
  margin: 0 auto 22px;
  max-width: 390px;
  font-size: 18px;
  line-height: 1.5;
  color: #4d4d57;
  text-align: center;
}

.fcf-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 28px;
  color: #51515a;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.fcf-benefits span::before {
  content: "✿";
  display: block;
  margin-bottom: 6px;
  color: #ef496f;
  font-size: 22px;
}

.fcf-button {
  width: min(330px, 100%);
  height: 62px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #f64f78, #e72f62);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(231, 47, 98, .26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fcf-button:disabled {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
}

.fcf-content {
  text-align: center;
}

.fcf-mobile-note {
  display: none;
}

.fcf-wheel-rotor.is-spinning {
  animation: fcfWheelSpin 5.2s cubic-bezier(.08,.78,.16,1) forwards;
}

@keyframes fcfWheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(var(--fcf-end-deg, 1800deg)); }
}

.fcf-screen-result {
  display: grid;
  place-items: center;
}

.fcf-result {
  text-align: center;
  max-width: 430px;
  margin: 0 auto;
}

.fcf-prize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 16px 28px;
  border-radius: 20px;
  background: #fff1f5;
  color: #e72f62;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
}

.fcf-form {
  width: min(390px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
}

.fcf-input {
  width: 100%;
  height: 58px;
  margin: 0 0 14px;
  padding: 0 18px;
  border: 1px solid #d8d8df;
  border-radius: 14px;
  font-size: 17px;
  box-sizing: border-box;
  text-align: center;
}

.fcf-input::placeholder {
  text-align: center;
  opacity: .72;
}

.fcf-input.is-error {
  border-color: #ef3f70;
  box-shadow: 0 0 0 3px rgba(239, 63, 112, .14);
}

.fcf-agreement {
  width: 100%;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 0 16px;
  color: #7e6670;
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
}

.fcf-agreement input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: #ef3f70;
  cursor: pointer;
}

.fcf-agreement a {
  color: #ef3f70;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fcf-message {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.fcf-message.is-error { color: #ef3f70; }
.fcf-message.is-success { color: #2f9d62; }

.fcf-note {
  margin: 14px 0 0;
  color: #9b6b78;
  font-size: 13px;
  text-align: center;
}

.fcf-screen-tape {
  display: grid;
  place-items: center;
  padding: 18px 12px;
}

.fcf-tape-wrap {
  position: relative;
  width: min(390px, 100%);
  height: min(560px, 66vh);
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.58), transparent 24%),
    linear-gradient(180deg, #ffe8ef 0%, #ff9cb7 30%, #ef3f70 100%);
  box-shadow:
    inset 0 0 0 5px rgba(218, 164, 60, .85),
    0 22px 60px rgba(123, 38, 68, .24);
}

.fcf-tape-window {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 120px;
  margin-top: -60px;
  border: 5px solid #d9a63d;
  border-radius: 24px;
  z-index: 6;
  box-shadow: 0 12px 36px rgba(120, 47, 70, .26), inset 0 0 0 3px rgba(255,255,255,.7);
}

.fcf-tape-track {
  display: grid;
  gap: 14px;
  padding: 18px 14px;
  transform: translateY(0);
  will-change: transform;
}

.fcf-tape-track.is-spinning {
  animation: fcfTapeSpin 5.2s cubic-bezier(.08,.78,.16,1) forwards;
}

@keyframes fcfTapeSpin {
  from { transform: translateY(0); }
  to { transform: translateY(var(--fcf-tape-end, -900px)); }
}

.fcf-tape-card {
  height: 112px;
  padding: 12px;
  border-radius: 24px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  background: rgba(255,255,255,.84);
  color: #e72f62;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(130, 41, 75, .12);
}

.fcf-tape-emoji {
  font-size: 30px;
  line-height: 1;
}

.fcf-tape-card strong {
  font-size: 28px;
  line-height: 1.03;
}

.fcf-tape-card small {
  font-size: 13px;
  line-height: 1.1;
  color: #8d6470;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 767px) {
  .fcf-modal {
    padding: 10px;
    align-items: flex-end;
  }

  .fcf-dialog {
    width: min(392px, calc(100vw - 20px));
    max-height: 82vh;
    min-height: 0;
    border-radius: 28px;
  }

  .fcf-screen {
    min-height: 0;
  }

  #fc-fortune-root.fcf-screen-state-intro .fcf-dialog {
    max-height: 54vh;
    border-radius: 28px 28px 20px 20px;
    overflow: auto;
  }

  #fc-fortune-root.fcf-screen-state-intro .fcf-screen-intro {
    display: block;
    padding: 26px 20px 24px;
  }

  #fc-fortune-root.fcf-screen-state-intro .fcf-media {
    display: none;
  }

  .fcf-brand {
    font-size: 28px;
    margin: 0 0 8px;
  }

  .fcf-title {
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .fcf-text {
    font-size: 15px;
    line-height: 1.42;
    margin-bottom: 18px;
  }

  .fcf-benefits {
    display: none;
  }

  .fcf-mobile-note {
    display: block;
    max-width: 320px;
    margin: 14px auto 0;
    color: #7e6670;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
  }

  .fcf-button {
    width: 100%;
    height: 56px;
  }

  .fcf-screen-tape {
    padding: 16px 12px 18px;
  }

  .fcf-tape-wrap {
    width: 100%;
    height: min(560px, 66vh);
  }

  .fcf-screen-result {
    padding: 26px 18px 22px;
  }

  .fcf-prize {
    font-size: 27px;
  }

  .fcf-form {
    width: 100%;
  }
}

/* fc_fortune_v44_promo_bar_start */
.fcf-promo-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2147482500;
  display: none;
  font-family: Arial, "Helvetica Neue", sans-serif;
  pointer-events: none;
}

.fcf-promo-bar.is-open {
  display: block;
}

.fcf-promo-bar__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 52px rgba(86, 28, 48, .22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: auto;
  border: 1px solid rgba(239, 73, 111, .18);
}

.fcf-promo-bar__text {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #20212b;
  font-size: 14px;
  line-height: 1.2;
}

.fcf-promo-bar__label {
  color: #7c6870;
}

.fcf-promo-bar__code {
  padding: 7px 10px;
  border-radius: 12px;
  background: #fff1f5;
  color: #e72f62;
  font-size: 18px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.fcf-promo-bar__timer {
  color: #7c6870;
  white-space: nowrap;
}

.fcf-promo-bar__timer b {
  color: #20212b;
}

.fcf-promo-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.fcf-promo-bar__copy {
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: #ef496f;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.fcf-promo-bar__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff1f5;
  color: #b7445f;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 767px) {
  .fcf-promo-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .fcf-promo-bar__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    border-radius: 18px;
  }

  .fcf-promo-bar__text {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .fcf-promo-bar__actions {
    justify-content: center;
  }

  .fcf-promo-bar__copy {
    flex: 1;
  }
}
/* fc_fortune_v44_promo_bar_end */

/* fc_fortune_v45_blue_promo_bar_start */
.fcf-promo-bar__inner {
  background:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,.88), transparent 32%),
    linear-gradient(135deg, #eaf8ff 0%, #d8f0ff 48%, #c7e7ff 100%);
  border: 1px solid rgba(70, 153, 208, .28);
  box-shadow: 0 18px 52px rgba(34, 93, 139, .24);
}

.fcf-promo-bar__label {
  color: #42677f;
}

.fcf-promo-bar__code {
  background: #ffffff;
  color: #1d6fa8;
  box-shadow: inset 0 0 0 1px rgba(63, 142, 197, .18);
}

.fcf-promo-bar__timer {
  color: #42677f;
}

.fcf-promo-bar__timer b {
  color: #174e78;
}

.fcf-promo-bar__copy {
  background: linear-gradient(135deg, #4aa8df, #237fbe);
  color: #fff;
  box-shadow: 0 10px 24px rgba(35, 127, 190, .24);
}

.fcf-promo-bar__close {
  background: rgba(255, 255, 255, .72);
  color: #237fbe;
}

.fcf-promo-bar__close:hover,
.fcf-promo-bar__copy:hover {
  filter: brightness(.98);
}
/* fc_fortune_v45_blue_promo_bar_end */

/* fc_fortune_v47_promo_bar_layout_start */
@media (min-width: 768px) {
  .fcf-promo-bar {
    left: 0;
    right: 0;
    bottom: 0;
  }

  .fcf-promo-bar__inner {
    max-width: none;
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 14px 42px;
    justify-content: center;
    box-sizing: border-box;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .fcf-promo-bar__text {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .fcf-promo-bar {
    left: 10px;
    right: 10px;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .fcf-promo-bar__inner {
    cursor: pointer;
  }

  .fcf-promo-bar__label::after {
    content: " · нажмите, чтобы скопировать";
  }

  .fcf-promo-bar__copy {
    min-height: 42px;
  }
}
/* fc_fortune_v47_promo_bar_layout_end */

/* fc_fortune_v48_force_fixed_promo_bar_start */
.fcf-promo-bar,
body .fcf-promo-bar {
  position: fixed !important;
  z-index: 2147482600 !important;
  transform: translateZ(0);
  will-change: transform;
  pointer-events: none;
}

.fcf-promo-bar__inner {
  pointer-events: auto;
}

@media (min-width: 768px) {
  .fcf-promo-bar,
  body .fcf-promo-bar {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    width: 100vw !important;
  }

  .fcf-promo-bar__inner {
    max-width: none !important;
    width: 100vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
}

@media (max-width: 767px) {
  .fcf-promo-bar,
  body .fcf-promo-bar {
    left: 10px !important;
    right: 10px !important;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
    top: auto !important;
  }
}
/* fc_fortune_v48_force_fixed_promo_bar_end */

/* fc_fortune_v49_copy_toast_start */
.fcf-promo-bar__inner {
  position: relative;
}

.fcf-promo-bar__code {
  cursor: pointer;
  user-select: all;
}

.fcf-promo-toast {
  position: absolute;
  left: 50%;
  top: -46px;
  transform: translateX(-50%) translateY(6px);
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(23, 78, 120, .96);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(23, 78, 120, .24);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.fcf-promo-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.fcf-promo-bar__copy.is-copied {
  filter: brightness(.94);
}

@media (max-width: 767px) {
  .fcf-promo-bar__copy {
    width: 42px !important;
    max-width: 42px !important;
    min-width: 42px !important;
    flex: 0 0 42px !important;
    padding: 0 !important;
    font-size: 0 !important;
    overflow: hidden;
  }

  .fcf-promo-bar__copy::before {
    content: "⧉";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
  }

  .fcf-promo-bar__copy.is-copied::before {
    content: "✓";
  }

  .fcf-promo-toast {
    top: -40px;
    font-size: 13px;
  }
}
/* fc_fortune_v49_copy_toast_end */

/* fc_fortune_v50_promo_bar_mobile_desktop_fix_start */
.fcf-promo-bar__copy {
  display: none !important;
}

.fcf-promo-bar__inner {
  position: relative !important;
}

.fcf-promo-bar__actions {
  position: absolute !important;
  top: 8px !important;
  right: 10px !important;
  z-index: 4 !important;
  display: block !important;
}

.fcf-promo-bar__close {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  line-height: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.fcf-promo-bar__label::after {
  content: "" !important;
}

.fcf-promo-bar__code {
  cursor: pointer !important;
}

.fcf-promo-bar__timer {
  white-space: nowrap !important;
}

@media (min-width: 768px) {
  .fcf-promo-bar__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 62px !important;
    padding: 12px 58px 12px 42px !important;
  }

  .fcf-promo-bar__text {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    width: 100% !important;
    text-align: center !important;
  }

  .fcf-promo-bar__label {
    font-size: 15px !important;
  }

  .fcf-promo-bar__timer {
    font-size: 15px !important;
  }

  .fcf-promo-bar__code {
    font-size: 20px !important;
  }
}

@media (max-width: 767px) {
  .fcf-promo-bar__inner {
    display: block !important;
    min-height: 92px !important;
    padding: 14px 42px 14px 16px !important;
    box-sizing: border-box !important;
  }

  .fcf-promo-bar__text {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-rows: auto auto !important;
    column-gap: 10px !important;
    row-gap: 8px !important;
    align-items: center !important;
    justify-content: stretch !important;
    text-align: left !important;
  }

  .fcf-promo-bar__label {
    grid-column: 1 !important;
    grid-row: 1 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .fcf-promo-bar__code {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    font-size: 17px !important;
    line-height: 1 !important;
  }

  .fcf-promo-bar__timer {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .fcf-promo-bar__timer b {
    font-size: 14px !important;
  }

  .fcf-promo-bar__actions {
    top: 6px !important;
    right: 8px !important;
  }

  .fcf-promo-bar__close {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    font-size: 17px !important;
    line-height: 24px !important;
  }

  .fcf-promo-toast {
    top: -38px !important;
  }
}
/* fc_fortune_v50_promo_bar_mobile_desktop_fix_end */

/* fc_fortune_v61_tape_icons_start */
.fcf-tape-icon-wrap {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 2px;
}

.fcf-tape-icon {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.fcf-tape-emoji--text {
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 767px) {
  .fcf-tape-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .fcf-tape-icon {
    width: 48px;
    height: 48px;
  }

  .fcf-tape-card strong {
    margin-top: 2px;
  }
}
/* fc_fortune_v61_tape_icons_end */

/* fc_fortune_v63_email_center_start */
.fcf-popup input[type="email"],
.fcf-modal input[type="email"],
.fcf-result input[type="email"],
.fcf-email-input,
.fcf-email-field,
.fcf-form-email,
input.fcf-email,
input[name="email"].fcf-input {
  text-align: center !important;
  direction: ltr !important;
  unicode-bidi: plaintext !important;
}

.fcf-popup input[type="email"]::placeholder,
.fcf-modal input[type="email"]::placeholder,
.fcf-result input[type="email"]::placeholder,
.fcf-email-input::placeholder,
.fcf-email-field::placeholder,
.fcf-form-email::placeholder,
input.fcf-email::placeholder,
input[name="email"].fcf-input::placeholder {
  text-align: center !important;
}

.fcf-popup input[type="email"]::-webkit-input-placeholder,
.fcf-modal input[type="email"]::-webkit-input-placeholder,
.fcf-result input[type="email"]::-webkit-input-placeholder {
  text-align: center !important;
}
/* fc_fortune_v63_email_center_end */

/* fc_fortune_v63_green_bar_start */
.fcf-promo-bar,
.fcf-promo-bottom,
.fcf-bottom-promo,
.fcf-fortune-bar,
.fcf-code-bar,
.fcf-lucky-bar,
.fcf-sticky-promo,
.fcf-promo-strip {
  background: linear-gradient(135deg, #f2fff6 0%, #dcf8e7 46%, #c8f1d9 100%) !important;
  border-color: rgba(86, 185, 120, 0.42) !important;
  box-shadow: 0 12px 32px rgba(45, 145, 83, 0.18), 0 2px 8px rgba(45, 145, 83, 0.08) !important;
}

.fcf-promo-bar *,
.fcf-promo-bottom *,
.fcf-bottom-promo *,
.fcf-fortune-bar *,
.fcf-code-bar *,
.fcf-lucky-bar *,
.fcf-sticky-promo *,
.fcf-promo-strip * {
  border-color: rgba(86, 185, 120, 0.28) !important;
}

.fcf-promo-code,
.fcf-code-value,
.fcf-bar-code,
.fcf-promo-bar-code,
.fcf-coupon-code {
  background: #ffffff !important;
  color: #148447 !important;
  border-color: rgba(86, 185, 120, 0.35) !important;
  box-shadow: 0 4px 14px rgba(45, 145, 83, 0.10) !important;
}

.fcf-promo-timer,
.fcf-code-timer,
.fcf-bar-timer,
.fcf-promo-countdown {
  color: #14733f !important;
}

.fcf-promo-close,
.fcf-bar-close {
  background: rgba(255, 255, 255, 0.72) !important;
  color: #148447 !important;
}
/* fc_fortune_v63_green_bar_end */

/* fc_fortune_v63_email_center_fix_start */
.fcf-popup input[type="email"],
.fcf-modal input[type="email"],
.fcf-result input[type="email"],
.fcf-email-input,
.fcf-email-field,
.fcf-form-email,
input.fcf-email,
input[name="email"].fcf-input {
  text-align: center !important;
  direction: ltr !important;
  unicode-bidi: plaintext !important;
}

.fcf-popup input[type="email"]::placeholder,
.fcf-modal input[type="email"]::placeholder,
.fcf-result input[type="email"]::placeholder,
.fcf-email-input::placeholder,
.fcf-email-field::placeholder,
.fcf-form-email::placeholder,
input.fcf-email::placeholder,
input[name="email"].fcf-input::placeholder {
  text-align: center !important;
}
/* fc_fortune_v63_email_center_fix_end */

/* fc_fortune_v64_real_green_bar_start */

/* Основная нижняя плашка: красим именно фон, не только тень */
.fcf-promo-bar,
.fcf-promo-bottom,
.fcf-bottom-promo,
.fcf-fortune-bar,
.fcf-code-bar,
.fcf-lucky-bar,
.fcf-sticky-promo,
.fcf-promo-strip,
.fcf-bottom-code,
.fcf-promo-panel,
.fcf-mobile-promo,
.fcf-mobile-promo-bar,
.fcf-mobile-code-bar,
[class*="fcf"][class*="promo"][class*="bar"],
[class*="fcf"][class*="bar"][class*="promo"],
[class*="fcf"][class*="fortune"][class*="bar"],
[class*="fcf"][class*="sticky"][class*="promo"],
[class*="fcf"][class*="bottom"][class*="promo"],
[class*="fcf"][class*="bottom"][class*="code"] {
  background: linear-gradient(180deg, #f2fff4 0%, #e5f8df 48%, #d3efca 100%) !important;
  background-color: #e5f8df !important;
  border-color: rgba(117, 181, 105, 0.46) !important;
  box-shadow: 0 10px 26px rgba(76, 151, 72, 0.18), 0 2px 8px rgba(76, 151, 72, 0.08) !important;
}

/* Если внутри плашки есть голубой inner-слой — делаем его прозрачным */
.fcf-promo-bar::before,
.fcf-promo-bottom::before,
.fcf-bottom-promo::before,
.fcf-fortune-bar::before,
.fcf-code-bar::before,
.fcf-lucky-bar::before,
.fcf-sticky-promo::before,
.fcf-promo-strip::before,
.fcf-bottom-code::before,
.fcf-promo-panel::before,
.fcf-mobile-promo::before,
.fcf-mobile-promo-bar::before,
.fcf-mobile-code-bar::before,
[class*="fcf"][class*="promo"][class*="bar"]::before,
[class*="fcf"][class*="bar"][class*="promo"]::before,
[class*="fcf"][class*="fortune"][class*="bar"]::before,
[class*="fcf"][class*="sticky"][class*="promo"]::before,
[class*="fcf"][class*="bottom"][class*="promo"]::before,
[class*="fcf"][class*="bottom"][class*="code"]::before {
  background: transparent !important;
  background-color: transparent !important;
}

/* Внутренние обёртки плашки — без синего фона */
.fcf-promo-bar > *,
.fcf-promo-bottom > *,
.fcf-bottom-promo > *,
.fcf-fortune-bar > *,
.fcf-code-bar > *,
.fcf-lucky-bar > *,
.fcf-sticky-promo > *,
.fcf-promo-strip > *,
.fcf-bottom-code > *,
.fcf-promo-panel > *,
.fcf-mobile-promo > *,
.fcf-mobile-promo-bar > *,
.fcf-mobile-code-bar > *,
[class*="fcf"][class*="promo"][class*="bar"] > *,
[class*="fcf"][class*="bar"][class*="promo"] > *,
[class*="fcf"][class*="fortune"][class*="bar"] > *,
[class*="fcf"][class*="sticky"][class*="promo"] > *,
[class*="fcf"][class*="bottom"][class*="promo"] > *,
[class*="fcf"][class*="bottom"][class*="code"] > * {
  background-color: transparent !important;
}

/* Белая капсула промокода */
.fcf-promo-code,
.fcf-code-value,
.fcf-bar-code,
.fcf-promo-bar-code,
.fcf-coupon-code,
.fcf-promo-value,
[class*="fcf"][class*="promo"][class*="code"],
[class*="fcf"][class*="code"][class*="value"],
[class*="fcf"][class*="coupon"][class*="code"] {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #168545 !important;
  border-color: rgba(117, 181, 105, 0.42) !important;
  box-shadow: 0 4px 14px rgba(76, 151, 72, 0.10) !important;
}

/* Текст и таймер */
.fcf-promo-bar,
.fcf-promo-bottom,
.fcf-bottom-promo,
.fcf-fortune-bar,
.fcf-code-bar,
.fcf-lucky-bar,
.fcf-sticky-promo,
.fcf-promo-strip,
.fcf-bottom-code,
.fcf-promo-panel,
.fcf-mobile-promo,
.fcf-mobile-promo-bar,
.fcf-mobile-code-bar,
.fcf-promo-timer,
.fcf-code-timer,
.fcf-bar-timer,
.fcf-promo-countdown,
[class*="fcf"][class*="promo"][class*="timer"],
[class*="fcf"][class*="code"][class*="timer"],
[class*="fcf"][class*="countdown"] {
  color: #426c3e !important;
}

/* Крестик */
.fcf-promo-close,
.fcf-bar-close,
.fcf-code-close,
[class*="fcf"][class*="promo"][class*="close"],
[class*="fcf"][class*="bar"][class*="close"] {
  background: rgba(255, 255, 255, 0.74) !important;
  color: #477b41 !important;
  box-shadow: 0 2px 8px rgba(76, 151, 72, 0.12) !important;
}

/* fc_fortune_v64_real_green_bar_end */

/* fc_fortune_v65_remove_inner_rect_start */

/* сама нижняя плашка */
.fcf-promo-bar,
.fcf-promo-bottom,
.fcf-bottom-promo,
.fcf-fortune-bar,
.fcf-code-bar,
.fcf-lucky-bar,
.fcf-sticky-promo,
.fcf-promo-strip,
.fcf-bottom-code,
.fcf-promo-panel,
.fcf-mobile-promo,
.fcf-mobile-promo-bar,
.fcf-mobile-code-bar,
[class*="fcf"][class*="promo"][class*="bar"],
[class*="fcf"][class*="bar"][class*="promo"],
[class*="fcf"][class*="fortune"][class*="bar"],
[class*="fcf"][class*="bottom"][class*="promo"] {
  background: linear-gradient(180deg, #f3fff0 0%, #e4f7dc 52%, #d5efca 100%) !important;
  background-color: #e4f7dc !important;
  border-color: rgba(110, 176, 100, 0.42) !important;
  box-shadow: 0 10px 24px rgba(95, 163, 88, 0.16) !important;
}

/* УБИРАЕМ внутренний прямоугольник */
.fcf-promo-bar .fcf-promo-bar-inner,
.fcf-promo-bar .fcf-promo-inner,
.fcf-promo-bar .fcf-promo-content,
.fcf-promo-bar .fcf-promo-wrap,
.fcf-promo-bar .fcf-bar-inner,
.fcf-promo-bar .fcf-bar-content,
.fcf-promo-bottom .fcf-promo-bar-inner,
.fcf-promo-bottom .fcf-promo-inner,
.fcf-promo-bottom .fcf-promo-content,
.fcf-promo-bottom .fcf-promo-wrap,
.fcf-promo-bottom .fcf-bar-inner,
.fcf-promo-bottom .fcf-bar-content,
.fcf-bottom-promo .fcf-promo-bar-inner,
.fcf-bottom-promo .fcf-promo-inner,
.fcf-bottom-promo .fcf-promo-content,
.fcf-bottom-promo .fcf-promo-wrap,
.fcf-bottom-promo .fcf-bar-inner,
.fcf-bottom-promo .fcf-bar-content,
.fcf-fortune-bar .fcf-promo-bar-inner,
.fcf-fortune-bar .fcf-promo-inner,
.fcf-fortune-bar .fcf-promo-content,
.fcf-fortune-bar .fcf-promo-wrap,
.fcf-fortune-bar .fcf-bar-inner,
.fcf-fortune-bar .fcf-bar-content,
[class*="fcf"][class*="promo"][class*="bar"] [class*="inner"],
[class*="fcf"][class*="promo"][class*="bar"] [class*="content"],
[class*="fcf"][class*="promo"][class*="bar"] [class*="wrap"],
[class*="fcf"][class*="bar"][class*="promo"] [class*="inner"],
[class*="fcf"][class*="bar"][class*="promo"] [class*="content"],
[class*="fcf"][class*="bar"][class*="promo"] [class*="wrap"] {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* если inner рисуется псевдоэлементом */
.fcf-promo-bar::before,
.fcf-promo-bar::after,
.fcf-promo-bottom::before,
.fcf-promo-bottom::after,
.fcf-bottom-promo::before,
.fcf-bottom-promo::after,
.fcf-fortune-bar::before,
.fcf-fortune-bar::after,
[class*="fcf"][class*="promo"][class*="bar"]::before,
[class*="fcf"][class*="promo"][class*="bar"]::after,
[class*="fcf"][class*="bar"][class*="promo"]::before,
[class*="fcf"][class*="bar"][class*="promo"]::after {
  background-image: none !important;
}

/* белая капсула с промокодом */
.fcf-promo-code,
.fcf-code-value,
.fcf-bar-code,
.fcf-promo-bar-code,
.fcf-coupon-code,
.fcf-promo-value,
[class*="fcf"][class*="promo"][class*="code"],
[class*="fcf"][class*="code"][class*="value"] {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #1b7b42 !important;
  border: 1px solid rgba(110, 176, 100, 0.30) !important;
  box-shadow: 0 2px 8px rgba(95, 163, 88, 0.10) !important;
}

/* таймер и текст */
.fcf-promo-bar,
.fcf-promo-bottom,
.fcf-bottom-promo,
.fcf-fortune-bar,
.fcf-code-bar,
.fcf-lucky-bar,
.fcf-sticky-promo,
.fcf-promo-strip,
.fcf-bottom-code,
.fcf-promo-panel,
.fcf-mobile-promo,
.fcf-mobile-promo-bar,
.fcf-mobile-code-bar,
.fcf-promo-timer,
.fcf-code-timer,
.fcf-bar-timer,
.fcf-promo-countdown {
  color: #42683f !important;
}

/* крестик */
.fcf-promo-close,
.fcf-bar-close,
.fcf-code-close,
[class*="fcf"][class*="promo"][class*="close"],
[class*="fcf"][class*="bar"][class*="close"] {
  background: rgba(255,255,255,0.72) !important;
  color: #4c7d47 !important;
  box-shadow: none !important;
}

/* fc_fortune_v65_remove_inner_rect_end */

/* fc_fortune_v66_bar_dom_mark_start */

.fcf-v66-green-bar {
  background: linear-gradient(180deg, #f5fff2 0%, #e6f8dd 52%, #d7efca 100%) !important;
  background-color: #e6f8dd !important;
  border: 1px solid rgba(109, 178, 98, 0.42) !important;
  box-shadow: 0 10px 24px rgba(95, 163, 88, 0.16) !important;
  overflow: hidden !important;
}

/* Убираем любой внутренний прямоугольник */
.fcf-v66-green-bar *,
.fcf-v66-green-bar *::before,
.fcf-v66-green-bar *::after {
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Возвращаем белую капсулу промокода */
.fcf-v66-green-bar .fcf-v66-code-pill {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #168545 !important;
  border: 1px solid rgba(109, 178, 98, 0.35) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(95, 163, 88, 0.10) !important;
}

/* Текст */
.fcf-v66-green-bar,
.fcf-v66-green-bar * {
  color: #41683d !important;
}

/* Сам код — ярче */
.fcf-v66-green-bar .fcf-v66-code-pill,
.fcf-v66-green-bar .fcf-v66-code-pill * {
  color: #168545 !important;
  font-weight: 800 !important;
}

/* Крестик */
.fcf-v66-green-bar .fcf-v66-close {
  background: rgba(255,255,255,0.72) !important;
  color: #4c7d47 !important;
  border-radius: 999px !important;
}

/* fc_fortune_v66_bar_dom_mark_end */

/* fc_fortune_v67_fix_inner_bar_start */

/* Красим реальный внешний контейнер */
.fcf-promo-bar {
  background: linear-gradient(180deg, #f5fff2 0%, #e8f8df 52%, #d8f0cc 100%) !important;
  background-color: #e8f8df !important;
  border: 1px solid rgba(113, 178, 101, 0.42) !important;
  box-shadow: 0 10px 24px rgba(95, 163, 88, 0.16) !important;
  overflow: hidden !important;
}

/* Внутренний прямоугольник убираем полностью */
.fcf-promo-bar__text,
.fcf-promo-bar__text.fcf-v66-green-bar,
.fcf-promo-bar__actions,
.fcf-promo-bar__copy {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Если старый JS повесил зелёный класс на inner — не даём ему краситься */
.fcf-promo-bar__text.fcf-v66-green-bar {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Лейбл */
.fcf-promo-bar__label {
  color: #42683f !important;
  background: transparent !important;
}

/* Капсула промокода */
.fcf-promo-bar__code,
.fcf-promo-bar__code.fcf-v66-code-pill {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #168545 !important;
  border: 1px solid rgba(113, 178, 101, 0.34) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(95, 163, 88, 0.10) !important;
  font-weight: 800 !important;
}

/* Таймер */
.fcf-promo-bar__timer {
  color: #42683f !important;
  background: transparent !important;
}

/* Кнопка копирования без видимого прямоугольника */
.fcf-promo-bar__copy {
  color: #42683f !important;
}

/* Крестик */
.fcf-promo-bar__close,
.fcf-promo-bar__close.fcf-v66-close {
  background: rgba(255, 255, 255, 0.72) !important;
  color: #4c7d47 !important;
  box-shadow: none !important;
}

/* fc_fortune_v67_fix_inner_bar_end */

/* fc_fortune_v68_kill_inner_rect_start */

/* Внешняя плашка */
.fcf-promo-bar,
.fcf-promo-bar.fcf-v68-green-bar {
  background: linear-gradient(180deg, #f5fff2 0%, #e8f8df 52%, #d8f0cc 100%) !important;
  background-color: #e8f8df !important;
  border: 1px solid rgba(113, 178, 101, 0.42) !important;
  box-shadow: 0 10px 24px rgba(95, 163, 88, 0.16) !important;
  overflow: hidden !important;
}

/* Внутренний прямоугольник — полностью убираем */
.fcf-promo-bar .fcf-promo-bar__text,
.fcf-promo-bar .fcf-promo-bar__text.fcf-v66-green-bar,
.fcf-promo-bar .fcf-promo-bar__text.fcf-v67-green-bar,
.fcf-promo-bar .fcf-promo-bar__text.fcf-v68-green-bar {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  filter: none !important;
}

/* На случай если фон/рамка на псевдоэлементах inner */
.fcf-promo-bar .fcf-promo-bar__text::before,
.fcf-promo-bar .fcf-promo-bar__text::after,
.fcf-promo-bar .fcf-promo-bar__actions::before,
.fcf-promo-bar .fcf-promo-bar__actions::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Внутренние служебные блоки не должны иметь собственного прямоугольника */
.fcf-promo-bar .fcf-promo-bar__actions,
.fcf-promo-bar .fcf-promo-bar__copy {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Лейбл */
.fcf-promo-bar .fcf-promo-bar__label {
  background: transparent !important;
  color: #42683f !important;
}

/* Капсула с кодом */
.fcf-promo-bar .fcf-promo-bar__code,
.fcf-promo-bar .fcf-promo-bar__code.fcf-v66-code-pill {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #168545 !important;
  border: 1px solid rgba(113, 178, 101, 0.34) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(95, 163, 88, 0.10) !important;
  font-weight: 800 !important;
}

/* Таймер */
.fcf-promo-bar .fcf-promo-bar__timer {
  background: transparent !important;
  color: #42683f !important;
}

/* Крестик */
.fcf-promo-bar .fcf-promo-bar__close,
.fcf-promo-bar .fcf-promo-bar__close.fcf-v66-close {
  background: rgba(255, 255, 255, 0.72) !important;
  background-color: rgba(255, 255, 255, 0.72) !important;
  color: #4c7d47 !important;
  border: none !important;
  box-shadow: none !important;
}

/* fc_fortune_v68_kill_inner_rect_end */

/* fc_fortune_v70_solid_green_bar_start */

/* Делаем плашку цельной: один общий фон без внутренних светлых прямоугольников */
.fcf-promo-bar,
.fcf-promo-bar.fcf-v66-green-bar,
.fcf-promo-bar.fcf-v68-green-bar {
  background: #dff4d6 !important;
  background-color: #dff4d6 !important;
  background-image: none !important;
  border: 1px solid rgba(115, 176, 101, 0.38) !important;
  box-shadow: 0 8px 20px rgba(95, 163, 88, 0.16) !important;
  overflow: hidden !important;
}

/* Все внутренние области получают ровно тот же фон, чтобы не было “заливки текста” */
.fcf-promo-bar .fcf-promo-bar__text,
.fcf-promo-bar .fcf-promo-bar__text.fcf-v66-green-bar,
.fcf-promo-bar .fcf-promo-bar__text.fcf-v67-green-bar,
.fcf-promo-bar .fcf-promo-bar__text.fcf-v68-green-bar,
.fcf-promo-bar .fcf-promo-bar__actions,
.fcf-promo-bar .fcf-promo-bar__copy {
  background: #dff4d6 !important;
  background-color: #dff4d6 !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Псевдоэлементы внутри не должны рисовать отдельный слой */
.fcf-promo-bar .fcf-promo-bar__text::before,
.fcf-promo-bar .fcf-promo-bar__text::after,
.fcf-promo-bar .fcf-promo-bar__actions::before,
.fcf-promo-bar .fcf-promo-bar__actions::after,
.fcf-promo-bar::before,
.fcf-promo-bar::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Лейбл */
.fcf-promo-bar .fcf-promo-bar__label {
  background: transparent !important;
  color: #315d35 !important;
  font-weight: 600 !important;
}

/* Белая капсула промокода */
.fcf-promo-bar .fcf-promo-bar__code,
.fcf-promo-bar .fcf-promo-bar__code.fcf-v66-code-pill {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #087236 !important;
  border: 1px solid rgba(92, 162, 85, 0.36) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 7px rgba(75, 145, 70, 0.10) !important;
  font-weight: 900 !important;
  letter-spacing: 0.4px !important;
}

/* Таймер */
.fcf-promo-bar .fcf-promo-bar__timer {
  background: transparent !important;
  color: #24582d !important;
  font-weight: 700 !important;
}

/* Крестик */
.fcf-promo-bar .fcf-promo-bar__close,
.fcf-promo-bar .fcf-promo-bar__close.fcf-v66-close {
  background: rgba(255,255,255,0.72) !important;
  background-color: rgba(255,255,255,0.72) !important;
  color: #3f7a42 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* fc_fortune_v70_solid_green_bar_end */

/* fc_fortune_v71_gradient_no_text_fill_start */

/* Внешняя плашка: возвращаем нежный градиент */
.fcf-promo-bar,
.fcf-promo-bar.fcf-v66-green-bar,
.fcf-promo-bar.fcf-v68-green-bar,
.fcf-promo-bar.fcf-v71-green-bar {
  background: linear-gradient(180deg, #f5fff2 0%, #e8f8df 48%, #d7efca 100%) !important;
  background-color: #e8f8df !important;
  background-image: linear-gradient(180deg, #f5fff2 0%, #e8f8df 48%, #d7efca 100%) !important;
  border: 1px solid rgba(113, 178, 101, 0.40) !important;
  box-shadow: 0 9px 22px rgba(95, 163, 88, 0.15) !important;
  overflow: hidden !important;
}

/* Убираем отдельную заливку под текстовым блоком */
.fcf-promo-bar .fcf-promo-bar__text,
.fcf-promo-bar .fcf-promo-bar__label,
.fcf-promo-bar .fcf-promo-bar__timer,
.fcf-promo-bar .fcf-promo-bar__actions,
.fcf-promo-bar .fcf-promo-bar__copy {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Псевдоэлементы внутри текстового блока тоже выключаем */
.fcf-promo-bar .fcf-promo-bar__text::before,
.fcf-promo-bar .fcf-promo-bar__text::after,
.fcf-promo-bar .fcf-promo-bar__label::before,
.fcf-promo-bar .fcf-promo-bar__label::after,
.fcf-promo-bar .fcf-promo-bar__timer::before,
.fcf-promo-bar .fcf-promo-bar__timer::after,
.fcf-promo-bar .fcf-promo-bar__actions::before,
.fcf-promo-bar .fcf-promo-bar__actions::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Цвет текста */
.fcf-promo-bar .fcf-promo-bar__label {
  color: #355f37 !important;
  font-weight: 600 !important;
}

.fcf-promo-bar .fcf-promo-bar__timer {
  color: #23572c !important;
  font-weight: 700 !important;
}

/* Белая капсула с промокодом оставляем отдельной */
.fcf-promo-bar .fcf-promo-bar__code,
.fcf-promo-bar .fcf-promo-bar__code.fcf-v66-code-pill {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #087236 !important;
  border: 1px solid rgba(92, 162, 85, 0.36) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 7px rgba(75, 145, 70, 0.10) !important;
  font-weight: 900 !important;
  letter-spacing: 0.4px !important;
}

/* Крестик */
.fcf-promo-bar .fcf-promo-bar__close,
.fcf-promo-bar .fcf-promo-bar__close.fcf-v66-close {
  background: rgba(255,255,255,0.72) !important;
  background-color: rgba(255,255,255,0.72) !important;
  color: #3f7a42 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* fc_fortune_v71_gradient_no_text_fill_end */

/* fc_fortune_v71_gradient_no_text_fill_start */

.fcf-promo-bar,
.fcf-promo-bar.fcf-v66-green-bar,
.fcf-promo-bar.fcf-v68-green-bar,
.fcf-promo-bar.fcf-v71-green-bar {
  background: linear-gradient(180deg, #f5fff2 0%, #e8f8df 48%, #d7efca 100%) !important;
  background-color: #e8f8df !important;
  background-image: linear-gradient(180deg, #f5fff2 0%, #e8f8df 48%, #d7efca 100%) !important;
  border: 1px solid rgba(113, 178, 101, 0.40) !important;
  box-shadow: 0 9px 22px rgba(95, 163, 88, 0.15) !important;
  overflow: hidden !important;
}

.fcf-promo-bar .fcf-promo-bar__text,
.fcf-promo-bar .fcf-promo-bar__label,
.fcf-promo-bar .fcf-promo-bar__timer,
.fcf-promo-bar .fcf-promo-bar__actions,
.fcf-promo-bar .fcf-promo-bar__copy {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.fcf-promo-bar .fcf-promo-bar__text::before,
.fcf-promo-bar .fcf-promo-bar__text::after,
.fcf-promo-bar .fcf-promo-bar__label::before,
.fcf-promo-bar .fcf-promo-bar__label::after,
.fcf-promo-bar .fcf-promo-bar__timer::before,
.fcf-promo-bar .fcf-promo-bar__timer::after,
.fcf-promo-bar .fcf-promo-bar__actions::before,
.fcf-promo-bar .fcf-promo-bar__actions::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.fcf-promo-bar .fcf-promo-bar__label {
  color: #355f37 !important;
  font-weight: 600 !important;
}

.fcf-promo-bar .fcf-promo-bar__timer {
  color: #23572c !important;
  font-weight: 700 !important;
}

.fcf-promo-bar .fcf-promo-bar__code,
.fcf-promo-bar .fcf-promo-bar__code.fcf-v66-code-pill {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #087236 !important;
  border: 1px solid rgba(92, 162, 85, 0.36) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 7px rgba(75, 145, 70, 0.10) !important;
  font-weight: 900 !important;
  letter-spacing: 0.4px !important;
}

.fcf-promo-bar .fcf-promo-bar__close,
.fcf-promo-bar .fcf-promo-bar__close.fcf-v66-close {
  background: rgba(255,255,255,0.72) !important;
  background-color: rgba(255,255,255,0.72) !important;
  color: #3f7a42 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* fc_fortune_v71_gradient_no_text_fill_end */

/* fc_fortune_v72_email_center_live_start */

/* Email input: колесо + мобильная лента */
#fc-fortune-root input[type="email"],
#fc-fortune-root input[name="email"],
#fc-fortune-root .fcf-email-input,
#fc-fortune-root .fcf-email-field,
#fc-fortune-root .fcf-form-email,
#fc-fortune-root input.fcf-email,
#fc-fortune-root input.fcf-input,
[class*="fcf"] input[type="email"],
[class*="fortune"] input[type="email"] {
  text-align: center !important;
  text-align-last: center !important;
  direction: ltr !important;
  unicode-bidi: plaintext !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

#fc-fortune-root input[type="email"]::placeholder,
#fc-fortune-root input[name="email"]::placeholder,
#fc-fortune-root .fcf-email-input::placeholder,
#fc-fortune-root .fcf-email-field::placeholder,
#fc-fortune-root .fcf-form-email::placeholder,
#fc-fortune-root input.fcf-email::placeholder,
#fc-fortune-root input.fcf-input::placeholder,
[class*="fcf"] input[type="email"]::placeholder,
[class*="fortune"] input[type="email"]::placeholder {
  text-align: center !important;
  text-align-last: center !important;
}

/* fc_fortune_v72_email_center_live_end */


/* fc_fortune_v74_hide_dryrun_note_start */
.fcf-debug-note,
.fcf-test-note,
.fcf-dryrun-note,
[class*="fcf"][class*="debug"],
[class*="fcf"][class*="dryrun"],
[class*="fcf"][class*="test-note"] {
  display: none !important;
}
/* fc_fortune_v74_hide_dryrun_note_end */



/* fc_fortune_v82_promo_bar_radius_only_start */
.fcf-promo-bar,
body .fcf-promo-bar,
.fcf-promo-bar__inner,
body .fcf-promo-bar__inner {
  border-radius: 14px !important;
  overflow: hidden !important;
}
/* fc_fortune_v82_promo_bar_radius_only_end */

/* fc_fortune_v79_promo_bar_only_start */

/* 1) Скругление зелёной плашки */
.fcf-promo-bar,
.fcf-promo-bar.fcf-v66-green-bar,
.fcf-promo-bar.fcf-v68-green-bar,
.fcf-promo-bar.fcf-v71-green-bar {
  border-radius: 18px !important;
  overflow: hidden !important;
}

@media (min-width: 768px) {
  .fcf-promo-bar,
  .fcf-promo-bar.fcf-v66-green-bar,
  .fcf-promo-bar.fcf-v68-green-bar,
  .fcf-promo-bar.fcf-v71-green-bar {
    border-radius: 18px !important;
  }
}

/* 2) Если мобильный app popup/banner активен — Fortune-плашку не показываем поверх него */
html.fcf-app-popup-visible .fcf-promo-bar,
body.fcf-app-popup-visible .fcf-promo-bar {
  display: none !important;
}

/* fc_fortune_v79_promo_bar_only_end */

/* fc_fortune_v80_promo_bar_fix_start */
.fcf-promo-bar {
  border-radius: 18px !important;
  overflow: hidden !important;
}

@media (min-width: 768px) {
  .fcf-promo-bar {
    border-radius: 18px !important;
  }
}

html.fcf-app-popup-visible .fcf-promo-bar,
body.fcf-app-popup-visible .fcf-promo-bar {
  display: none !important;
}
/* fc_fortune_v80_promo_bar_fix_end */

/* fc_fortune_v81_promo_bar_standalone_guard_start */
.fcf-promo-bar {
  border-radius: 18px !important;
  overflow: hidden !important;
}

@media (min-width: 768px) {
  .fcf-promo-bar {
    border-radius: 18px !important;
  }
}

html.fcf-app-popup-visible .fcf-promo-bar,
body.fcf-app-popup-visible .fcf-promo-bar {
  display: none !important;
}
/* fc_fortune_v81_promo_bar_standalone_guard_end */

/* fc_fortune_v82_promo_bar_final_start */
.fcf-promo-bar {
  border-radius: 18px !important;
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .fcf-promo-bar {
    left: 12px !important;
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    width: auto !important;
    max-width: calc(100% - 24px) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }
}

@media (min-width: 768px) {
  .fcf-promo-bar {
    border-radius: 18px !important;
  }
}

html.fcf-app-popup-visible .fcf-promo-bar,
body.fcf-app-popup-visible .fcf-promo-bar {
  display: none !important;
}
/* fc_fortune_v82_promo_bar_final_end */


/* fc_fortune_v85_real_bottom_app_popup_conflict_start */
.fcf-promo-bar {
  border-radius: 18px !important;
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .fcf-promo-bar {
    left: 12px !important;
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    width: auto !important;
    max-width: calc(100% - 24px) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }
}

body.fcf-real-bottom-app-popup-visible .fcf-promo-bar,
html.fcf-real-bottom-app-popup-visible .fcf-promo-bar {
  display: none !important;
}
/* fc_fortune_v85_real_bottom_app_popup_conflict_end */


/* fc_fortune_v87_bar_radius_only_start */
.fcf-promo-bar,
body .fcf-promo-bar,
.fcf-promo-bar.fcf-v66-green-bar,
.fcf-promo-bar.fcf-v68-green-bar,
.fcf-promo-bar.fcf-v71-green-bar {
  border-radius: 18px !important;
  overflow: hidden !important;
}

.fcf-promo-bar__inner,
body .fcf-promo-bar__inner {
  border-radius: 18px !important;
  overflow: hidden !important;
}

.fcf-promo-bar::before,
.fcf-promo-bar::after {
  border-radius: 18px !important;
}

@media (max-width: 767px) {
  .fcf-promo-bar,
  body .fcf-promo-bar,
  .fcf-promo-bar.fcf-v66-green-bar,
  .fcf-promo-bar.fcf-v68-green-bar,
  .fcf-promo-bar.fcf-v71-green-bar {
    left: 12px !important;
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    width: auto !important;
    max-width: calc(100% - 24px) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  .fcf-promo-bar__inner,
  body .fcf-promo-bar__inner {
    border-radius: 18px !important;
    overflow: hidden !important;
  }
}
/* fc_fortune_v87_bar_radius_only_end */


/* fc_fortune_v90_direct_promo_start */
.fcf-v90-direct-message {
  text-align: center !important;
  margin-top: 16px !important;
}

.fcf-v90-direct-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #31313a !important;
  margin-bottom: 10px !important;
}

.fcf-v90-direct-code {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 190px !important;
  min-height: 54px !important;
  padding: 10px 22px !important;
  border-radius: 18px !important;
  border: 2px dashed rgba(237, 48, 111, .55) !important;
  background: #fff7fb !important;
  color: #ed306f !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  line-height: 1.1 !important;
  cursor: pointer !important;
}

.fcf-v90-direct-copy {
  display: block !important;
  width: 100% !important;
  min-height: 56px !important;
  margin-top: 14px !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #ff4f8f, #ed306f) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}

.fcf-v90-direct-note {
  margin-top: 12px !important;
  color: #66646e !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

.fcf-v90-direct-loading {
  color: #66646e !important;
  font-size: 16px !important;
  text-align: center !important;
}
/* fc_fortune_v90_direct_promo_end */

/* fc_fortune_v94_result_copy_start */
.fcf-v90-direct-message,
.fcf-v89-direct-message,
.fcf-v88-direct-message {
  text-align: center !important;
}

.fcf-v90-direct-note,
.fcf-v89-direct-note,
.fcf-v88-direct-note {
  max-width: 360px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 767px) {
  .fcf-v90-direct-code,
  .fcf-v89-direct-code,
  .fcf-v88-direct-code {
    font-size: 22px !important;
    min-width: 170px !important;
  }

  .fcf-v90-direct-copy,
  .fcf-v89-direct-copy,
  .fcf-v88-direct-copy {
    min-height: 54px !important;
  }
}
/* fc_fortune_v94_result_copy_end */
