.search-input-container {
  position: relative;
}

.search-input,
.search-input:focus,
.search-input:active {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  border: honeydew;
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: 2px;
  outline: none;
}

.autocomplete-container {
  /* search-input-container */
  border-bottom: honeydew;
  border-left: honeydew;
  border-right: honeydew;
  border-top: 1px solid #e6e6e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 2px 2px;
  position: absolute;
  z-index: 1000;
}

.suggestion-item {
  padding: 8px;
  text-align: left;
  background-color: #fff;
  cursor: pointer;
}

.suggestion-item--active {
  background-color: #fafafa;
}

.labels {
  margin-top: -3px;
  padding: 5px;
  position: absolute;
  visibility: visible;
  z-index: 1030;
}
.labels.active .inner {
  background: cyan;
}
.labels.hover .inner {
  background-color: yellow;
}

.labels .arrow {
  border-top-color: #000000;
  border-right-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0);
  border-left-color: rgba(0, 0, 0, 0);
  border-width: 5px 5px 0;
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-style: solid;
  height: 0;
  position: absolute;
  width: 0;
}
.labels .inner {
  background-color: #000000;
  border-radius: 4px;
  color: #ffffff;
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  text-decoration: none;
}

.labels.active .arrow {
  border-top-color: #00ffff;
  border-right-color: rgba(0, 255, 255, 0);
  border-bottom-color: rgba(0, 255, 255, 0);
  border-left-color: rgba(0, 255, 255, 0);
}
.labels.hover .arrow {
  border-top-color: #ffff00;
  border-right-color: rgba(255, 255, 0, 0);
  border-bottom-color: rgba(255, 255, 0, 0);
  border-left-color: rgba(255, 255, 0, 0);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

html,
body {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1em;
}
a {
  color: #c8122c;
  font-weight: 800;
}
a:hover {
  color: #c8122c;
}
hr {
  border-top: 1px solid #aaaaaa;
}

h1,
h2,
h3,
h4 {
  font-size: 1.2em;
  font-weight: 700;
}

@media (min-width: 768px) {
  h1 {
    font-size: 4em;
  }
  h2 {
    font-size: 2.5em;
  }
  h3 {
    font-size: 2.25em;
  }
}
.bg-black {
  background-color: black;
}
.app-header {
  height: 14px;
  background-color: #c8122c;
}

.app-header-bg {
  height: 15vh;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 0px;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}

.img-header {
  position: absolute;
  z-index: 2;
  top: 2px;
  left: 10px;
  height: 150px;
}

.place-header {
  position: absolute;
  z-index: 2;
  top: 2px;
  left: 10px;
  height: 150px;
}

.home-cover {
  background-image: url('/img/maryland-flag.jpg');
  background-position: center center;
  background-size: cover;
  height: 80vh;
  background-color: #c8122c;
}

.add-business-cover {
  background-image: url('/img/maryland-flag.jpg');
  background-position: center center;
  background-size: cover;
  padding-bottom: 20px;
  padding-top: 150px;
}

.become-sponsor-cover {
  background-image: url('/img/maryland-flag.jpg');
  background-position: center center;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 20px;
}

.home-cover-text {
  text-align: center;
  font-weight: 800;
}

@media (min-width: 768px) {
  .home-cover {
    height: 90vh;
  }
  .home-cover-text {
    font-size: 2.25em;
  }
}

.vh-60 {
  height: 60vh;
}

.vh-80 {
  height: 80vh;
}

.bg-mdio-2 {
  background-image: url('/img/annapolis.png');
  background-position: center center;
  background-size: cover;
  border-top: 6px solid #fff;
}

.places-container {
  padding: 150px 14px 14px 14px;
  background-image: url('/img/maryland-flag.jpg');
  background-position: center center;
  background-size: cover;
}

@media (min-width: 768px) {
  .places-container {
    position: absolute;
    margin-top: 150px;
    left: 0px;
    max-width: 400px;
    z-index: 1;
    padding: 0px;
  }

  .places-list {
    height: calc(90vh - 340px);
    overflow: auto;
  }

  .app-container {
    height: 80vh;
  }
}

.custom-select {
  border: 1px solid #aaaaaa;
}

.form-control {
  border: 1px solid #aaaaaa;
}

.list-group-item {
  border: 1px solid #aaaaaa;
}

.bg-mdio-red {
  background-color: #c8122c;
}

.btn-mdio-red {
  background-color: #c8122c;
  color: white;
  padding: 0.375em 1.25em;
}

@media (min-width: 1024px) {
  .btn-mdio-red {
    background-color: #c8122c;
    color: white;
    padding: 0.375em 1.25em;
    font-size: 1.25em;
  }
  .home-form {
    border: 1px solid #aaaaaa;
    height: 47px;
  }
}

.btn-mdio-red:hover {
  background-color: #7f0012;
  color: white;
}

.business-form {
  border: 2px solid black;
  border-radius: 0;
}

.map-form {
  border: 1px solid black;
  border-radius: 0;
}

.btn-social {
  width: calc(1em * 1.5 + 1rem + 1px * 2);
  padding-left: 0;
  padding-right: 0;
  border-radius: 50%;
  border-color: white;
  border-width: 2px;
  color: white;
}

.btn-social:hover {
  background-color: #474747;
  color: white;
}

.gm-style-iw {
  border-radius: 0 !important;
  color: black !important;
  font-family: 'Montserrat';
  text-align: left;
  font-size: 1.25em;
  font-weight: 400;
  top: 15px !important;
  max-width: 400px !important;
  z-index: 1000;
}
@media (width: 1024px) {
  .places-container {
    max-width: 320px;
  }
}
.feature-class {
  margin-top: 58px;
}
@media (min-width: 1440px) {
  .places-container {
    max-width: 400px;
  }
}

@media (width: 768px) {
  .places-container {
    position: absolute;
    margin-top: 522px;
    left: 0px;
    z-index: 1;
    padding: 0px;
  }

  .business-card {
    width: 768px;
  }
}

.company-name {
  font-size: 0.913em;
  font-weight: 500;
}

.company-name:hover {
  font-size: 0.913em;
  font-weight: 500;
  color: #c8122c;
  cursor: pointer;
  text-decoration: underline;
}

.covid-text {
  font-size: 0.813em;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .admin-places {
    max-width: 600px;
  }
}

@media (width: 768px) {
  .admin-places {
    max-width: 300px;
  }
}

@media (min-width: 768px) {
  .direction-marker {
    display: none;
  }
}

@media (max-width: 425px) {
  .img-header {
    position: absolute;
    z-index: 2;
    top: 2px;
    left: 10px;
    height: 80px;
  }
}

@media (width: 768px) {
  .img-header {
    position: absolute;
    z-index: 2;
    top: 2px;
    left: 10px;
    height: 150px;
  }
}

@media (max-width: 425px) {
  .feature-class {
    margin-top: 0;
  }
}
.home-card {
  margin-top: 0px;
  margin-bottom: 30px;
}

@media (width: 768px) {
  .home-card {
    margin-top: 75px;
  }
}

@media (min-width: 1200px) {
  .img-header {
    height: 235px;
  }
}

@media (width: 768px) {
  .feature-class {
    margin-top: 430px;
  }
  .home-cover-text {
    font-size: 2.55em;
  }
}

@media (min-width: 1200px) {
  .home-cover-text {
    font-size: 2.9em;
  }
  .home-cover-label {
    font-size: 1.5em;
  }
}

@media (max-width: 425px) {
  .home-card {
    margin-top: 60px;
  }
}
@media (width: 1024px) {
  .home-card {
    margin-bottom: 0;
    margin-top: 3.5em;
  }
  .home-cover-text {
    font-size: 2.85em;
  }
}

.custom-file-upload {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.custom-file-upload input[type='file'] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: 50%;
}

.footer-button {
  font-size: 1.5rem !important;
}

.footer-button:hover {
  background-color: white;
  color: black;
}

.business-hover:hover {
  background-color: #f5f5f5;
}

.btn-mdio-red-admin {
  background-color: #c8122c;
  color: white;
  padding: 0.375em 1.25em;
}

.website-link {
  color: #c8122c;
  cursor: pointer;
}

.website-link:hover {
  text-decoration: underline;
}

body.modal-open {
  overflow: scroll !important;
}

@media (min-width: 1450px) {
  .feature-class {
    margin-top: 87px;
  }
  .home-cover-text {
    font-size: 3.5em;
  }
}

.podcast__image {
  max-width: 100%;
}

@media (max-width: 767px) {
  .podcast__image {
    display: none;
  }
}

@media (min-width: 1200px) {
  .feature_heading {
    font-size: 1.875em;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .feature_heading {
    font-size: 1.75em;
  }
}

@media (width: 768px) {
  .feature_heading {
    font-size: 1.75em;
  }
}

@media (max-width: 425px) {
  .feature_heading {
    font-size: 1.2em;
  }
}
.podcast___card {
  margin-top: 0px;
  margin-right: 0px;
}

@media (max-width: 767px) and (min-width: 567px) {
  .podcast___card {
    margin-top: 15px;
  }
}

@media (min-width: 1024px) {
  .podcast_button {
    width: 240px;
  }
}

@media (max-width: 1023px) and (min-width: 992px) {
  .podcast_button {
    width: 200px;
  }
}

@media (width: 768px) {
  .podcast_button {
    width: 150px;
  }
}

@media (max-width: 350px) and (min-width: 320px) {
  .home-cover {
    height: 90vh;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .feature_card_text {
    min-height: 6.5em;
    padding-top: 31px;
  }
}

@media (max-width: 991px) and (min-width: 767px) {
  .podcast_md {
    height: 62px !important;
    padding: 1em 2.3em !important;
  }
}
@media (width: 768px) {
  .podcast_md {
    height: 62px !important;
    padding: 1em 1.8em !important;
    width: 170px !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .feature_card_button {
    margin-top: 24px;
  }
}

.address-link {
  color: #000 !important;
  text-decoration: none !important;
}

.address-link:hover {
  color: #000 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

.detail_icons {
  font-size: 8px;
}
