/*$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
*/
.mdHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 0.25rem 0.5rem;
  margin-inline: 0.5rem;
  padding: 0 1rem;
}
.mdHeader .btn i {
  font-size: 20px;
}
.mdHeader__title {
  display: grid;
  grid-template-columns: 1fr min-content;
  align-items: center;
  gap: 0.5rem;
}
.mdHeader__title .pill {
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .mdHeader {
    padding: 0 0.5rem;
  }
}
@media (max-width: 768px) {
  .mdHeader {
    padding: 0;
    gap: 0.25rem;
    flex-direction: column;
  }
  .mdHeader h1 {
    text-align: center;
  }
  .mdHeader__title {
    grid-template-columns: 1fr;
  }
  .mdHeader__title .pill {
    margin: 0 auto;
    flex-grow: 1;
    margin-bottom: 1rem;
  }
}
@media (max-width: 640px) {
  .mdHeader {
    margin-inline: 0;
  }
}

.mdGallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: hidden;
  max-width: 100%;
  padding-block: 0.25rem;
}
.mdGallery [data-type=Swiper] {
  width: 100%;
}
.mdGallery .swiper {
  padding-inline: 0;
}
.mdGallery .swiper-slide {
  width: unset;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .mdGallery .swiper-slide {
    width: 100% !important;
  }
}
.mdGallery img {
  border-radius: 0.5rem;
  height: 400px;
}
@media (max-width: 1024px) {
  .mdGallery img {
    height: unset !important;
  }
}
.mdGallery--amount_1 {
  background-color: var(--bg-dark);
  padding-block: 1.5rem;
}
@media (max-width: 1024px) {
  .mdGallery--amount_1 {
    background-color: none;
    padding-block: 0;
  }
}
.mdGallery--amount_1 .swiper-slide {
  width: 100%;
  margin-right: 0;
}
.mdGallery--amount_1 img {
  height: calc(400px - 3rem);
  margin: 0 auto;
}
.mdGallery--amount_2 {
  background-color: var(--bg-dark);
  padding: 1.5rem;
}
@media (max-width: 1024px) {
  .mdGallery--amount_2 {
    background-color: none;
    padding: 0;
  }
}
.mdGallery--amount_2 .swiper-slide:first-of-type {
  margin-left: auto;
  margin-right: 0.5rem;
}
.mdGallery--amount_2 .swiper-slide:last-of-type {
  margin-right: auto;
  margin-left: 0.5rem;
}
.mdGallery--amount_2 img {
  height: calc(400px - 3rem);
  margin: 0 auto;
}

.mdOrganizationBox {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.5rem;
}
.mdOrganizationBox__logo .avatar {
  --avatar-d: 60px;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.5);
}
.mdOrganizationBox__desc a {
  color: var(--fg-light);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .mdOrganizationBox__desc a {
    font-size: 0.9rem;
  }
}
.mdOrganizationBox__desc a:hover {
  color: var(--fg-dark);
}
.mdOrganizationBox__desc__title {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.mdPillContainer {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 425px) {
  .mdPillContainer > .pill {
    flex-grow: 1;
  }
}

.mdQuest {
  margin: 0.5rem;
  background: var(--bg-light);
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  .mdQuest {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 425px) {
  .mdQuest {
    margin-inline: 0;
  }
}
.mdQuest:not(:first-of-type) {
  margin-top: 1.5rem;
}
.mdQuest > div {
  display: flex;
  flex-direction: column;
}
.mdQuest > div:first-of-type {
  padding-right: 1rem;
  border-right: 1px solid var(--bg-dark);
}
@media (max-width: 1024px) {
  .mdQuest > div:first-of-type {
    border-right: 0;
    padding-right: 0;
  }
}
.mdQuest > div:last-of-type {
  padding-left: 1rem;
}
@media (max-width: 1024px) {
  .mdQuest > div:last-of-type {
    border-top: 1px solid var(--bg-dark);
    padding-top: 1rem;
    margin-top: 0.5rem;
    padding-left: 0;
  }
}
.mdQuest section:not(:first-of-type) {
  margin-top: 0.25rem;
}
.mdQuest section h4 {
  font-size: 18px;
}
.mdQuest section h5 {
  font-size: 14px;
}
.mdQuest section p {
  margin-top: 0.25rem;
  padding-left: 0.75rem;
}
@media (max-width: 1024px) {
  .mdQuest section p {
    padding-left: 0;
  }
}
.mdQuest section p i {
  font-size: 18px;
  margin-right: 0.25rem;
}
.mdQuest__when {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.mdQuest__when__date {
  display: grid;
  grid-template-columns: 56px 1fr;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-block: 0.75rem;
}
@media (max-width: 640px) {
  .mdQuest__when__date {
    grid-template-columns: 1fr;
  }
}
.mdQuest__when__date > div {
  padding: 0.5rem 0.25rem;
}
.mdQuest__when__date > div:first-of-type {
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mdQuest__when__date > div p {
  margin-top: 0;
}
@media (max-width: 640px) {
  .mdQuest__when__date > div p {
    text-align: center;
  }
}
.mdQuest__when__date > div:last-of-type {
  background: var(--bg);
}
.mdQuest__when__date__day {
  text-transform: capitalize;
}
.mdQuest__when__date__highlight {
  font-weight: 600;
}
.mdQuest__when__date.dark > div:last-of-type p {
  font-weight: 600;
}
.mdQuest__when__date.error > div:first-of-type {
  background: color-mix(in sRGB, var(--bg) 30%, var(--error-light)) !important;
}
.mdQuest__when__date.error > div:first-of-type i {
  color: var(--error-dark);
}
.mdQuest__when__date.error > div:last-of-type {
  background: color-mix(in sRGB, var(--bg) 70%, var(--error-light));
}
.mdQuest__when__date.error > div:last-of-type p {
  color: var(--error-dark);
  font-weight: 600;
}
.mdQuest__when__date.info > div:first-of-type {
  background: color-mix(in sRGB, var(--bg) 30%, var(--info-light)) !important;
}
.mdQuest__when__date.info > div:first-of-type i {
  color: var(--info-dark);
}
.mdQuest__when__date.info > div:last-of-type {
  background: color-mix(in sRGB, var(--bg) 70%, var(--info-light));
}
.mdQuest__when__date.info > div:last-of-type p {
  color: var(--info-dark);
  font-weight: 600;
}
.mdQuest__when__date.secondary > div:first-of-type {
  background: color-mix(in sRGB, var(--bg) 20%, var(--secondary-light)) !important;
}
.mdQuest__when__date.secondary > div:first-of-type i {
  color: var(--secondary-dark);
}
.mdQuest__when__date.secondary > div:last-of-type {
  background: color-mix(in sRGB, var(--bg) 70%, var(--secondary-light));
}
.mdQuest__when__date.secondary > div:last-of-type p {
  color: var(--secondary-dark);
  font-weight: 600;
}
.mdQuest__when__date.warning > div:first-of-type {
  background: color-mix(in sRGB, var(--bg) 20%, var(--warning-light)) !important;
}
.mdQuest__when__date.warning > div:first-of-type i {
  color: var(--warning-dark);
}
.mdQuest__when__date.warning > div:last-of-type {
  background: color-mix(in sRGB, var(--bg) 70%, var(--warning-light));
}
.mdQuest__when__date.warning > div:last-of-type p {
  color: var(--warning-dark);
  font-weight: 600;
}
.mdQuest__map {
  height: 150px;
  border-radius: 0.5rem;
  margin: 0.75rem;
}
.mdQuest__map__icon i {
  font-size: 2rem;
  width: fit-content;
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 1;
  --fa-primary-color: var(--bg-light);
  --fa-secondary-color: var(--primary);
}
@media (max-width: 768px) {
  .mdQuest__map__icon i {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  .mdQuest__map__icon i {
    font-size: 1.5rem;
  }
}
.mdQuest__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.mdQuest__submit {
  margin-top: auto !important;
}
.mdQuest__submit .btn {
  width: 100%;
}

.mdCoordinator {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .mdCoordinator {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 425px) {
  .mdCoordinator {
    padding-inline: 0;
  }
}
.mdCoordinator i {
  font-size: 18px;
  margin-right: 0.25rem;
}
@media (max-width: 1024px) {
  .mdCoordinator__info {
    margin-top: 0.25rem;
    margin-left: 0.25rem;
  }
}
@media (max-width: 425px) {
  .mdCoordinator__info {
    margin-left: 0;
  }
}
.mdCoordinator__info a {
  display: inline-flex;
  align-items: center;
  margin-left: 0.25rem;
}
.mdCoordinator__info i {
  font-size: 16px;
  margin-left: 0.5rem;
}

.mdFixedCandidateBtn {
  position: fixed;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.6);
  right: 2.75rem;
  bottom: 2rem;
  transition: transform 0.2s ease;
}
.mdFixedCandidateBtn.goHide {
  transform: translateY(200%);
}

#anchor-quests {
  scroll-margin: 80px;
}

@media (max-width: 640px) {
  .mdQuestPopup.popup.shown {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  }
}
.mdQuestPopup svg {
  height: 200px;
}
.mdQuestPopup .popup__header .btn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}
.mdQuestPopup .popup__body {
  padding-top: 0;
}
.mdQuestPopup .popup__footer form, .mdQuestPopup .popup__footer .btn {
  width: 100%;
}

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