.hidden {
  display: none !important;
}

.dreyModalWrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: +2311;
  display: flex;
  overflow: hidden;
}

.dreyModalOverlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: +2312;
}

.dreyModalMain {
  background-color: #ffffff;
  z-index: +2313;
  position: relative;
  margin: auto;
  display: block;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  width:70%;
}

.dreyModalCloseButton {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #222;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 15px;
  border: solid #fff 3px;
  cursor: pointer;
  transition: transform 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dreyModalCloseButton:after {
  content: "";
  height: 3px;
  width: 18px;
  margin-left: 3px;
  margin-top: 10px;
  border-radius: 4px;
  transform: rotateZ(45deg);
  background-color: #fff;
  display: block;
  position: absolute;
}

.dreyModalCloseButton:before {
  content: "";
  height: 3px;
  width: 18px;
  margin-left: 3px;
  margin-top: 10px;
  border-radius: 4px;
  transform: rotateZ(-45deg);
  background-color: #fff;
  display: block;
  position: absolute;
}

.dreyModalCloseButton:hover {
  transform: scale(1.2, 1.2);
}

.dreyModalTitle {
  padding: 10px 30px;
  width: 100%;
  border-radius: 5px 5px 0 0;
  z-index: +2315;
  margin: -30px 0 30px -30px;
}

.dreyModalOverlayBlur {
  filter: blur(3px) !important;
}
