#list-cards-noimage {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  /* border-bottom: 1px solid #e5e5e5; */
  /* padding-bottom: 20px; */
  padding-right: 5px;
}

.card-leftstore {
  padding: 23px 0 20px 0;
  
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
  transition: 0.2s all-ease;
}

.card-leftstore.maps {
  max-width: 350px;
  padding: 23px 10px 20px 10px;
}

.card-leftstore.maps .store_name {
  justify-content: center;
}

.opening_hours {
  margin-top: 1rem;
}

.opening_hours label {
  font-weight: bold;
}

.card-leftstore .store_name {
  display: flex;

  /* 16px */

  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  /* identical to box height */

  letter-spacing: 0.015em;

  color: #000000;
}

.card-leftstore .info {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.015em;

  color: #575757;
}

#list-cards-noimage .card-leftstore {
  flex-basis: 50%;
}

#list-cards-noimage .card-leftstore .store_header {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: 21px;
  margin-bottom: 5px;
}

#list-cards-noimage .card-leftstore .store_name {
  flex: 1;
}

#list-cards-noimage .card-leftstore .store_distance {
  margin-right: .5rem;
  display: flex;
}

#list-cards-noimage .card-leftstore .info {
  text-align: start;
  margin-left: 47px;
}

#list-cards-noimage .card {
  width: max-content;
  max-width: 25vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border: 1px #ccc solid;
  padding: 5px;
  border-radius: 0.5rem;
  text-align: center;
  align-items: center;
}

#list-cards {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 1.67rem;
  column-gap: 1.67rem;
  row-gap: 1rem;
  bottom: -3.4rem;
  justify-items: center;
}

#list-cards img {
  width: 200px;
  height: 200px;
}

#list-cards .card-image {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border: 1px #ccc solid;
  padding: 5px;
  border-radius: 0.5rem;
}

#list-cards .card-image .image {
  margin-right: 0.5rem;
}

#list-cards .card-image .image img {
  border-radius: 5px 0px 0px 5px;
}

#list-cards .card-image .info {
  border-left: 1px solid #cacaca;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#list-cards .card-test {
  width: max-content;
  max-width: 25vw;
  display: flex;
  flex-direction: row;
  height: 200px;
  flex-wrap: wrap;
  border: 1px #ccc solid;
  padding: 5px;
  border-radius: 0.5rem;
}

#list-cards .card-test .image {
  margin-right: 0.4rem;
  display: flex;
  align-items: center;
}

#list-cards .card-test .image img {
  border-radius: 5px 0px 0px 5px;
}

#list-cards .card-test .info {
  border-left: 1px solid #cacaca;
  padding-left: 0.4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

#list-cards .card {
  width: max-content;
  max-width: 25vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border: 1px #ccc solid;
  padding: 5px;
  border-radius: 0.5rem;
  text-align: center;
  align-items: center;
}


#list-cards-column {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 1.67rem;
  column-gap: 1.67rem;
  row-gap: 1rem;
  bottom: -3.4rem;
  justify-items: center;
}

#list-cards-column img {
  width: 200px;
  height: 200px;
}

#list-cards-column .card {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  border: 1px #ccc solid;
  padding: 5px;
  border-radius: 0.5rem;
  justify-content: center;
  text-align: center;
  align-items: center;
}

#list-cards-column .card .image img {
  width: 250px;
  border-radius: 5px 5px 0px 0px;
}

#list-cards-column .card .line {
  width: -webkit-fill-available;
  height: 10px;
  border-bottom: 1px solid #cacaca;
}


@media screen and (max-width: 995px) {
  #list-cards-noimage {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #list-cards-noimage .card-leftstore {
    width: -webkit-fill-available;
  }
  
}

@media screen and (max-width: 650px) {
  #list-cards-noimage {
    grid-template-columns: repeat(1, 1fr);
  }

  #list-cards-noimage .card-leftstore {
    flex-basis: 100%;
  }
}

