.store-locations {
  width: 100%;
  color: #fff;
  font-family: inherit;
}
.store-locations .store-tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.store-locations .store-tabs-nav .store-tab-btn {
  background-color: #fff;
  color: #000;
  border: 1px solid black;
  font-size: 16px;
  cursor: pointer;
  width: 244px;
  height: 40px;
  transition: all 0.3s ease;
}
.store-locations .store-tabs-nav .store-tab-btn.active {
  background-color: #000;
  color: #fff;
}
.store-locations .store-tabs-nav .store-tab-btn:hover:not(.active) {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .store-locations .store-tabs-nav {
    margin: 32px 24px;
  }
}
.store-locations .store-tabs-content .store-tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
  border-top: 1px solid #e2e2e2;
}
.store-locations .store-tabs-content .store-tab-pane.active {
  display: block;
}
.store-locations .store-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 820px;
}
@media (max-width: 1024px) {
  .store-locations .store-grid-layout {
    grid-template-columns: 1fr;
  }
}
.store-locations .column-left {
  display: flex;
  color: #000;
}
@media (max-width: 1024px) {
  .store-locations .column-left {
    flex-direction: column;
  }
}
.store-locations .column-left .store-description {
  flex: 1;
  background-color: #e5dfd3;
  color: #000;
  padding: 110px 80px;
}
@media (max-width: 1024px) {
  .store-locations .column-left .store-description {
    padding: 122px 24px;
  }
}
.store-locations .column-left .store-description p {
  font-size: 16px;
  line-height: 24px;
}
.store-locations .column-left .store-info {
  flex: 1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .store-locations .column-left .store-info {
    padding: 32px 24px;
  }
}
.store-locations .column-left .store-info .info-section {
  display: flex;
  flex-direction: column;
  color: #939498;
  font-size: 14px;
  line-height: 22px;
  gap: 24px;
}
.store-locations .column-left .store-info .info-section > * {
  margin: 0;
}
.store-locations .column-left .store-info .info-section h1,
.store-locations .column-left .store-info .info-section h2,
.store-locations .column-left .store-info .info-section h3,
.store-locations .column-left .store-info .info-section h4,
.store-locations .column-left .store-info .info-section h5,
.store-locations .column-left .store-info .info-section h6 {
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.store-locations .column-left .store-info .info-section h1 picture,
.store-locations .column-left .store-info .info-section h2 picture,
.store-locations .column-left .store-info .info-section h3 picture,
.store-locations .column-left .store-info .info-section h4 picture,
.store-locations .column-left .store-info .info-section h5 picture,
.store-locations .column-left .store-info .info-section h6 picture {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  margin-right: 8px;
}
.store-locations .column-left .store-info .info-section h1 a,
.store-locations .column-left .store-info .info-section h2 a,
.store-locations .column-left .store-info .info-section h3 a,
.store-locations .column-left .store-info .info-section h4 a,
.store-locations .column-left .store-info .info-section h5 a,
.store-locations .column-left .store-info .info-section h6 a {
  color: inherit;
}
.store-locations .column-left .store-info .store-divider {
  border: 0;
  border-top: 1px solid #333;
  margin: 0;
}
.store-locations .column-left .store-info .store-address > * {
  margin: 0;
}
.store-locations .column-left .store-info .store-address p {
  padding-left: 30px;
}
.store-locations .column-left .store-info .store-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.store-locations .column-left .store-info .store-socials > * {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  border: 1px solid rgba(0, 0, 0, 0.1411764706);
  border-radius: 100%;
}
.store-locations .column-left .store-info .store-socials > *:hover {
  opacity: 0.8;
}
.store-locations .column-left .store-info .operating-hours details summary {
  cursor: pointer;
  outline: none;
  list-style: none;
}
.store-locations .column-left .store-info .operating-hours details summary::-webkit-details-marker {
  display: none;
}
.store-locations .column-left .store-info .operating-hours details summary h6 {
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.store-locations .column-left .store-info .operating-hours details summary h6 picture:last-child {
  margin-right: 0;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.store-locations .column-left .store-info .operating-hours details[open] summary h6 picture:last-child {
  transform: rotate(180deg);
}
.store-locations .column-left .store-info .operating-hours details[open] .hours-content {
  animation: slideDownExpand 0.3s ease;
}
.store-locations .column-left .store-info .operating-hours details .hours-content {
  margin-top: 16px;
  padding-left: 32px;
}
.store-locations .column-left .store-info .operating-hours details .hours-content table {
  width: 100%;
  border-collapse: collapse;
}
.store-locations .column-left .store-info .operating-hours details .hours-content table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.store-locations .column-left .store-info .operating-hours details .hours-content table tr:last-child {
  margin-bottom: 0;
}
.store-locations .column-left .store-info .operating-hours details .hours-content table td {
  padding: 0;
  border: none;
  color: #939498;
  font-size: 16px;
  line-height: 24px;
}
.store-locations .column-left .store-info .booking-link {
  color: #fff;
  background: #000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 14px;
  font-size: 14px;
}
.store-locations .column-left .store-info .booking-link:hover {
  opacity: 0.8;
}
.store-locations .column-right {
  display: flex;
  padding: 8px;
}
@media (max-width: 1024px) {
  .store-locations .column-right {
    padding: 0;
  }
}
.store-locations .column-right iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDownExpand {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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