.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: 16px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
}

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

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


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

.isModalShow {
  overflow: hidden;
}

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

.mobile-nav li{
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px
}

.social-icon {
	filter: invert(.85);
}