.inp {
	width: 100%;
	text-align: left;
	position: relative;
	cursor: text;
	background: transparent;
	border: none;
	line-height: 36px;
	border: 1px solid #dfdfdf;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	font-family: var(--font);
	padding: 0 9px;
	}
select.inp{
	height: 38px;
}
  .inp.error {
	border-bottom: 1px solid red;
  }
  /* [xs] */
  @media all and (max-width: 576px) {
	  .inp {
	  line-height: 40px;
	  }
  }
