button[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}

.error {
  border: 2px solid red !important;
  animation-name: shake;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 2;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(0);
  }
}

.success-form {
  display: none;
  font-size: large;
}
.form-holder {
  border: none;
  background-color: #fff;
  border-radius: 8px;
  color: #1f2873;
  cursor: pointer;
}

.form-body {
  padding: 30px 15px 15px 15px;
}

.form-header {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 15px;
  color: #ffffff;
  font-size: 18px;
  background: linear-gradient(
    90deg,
    rgba(77, 75, 254, 1) 0%,
    rgba(40, 147, 244, 1) 100%
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.cta-holder .sub {
  margin-top: 15px;
  position: relative;
  clear: both;
}

.form-holder:hover {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
}

.titref {
  color: #acacac;
  text-align: justify;
  line-height: 1.5em !important;
  font: 700 11px Roboto, sans-serif;
  padding: 20px 3% 10px;
}

select.custom {
  background-image: url(../img/drop.png);
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 95% center;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.custom::-ms-expand {
  display: none;
}

::placeholder {
  /* Firefox, Chrome, Opera */
  color: #1f2873 !important;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #1f2873 !important;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #1f2873 !important;
}

.form-control {
  height: 49px;
  margin-bottom: 10px;
  color: #1f2873;
  background-color: #ffffff;
  border: 1px solid #1c6ce8;
  border-radius: 5px;
  font-size: 16px;
}

.form-control:focus {
  border-color: #1c6ce8;
  background-color: #fbfbfb;
  border-width: 2px;
  color: #222222;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.sub {
  font-size: 16px;
  width: 280px;
  background: linear-gradient(90deg, #6d6afe, #3fb0f7);
  box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.2);
  border: none;
  color: #fff;
  font-weight: 400;
  padding: 14px 20px;
  background-size: 100% 100%;
  border-radius: 50px;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.sub:hover {
  background: linear-gradient(60deg, #1c6ce8, #2152e0);
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.sub:focus,
.sub:hover {
  color: #fff;
  border: none;
}

.mention-form,
.mention-form:hover,
.mention-form:focus,
.mention-form:visited {
  color: #1860de;
  text-decoration: none;
}

.vcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub:focus {
  background-color: #888;
  outline-width: 0 !important;
}

/*Checkboxes styles*/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label {
  display: inline;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;

  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child {
  margin-bottom: 0;
}

input[type="checkbox"] + label:before {
  content: "";
  display: inline;
  width: 20px;
  height: 20px;
  border: 2px solid #0fba65;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type="date"]::before {
  content: attr(placeholder) "Né(e) le :";
  white-space: pre;
}

input[type="date"]:focus::before {
  content: "" !important;
}

.lu-txt {
  font-size: 12px;
}
