/*
Theme Name: NEXT WRAPS Theme
Template: Avada
*/

h1 {
  font-size: clamp(34px, 4.6vw, 72px) !important;
	line-height: 1 !important;
}

.fusion-title {
	margin-top: 0 !important;
}

/* ---------------------------------------------------------
   HERO TAG LINE
--------------------------------------------------------- */
.hero-tag .fusion-title-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag .fusion-title-heading::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #0e85e3;
  flex-shrink: 0;
}

.highlight {
  color: #0e85e3;
}

/* ---------------------------------------------------------
   SCROLL INDICATOR
--------------------------------------------------------- */
.scroll-ind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4f4f4;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(14,133,227,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: #0e85e3;
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  from { top: -100%; }
  to { top: 100%; }
}

/* ---------------------------------------------------------
   NWA ACCORDION
--------------------------------------------------------- */
.nwa-header { margin-bottom: 48px; }

.nwa-section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #0e85e3;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nwa-section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: #0e85e3;
}

.nwa-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: #f4f4f4;
  margin: 0;
}

/* Accordion */
.nwa-list { display: flex; flex-direction: column; gap: 4px; }

.nwa-item {
  background: #1C1C1C;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
.nwa-item:hover { background: #202020; }
.nwa-item.nwa-open { background: #1e1e1e; cursor: default; }

.nwa-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  gap: 24px;
  position: relative;
}
.nwa-header-row::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: #0e85e3;
  transition: width 0.5s ease;
}
.nwa-item.nwa-open .nwa-header-row::after { width: 100%; }

.nwa-header-left { display: flex; align-items: center; gap: 24px; flex: 1; }

.nwa-icon { width: 36px; height: 36px; color: #0e85e3; flex-shrink: 0; }

.nwa-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: #f4f4f4;
}

.nwa-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0e85e3;
  border: 1px solid rgba(14,133,227,0.25);
  padding: 5px 10px;
}

.nwa-toggle-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(14,133,227,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e85e3;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.nwa-item.nwa-open .nwa-toggle-btn {
  background: #0e85e3;
  color: #f4f4f4;
  border-color: #0e85e3;
}

.nwa-toggle-icon {
  display: inline-block;
  transition: transform 0.4s ease;
  margin-top: -2px;
}
.nwa-item.nwa-open .nwa-toggle-icon { transform: rotate(45deg); }

.nwa-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  will-change: max-height, opacity;
  transition:
    max-height 0.6s cubic-bezier(0.77,0,0.175,1),
    opacity 0.35s ease;
}
.nwa-item.nwa-open .nwa-body { opacity: 1; }

.nwa-body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 36px;
}

.nwa-body-text p,
.nwa-body-extra p {
  font-size: 16px;
  line-height: 1.8;
  color: #f4f4f4;
  margin-bottom: 12px;
}

.nwa-body-link {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #0e85e3;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  padding-bottom: 1px;
  border-bottom: 1px solid #0e85e3;
}
.nwa-body-link:hover { color: #f4f4f4; border-bottom: 1px solid #f4f4f4; }

@media (max-width: 768px) {
  .nwa-header-row { padding: 20px 24px; }
  .nwa-title { font-size: 22px; }
  .nwa-tag { display: none; }
  .nwa-body-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 28px;
  }
  .nwa-body-link { margin-top: 12px; }
}

@media (max-width: 480px) {
  .nwa-body-link { font-size: 12px; }
}

/* ---------------------------------------------------------
   AVADA COUNTERS
--------------------------------------------------------- */
body .fusion-counters-box .fusion-counter-box {
  margin-bottom: 4px;
}

body .fusion-counters-box .fusion-counter-box .counter-box-container {
  background: #1c1c1c;
  border: 0;
}

/* ---------------------------------------------------------
   LINK BLOCK SHRINK
--------------------------------------------------------- */
.link-block h3,
.link-block p {
  transition: transform .25s ease;
}

.link-block:hover h3,
.link-block:hover p {
  transform: scale(0.94);
}

/* ---------------------------------------------------------
   NWL LOGO MARQUEE
--------------------------------------------------------- */
.nwl-section { overflow: hidden; }

.nwl-label {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(170,170,170,0.4);
  margin-bottom: 40px;
}

.nwl-track-wrapper {
  position: relative;
  overflow: hidden;
}
.nwl-track-wrapper::before,
.nwl-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.nwl-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0A0A0A 0%, transparent 100%);
}
.nwl-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0A0A0A 0%, transparent 100%);
}

.nwl-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: nwlMarquee 28s linear infinite;
}
.nwl-track:hover { animation-play-state: paused; }

@keyframes nwlMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.nwl-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: 65px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  cursor: pointer;
}
.nwl-item:first-child { border-left: none; }

.nwl-item img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) opacity(0.4) brightness(1.8);
  transition: filter 0.3s ease;
}
.nwl-item:hover img { filter: none; }

/* ---------------------------------------------------------
   STATS GRID
--------------------------------------------------------- */
.nw-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.nw-stat-box {
  background: #1C1C1C;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.nw-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: #0e85e3;
}

.nw-stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f4f4f4;
  margin-top: 8px;
}

.nw-stat-sub {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4f4f4;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .nw-stats-grid { grid-template-columns: 1fr; }
  .nw-stat-num { font-size: 48px; }
}

/* ---------------------------------------------------------
   NWP STEPS GRID
--------------------------------------------------------- */
.nwp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.nwp-step {
  background: #1C1C1C;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.nwp-step::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: #0e85e3;
  transition: width 0.5s ease;
}
.nwp-step:hover::before { width: 100%; }

.nwp-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(14,133,227,0.1);
  margin-bottom: 16px;
}

.nwp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: #0e85e3;
  margin-bottom: 14px;
}

.nwp-text {
  font-size: 16px;
  line-height: 1.4;
  color: #f4f4f4;
}

@media (max-width: 768px) {
  .nwp-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   CTA V4
--------------------------------------------------------- */
.cta-v4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-v4-box {
  border: 1px solid rgba(14,133,227,0.35);
  padding: 72px 80px;
  text-align: center;
  width: 100%;
  position: relative;
}

.cta-v4-box::before,
.cta-v4-box::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #0e85e3;
  border-style: solid;
}
.cta-v4-box::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}
.cta-v4-box::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.cta-v4-corners::before,
.cta-v4-corners::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #0e85e3;
  border-style: solid;
}
.cta-v4-corners::before {
  top: -1px; right: -1px;
  border-width: 2px 2px 0 0;
}
.cta-v4-corners::after {
  bottom: -1px; left: -1px;
  border-width: 0 0 2px 2px;
}

.cta-v4-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0e85e3;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cta-v4-tag::before,
.cta-v4-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #0e85e3;
}

.cta-v4-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.93;
  letter-spacing: 2px;
  color: #f4f4f4;
  margin-bottom: 20px;
}

.cta-v4-text {
  font-size: 16px;
  line-height: 1.40;
  color: #f4f4f4;
  max-width: 380px;
  margin: 0 auto 40px !important;
}

.cta-v4-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Button Styles (global) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 29px;
  background: #0e85e3;
  color: #1c1c1c;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-primary:hover {
  background: #f4f4f4;
  color: #1c1c1c;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 29px;
  background: #f4f4f4;
  color: #1c1c1c;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-secondary:hover {
  background: #1c1c1c;
  color: #f4f4f4;
}

.cta-v4-btns .btn-ghost {
  color: #f4f4f4;
  padding-bottom: 1px;
  border-bottom: 1px solid #f4f4f4;
}
.cta-v4-btns .btn-ghost:hover {
  color: #0e85e3;
  border-bottom: 1px solid #0e85e3;
}

@media (max-width: 768px) {
  .cta-v4-box { padding: 48px 32px; }
  .cta-v4-btns { flex-direction: column; }
}

/* ---------------------------------------------------------
   FORMIDABLE CHECKBOX + PLACEHOLDER
--------------------------------------------------------- */
body .frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):checked {
  background: transparent !important;
}

input::placeholder,
textarea::placeholder {
  color: #f4f4f4 !important;
}

/* ---------------------------------------------------------
   NWR REVIEWS GRID
--------------------------------------------------------- */
.nwr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.nwr-card {
  background: #1C1C1C;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
}
.nwr-card:hover { background: #202020; }

.nwr-stars {
  color: #0e85e3;
  font-size: 13px;
  letter-spacing: 3px;
}

.nwr-text {
  font-size: 14px;
  line-height: 1.8;
  color: #f4f4f4;
  font-style: italic;
  flex: 1;
}

.nwr-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #AAAAAA;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .nwr-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   KURS CARD
--------------------------------------------------------- */
.kurs-c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  align-items: stretch;
  min-height: 520px;
}

.kurs-c-left,
.kurs-c-right { min-height: 100%; }

.kurs-c-left {
  background: #0e85e3;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kurs-c-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4f4f4;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kurs-c-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #f4f4f4;
  flex-shrink: 0;
}

.kurs-c-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.93;
  color: #0A0A0A;
  margin-bottom: 20px;
}

.kurs-c-desc {
  font-size: 16px;
  line-height: 1.4;
  color: #1c1c1c;
  margin-bottom: 40px;
}

.kurs-c-price-wrap { margin-bottom: 36px; }

.kurs-c-price-old {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(0,0,0,0.35);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.kurs-c-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  color: #0A0A0A;
  line-height: 1;
}

.kurs-c-price-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1c1c1c;
  margin-top: 4px;
}

/* Buttons-Zeile in der Kurs-Card */
.kurs-c-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Play-Button */
.kurs-c-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0A0A0A;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0;
  transition: opacity 0.2s;
}
.kurs-c-play:hover { opacity: 0.7; }

.kurs-c-play__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.kurs-c-play:hover .kurs-c-play__icon {
  background: #0A0A0A;
  color: #0e85e3;
}

.kurs-c-right {
  background: #1C1C1C;
  padding: 64px 56px;
}

.kurs-c-hl-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4f4f4;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kurs-c-hl-title::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #0e85e3;
  flex-shrink: 0;
}

.kurs-c-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.kurs-c-item:last-child { border-bottom: 0; }

.kurs-c-item-icon {
  color: #0e85e3;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.kurs-c-item-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F0EDE8;
  margin-bottom: 4px;
}

.kurs-c-item-text {
  font-size: 16px;
  color: #AAAAAA;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .kurs-c { grid-template-columns: 1fr; min-height: auto; }
  .kurs-c-left, .kurs-c-right { padding: 44px 28px; }
  .kurs-c-title { font-size: clamp(42px, 8vw, 64px); }
  .kurs-c-desc { margin-bottom: 28px; }
  .kurs-c-price-wrap { margin-bottom: 22px; }
}

@media (max-width: 576px) {
  .kurs-c { padding: 0 16px 16px; gap: 10px; }
  .kurs-c-left, .kurs-c-right { padding: 36px 20px; }
  .kurs-c-price { font-size: 52px; }
  .kurs-c-item { gap: 14px; padding: 16px 0; }
  .kurs-c-btns { flex-direction: column; align-items: flex-start; }
  .kurs-c-btns .btn-secondary { width: 100%; justify-content: center; }
}

/* ---------------------------------------------------------
   VIDEO MODAL
--------------------------------------------------------- */
.nw-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.nw-modal.is-open { display: flex; }

.nw-modal__inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
}

.nw-modal__inner video {
  width: 100%;
  height: 100%;
  display: block;
}

.nw-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #f4f4f4;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 4px 8px;
}
.nw-modal__close:hover { opacity: 1; }

/* ---------------------------------------------------------
   INSTAGRAM CTA
--------------------------------------------------------- */
.nw-ig {
  text-align: center;
}

.nw-ig__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  color: #f4f4f4 !important;
  line-height: 1;
  margin-bottom: 12px;
}

.nw-ig__title span {
  color: #0e85e3 !important;
}

.nw-ig__sub {
  font-size: 16px;
  color: #AAAAAA;
  margin-bottom: 36px;
}

.nw-ig__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 29px;
  background: #0e85e3;
  color: #1c1c1c;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease;
}
.nw-ig__btn:hover {
  background: #f4f4f4;
  color: #1c1c1c;
}

@media (max-width: 480px) {
  .nw-ig__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------------------------------------------------------
   FORMIDABLE FOCUS
--------------------------------------------------------- */
.frm_style_formidable-stil.with_frm_style .form-field input:not([type=file]):not([type=range]):not([readonly]):focus,
.frm_style_formidable-stil.with_frm_style select:focus,
.frm_style_formidable-stil.with_frm_style .form-field textarea:focus,
.frm_style_formidable-stil.with_frm_style .frm_focus_field input[type=text],
.frm_style_formidable-stil.with_frm_style .frm_focus_field input[type=password],
.frm_style_formidable-stil.with_frm_style .frm_focus_field input[type=email],
.frm_style_formidable-stil.with_frm_style .frm_focus_field input[type=number],
.frm_style_formidable-stil.with_frm_style .frm_focus_field input[type=url],
.frm_style_formidable-stil.with_frm_style .frm_focus_field input[type=tel],
.frm_style_formidable-stil.with_frm_style .frm_focus_field input[type=search],
.frm_form_fields_active_style,
.frm_style_formidable-stil.with_frm_style .frm_focus_field .frm-card-element.StripeElement {
  box-shadow: none !important;
}

/* ---------------------------------------------------------
   LEGAL CONTENT
--------------------------------------------------------- */
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6,
.legal-content p,
.legal-content li {
  color: #f4f4f4 !important;
}

.legal-content a { color: #0e85e3 !important; }
.legal-content a:hover { color: #f4f4f4 !important; }

.legal-content h1 { font-size: 56px !important; hyphens: auto; }
.legal-content h2 { font-size: 38px !important; hyphens: auto; }
.legal-content h3 { font-size: 28px !important; hyphens: auto; }

@media (max-width: 768px) {
  .legal-content h1 { font-size: 34px !important; }
  .legal-content h2 { font-size: 22px !important; }
  .legal-content h3 { font-size: 20px !important; }
}

.pum-theme-4881 .pum-content + .pum-close, .pum-theme-content-only .pum-content + .pum-close {
	color: #0e85e3 !important;
	font-size: 30px !important;
}

.pum-theme-4881 .pum-content + .pum-close:hover, .pum-theme-content-only .pum-content + .pum-close:hover {
	color: #fff !important;
}