.modal-default {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(153,153,153,0.3);
  z-index: 2001;
  padding-top: 10vh;
}
.modal-default > .wrapper {
  position: relative;
  background-color: #fff;
  margin: 10px auto;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  max-width: 700px;
  width: 95%;
}
.modal-default > .wrapper .modal-content .modal-body {
  padding: 20px;
}
.modal-default h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.modal-default a:hover {
  text-decoration: underline;
}
.modal-default .close {
  background: none;
  position: fixed;
  right: 22px;
  top: 15px;
  color: #0244AD;
}
.modal-default .close:hover {
  color: #69707a;
}
.modal-default.in {
  display: block;
  -webkit-animation: modal-fade-in 70ms ease-in;
  -moz-animation: modal-fade-in 70ms ease-in;
  -o-animation: modal-fade-in 70ms ease-in;
  -ms-animation: modal-fade-in 70ms ease-in;
  animation: modal-fade-in 70ms ease-in;
}
.modal-default.out {
  display: none;
}
.modal-body.scroll{
  overflow-y: scroll;
  max-height: 60vh;
}
@media (min-width: 1024px) {
  .modal-default > .wrapper .modal-content .modal-body {
    padding: 20px 30px 30px 30px;
  }
  .inline-form{
    display: flex;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
  }
  .inline-form .form-group{
    margin-right: 5px;
    width: 24%;
  }
  .inline-form button{
    margin: 0 auto;
  }
}
