/* Pop-up form container */
.pop-form-container-edu {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 10px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
  }
  
  /* Pop-up form content */
  .pop-form-content-edu {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    display: block;
    width: 80%;
  }
  
  .line {
    height: 5px;
    background-color: #02afa1;
  }
  /* Close button */
  .education-close-btn {
    color: #02afa1;
    font-size: 28px;
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: center;
    /* background-color: #027d5a; */
    border-radius: 10px;
    border: 3px solid #027d5a;
    margin-top: 10px;
    padding: 10px;
  }

  .save-button {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #027d5a;
    border-radius: 10px;
    border: none;
    margin-top: 10px;
    padding: 10px;
  }


  .form-group {
    margin-bottom: 20px;
    display: block;
    text-align: left;
    width: 100%;
  }
  
  .education-close-btn:hover,
  .education-close-btn:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background-color: #027d5a;
    /* border: 3px solid #02afa1; */
  }
  