/**/.hamburgerButton{display:block;background-color:transparent;border:0;padding:0;margin:0}.hamburgerButton,.hamburgerButton svg{width:100%;height:100%}/**/.imageWidget{position:relative}.imageWidget a,.imageWidget span.image-caption{font-style:italic;text-align:center}.imageWidget a[data-caption]::after,.imageWidget span[data-caption]::after{content:attr(data-caption);display:block;line-height:100%}
.imageWidget.with-caption a::after,.imageWidget.with-caption span.image-caption::after{margin-top:12px}.imageWidget img[width][height]{height:auto}[data-flex-site] #fcontainer .imageWidget:after,[data-flex-site] #flex-footer .imageWidget:after,[data-flex-site] #flex-header .imageWidget:after{content:none}
[data-flex-site] #fcontainer .imageWidget:before,[data-flex-site] #flex-footer .imageWidget:before,[data-flex-site] #flex-header .imageWidget:before{font-size:80px;transform:none}.imageWidget.hover img.hover-image,.imageWidget:hover img.hover-image{display:initial}
.imageWidget.hover.hasHover img:not(.hover-image),.imageWidget:hover.hasHover img:not(.hover-image){display:none!important}.imageWidget img.hover-image,.imageWidget img.logo-on-scroll{display:none}
/* Custom Widgets Styles */

@charset "UTF-8";
.tsfooter {
  background-color: var(--PrimaryBackground, --color_2);
  color: var(--PrimaryBackground, --color_2);
}

.footer-container {
  background-color: var(--PrimaryBackground, --color_2);
  max-width: 100%;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}
.footer-section h3 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 15px;
  color: white;
}

.links-list {
  list-style: none;
}

.links-list li {
  margin-bottom: 8px;
  font-size: 14px;
}

.links-list li::before {
  content: "• ";
  margin-right: 5px;
}

.links-list a {
  color: var(--color_5, white);
  text-decoration: none;
  transition: color 0.3s;
}

.powered-by {
  color: var(--color_5, white);
}

.links-list a:hover {
  color: var(--color_5, white);
}

.app-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.app-button {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s;
}

.app-button:hover {
  transform: scale(1.05);
}

.app-store-btn {
  background: linear-gradient(to bottom, #333, #000);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #555;
  font-family: Arial, sans-serif;
  min-width: 135px;
  text-align: left;
}

.app-store-btn .small-text {
  font-size: 10px;
  line-height: 1;
  display: block;
}

.app-store-btn .large-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.1;
  display: block;
}

.google-play-btn {
  background: linear-gradient(to bottom, #333, #000);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #555;
  font-family: Arial, sans-serif;
  min-width: 135px;
  text-align: left;
}

.google-play-btn .small-text {
  font-size: 10px;
  line-height: 1;
  display: block;
}

.google-play-btn .large-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.1;
  display: block;
}

.footer-bottom {
  border-top: 1px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--color_5, white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--color_5, white);
}

.separator {
  color: #888;
}

.admin-link::after {
  content: " ►";
  font-size: 10px;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-left,
  .footer-right {
    justify-content: center;
  }
  .app-buttons {
    flex-direction: column;
  }
  .separator {
    display: none;
  }
}
.appleStoreIcon {
  margin-right: 5px;
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #555;
}

