.clinic-listing-search {
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  background-color: var(--secondary-01);
}
.clinic-listing-search .select-label {
  color: white;
  font-size: var(--step-0);
  margin-bottom: 0.25rem;
}
.clinic-listing-search .location-search {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 0.25rem;
  color: var(--secondary-01);
  transition: all 0.15s ease-in-out;
}
.clinic-listing-search .location-search:hover {
  color: white;
  background-color: var(--primary-01);
}

.clinic-image-wrapper {
  width: 100%;
  height: 100%;
  aspect-ratio: 5/4;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (width < 768px) {
  .clinic-image-wrapper {
    aspect-ratio: 3/2;
  }
}
.clinic-image-wrapper .clinic-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.clinic-name {
  font-size: var(--step-2);
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 0.5rem;
  color: var(--darker-text);
}

.clinic-label {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.clinic-label-item {
  color: var(--darker-text);
}

.clinic-label-others {
  gap: 0.5rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.clinic-label-others .clinic-label-item {
  flex: 1 1 40%;
}
@media screen and (width >= 992px) {
  .clinic-label-others .clinic-label-item {
    max-width: 40%;
  }
}

.clinic-detail-inner {
  background-color: #f3f3f3;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.clinic-listing-select {
  width: 100%;
  max-width: 20rem;
  padding: 0.5rem 1rem;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline;
  border: none;
  background-color: white;
  border-radius: 0.25rem;
}
.clinic-listing-select option {
  min-width: 10rem;
  max-width: 20rem;
}

.clinic-listing-input {
  width: 100%;
  max-width: 20rem;
  padding: 0.5rem 1rem;
  width: 17rem;
  display: inline;
  border: none;
  background-color: white;
  border-radius: 0.25rem;
}
.clinic-listing-input option {
  min-width: 10rem;
  max-width: 20rem;
}

section.clinic-listing {
  padding: clamp(1.25rem, 3vw, 2rem) 0;
}
section.clinic-listing .clinic-listing-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
section.clinic-listing .clinic-listing-item {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0px 6px 14px 2px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
section.clinic-listing .clinic-listing-item .clinic-image-wrapper {
  border-radius: 0;
  width: 100%;
}
section.clinic-listing .clinic-listing-item .clinic-name-wrapper {
  display: flex;
  margin-bottom: 1rem;
}
@media screen and (width < 992px) {
  section.clinic-listing .clinic-listing-item .clinic-name-wrapper {
    flex-direction: column;
  }
}
section.clinic-listing .clinic-listing-item .clinic-name-wrapper .voucher-wrapper {
  height: 100%;
  max-height: 2.25rem;
}
@media screen and (width >= 992px) {
  section.clinic-listing .clinic-listing-item .clinic-name-wrapper .voucher-wrapper {
    margin-left: auto;
  }
}
section.clinic-listing .clinic-listing-item .clinic-name-wrapper .voucher-wrapper .voucher {
  height: 100%;
}
section.clinic-listing .clinic-listing-item .clinic-item-content {
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (width < 768px) {
  section.clinic-listing .clinic-listing-item .clinic-item-content {
    padding: 1.5rem;
  }
}
section.clinic-listing .clinic-listing-item .clinic-item-content .button-default-1 {
  margin-top: auto;
}
section.clinic-listing .clinic-listing-item .clinic-address-wrapper {
  margin-bottom: 1rem;
}
section.clinic-listing .clinic-listing-item .clinic-others-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (width < 992px) {
  section.clinic-listing .clinic-listing-item .clinic-others-wrapper {
    flex-direction: column;
  }
}
section.clinic-listing .clinic-listing-item .clinic-others-wrapper .status {
  min-width: 8rem;
}
section.clinic-listing .clinic-listing-item .clinic-others-wrapper .clinic-label {
  color: var(--darker-text);
}
section.clinic-listing .status-text {
  display: flex;
  align-items: center;
}
section.clinic-listing .status-text > div {
  display: flex;
  align-items: center;
}
section.clinic-listing .status-text > div::after {
  margin-left: 0.5rem;
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: rgb(63, 238, 19);
  border-radius: 50%;
}
section.clinic-listing .status-text > div.open::after {
  background-color: rgb(63, 238, 19);
}
section.clinic-listing .status-text > div.pending::after {
  background-color: rgb(255, 232, 22);
}
section.clinic-listing .status-text > div.closed::after {
  background-color: rgb(139, 16, 8);
}/*# sourceMappingURL=clinic.css.map */