﻿.popUpComponent .bgDark {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
}
.popUpComponent .popUpContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 111;
  font-size: 18px;
  /*line-height: 24px;
  max-height: calc(100vh - 50px);*/
  overflow: auto;
}
.popUpComponent .popUpContainer .titleContainer {
  display: flex;
  align-items: center;
  justify-content: start;
}
.popUpComponent .popUpContainer .titleContainer .insideTitle {
  padding-inline-end: 25px;
}
.popUpComponent .popUpContainer .titleContainer .btnClose {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  /*left: 16px;*/
  top: 16px;
  background-color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  border: 1px solid var(--textColor);
}
.popUpComponent .popUpContainer .titleContainer .btnClose img {
  width: 12px;
}
.popUpComponent .popUpContainer .description {
  margin-top: 8px;
  margin-bottom: 16px;
}
.popUpComponent .popUpContainer .buttonLink {
  margin-bottom: 16px;
}
.popUpComponent .popUpContainer iframe {
  width: 100%;
  /*overried*/
  /* height: 711px;*/
  /*overried*/
}

@media screen and (max-width: 1199px) {
  .popUpComponent .popUpContainer {
    font-size: 16px;
    line-height: 21px;
    width: calc(100% - 28px);
  }
  .popUpComponent .popUpContainer .titleContainer .insideTitle {
    padding-inline-end: 21px;
  }
  .popUpComponent .popUpContainer .titleContainer .btnClose {
    /*left: 12px;*/
    top: 12px;
    background-color: #fff;
    width: 18px;
    height: 18px;
    border: 2px solid var(--textColor);
  }
  .popUpComponent .popUpContainer .description {
    margin-bottom: 12px;
  }
  .popUpComponent .popUpContainer .buttonLink {
    margin-bottom: 12px;
  }
  .popUpComponent .popUpContainer iframe {
    height: 172px;
  }
}
/*overried*/
.popUpComponent .bgDark {
  z-index: 15;
}
.popUpComponent .popUpContainer {
  width: 50%;
  max-height: none;
  border-radius: 8px;
}
.popUpComponent .popUpContainer .titleContainer .insideTitle {
  margin-bottom: 15px;
}
    .popUpComponent .popUpContainer .sub-title {
        color: var(--subTitleColor);
    }
.popUpComponent .popup-catalog-item .popUpContainer {
  width: 42%;
  border-radius: 8px;
}
.popUpComponent .popup-catalog-item .popUpContainer iframe {
  max-height: 450px;
}
.popUpComponent .popup-catalog-item .popUpContainer iframe html {
  overflow: hidden;
}

/*overried*/
