@charset "UTF-8";
/**
 * Bootstrap 5.3 – Variabili SCSS di base
 * @see https://getbootstrap.com/docs/5.3/customize/sass/
 */
/* ----------------------------------------------------------
 * SPACING
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * COLOR SYSTEM
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BACKGROUNDS CUSTOM
 * ---------------------------------------------------------- */
.bg-gradient {
  background-image: linear-gradient(270deg, #57bfe6 0%, #1d71b8 100%) !important;
}
/* ----------------------------------------------------------
 * BODY
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * TYPOGRAPHY
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * LINK
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BUTTONS
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BORDER RADIUS
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * ACCORDION
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * TABS
 * ---------------------------------------------------------- */
.block__store-locator .store-locator-wrapper {
  position: relative;
}
.block__store-locator .store-locator-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.block__store-locator .store-locator-filter-form {
  padding: 0;
  color: #fff;
}
.block__store-locator .store-locator-filter-form .form-group-search {
  position: relative;
}
.block__store-locator .store-locator-filter-form .form-group-search:after {
  content: url(../img/icon-search-white.svg);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
}
.block__store-locator .store-locator-filter-form #filter-geolocation i {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(100);
  width: 20px;
  height: 20px;
}
.block__store-locator .store-locator-filter-form #filter-geolocation i.icon-navigation {
  background-image: url(../img/icon-location.svg);
}
.block__store-locator .store-locator-filter-form #filter-geolocation i.icon-check {
  background-image: url(../img/icon-location-check.svg);
}
.block__store-locator .store-locator-filter-form #filter-geolocation:hover i {
  filter: none;
}
.block__store-locator .store-locator-filter-form .form-group input,
.block__store-locator .store-locator-filter-form .form-group .choices__inner {
  border: none;
}
.block__store-locator .store-locator-filter-form .form-group .choices__list {
  color: #000;
}
.block__store-locator .store-locator-filter-form .form-group .choices__list .choices__item {
  font-size: 12px;
}
.block__store-locator .store-locator-filter-form .form-group .form-check.form-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.block__store-locator .store-locator-filter-form .form-group .form-check.form-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
  background-color: transparent;
  border-color: #fff !important;
  border-radius: 1.5rem;
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease-in-out;
}
.block__store-locator .store-locator-filter-form .form-group .form-check.form-switch .form-check-input::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.25s ease-in-out;
}
.block__store-locator .store-locator-filter-form .form-group .form-check.form-switch .form-check-input:checked {
  background-color: #fff !important;
  border-color: #fff;
}
.block__store-locator .store-locator-filter-form .form-group .form-check.form-switch .form-check-input:checked::before {
  background-color: var(--bs-primary);
  transform: translate(1.45rem, -50%);
}
.block__store-locator .store-locator-filter-form .form-group .form-check.form-switch .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
}
.block__store-locator .store-locator-filter-form .form-group .form-check.form-switch .form-check-input:hover {
  box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.3);
}
.block__store-locator .store-locator-filter-form .form-group-button .form-check.form-switch {
  position: relative;
  display: inline-block;
  padding: 0;
}
.block__store-locator .store-locator-filter-form .form-group-button .form-check.form-switch input.form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.block__store-locator .store-locator-filter-form .form-group-button .form-check.form-switch label.form-check-label {
  display: inline-block;
  cursor: pointer;
  background-color: var(--bs-danger);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  user-select: none;
  border-radius: 100px;
}
.block__store-locator .store-locator-filter-form .form-group-button .form-check.form-switch label.form-check-label:hover {
  filter: brightness(0.9);
}
.block__store-locator .store-locator-filter-form .form-group-button .form-check.form-switch input:checked + label {
  filter: brightness(0.8);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.block__store-locator .store-locator-filter-form .form-group-button .form-check.form-switch input:focus + label {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.block__store-locator .store-locator-filter-form .form-group-button .form-check + .form-check {
  margin-left: 0.5rem;
}
.block__store-locator .store-locator-map {
  width: 100%;
  height: 600px;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .block__store-locator .store-locator-map {
    height: 400px;
  }
}
.block__store-locator .gm-style-iw-chr button {
  height: 32px !important;
  width: 32px !important;
}
.block__store-locator .gm-style-iw-chr button span {
  margin: 0 !important;
}
.block__store-locator .store-info-window {
  padding: 0.5rem;
  min-width: 200px;
}
.block__store-locator .store-info-window h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.block__store-locator .store-info-window .btn {
  margin-top: 0.5rem;
}
.block__store-locator .store-locator-card {
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
}
.block__store-locator .store-locator-card.highlight, .block__store-locator .store-locator-card.active {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}
.block__store-locator .store-locator-card .card-img-wrapper {
  overflow: hidden;
  max-height: 200px;
}
.block__store-locator .store-locator-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.block__store-locator .store-locator-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}
.block__store-locator .store-locator-card .store-taxonomies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.block__store-locator .store-locator-card .store-address,
.block__store-locator .store-locator-card .store-phone,
.block__store-locator .store-locator-card .store-email,
.block__store-locator .store-locator-card .store-website {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}
.block__store-locator .store-locator-card .store-address i,
.block__store-locator .store-locator-card .store-phone i,
.block__store-locator .store-locator-card .store-email i,
.block__store-locator .store-locator-card .store-website i {
  flex-shrink: 0;
}
.block__store-locator .store-locator-wrapper--single .store-locator-list-view.active,
.block__store-locator .store-locator-wrapper--single .store-locator-map-view.active {
  display: block !important;
}
@media (min-width: 992px) {
  .block__store-locator .store-locator-wrapper--twocol .store-locator-list-wrapper {
    max-height: 600px;
  }
}
@media (min-width: 992px) {
  .block__store-locator .store-locator-wrapper--twocol .store-locator-list-col {
    display: flex;
    flex-direction: column;
  }
}
.block__store-locator .store-locator-wrapper--map .store-locator-map {
  height: 700px;
}
@media (max-width: 991.98px) {
  .block__store-locator .store-locator-wrapper--map .store-locator-map {
    height: 500px;
  }
}
.block__store-locator .store-locator-wrapper--list .store-locator-card-wrapper {
  margin-bottom: 1rem;
}
.block__store-locator .simplebar-scrollbar::before {
  background-color: var(--bs-primary);
  opacity: 0.5;
}
.block__store-locator .simplebar-track.simplebar-vertical {
  width: 8px;
  right: 2px;
}
.block__store-locator .store-show-on-map {
  padding: 0.25rem 0.5rem;
}
.block__store-locator .store-show-on-map:hover img {
  filter: brightness(100);
}
@media (max-width: 575.98px) {
  .block__store-locator .store-locator-filter-form {
    padding: 1rem;
  }
  .block__store-locator .store-locator-map {
    height: 400px;
  }
}