/*$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;
}
.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 .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;
  }
}
.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
*/
.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;
}

.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);
}
.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 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .searchPage__content__wrapper {
    grid-template-columns: 1fr;
  }
}
.searchPage__map {
  flex: 0 1 600px;
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .searchPage__map {
    flex: 0 1 40vh;
  }
}
.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: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10000;
  transform: translateX(100%) translateY(0%);
  transition: transform 0.5s ease;
}
.searchPage__map__wrapper .btn.Hide {
  transform: translateX(100%) translateY(-300%);
}
.searchPage__map__wrapper .btn:active {
  transform: translateX(100%) 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/3;
}
.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);
}
.map .mapMarker--applicationOpen i {
  --fa-secondary-color: var(--primary);
}

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