.modal5-open {
  overflow: hidden;
}
.modal5 {
  display: none;
  overflow: auto;
  //overflow-y: scroll;
  position: fixed;
  top: 110px;
  right: 0%;
  bottom: 0%;
  left: 20%;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  width: 100%;
}
.modal5.fade .modal5-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal5.in .modal5-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal5-dialog {
  position: relative;
  margin: 10px;
}
.modal5-content {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}
.modal5-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal5-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal5-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal5-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal5-header .close {
  margin-top: -2px;
}
.modal5-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal5-body {
  position: absolute;
  padding-left: 10px;
  padding-top: 4px;
}
.modal5-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal5-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal5-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal5-footer .btn-block + .btn-block {
  margin-left: 0;
}
@media (min-width: 500px) {
  .modal5-dialog {
    width: 80%;
    margin: 30px auto;
  }
  .modal5-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal5-sm {
    width: 85%;
  }
}
@media (min-width: 500px) {
  .modal5-lg {
     width: 100%;
  }
}
