.select {
	position: relative;
	z-index: 50000;
  flex: 1 1;
}

.select.show {
	z-index: 700000;
}

.select-name {
	position: relative;
  display: flex;
  align-items: center;
  height: 40px;
	width: 100%;
	font-family: 'DMSans-Regular';
	font-size: 14px;
	line-height: 1.2;
	color: #000;
	background: #fff;
	border: 1px solid #DDDDDD;
  border-radius: 4px;
	box-shadow: none;
	padding: 0 10px;
  cursor: pointer;
	overflow: hidden;
}

.select.show .select-name {
  border-color: #4DB36D;
}

.select-name span {
  display: block;
  /*white-space: nowrap;*/
  margin: 0;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.select-name:after {
	content: url(../img/list_arrow.svg);
	position: absolute;
  width: 10px;
	right: 10px;
	top: 11px;
	transition: .2s;
}

.select.selcl:after, .show .select-name:after {
  top: 12px;
	transform: rotate(180deg);
}

.select-list {
	position: absolute;
	top: 100%;
  height: 0;
  opacity: 0;
  width: 295px;
  z-index: 100;
	background: #fff;
	border: 1px solid #4DB36D;
  border-radius: 4px;
	margin-top: 8px;
  padding: 12px;
  transition: .3s;
  overflow-y: auto;
}

.right .select-list {
  left: auto;
  right: 0;
}

@media(max-width: 767px) {
  .select-list {
    width: 100%;
    margin-top: 13px;
  }
}

.show .select-list {
  height: 220px;
  opacity: 1;
  transition: .3s;
}

.show .select-list.hauto {
	height: auto;
}

.select-list li {
	font-family: 'DMSans-Regular';
	font-size: 13px;
  line-height: 17px;
	font-weight: 100;
	color: #343232;
	cursor: pointer;
	margin-top: 2px;
}

.select-list li:first-child {
  margin-top: 0;
}

.select-list li:before {
	display: none;
}

.select-list li:after {
  top: 6px;
}

.select-list ul ul {
  margin-top: 2px;
}

.select-list strong {
  color: #4DB36D;
}

.salary-field {
  position: relative;
  margin-bottom: 13px;
}

.salary-field p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  color: #A09B9B;
}

.salary-field input {
  height: 35px;
  padding-left: 23px;
}

@media(max-width: 767px) {
  .select input[type="text"] {
    height: 32px;
  }
}

.calculate {
  margin-top: 7px;
}

.how-link__title {
  display: flex;
  align-items: center;
}

.calculate svg {
  fill: #4DB36D;
  margin-left: 5px;
  transition: .2s;
}

.calculate a:hover svg {
  fill: #000;
  transition: .2s;
}

.how-link__text {
  margin-top: 7px;
}
