/*modal*/

.overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 500;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  color: #000;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

/* .modalContent {
  overflow-y: scroll;
  scrollbar-color: #ff3a3a #fff;
  scrollbar-width: thin;
  height: inherit;
} */

.modalTitle {
  font-family: SFUIDisplay-Bold;
  color: #000000;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0.05em;
  margin: 0 10px 14px;
}

.modalDate {
  margin-bottom: 22px;
  color: #b2b2b2;
}

.page__text {
  color: #6c6c6c;
  margin: 0 10px 32px;
}

.modalClose {
  border: none;
  background-color: transparent;
}

.isModalShow {
  overflow: hidden;
}

.icon-close {
  width: 17px;
  height: 17px;
  cursor: pointer;
  background-image: url(./images/iconClose.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.modalContent
.social-icons {
	position: inherit;
}
