@charset "utf-8";

/* Backend selectable text logo effects, adapted from design-previews/text-logo-css3-effects.html. */

html[data-front-theme] #topbox .logo[class*="logo-effect"] {
  overflow: visible !important;
}

html[data-front-theme] #topbox .logo[class*="logo-effect"] .logo-text {
  display: inline-block !important;
  font-size: var(--site-logo-font-size, 48px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  max-width: 100% !important;
  padding: 0 2px 2px !important;
  position: relative !important;
  text-align: center !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
  -webkit-text-stroke: 0 !important;
}

html[data-front-theme] #topbox .logo[class*="logo-effect"] .logo-text:before,html[data-front-theme] #topbox .logo[class*="logo-effect"] .logo-text:after {
  pointer-events: none !important;
}

html[data-front-theme] #topbox .logo.logo-effect1 .logo-text,html[data-front-theme] #topbox .logo.logo-effect-1 .logo-text {
  background: none !important;
  color: #2563eb !important;
  -webkit-text-fill-color: #2563eb !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .95),
    0 3px 0 rgba(147, 197, 253, .88),
    0 14px 24px rgba(37, 99, 235, .22) !important;
}

@media (max-width: 560px) {
  html[data-front-theme] #topbox .logo[class*="logo-effect"] .logo-text {
    display: block !important;
    font-size: clamp(28px, 8.6vw, 38px) !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    width: 100% !important;
  }

  html[data-front-theme] #topbox .logo[class*="logo-effect"] .logo-effect-char {
    font-size: inherit !important;
    line-height: inherit !important;
  }
}