.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  width: 762px;
  height: 269px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height:80px;
  padding:0 50px;
  border-bottom: 1px solid #D6D6D6;
  background-color:#00A3AD;
  position: relative;
  border-radius: 5px 5px 0 0;
  
}

.title {
margin:0;
color: #FFFFFF;
font-size: 22px;
font-weight: bold;
letter-spacing: 0px;
font-family: aktiv-grotesk;

}
 
.close-icon {
  cursor: pointer;
  width: 20px;
  height: 20px;
}


.modal-body {
  padding: 30px 50px;
}

.subtitle {
  margin: 10px 0 0 0;
  color: #555555;
  font-family: aktiv-grotesk;
  font-size: 20px;
  letter-spacing: 0px;
  font-weight: normal;
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 46px;
}

.modal-button {
  font-size: 17px;
  font-weight: medium;
  font-family: aktiv-grotesk;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  padding:0;
  
}

.modal-button.no {
  background: none;
  text-decoration: underline;
  color: #007b83;
  margin-right:40px;
}

.modal-button.chat {
  background-color: #007b83;
  border-radius: 25px;
  width:154px;
  height: 52px;

}
