@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.LDSModal_body {
  overflow: hidden;
  position: relative;
}

.LDSModal_body:before {
  position: fixed;
  display: block;
  content: "";
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99999999;
}

.LDSModal_body:before {
  -webkit-animation: fadeIn 320ms ease;
  animation: fadeIn 320ms ease;
  -webkit-transition: opacity ease 320ms;
  transition: opacity ease 320ms;
}

.LDSModal_body.LDSModal_fadeOut:before {
  opacity: 0;
}

.LDSModal {
  -webkit-transition: all ease 0.01s;
  transition: all ease 0.01s;
  display: block;
  opacity: 0;
  height: 0;
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999;
  text-align: center;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.LDSModal.LDSModal_visible {
  opacity: 1;
  height: auto;
  bottom: 0;
}

.LDSModal_inner {
  -webkit-transition: all ease 320ms;
  transition: all ease 320ms;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  position: relative;
  display: inline-block;
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  padding: 0 20px 10px;
  background: #fff;
  opacity: 0;
  margin: 40px 0;
  border-radius: 4px;
  box-shadow: 0 30px 18px -20px #020202;
}

.LDSModal_inner.LDSModal_reveal {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.LDSModal_maincontent {
  max-height: 400px;
  overflow-y: auto;
}

.LDSModal_maincontent img {
  max-width: 100%;
}

.LDSModal_maincontent iframe {
  max-width: 100%;
}

.LDSModal_close {
  -webkit-transition: color 320ms ease;
  transition: color 320ms ease;
  color: #9e9e9e;
  opacity: 0.75;
  position: absolute;
  z-index: 2;
  right: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.LDSModal_close:hover {
  color: #000;
}

