/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 11 2026 | 03:19:12 */
.emit-footer {
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-8);
  color: white;
}
@media (min-width: 768px) {
  .emit-footer {
    width: 90%;
  }
}
@media (min-width: 1440px) {
  .emit-footer {
    padding: var(--sp-24) var(--sp-10);
  }
}
.emit-footer .footer__row-1 {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1025px) {
  .emit-footer .footer__row-1 {
    gap: 16px;
    flex-direction: row;
  }
}
.emit-footer .footer__logo {
  width: 100%;
  max-width: 180px;
}
@media (min-width: 1400px) {
  .emit-footer .footer__logo {
    width: 220px;
    margin-top: -2px;
  }
}
.emit-footer .footer__tagline {
  color: #DFDEDE;
  font-size: 16px;
}
@media (min-width: 1025px) {
  .emit-footer .footer__tagline {
    font-size: 20px;
  }
}
.emit-footer .footer__section {
  padding: var(--sp-8) 16px;
  border-bottom: 1px solid var(--gray-1);
}
@media (min-width: 1025px) {
  .emit-footer .footer__section {
    min-width: 0;
    border-bottom: 0;
  }
}
.emit-footer .footer__section--resources {
  flex: 0.75 !important;
}
.emit-footer .footer__text {
  color: white;
  font-size: clamp(14px, 1.5vw, 16px);
}
.emit-footer .footer__text--sm {
  font-size: clamp(12px, 1.5vw, 14px);
}
.emit-footer .footer__link {
  color: white;
  transition: color 0.2s ease;
  white-space: nowrap;
  font-weight: var(--font-normal);
}
.emit-footer .footer__link:hover {
  color: var(--emit-pink);
}
.emit-footer .footer__accreditation-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1025px) {
  .emit-footer .footer__accreditation-container {
    gap: 12px;
    align-items: flex-start;
    margin-bottom: var(--sp-12);
  }
}
.emit-footer .footer__accreditation {
  display: grid;
  gap: var(--sp-6);
  background-color: white;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  padding: var(--sp-4);
  border-radius: 12px;
  flex: 1;
}
@media (min-width: 1025px) {
  .emit-footer .footer__accreditation {
    grid-template-columns: repeat(4, 1fr);
    width: calc(100% - 2 * var(--sp-4));
  }
}
.emit-footer .footer__accreditation img {
  width: 100px;
  height: 60px;
  object-fit: contain;
}
@media (min-width: 1025px) {
  .emit-footer .footer__accreditation img {
    width: 100%;
    height: 70px;
    object-fit: contain;
  }
}
.emit-footer .footer__legal-list {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.emit-footer .footer__legal-list li+li::before {
  content: "|";
  padding-right: var(--sp-2);
  color: var(--white);
}
.emit-footer .footer__legal-link:first-child {
  padding-left: 0;
}
.emit-footer .footer__legal-link:last-child {
  padding-right: 0;
  border-right: 0;
}
.emit-footer .emit-floating-button {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
  white-space: nowrap;
  z-index: 20;
  /* Hidden state */
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
  /* .emit-btn--xs */
  border-radius: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--text-sm);
}
.emit-footer .emit-floating-button.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
@media (min-width: 768px) {
  .emit-footer .emit-floating-button {
    /* .emit-btn--xs */
    border-radius: var(--sp-4);
    font-size: var(--text-lg);
    padding: var(--sp-5) var(--sp-10);
  }
}
.emit-footer .emit-floating-button:hover {
  color: white;
/*   transform: scale(1.05); */
}