.form-wrapper {
  width: 100%;
  padding: 5px;
  align-items: center;
  justify-content: center; }

.t-form {
  width: 100%;
  padding: 6px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3); }
  .t-form__title {
    text-transform: uppercase;
    line-height: 1.5;
    text-align: center;
    font-size: 18px;
    margin: 0 0 30px; }
  .t-form__message {
    text-align: center; }
  .t-form__input_name {
    float: left;
    margin-right: 2%;
    height: 50px;
    border: 1px solid #282a2e;
    border-radius: 5px;
    width: 32% !important;
    background-size: 30px;
    margin-bottom: 2%;
    padding: 0 15px 0 15px;
    transition: 0.3s; }
    .t-form__input_name:focus {
      transition: 0.3s;
      border: 1px solid rgba(255, 241, 198, 0.2); }
	    .t-form__input_mail {
    float: left;
    margin-right: 2%;
    height: 50px;
    border: 1px solid #282a2e;
    border-radius: 5px;
    width: 32% !important;
    background-size: 30px;
    margin-bottom: 2%;
    padding: 0 15px 0 15px;
    transition: 0.3s; }
    .t-form__input_mail:focus {
      transition: 0.3s;
      border: 1px solid rgba(255, 241, 198, 0.2); }
	    .t-form__input_message {
    height: 150px;
    border: 1px solid #282a2e;
    border-radius: 5px;
     width: 100% !important;
    background-size: 30px;
    margin-bottom: 2%;
    padding: 0 2% 0 2%;
    transition: 0.3s; }
    .t-form__input_message:focus {
      transition: 0.3s;
      border: 1px solid rgba(255, 241, 198, 0.2); }
  .t-form__input_phone {
    float: left;
    margin-right: 0px;
    height: 50px;
    border: 1px solid #282a2e;
    border-radius: 5px;
    width: 32% !important;
    background-size: 30px;
    margin-bottom: 2%;
    padding: 0 2% 0 2%;
    transition: 0.3s; }
    .t-form__input_phone:focus {
      transition: 0.3s;
      border: 1px solid rgba(255, 241, 198, 0.2); }
  .t-form__input_file {
    display: none; 
	width: 100%;}
  .t-form__file-button {
      color: #fff;
    float: left;
    margin-right: 2%;
    display: flex;
    align-items: center;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 5px;
    width: 32%;
    max-width: 250px;
    background: url("https://painrussia.ru/contacts/img/file.svg") center right 15px no-repeat, #ffa621;
    background-size: 30px;
    margin-bottom: 2%;
    padding: 0 2% 0 2%;
    cursor: pointer; }
  .t-form__button {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: none;
    width: 50%;
    max-width: 200px;
    margin-right: 0px;
    margin-left: auto;
    transition: 0.3s;
    cursor: pointer; }
    .t-form__button:hover {
      transition: 0.3s;
      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;
    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;
    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: #00adb5;
    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: #00fff5;
    border-radius: 0; }
  100% {
    transform: translateX(0px); } }