main {
  max-width: 720px;
  margin: auto;
}
main .content-stores {
  margin: 3em auto 5em auto;
}
main .content-stores h1 {
  color: inherit;
  /* font-family: "IL", sans-serif; */
  /* font-size: 32px; */
  /* font-weight: normal; */
  text-align: center;
}
main .content-stores p {
  color: inherit;
  /* font-family: "IL", sans-serif; */
  /* font-weight: normal; */
  font-size: 24px;
  line-height: 31px;
  padding: 0.5em 1em 0 1em;
  text-align: center;
}
main .content-stores .content-inputs {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 5em auto 0 auto;
  max-width: 90%;
}
main .content-stores .content-inputs .selection {
  max-width: 242.05px;
  position: relative;
}
main .content-stores .content-inputs .selection label {
  color: inherit;
  /* font-family: "IL", sans-serif; */
  font-size: 14px;
  font-weight: normal;
  line-height: 16.8px;
}
main .content-stores .pin {
  display: block;
  margin: 3.5em auto 0 auto;
  width: 300px;
}

.carousel-stores {
  margin: 5em auto 3em auto;
  max-width: 95%;
}
.carousel-stores .carousel-title {
  font-size: 16px;
}
.carousel-stores .carousel-description {
  font-size: 16px;
}
.carousel-stores .Costco {
  height: 2.75rem !important;
  width: 5.75rem !important;
}
.carousel-stores .TheHomeDepot {
  height: 2.75rem !important;
  width: 2.75rem !important;
}
.carousel-stores .AffinityCard {
  height: 1.75rem !important;
  width: 3.75rem !important;
}

@media (min-width: 320px) {
  main {
    margin: 4em auto 0 auto;
    max-width: 95%;
  }
  main .content-stores {
    margin: 0;
  }
  main .content-stores h1 {
    font-size: 24px;
  }
  main .content-stores p {
    font-size: 20px;
    line-height: 26px;
  }
  main .content-stores .content-inputs {
    flex-direction: column;
    margin: 2em auto 0 auto;
  }
  main .content-stores .content-inputs .selection {
    min-width: 100%;
    max-width: 100%;
  }
  main .content-stores .content-inputs .selection:last-child {
    margin-top: 1em;
  }
  main .content-stores .pin {
    width: 250px;
  }

  .carousel-stores {
    margin: 2em auto 5em auto;
    max-width: 90%;
    overflow: hidden;
  }
  .carousel-stores .carousel-title {
    margin-bottom: 0.5em;
  }
  .carousel-stores .Costco {
    display: none;
  }
  .carousel-stores .TheHomeDepot {
    display: none;
  }
  .carousel-stores .AffinityCard {
    display: none;
  }
}
@media (min-width: 768px) {
  main {
    margin: 4em auto 0 auto;
    max-width: 90%;
  }
  main .content-stores {
    margin: 0;
  }
  main .content-stores h1 {
    font-size: 32px;
  }
  main .content-stores p {
    font-size: 24px;
  }
  main .content-stores .content-inputs {
    flex-direction: row;
    margin: 5em auto 0 auto;
  }
  main .content-stores .content-inputs .selection {
    min-width: 272px;
    max-width: 275px;
  }
  main .content-stores .content-inputs .selection:last-child {
    margin-top: 0;
  }
  main .content-stores .pin {
    width: 300px;
  }

  .carousel-stores {
    max-width: 80%;
    overflow: inherit;
  }
}
@media (min-width: 1200px) {
  main {
    max-width: 720px;
    margin: auto;
  }
  main .content-stores {
    margin: 3em auto 5em auto;
  }
  main .content-stores h1 {
    font-size: 32px;
  }
  main .content-stores p {
    font-size: 24px;
  }
  main .content-stores .content-inputs {
    max-width: 90%;
  }
  main .content-stores .content-inputs .selection {
    max-width: 242.05px;
    min-width: 242.05px;
  }

  .carousel-stores {
    margin: 5em auto 7em auto;
    max-width: 1284px;
    overflow: inherit;
  }
  .carousel-stores .Costco {
    display: block;
  }
  .carousel-stores .TheHomeDepot {
    display: block;
  }
  .carousel-stores .AffinityCard {
    display: block;
  }
}
.center-list {
  justify-content: center;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown {
  align-items: center;
  border: 1.5px solid #ACB2BF;
  box-sizing: border-box;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  font-weight: bolder;
  padding: 11px 15.94px;
  min-height: 48px;
  min-width: 242px;
  margin: 0.5em auto;
  position: relative;
}
.dropdown .img-product {
  width: 2.2em;
  margin-right: 0.5em;
}
.dropdown span {
  font-size: 16px;
  font-weight: bolder;
  transition: all 3ms ease;
}
.dropdown svg {
  stroke: #056dae;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1.125rem;
  right: 1.25rem;
  stroke-width: 2px;
  transition-property: transform, stroke;
  transition-duration: 0.16s;
  width: 1.125rem;
}
.dropdown .dropdown-content {
  display: none;
  z-index: 2;
  background: #FFFFFF;
  border: 1.5px solid #ACB2BF;
  box-sizing: border-box;
  border-radius: 8px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 3em;
}
.dropdown .dropdown-content.overflow {
  max-height: 317px;
  overflow-y: scroll;
}
.dropdown .dropdown-content.active {
  display: block;
  -webkit-animation-duration: 10s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.dropdown .dropdown-content li {
  border-bottom: 1px solid #ACB2BF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: bolder;
  padding: 0.5em 1em 0.5em 1em;
}
.dropdown .dropdown-content li:first-child:hover {
  border-radius: 8px 8px 0 0;
}
.dropdown .dropdown-content li:last-child {
  border-bottom: none;
}
.dropdown .dropdown-content li:last-child:hover {
  border-radius: 0 0 8px 8px;
}
.dropdown .dropdown-content li:hover {
  background: #056dae;
  color: white;
}
.dropdown .dropdown-content li img {
  width: 2.2em;
  margin-right: 0.8em;
  border-radius: 1px;
}

/*# sourceMappingURL=stores.css.map */
