.mc_hidden_content {
  position: relative;
  cursor: pointer;
}

.mc_hidden_popup {
  cursor: pointer;
}

.mc_hidden_popup:hover p{
color:#95B0D5;
}

.mc_hidden_content_tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 13px;
    bottom: 12px;
  transform: translateX(0);
  border-radius: 10px 10px 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(15px);
  padding: 12px 14px 12px 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: normal;
  width: min(434px, 90vw);
  word-break: break-word;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  text-align: left;
  line-height: 1.4;
}



.mc_hidden_content.active .mc_hidden_content_tooltip,
.mc_hidden_content:hover .mc_hidden_content_tooltip {
  opacity: 1;
  pointer-events: auto;
}

.mc_hidden_content_tooltip_title {
 color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 19px; /* 146.154% */
  letter-spacing: -0.39px;
}

.mc_hidden_content_tooltip_text {
 color: #000;


font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 19px;
letter-spacing: -0.39px;
}

.mc_hidden_content_tooltip_subtitle {
  color: #000;

font-size: 12px;
font-style: italic;
font-weight: 300;
line-height: 19px;
letter-spacing: -0.36px;
}

.mc-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.70);
  backdrop-filter: blur(15px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.mc-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.mc-popup-content {
  position: relative;
  background: #062043;
  border-radius: 15px;
  width: 700px;
  max-width: 700px;
  min-height: 462px;
  padding: 30px 37px 45px 36px;
  box-sizing: border-box;
}

.mc-popup-close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s ease !important;
  box-shadow: none !important;
  outline: none !important;
}

.mc-popup-close svg {
  width: 44px;
  height: 44px;
  transition: transform 0.3s ease;
}

.mc-popup-close:hover svg {
  transform: rotate(90deg);
}

.mc-popup-close svg path {
  stroke: #2D5181;
  transition: stroke 0.3s ease;
}

.mc-popup-close:hover svg path {
  stroke: #fff;
}

.mc-popup-inner {
  width: 100%;
}

.mc-popup-name {
  color: #ffffff;
  margin-bottom: 15px;
}

.mc-popup-name * {
  color: inherit;
}

.mc-popup-position {
  color: #ffffff;
  margin-bottom: 15px;
}

.mc-popup-position * {
  color: inherit;
}

.mc-popup-description {
  color: #ffffff;
}

.mc-popup-description * {
  color: inherit;
}

.mc-popup-preview-trigger {
  padding: 10px 20px;
  background: #062043;
  color: #fff;
  border: 2px solid #2D5181;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mc-popup-preview-trigger:hover {
  background: #2D5181;
}

@media (max-width: 1024px) {
  .mc-popup-content {
    width: 97%;
    max-width: 97%;
  }
}

@media (max-width: 767px) {
  .mc-popup-content {
    width: 90%;
    max-width: 90%;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
  }

  .mc_hidden_content_tooltip{
    display: flex;
    flex-direction: column;
  }

	.mc_hidden_gradient::before{
      background-image: linear-gradient(90deg, #02050C 0%, #F7F7F700 0%) !important;
   }
}


@media (max-width: 480px) {
	.mc_hidden_gradient{
      background-position: 65% center !important;
   }
}
