#container-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  justify-content: center;
}

.container-store {
  box-shadow: 5px 5px 6px 0px rgba(196, 196, 196, 0.75);
  display: flex;
  max-width: 400px;
  width: 100%;
  border: 1px solid #ccc;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.store-info-1 {
  position: relative;
}

.store-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.store-info-float {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
}

.store-info-float div {
  width: -moz-fit-content;
  width: fit-content;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0px 5px;
}

.store-departamento {
  background: #2E6C8A;
  color: white;
}

.store-categoria {
  background: greenyellow;
}

.store-info-2 {
  height: 100%;
}

.store-info-2,
.store-info-3,
.store-info-4 {
  padding: 5px 10px;
}

.store-image-logo {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}

.store-name {
  font-size: 1.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  text-align: justify;
  font-weight: 600;
}

.store-delivery {
  min-width: 30px;
  font-size: 30px;
  color: #2E6C8A;
}

.store-horario p {
  padding: 5px;
  border-radius: 5px;
  color: white;
}

.store-hora-a {
  background: #227bd4;
}

.store-hora-b {
  background: #fb910a;
}

.store-description {
  padding-bottom: 15px;
}

.store-icon {
  font-size: 25px;
  padding: 0px 5px;
  border-radius: 50%;
  background: #f0f0f0;
  margin: 0 5px;
}

.store-icon:hover {
  background: #2E6C8A;
  color: white;
  cursor: pointer;
  transition: 0.5s;
}

.store-url {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.btn-tienda {
  background: #2E6C8A;
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
  border: none;
  width: 100%;
  font-weight: 600;
  text-align: center;
}

.btn-tienda:hover {
  background: #214e64;
  color: white;
  cursor: pointer;
  transition: 0.5s;
}

#container-pagination {
  display: flex;
  justify-content: center;
}

.pagination {
  float: inherit !important;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
}

.container-store {
  border-radius: 0px;
  max-width: 500px;
}

.btn-tienda {
  border-radius: 0px;
}

.store-horario {
  gap: 5px;
}

.store-horario p {
  border-radius: 30px;
}

