@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

.page-wrapper {
  width: 100%;
 }

.blur-it {
  -webkit-filter: blur(4px);
          filter: blur(4px);
}

.modal-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0; 
  left: 0;
  background: rgba(99, 99, 99, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.modal-wrapper.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 600px;
  height: 300px;
  display: block;
  margin: 50% 0 0 -300px;
  position: relative;
  top: 40%; 
  left: 50%;
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.modal-wrapper.open .modal {
  margin-top: -200px;
  opacity: 1;
}

.head { 
  width: 90%;
  height: 32px;
  padding: 12px 30px;
  overflow: hidden;
  background: #597794;
}

.btn-close {
  font-size: 28px;
  display: block;
  float: right;
  color: #fff;
}

.content {
  padding: 5%;
  align: center;
}

.good-job {
  text-align: center;
  font-family: 'Montserrat', Arial,       Helvetica, sans-serif;
  //color: #e2525c;
  color: #000;
  }
.good-job .fa-thumbs-o-up {
  font-size: 30px;
}
.good-job h1 {
  font-size: 45px;
}

DIV#note {
  width: 100%;
  display: block;
  background: #eee;
  text-align: center;
  padding: 6;
}

SPAN#spn {
  color: red;
 }