/* Small overrides for footer logo and social icons */
.timbu-logo-svg img {
  display: block;
  max-width: 180px;
  padding-bottom: 10px;
}

.footer-social-icons img,
.social-media-icons img {
  padding-right: 10px;
  width: 2.2em;
  height: auto;
}

.footer p.copyright,
.copyright {
  margin-top: 10px;
  color: #828282;
  font-size: 14px;
}

.footer-subscribe {
  /* keep original dark background and spacing so appearance matches the Laravel site */
  background-color: #1a2b49;
  padding: 30px 0;
  clear: both;
  box-sizing: border-box;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.footer-subscribe .subscribe-text-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-subscribe .input--group {
  display: flex;
  align-items: center;
}
.footer-subscribe .input {
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  min-width: 260px;
}
.footer-subscribe .button {
  margin-left: 8px;
  padding: 10px 14px;
  border-radius: 4px;
  background-color: #00aeff;
  color: #fff;
  border: none;
}
@media (max-width: 767px) {
  .footer-subscribe .subscribe-text-input {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-subscribe .input {
    width: 100%;
    min-width: 0;
  }
  .footer-subscribe .input--group { width: 100%; }
}

/* Visa homepage input override to match original Laravel UI */
.hp-jumbotron-visa .input-visa {
  background-color: #fff !important;
  padding: 0.5rem 3.5rem 0.5rem 3.5rem; /* left padding to clear the search icon */
  border-radius: 5px;
  height: 50px;
  box-shadow: none;
  border: 0;
}
.hp-jumbotron-visa .visa-searchicon .visa-search-icon { left: 10px; position: absolute; top: 14px; }
.hp-jumbotron-visa .visa-search-cancel { right: 10px; }
