.nuestras-tiendas-page {
  background-color: #fff;
}

.nuestras-tiendas-wrapper {
  min-height: calc(100vh - 120px);
}

.nuestras-tiendas-sidebar {
  border-right: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 100vh;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .nuestras-tiendas-sidebar {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    max-height: none;
  }
}

.sidebar-header {
  padding: 24px 16px 16px;
}

.sidebar-title {
  font-family: "Roboto", "Helvetica Neue", arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #424242;
  margin: 0;
}

.sidebar-filters {
  padding: 0 16px 12px;
}
.sidebar-filters .row {
  gap: 0;
}
.sidebar-filters .col-6:first-child {
  padding-right: 4px;
}
.sidebar-filters .col-6:last-child {
  padding-left: 4px;
}

.sidebar-filters .floating-label {
  margin-bottom: 0;
}
.sidebar-filters .floating-label select.form-control {
  font-size: 12px;
}
.sidebar-filters .floating-label .select-icon {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sidebar-search {
  padding: 0 16px 12px;
}

.search-input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--color-grey2);
  border-radius: 10px;
  overflow: hidden;
  background-color: transparent;
}
.search-input-wrapper:focus-within {
  border-color: var(--color-blue5);
  -webkit-box-shadow: 0 0 2px 0.15rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 2px 0.15rem rgba(0, 123, 255, 0.25);
  outline: 0;
}

.nt-search-icon {
  padding: 8px 6px 8px 14px;
  color: #424242;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.nt-search-input {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 8px 12px 8px 4px;
  font-size: 14px;
  color: #424242;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
  background-color: transparent;
}
.nt-search-input::-webkit-input-placeholder {
  color: #aeaeae;
}
.nt-search-input::-moz-placeholder {
  color: #aeaeae;
}
.nt-search-input:-ms-input-placeholder {
  color: #aeaeae;
}
.nt-search-input::-ms-input-placeholder {
  color: #aeaeae;
}
.nt-search-input::placeholder {
  color: #aeaeae;
}
.nt-search-input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.stores-list-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  max-height: calc(100vh - 280px);
}
@media (max-width: 991px) {
  .stores-list-container {
    max-height: 360px;
  }
}

.stores-list {
  list-style: none;
  padding: 4px 0 0;
  margin: 0;
}

.store-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin: 0 16px 12px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  -webkit-transition: border-color 0.15s ease;
  transition: border-color 0.15s ease;
}
.store-list-item:hover {
  border-color: #008c4b;
}
.store-list-item.selected {
  background-color: transparent;
  border: none;
  border-radius: 8px;
  margin: 0 16px 12px;
  padding: 14px 16px;
  position: relative;
  z-index: 0;
}
.store-list-item.selected::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#008c4b), to(#ffda00));
  background: linear-gradient(to right, #008c4b, #ffda00);
  z-index: -2;
}
.store-list-item.selected::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background-color: #fff;
  z-index: -1;
}
.store-list-item.selected .radio-indicator {
  background-color: #008c4b;
  border-color: #008c4b;
}
.store-list-item.selected .radio-indicator::after {
  opacity: 1;
}
.store-list-item.selected .store-list-icon {
  color: #008c4b;
}
.store-list-item.selected .store-list-name {
  color: #005f32;
  font-weight: 600;
}

.store-list-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #aeaeae;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.store-list-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.store-list-name {
  font-size: 14px;
  font-weight: 400;
  color: #424242;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-list-address {
  font-size: 12px;
  color: #424242;
}

.store-list-radio {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.store-check-icon {
  display: none;
}

.store-uncheck-icon {
  display: block;
}

.store-list-item.selected .store-check-icon {
  display: block;
}
.store-list-item.selected .store-uncheck-icon {
  display: none;
}

.stores-no-results {
  padding: 24px 16px;
  text-align: center;
  color: #aeaeae;
  font-size: 14px;
}
.stores-no-results.d-none {
  display: none !important;
}

.nuestras-tiendas-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .nuestras-tiendas-detail {
    padding-left: 1.5rem;
  }
}

.store-detail-panel {
  padding: 24px 24px 16px;
}
@media (max-width: 991px) {
  .store-detail-panel {
    padding: 20px 16px 12px;
  }
}

.store-detail-name {
  font-family: "Roboto", "Helvetica Neue", arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #424242;
  margin: 0 0 20px;
}

.store-detail-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 991px) {
  .store-detail-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.store-detail-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.store-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.store-info-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1px;
}

.store-info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  font-size: 14px;
}
.store-info-text a {
  color: #424242;
  text-decoration: none;
}
.store-info-text a:hover {
  color: #005f32;
}

.store-info-label {
  font-weight: 600;
  color: #424242;
}

.store-info-value {
  color: #424242;
}

.store-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media (max-width: 991px) {
  .store-services {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}

.store-services-label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
}

.store-services-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.service-logo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 88px;
  height: 88px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  padding: 8px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.service-logo-item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.service-logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.store-map-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 300px;
}
@media (min-width: 992px) {
  .store-map-container {
    min-height: 400px;
    margin-left: 1.5rem;
  }
}

.nt-map-canvas {
  width: 100%;
  height: 100%;
  min-height: 300px;
}
@media (min-width: 992px) {
  .nt-map-canvas {
    min-height: 400px;
  }
}
