/* The Modal (background) */
.modal1 {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal1-content {
  padding: 5px 5px 5px 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fefefe;
  margin: 5px auto;
  /* 15% from the top and centered */
  border: 1px solid #888;
  width: 500px;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close-modal1 {
  /* Position it in the top right corner outside of the modal */
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

/* Close button on hover */
.close-modal1:hover,
.close-modal1:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate-modal1 {
  -webkit-animation: animatezoom-modal1 0.6s;
  animation: animatezoom-modal1 0.6s;
}

@-webkit-keyframes animatezoom-modal1 {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom-modal1 {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.modal-section {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.modal-label-title {
  font-family: "Muli", sans-serif;
  /*'Damion', cursive;*/
  font-weight: 900;
  color: #1a75ff;
  font-size: 22px;
  text-align: center;
  position: relative;
}

.modal-label-subtitle {
  font-family: "Muli", sans-serif;
  /*'Damion', cursive;*/
  font-weight: 400;
  color: #1a75ff;
  font-size: 18px;
  text-align: left;
  position: relative;
}

.modal-label {
  width: 100%;
  font-family: "Muli", sans-serif;
  font-size: 14px;
  line-height: 17px;
  /*font: 15px/24px "Lato", Arial, sans-serif;*/
  /*margin: 0px 3px 0px 0px;*/
}

.modal-col-1 {
  float: left;
  width: 25%;
  margin: 4px 2px 0px 0px;
  padding: 2px 2px 2px 2px;
  position: relative;
  background-color: #f2f2f2;
}

.modal-col-2 {
  float: left;
  width: 75%;
  padding: 2px 2px 2px 2px;
  margin: 4px 0px 0px 2px;
  position: relative;
  background-color: #f2f2f2;
}

/* necessary to give position: relative to parent. */
.modal-btn-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 10px 10px 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/*# sourceMappingURL=modal-style.css.map */