/*==================================================================
[ Form ]*/
.contact100-form {display: -webkit-box;display: -webkit-flex;display: -moz-box;display: -ms-flexbox;display: flex;flex-wrap: wrap;justify-content: space-between;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;flex-wrap:wrap;}
/*------------------------------------------------------------------
[ Input ]*/
.wrap-input100 {position: relative;border-bottom: 2px solid #d9d9d9;margin-bottom:55px;}.wrap-input100:last-child{margin-bottom:0;}
.focus-input100 {position: absolute;display: block;width: 100%;height: 100%;top: 0;left: 0;pointer-events: none;}
.focus-input100::before {content: "";display: block;position: absolute;bottom: -2px;left: 0;width: 0;height: 2px;-webkit-transition: all 0.4s;-o-transition: all 0.4s;-moz-transition: all 0.4s;transition: all 0.4s;background: #09f;
}
.input100:focus + .focus-input100::before {width: 100%;}
.has-val.input100 + .focus-input100::before {width: 100%;}
/*------------------------------------------------------------------
[ Alert validate ]*/
.validate-input {position: relative;}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 30px 4px 10px;
  top: 58%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2px;
  pointer-events: none;

  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "!";
  padding:1px 8px;background:#c80000;color:#fff;font-weight:bold;
  border-radius:100%;
  display: block;
  position: absolute;
  font-size: 12px;
  top: 58%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}

.alert-validate:hover:before {visibility: visible;opacity: 1;}

@media (max-width: 992px) {.alert-validate::before {visibility: visible;opacity: 1;}}