#aboutCvDownload-modal {
  display: none; /* hide the modal by default */
  position: fixed; /* position it fixed on the screen */
  z-index: 1; /* set it to be on top of other elements */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* enable scrolling */
  background-color: rgba(0,0,0,0.5); /* add a dark overlay */
}

/* Style the modal content */
#aboutCvDownload-modal .modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* center it vertically and horizontally */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* set the width of the modal */
  max-width: 500px;
  position: relative;
}

/* Style the close button */
#aboutCvDownload-modal .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
}

/* Style the form elements */
#aboutCvDownload-modal label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

#aboutCvDownload-modal input[type=text],
#aboutCvDownload-modal input[type=email],
#aboutCvDownload-modal select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#aboutCvDownload-modal input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

#aboutCvDownload-modal input[type=submit]:hover {
  background-color: #45a049;
}

#aboutCvDownload-modal .form-group {
  margin-bottom: 20px;
}

/* Style the thank you message */
#aboutCvDownload-modal .thank-you {
  display: none; /* hide by default */
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}


#aboutDownloadCV .modal-header {
  text-align: left;
}

