.modal3,
.modal3-box {
  z-index: 9000;
}

.modal3-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

.modal3 {
  display: none; 
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0,0,0);
  background: rgba(0,0,0,.8);
  overflow: auto;
}

.modal3-box {
  position: relative;
  width: 80%;
  max-width: 920px;
  margin: 100px auto;
  animation-name: modal3box;
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(0,0,.3,1.6);
}

.modal3-header {
  padding: 20px 40px;
  background: #546E7A;
  color: #ffffff;
}

.modal3-body {
  background: #ECEFF1;
  padding: 20px 20px;
}

/* Close Button */
.close-modal3 {
  text-align: right;
  cursor: pointer;
}

/* Animation */
@-webkit-keyframes modal3box {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

@keyframes modal3box {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

/* Aditional Styles */
.modal3-mlr {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 100;
  font-size: 30px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.1;
}

.modal3-trigger-mlr {
  letter-spacing: 1px;
  font-weight: 800;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.1;
}









