
/* Современные браузеры
   ----------------------------  */
input::placeholder {color: #5d5d5d;} 
textarea::placeholder {color: #5d5d5d;} 

/* WebKit, Edge
   ----------------------------  */
input::-webkit-input-placeholder {color: #5d5d5d;}
textarea::-webkit-input-placeholder {color: #5d5d5d;}

/* Edge
   ----------------------------  */
input::-ms-input-placeholder {color: #5d5d5d;}
textarea::-ms-input-placeholder {color: #5d5d5d;}

/* Firefox 4-18
   ----------------------------  */
input:-moz-placeholder {color: #5d5d5d;opacity: 1;}
textarea:-moz-placeholder {color: #5d5d5d;opacity: 1;}

/* Firefox 19+
   ----------------------------  */
input::-moz-placeholder {color: #5d5d5d;opacity: 1;}
textarea::-moz-placeholder {color: #5d5d5d;opacity: 1;}

/* IE 10-11
   ----------------------------  */
input:-ms-input-placeholder {color: #5d5d5d;}
textarea:-ms-input-placeholder {color: #5d5d5d;}


html,
body {
  margin: 0;
  padding: 0;
  font: 16px "Roboto", sans-serif;
  background: #fff; }

* {
  box-sizing: border-box; }

.form-wrapper {
  color: #000;
  width: 100%;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center; }

.contact-form {
  width: 100%;
  max-width: 460px;
  padding: 60px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3); }
  .contact-form__title {
    text-transform: uppercase;
    line-height: 1.5;
    text-align: center;
    color: #000;
    font-size: 18px;
    margin: 0 0 30px; }
  .contact-form__message {
    text-align: center; }
  .contact-form__input_name {
    height: 50px;
    border: 1px solid #282a2e;
    border-radius: 5px;
    width: 100%;
    background: #fff;
    background-size: 30px;
    margin-bottom: 20px;
    padding: 0 15px 0 15px;
    font: 16px "Roboto", sans-serif;
    color: #575756;
    transition: 0.3s; }
    .contact-form__input_name:focus {
      transition: 0.3s;
      border: 1px solid rgba(255, 241, 198, 0.2); }
  .contact-form__input_phone {
    height: 50px;
    border: 1px solid #282a2e;
    border-radius: 5px;
    width: 100%;
    background: #fff;
    background-size: 30px;
    margin-bottom: 20px;
    padding: 0 15px 0 15px;
    font: 16px "Roboto", sans-serif;
    color: #575756;
    transition: 0.9s; }
    .contact-form__input_phone:focus {
      transition: 0.3s;
      border: 1px solid rgba(255, 241, 198, 0.2); }
  .contact-form__input_other {
    height: 50px;
    border: 1px solid #282a2e;
    border-radius: 5px;
    width: 100%;
    background: #fff;
    background-size: 30px;
    margin-bottom: 20px;
    padding: 0 15px 0 15px;
    font: 16px "Roboto", sans-serif;
    color: #575756;
    transition: 0.9s; }
    .contact-form__input_other:focus {
      transition: 0.3s;
      border: 1px solid rgba(255, 241, 198, 0.2); }
  .contact-form__textarea_other {
    /* height: 50px; */
    border: 1px solid #282a2e;
    border-radius: 5px;
    width: 100%;
    background: #fff;
    background-size: 30px;
    margin-bottom: 20px;
    padding: 15px 15px 15px 15px;
    font: 16px "Roboto", sans-serif;
    color: #575756;
    transition: 0.9s; }
    .contact-form__textarea_other:focus {
      transition: 0.3s;
      border: 1px solid rgba(255, 241, 198, 0.2); }
  .contact-form__input_file {
    display: none; }
  .contact-form__file-button {
    display: flex;
    align-items: center;
    height: 50px;
    border: 1px solid #282a2e;
    border-radius: 5px;
    width: 100%;
    background: #fff;
    background-size: 30px;
    margin-bottom: 20px;
    padding: 0 15px 0 15px;
    font: 16px "Roboto", sans-serif;
    color: #757575;
    cursor: pointer; }
  .contact-form__button {
    background: #bdffb6;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    border: none;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    font: 16px "Roboto", sans-serif;
    transition: 0.3s;
    cursor: pointer; }
    .contact-form__button:hover {
      transition: 0.3s;
      background: #33a924;
      color: #575756;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3); }

.preloader {
  position: relative;
  margin: 0 0 0 45%;
  height: 15px;
  visibility: hidden;
  opacity: 0;
  display: none;
  transition: 0.3s; }
  .preloader_active {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: 0.3s; }
  .preloader:before {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    content: "";
    position: absolute;
    background: #3c4639;
    animation: preloader_before 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1); }
  .preloader:after {
    width: 12px;
    height: 12px;
    left: 15%;
    border-radius: 50%;
    content: "";
    position: absolute;
    background: #616c5f;
    animation: preloader_after 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1); }

@keyframes preloader_before {
  0% {
    transform: translateX(0px) rotate(0deg); }
  50% {
    transform: translateX(160px) scale(1.5) rotate(264deg);
    background: #88ff39;
    border-radius: 0; }
  100% {
    transform: translateX(0px) rotate(0deg); } }
@keyframes preloader_after {
  0% {
    transform: translateX(0px) rotate(0deg); }
  50% {
    transform: translateX(-160px) scale(1.5) rotate(-264deg);
    background: #30ff00;
    border-radius: 0; }
  100% {
    transform: translateX(0px); } }
@media (max-width: 768px) {
  .form-wrapper {
    padding: 15px; } }
@media (max-width: 480px) {
  .contact-form {
    padding: 30px 15px; }
    .contact-form__title {
      font-size: 16px; } }

/*# sourceMappingURL=style.css.map */

.contact-form__input-wrapper {
  width: 100%;
  position: relative;
  margin: 15px 0;
  text-align: center;
}

input[id^='contact-form__input_file'] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
 
.contact-form__file-button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
 
.field__file-fake {
  height: 50px;
  color: #575756;
  width: calc(100% - 130px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  border: 0px solid #c7c7c7;
  border-radius: 3px 0 0 3px;
  border-right: none;
}
 
.field__file-button {
  width: 100px;
  height: 35px;
  background: #bdffb6;
  color: #575756;
  font-size: 1rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}
