/*-----form-----*/
.formBox {
	padding-bottom: 50px;
}
#contact-form {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin: 20px 0 30px;
	text-align: left;
}
#contact-form p {
	margin-bottom: 5px;
}
#contact-form label span {
	margin-bottom: 2px;
	display: block;
	color: #78787d;
}
#contact-form .holder {
	overflow: hidden;
}
.form-div-3 {
	margin-right: 0;
}
#contact-form ._placeholder {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	cursor: text;
	padding: 14px;
	border-radius: 0;
	display: block;
}
#contact-form ._placeholder.focused {
	opacity: 0;
	filter: alpha(opacity=0);
	box-shadow: none;
}
#contact-form ._placeholder.hidden {
	display: none;
}
.btns .btn3 {
	float: left;
	margin-right: 30px;
}
.btns p {
	float: left;
	margin-top: 10px;
}
.mail {
	color: #208683;
	font: 13px 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.mail:hover {
	color: #78787d;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.block-form-appointment {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .block-form-appointment .block-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
  }
  
  .block-form-appointment .block-container .row-form-appointment {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.6rem 0rem;
  }
  
  .block-form-appointment .block-container .row-form-appointment .form-group {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  #contact-form label {
	position: relative;
  }

  #contact-form label ._placeholder {
    font: 13px 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
  }
  
  .block-form-appointment .block-container .btn-form {
    width: 25%;
    max-width: 250px;
    height: 2.5rem;
    color: white;
    background: #87d0cb;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
  }
  
  .block-form-appointment .block-container .btn-form:hover {
    background: #5bb2ac;
  }
  
  .block-form-appointment
    .block-container
    .row-form-appointment
    .form-group
    label {
    font-size: 18px;
    font-weight: 600;
    color: #42a29b;
  }
  
  .block-form-appointment
    .block-container
    .row-form-appointment
    .form-group
    .label-box,
  .block-form-appointment
    .block-container
    .row-form-appointment
    .form-group
    textarea {
    width: 90%;
    border: 1px solid #cecece;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
  }
  
  .block-form-appointment
    .block-container
    .row-form-appointment
    .form-group
    input {
    height: 30px;
  }
  
  .block-form-appointment
    .block-container
    .row-form-appointment
    .form-group
    textarea {
    height: auto;
  }

  #contact-form input, #contact-form textarea,
  #appt-form input, #appt-form textarea {
	box-shadow: none;
	border-radius: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	margin: 0;
	width: 100%;
	outline: none;
	border: 0;
	font: 400 16px 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 18px;
	color: #78787d;
	height: 45px;
	resize: none;
    padding: 1rem;
  }

  #contact-form textarea,  #appt-form textarea {
	height: auto !important;
	margin-bottom: 0 !important;
  }

  #contact-form .error-message, #contact-form .empty-message,
  #appt-form .error-message, #appt-form .empty-message {
	height: 0;
	overflow: hidden;
	font: 12px 'Arial';
	color: #208683;
	-webkit-transition: 0.3s ease-in height;
	transition: 0.3s ease-in height;
	position: absolute;
	right: 5px;
	top: 2px;
}
#contact-form .invalid .error-message, #contact-form .empty .empty-message {
	height: 20px;
}
#contact-form .success-message,
#appt-form .success-message {
	line-height: 48px;
	position: absolute;
	overflow: hidden;
	height: 0;
	left: 0;
	top: 0;
	box-sizing: border-box;
	box-shadow: none;
	border-radius: 0;
	background: #f5f5f5;
	z-index: 10;
	width: 100%;
	text-align: center;
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
	padding: 0;
}
#contact-form .success-message.show,
#appt-form .success-message.show {
	box-shadow: none;
	border-radius: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	margin: 0 0 20px;
	width: 100%;
	outline: none;
	border: 1px solid #dadada;
	background: #f9f9f9;
	font: 500 16px 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 49px;
	color: rgb(76, 204, 76);
	padding: 0 14px;
	height: auto;
	resize: none;
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
  position: relative;
}
  
  @media (max-width: 1200px) {
    .block-form-appointment .block-container {
      width: 100%;
      padding: 0rem 1rem;
    }
  
    .block-form-appointment .block-container .row-form-appointment {
      flex-direction: column;
      align-items: start;
      padding: 0rem;
    }
  
    .block-form-appointment .block-container .row-form-appointment .form-group {
      width: 100%;
      margin-bottom: 1rem;
    }
  
    .block-form-appointment
      .block-container
      .row-form-appointment
      .form-group
      input,
    .block-form-appointment
      .block-container
      .row-form-appointment
      .form-group
      textarea {
      width: 95%;
    }
  
    .block-form-appointment .block-container .btn-form {
      margin-top: 0;
      width: 100%;
      max-width: 100%;
    }
  }
  