
/* modal */
.modal-wrapper {
    width:100%;
    height: 100%;
    position: fixed;
    top: 0; 
    left: 0;
    background: rgba(41, 171, 164, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in-out;
    z-index: 9999;
  }
  
  .modal-wrapper.open {
    opacity: 1;
    visibility: visible;
  }
  
  .modal {
    width: 75%;
    height: auto;
    display: block;
    
    position: relative;
    top: 30%; 
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 10;
  }
  
  .modal-wrapper.open .modal {
    margin-top: -200px;
    opacity: 1;
  }
  
  .head { 
    width: 100%;
    height: 52px;
    padding: 12px 30px;
    overflow: hidden;
    background: #9e020d;
  }
  
  .btn-close {
    font-size: 28px;
    display: block;
    float: right;
    color: #fff;
  }
  
 
  
  .good-job {
    text-align: center;
    font-family: 'Montserrat', Arial,       Helvetica, sans-serif;
    color: #e2525c;
  }
  .good-job .fa-thumbs-o-up {
    font-size: 60px;
  }
  .good-job h1 {
    font-size: 45px;
  }

/* termina modal */