/*
 * Search Bar Component
 */
.search-bar {
  --search-bar-width: 28.125rem;
  --search-bar-height: 2.375rem;
  --search-bar-padding-bottom: 2.5rem;
  --search-bar-border-radius: 2.5rem;
  --search-bar-icon-size: var(--search-bar-height);
  border-bottom: 1px solid black;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .search-bar {
    margin-bottom: 2.5rem;
  }
}

.search-bar #main-tagline {
  width: auto;
  text-align: center;
  margin-bottom: 0.5rem;
}

.search-bar__wrapper {
  position: relative;
  max-width: var(--search-bar-width);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .search-bar__wrapper {
    padding-bottom: var(--search-bar-padding-bottom);
  }
}

.search-bar .form-control {
  display: block;
  position: relative;
  height: var(--search-bar-height);
  line-height: 1.5;
  border-radius: var(--search-bar-border-radius);
  box-shadow: 0px 4px 15px -10px rgba(0, 0, 0, 0.4);
  padding-right: 2.5rem;
}

.search-bar .form-submit {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: var(--search-bar-icon-size);
  height: var(--search-bar-icon-size);
  font-size: 0;
  background-color: transparent;
  background-image: url(/themes/custom/bc/images/icons/search.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  padding: 0;
}
