#pm {
  position: absolute;
  width: 100%;
  text-align: center;
  background: var(--tertiary_color);
  padding: var(--spacer_4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pm__link,
.pm__title {
  color: var(--quaternary_color);
  text-decoration: none;
  font-weight: var(--anchor_font_weight);
}
.pm__container,
.pm__link {
  display:flex;
  align-items: center;
  gap: .5rem;
}
.pm__link > span {
  display: flex;
  align-items: start;
}
.pm__link svg {
  fill: var(--quaternary_color);
  width: 2rem;
}
.pm__link:hover,
.pm__link:hover svg {
  color: var(--primary_color);
  fill: var(--primary_color);
}
.pm__closer {
  position: absolute;
  right: 1%;
  background-color: transparent;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}
.pm__closer:before,
.pm__closer:after {
  content: '';
	position: absolute;
	width: 2rem;
	height: .2rem;
	border-radius: 1rem;
	background-color: var(--white_color);
	top: 50%;
	left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.pm__closer:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* -------------- POPUP ------------ */
.dci__list-item-popup {
	position: fixed;
	width: 100vw;
	height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	transition: visibility var(--default_transition), opacity var(--default_transition);
}
.dci__list-item-popup--opened {
  opacity: 1;
	visibility: visible;
	z-index: 20;
}

.dci__list-item-popup-container {
	display: flex;
	width: 80vw;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 21;
	background-color: var(--white_color);
	gap: var(--spacer_40);
	padding: var(--spacer_60);
  max-height: 100%;
  overflow: hidden;
	height: 80vh;
}
@media(min-width: 1441px) {
	.dci__list-item-popup-container {
	  width: calc(var(--container_width)*0.8);
	}
}
@media(max-width: 992px) {
	.dci__list-item-popup-container {
	  width: calc(100vw - (var(--spacer_18)*2));
		padding: var(--spacer_24);
	}
	.dci__list-item-popup-title {
		padding-right: var(--spacer_24);
	}
}

.dci__list-item-popup-img {
  object-fit: contain;
	object-position: center;
	width: 20rem;
	flex-shrink: 0;
	max-height: 100%;
	background-image: radial-gradient(circle, var(--white_color) 0, var(--dark_color_70) 93%);
}
@media(max-width: 700px) {
	.dci__list-item-popup-img {
	  display: none;
	}
}

.dci__list-item-popup-title {
	margin-bottom; var(--spacer_20);
	color: var(--tertiary_color);
}

.dci__list-item-popup-text-container {
	overflow-y: auto;
  width: 100%;
}

.dci__list-item-popup-text {
	color: #012340;
	font-weight: 500;
}
.dci__list-item-popup-text--first {
	margin-bottom: var(--spacer_8);
}
.dci__list-item-popup-text--second {
	margin-bottom: 0;
}

.dci__list-item-popup-item-closer {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.8rem;
  height: 4.8rem;
	background-color: var(--primary_color);
	border-bottom-left-radius: .4rem;
}

.dci__list-item-popup-item-closer:before,
.dci__list-item-popup-item-closer:after {
	content: '';
	position: absolute;
	width: 2rem;
	height: .2rem;
	border-radius: 1rem;
	background-color: #012340;
	top: 50%;
	left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.dci__list-item-popup-item-closer:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.dci__caption .nowrap-lg {
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .dci__caption .nowrap-lg {
    white-space: wrap;
  }
}