/*MODAL CONTAINER*/

.active {
  opacity: 1 !important;
  z-index: 100;
}
.inactive {
  display: none !important;
}

.popup {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  display: block !important;
  opacity: 0;
  transition: .4s ease-in;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  top: 0;
  left: 0;
}

.off_overlay {
  position: fixed;
  height: 100%;
  width: 100%;
}

.popup.pop .overlay_content {
  overflow: hidden;
  overflow-y: auto;
  padding: 37px;
  z-index: 150;
}

.overlay_content {
  background: white;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  height: 400px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
  min-width: 300px;
  overflow: hidden;
  overflow-y: auto;
}

.overlay_text, .popup.pop {
  position: absolute;
  top: 0;
  padding: 25px;
  margin-top: 20px;
}

.popup.pop p.overlay_head1 {
  font-size: 18px !important;
}

.popup.pop p.overlay_head1 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 17px;
}

.popup.pop p.overlay_head {
  font-weight: bold;
  font-size: 13px;
  margin-top: 17px;
  margin-bottom: 3px !important;
}

.popup.pop p {
  font-size: 12px !important;
  font-weight: 300;
}

.popup.pop p {
  font-size: 12px !important;
  font-weight: 300;
}
