/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.appLayout--VerticalLayout {
  display: grid;
  grid-template-areas: "Header" "Menu" "Main" "Footer";
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content 1fr min-content;
}
.appLayout--VerticalLayout .header {
  grid-area: Header;
  position: sticky;
  top: 0;
  height: 64px;
  border-bottom: 1px solid var(--bg-dark);
  background-color: var(--bg-light);
  z-index: 10010;
}
.appLayout--VerticalLayout .header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.appLayout--VerticalLayout .header__right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.appLayout--VerticalLayout .header__right button {
  padding: 0.5rem;
  width: 42px;
  height: 42px;
  aspect-ratio: 1/1;
  font-size: 1.2rem;
  color: var(--fg);
  border-radius: 50%;
}
.appLayout--VerticalLayout .header__right button:hover {
  background-color: var(--bg-dark);
}
.appLayout--VerticalLayout .header__right button:hover i {
  font-weight: bold;
}
.appLayout--VerticalLayout .header__right .header__profile {
  padding: 0 !important;
  margin-left: 0.25rem;
}
.appLayout--VerticalLayout .header__right .header__profile:hover {
  background-color: var(--bg) !important;
}
.appLayout--VerticalLayout .header__center {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-grow: 1;
}
.appLayout--VerticalLayout .header__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-grow: 0;
  margin-right: auto;
}
.appLayout--VerticalLayout .menu {
  grid-area: Menu;
  position: sticky;
  top: 64px;
  height: 56px;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--bg-dark);
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.4);
  z-index: 10009;
}
@media (max-width: 640px) {
  .appLayout--VerticalLayout .menu--desktop {
    display: none;
  }
}
.appLayout--VerticalLayout .menu--mobile {
  display: none;
}
@media (max-width: 640px) {
  .appLayout--VerticalLayout .menu--mobile {
    display: block;
  }
}
.appLayout--VerticalLayout .menu--mobile .menuList__item__subMenu.shown {
  width: 100svw;
  transform: translateX(-50svw);
  left: 50%;
  top: 90%;
  box-shadow: none;
  border-bottom: 3px solid var(--bg-dark);
}
.appLayout--VerticalLayout .menu .container {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}
.appLayout--VerticalLayout .footer {
  grid-area: Footer;
  height: 50px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-inline: 0.5rem;
}
@media (max-width: 1024px) {
  .appLayout--VerticalLayout .footer {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    height: fit-content;
    padding-bottom: 0.75rem;
  }
}
.appLayout--VerticalLayout .footer > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .appLayout--VerticalLayout .footer > div:first-of-type {
    flex-direction: column;
  }
  .appLayout--VerticalLayout .footer > div:first-of-type .footer__separator {
    display: none;
  }
}
.appLayout--VerticalLayout .footer__link {
  font-weight: 600;
}
.appLayout--VerticalLayout .footer__link:hover {
  color: var(--primary);
}

.verticalMainLayout {
  grid-area: Main;
  display: grid;
  grid-template-columns: 100%;
  gap: 0.5rem;
  /*&:has(.detailContainer.open) {
  	grid-template-columns: 1fr 1fr;
  }*/
  /*&--full {
  	&:has(.detailContainer.open) {
  		grid-template-columns: 1px 1fr;
  	}
  }*/
}
.verticalMainLayout .mainContainer {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: calc(100svh - 64px - 50px - 56px - 0.5rem);
  padding-bottom: 1rem;
  padding-top: 1.5rem;
}
.verticalMainLayout .detailContainer {
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  background-color: var(--bg-light);
  z-index: 10030;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.5s ease;
  overflow: hidden;
  overflow-y: auto;
}
.verticalMainLayout .detailContainer.open {
  transform: translateX(0);
}
.verticalMainLayout .detailContainer__title {
  display: flex;
}
.verticalMainLayout .detailContainer--small {
  width: 33svw;
}
.verticalMainLayout .detailContainer--medium {
  width: 66svw;
}
@media (max-width: 1280px) {
  .verticalMainLayout .detailContainer--medium {
    width: 75svw;
  }
}
@media (max-width: 1024px) {
  .verticalMainLayout .detailContainer--medium {
    width: 90svw;
  }
}
@media (max-width: 768px) {
  .verticalMainLayout .detailContainer--medium {
    width: 100svw;
    border-radius: 0 !important;
  }
}
.verticalMainLayout .detailContainer--large {
  width: 90svw;
}
@media (max-width: 768px) {
  .verticalMainLayout .detailContainer--large {
    width: 100svw;
    border-radius: 0 !important;
  }
}
.verticalMainLayout .detailContainer .formContainer {
  margin: 0;
  box-shadow: none;
}
.verticalMainLayout {
  /*.detailContainer {
  	display: none;
  	height: calc(100svh - $header-h - $footer-h - $menu-h - $spacing * 2);
  	padding-block: $spacing * 2;

  	&.open {
  		display: block;
  	}

  	&__title {
  		display: flex;
  	}
  }*/
}
.verticalMainLayout .backgroundContainer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0;
  left: 0;
  z-index: 10020;
  background-color: transparent;
  opacity: 0;
  transition: background-color 0.5s ease;
}
.verticalMainLayout .backgroundContainer.active {
  background-color: black;
  width: 100%;
  opacity: 0.2;
}

#btnContainer {
  padding: 0.5rem;
  width: 42px;
  height: 42px;
  aspect-ratio: 1/1;
  font-size: 1.2rem;
  color: var(--fg);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#btnContainer:hover {
  background-color: var(--bg-dark);
}
#btnContainer:hover i {
  font-weight: bold;
}

/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.homeNoMissions {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.homeNoMissions i {
  font-size: 48px;
}
.homeNoMissions h2 {
  font-size: 38px;
}
.homeNoMissions a {
  font-weight: 600;
  color: var(--primary);
}

.homeCardRow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 1.5rem;
}
.homeCardRow__title {
  font-weight: bold;
  color: var(--fg);
}
.homeCardRow__loading {
  width: 100%;
  display: flex;
  overflow-x: hidden;
}
.homeCardRow__loading > .skeleton {
  border-radius: 0.5rem;
  aspect-ratio: 3/2;
  flex-shrink: 0;
  width: calc(25% - 20px);
  max-height: 354px;
  margin-right: 20px;
}
@media (max-width: 1536px) {
  .homeCardRow__loading > .skeleton {
    max-height: 395px;
    width: calc(33.3333% - 20px);
  }
}
@media (max-width: 1280px) {
  .homeCardRow__loading > .skeleton {
    max-height: 476px;
    width: calc(50% - 20px);
  }
}
@media (max-width: 1024px) {
  .homeCardRow__loading > .skeleton {
    max-height: 467px;
  }
}
@media (max-width: 768px) {
  .homeCardRow__loading > .skeleton {
    max-height: 693px;
    width: 100%;
  }
}
.homeCardRow > div {
  width: 100%; /* make it fill parent */
  max-width: 100%; /* prevent overflow */
  flex: 1 1 auto;
  min-width: 0; /* super important inside flexbox */
}

.missionCard {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  width: 100%;
}
.missionCard__image {
  border-radius: 1rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.5);
  max-width: 355px;
}
@media (max-width: 1536px) {
  .missionCard__image {
    max-width: 395px;
  }
}
@media (max-width: 1280px) {
  .missionCard__image {
    max-width: 476px;
  }
}
@media (max-width: 1024px) {
  .missionCard__image {
    max-width: 467px;
  }
}
@media (max-width: 768px) {
  .missionCard__image {
    max-width: 693px;
  }
}
.missionCard__image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.missionCard__info {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 28px fit-content() 22px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.missionCard__info h3 {
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}
.missionCard__info h5 {
  font-weight: 400;
  font-size: 0.9rem;
  white-space: nowrap;
}
.missionCard__info p {
  font-size: 0.9rem;
  color: var(--fg-light);
}
.missionCard__info__pills {
  display: flex;
  gap: 0.5rem;
  padding-top: 8px;
}
.missionCard__info__pills .pill {
  font-size: 12px;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}
.missionCard__status {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 25px;
  bottom: 0;
  left: 0;
  font-weight: bold;
  color: var(--bg-light) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 5;
}
.missionCard__status--error {
  background-color: var(--error);
}
.missionCard__status--info {
  background-color: var(--info);
}
.missionCard__status span {
  height: fit-content;
}
.missionCard__overlayHidden {
  position: absolute;
  inset: 0;
  background-color: var(--bg-light);
  opacity: 0.7;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.missionCard__overlayHidden i {
  font-size: xx-large;
}
.missionCard__overlayHidden button {
  width: 100% !important;
  height: 100% !important;
  transition: font-size 0.2s ease, transform 0.2s ease;
}
.missionCard__overlayHidden button:hover {
  transform: scale(2);
  text-decoration: none !important;
}

.cardFavorite {
  --unit: 50px;
  position: absolute;
  width: calc(var(--unit) * 2);
  height: calc(var(--unit) * 2);
  top: calc(var(--unit) * -1);
  right: calc(var(--unit) * -1);
  background-color: var(--bg-light);
  border-radius: 50%;
  font-size: calc(var(--unit) * 0.5);
  display: grid;
  grid-template-areas: "_q _w" "a _f";
  grid-template-columns: var(--unit) var(--unit);
  grid-template-rows: var(--unit) var(--unit);
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.4);
  z-index: 10000;
}
.cardFavorite .heart {
  grid-area: a;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cardFavorite .heart i {
  position: absolute;
  top: calc(var(--unit) * 0.18);
  right: calc(var(--unit) * 0.12);
  text-shadow: rgba(56, 56, 56, 0.2) 0px 6px 12px;
}
.cardFavorite--liked {
  background-color: color-mix(in srgb, white 90%, red);
}
.cardFavorite--liked i {
  font-weight: bold;
  color: red;
  transition: color 0.3s ease, transform 0.3s ease;
  animation: pop 0.4s ease forwards;
  --fa-secondary-opacity: 1;
}
@keyframes pop {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.searchPage {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 1024px) {
  .searchPage {
    flex-direction: column-reverse;
  }
}
.searchPage__content {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  gap: 0.75rem;
}
.searchPage__content__wrapper {
  --grid-columns: 2;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: 1.25rem;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .searchPage__content__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .searchPage__content__wrapper {
    grid-template-columns: 1fr;
  }
}
.searchPage:has(.searchPage__map.hide) .searchPage__content__wrapper {
  --grid-columns: 4;
}
.searchPage__map {
  flex: 0 1 600px;
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .searchPage__map {
    flex: 0 1 40vh;
  }
}
@media (max-width: 768px) {
  .searchPage__map .leaflet-popup-content {
    margin: 12px;
  }
}
.searchPage__map::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: red;
  z-index: 10001;
}
.searchPage__map__wrapper {
  position: sticky;
  top: calc(120px + 1.5rem);
  width: 100%;
  height: calc(100svh - 64px - 56px - 3rem);
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .searchPage__map__wrapper {
    height: 40vh;
  }
}
.searchPage__map__wrapper .btn {
  position: absolute;
  top: 1rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10000;
  transform: translateX(-50%) translateY(0%);
  transition: transform 0.5s ease;
}
@media (max-width: 640px) {
  .searchPage__map__wrapper .btn {
    font-size: 12px;
  }
}
.searchPage__map__wrapper .btn.Hide {
  transform: translateX(-50%) translateY(-300%);
}
.searchPage__map__wrapper .btn:active {
  transform: translateX(-50%) scale(0.98) !important;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.4);
}
.searchPage__map__wrapper .map {
  height: 100%;
}

.missionQuestCard {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  width: 100%;
}
.missionQuestCard--popup {
  --baseCardUnit: 1/4;
}
@media (max-width: 768px) {
  .missionQuestCard--popup {
    max-width: 225px;
  }
}
.missionQuestCard__image {
  border-radius: 1rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.5);
}
@media (max-width: 1536px) {
  .missionQuestCard__image {
    max-width: 395px;
  }
}
@media (max-width: 1280px) {
  .missionQuestCard__image {
    max-width: 476px;
  }
}
@media (max-width: 1024px) {
  .missionQuestCard__image {
    max-width: 467px;
  }
}
@media (max-width: 768px) {
  .missionQuestCard__image {
    max-width: 693px;
  }
}
.missionQuestCard__image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.missionQuestCard__info {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 28px fit-content() 22px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.missionQuestCard__info__title {
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  color: var(--fg);
}
.missionQuestCard__info__subTitle {
  font-weight: 700;
  font-size: 0.7rem;
  white-space: nowrap;
  color: var(--fg);
}
.missionQuestCard__info__org {
  font-weight: 400;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--fg);
}
.missionQuestCard__info__address {
  font-size: 0.9rem;
  color: var(--fg-light);
}
.missionQuestCard__info__pills {
  display: flex;
  gap: 0.5rem;
  padding-top: 8px;
}
.missionQuestCard__info__pills .pill {
  font-size: 12px;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}
.missionQuestCard__application {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 25px;
  bottom: 0;
  left: 0;
  font-size: small;
  font-weight: bold;
  color: var(--bg-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.missionQuestCard__application--open {
  background-color: var(--secondary);
}
.missionQuestCard__application--close {
  background-color: var(--fg-dark);
}
.missionQuestCard__application span {
  height: fit-content;
}

.map .mapMarker i {
  font-size: 2.5rem;
  width: fit-content;
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 1;
  --fa-primary-color: var(--bg-light);
  --fa-secondary-color: var(--fg-dark);
}
@media (max-width: 768px) {
  .map .mapMarker i {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  .map .mapMarker i {
    font-size: 1.5rem;
  }
}
.map .mapMarker--applicationOpen i {
  --fa-secondary-color: var(--secondary);
}

.mapPopupContainer {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  pointer-events: none;
}
.mapPopupContainer.shown {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem 1rem;
  z-index: 10020;
}
.mapPopupContainer .mapCardPopUp {
  padding: 0.5rem;
  background: var(--bg-light);
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  line-height: 1.3 !important;
  pointer-events: auto;
  height: 200px;
}
.mapPopupContainer .mapCardPopUp .missionQuestCard {
  color: var(--fg) !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.mapPopupContainer .mapCardPopUp .missionQuestCard__info {
  padding: 0.5rem 0.25rem;
}
.mapPopupContainer .mapCardPopUp .missionQuestCard__info__pills {
  margin-top: auto;
}

.leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
  border: 0 !important;
}
.leaflet-touch .leaflet-control-layers > a:first-child, .leaflet-touch .leaflet-bar > a:first-child {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}
.leaflet-touch .leaflet-control-layers > a:last-child, .leaflet-touch .leaflet-bar > a:last-child {
  border-bottom-left-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.leaflet-control-custom {
  width: 33px;
  height: 33px;
  line-height: 33px !important;
  font-size: 18px !important;
  padding-top: 1px;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
  user-select: none;
  color: black !important;
  font: bold 18px "Lucida Console", Monaco, monospace;
  border-radius: 0.5rem !important;
}
.leaflet-control-custom:hover {
  background-color: #ccc;
}

.searchPage__map__wrapper.glassui .mapCardPopUp {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.searchPage__map__wrapper.glassui .leaflet-control-custom {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem !important;
  border: 2px solid rgb(255, 255, 255) !important;
}
.searchPage__map__wrapper.glassui .leaflet-control-custom:active {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 2px solid rgb(255, 255, 255);
  border: 0;
  border-radius: 0;
}
.searchPage__map__wrapper.glassui .leaflet-control-zoom.leaflet-bar.leaflet-control {
  border-radius: 0.5rem !important;
  border: 2px solid rgb(255, 255, 255) !important;
}
.searchPage__map__wrapper.glassui .leaflet-control-zoom.leaflet-bar.leaflet-control > a {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border: 0;
  border-radius: 0;
}
.searchPage__map__wrapper.glassui .leaflet-control-zoom.leaflet-bar.leaflet-control > a:active {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 2px solid rgb(255, 255, 255);
  border: 0;
  border-radius: 0;
}
.searchPage__map__wrapper.glassui .mapMarker {
  /*@include glass-background-d;*/
}
.searchPage__map__wrapper.glassui .mapMarker:active i, .searchPage__map__wrapper.glassui .mapMarker.opened i {
  --fa-secondary-color: var(--primary);
  /*background: rgba(38, 55, 123, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(13.9px);
  -webkit-backdrop-filter: blur(13.9px);
  border: 1px solid rgba(38, 55, 123, 0.6);*/
}
.searchPage__map__wrapper.glassui .mapSearchingMarker {
  animation: pulsGlass 0.75s ease-in-out infinite;
}
.searchPage__map__wrapper.glassui .BtnStartMapNavigation {
  background: rgba(38, 55, 123, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.9px);
  -webkit-backdrop-filter: blur(13.9px);
  border: 1px solid rgba(38, 55, 123, 0.6);
}
.searchPage__map__wrapper.glassui .BtnSearching {
  animation: pulsGlass 0.75s ease-in-out infinite;
}
@keyframes pulsGlass {
  0% {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 2px solid rgba(255, 255, 255, 0.8);
  }
  50% {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 2px solid rgb(255, 255, 255);
  }
  100% {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 2px solid rgba(255, 255, 255, 0.8);
  }
}

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