@charset "UTF-8";

/*serega select style*/
select{

	font-weight: 600;
	color: #0076FF;
	font-size: 16px;
	line-height: 62px;
	height: 62px;
	padding: 0 16px;
	padding-left: 13px;
	cursor: pointer;
	display: block;
	-webkit-transition: color 0.3s linear;
	-moz-transition: color 0.3s linear;
	-ms-transition: color 0.3s linear;
	-o-transition: color 0.3s linear;
	transition: color 0.3s linear;

	position: relative;
	width: 100%;
	height: 62px;
	background: #FFFFFF;
	background-position-x: 0%;
	background-position-y: 0%;
	background-repeat: repeat;
	background-image: none;
	background-size: auto;
	border: 1px solid #4679AB;
	-webkit-box-shadow: 0px 3px 5px -2px rgba(7, 8, 49, 0.510326), 0px 20px 30px -6px rgba(2, 11, 28, 0.202825);
	box-shadow: 0px 3px 5px -2px rgba(7, 8, 49, 0.510326), 0px 20px 30px -6px rgba(2, 11, 28, 0.202825);
	border-radius: 6px;

	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url(/images/select-arrows.png);
	background-size: 26px;
	background-position: right 0px;
	background-repeat: no-repeat;
}

select:focus{
	background-position: right -61px;
}
select:hover {
  color: #000;
}

.selecter select {
  display: none;
}



/* custom select */
.selecter {
  position: relative;
  width: 100%;
  height: 62px;
  background: #FFFFFF;
  border: 1px solid #4679AB;
  -webkit-box-shadow: 0px 3px 5px -2px rgba(7, 8, 49, 0.510326), 0px 20px 30px -6px rgba(2, 11, 28, 0.202825);
  box-shadow: 0px 3px 5px -2px rgba(7, 8, 49, 0.510326), 0px 20px 30px -6px rgba(2, 11, 28, 0.202825);
  border-radius: 6px;
}
.selecter:after {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  font-size: 7px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 16px;
  content: "";
  pointer-events: none;
}
.selecter.open:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  color: #0076FF;
}
.selecter .selecter-selected {
  font-weight: 600;
  color: #0076FF;
  font-size: 16px;
  line-height: 62px;
  height: 62px;
  padding: 0 16px;
  cursor: pointer;
  display: block;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}



/*serega select style*/



.selecter .selecter-selected:hover {
  color: #000;
}
.selecter .selecter-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 100%;
  width: 100%;
  margin-top: 15px;
  display: none;
  background: #fff;
  border-radius: 6px;
  padding: 10px;
  z-index: 2000;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.14);
}
.selecter .selecter-options:before {
  position: absolute;
  right: 16px;
  top: -8px;
  content: "";
  background: url(//technicalcity.b-cdn.net/images/arrow_01.png) 0 0 no-repeat;
  width: 14px;
  height: 8px;
  background-size: 100% 100%;
}
.selecter .selecter-options .selecter-item {
  color: #0076FF;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  border-radius: 4px;
  display: block;
  padding: 11px 6px 9px;
}
.selecter .selecter-options .selecter-item:hover, .selecter .selecter-options .selecter-item.selected {
  background: #F6F6F6;
}
.selecter.focus .selecter-options {
  display: block;
}

.year .selecter i.icon-year {
  padding: 0 10px 0 16px;
  width: 37px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 11px;
  line-height: 62px;
  color: #000;
  cursor: pointer;
}
.year .selecter .selecter-selected {
  display: block;
  padding-left: 37px;
}