/*======================================================================
  Selectric
======================================================================*/
.selectricWrapper {
  position: relative;
 /*  margin: 0 0 10px; */
  /* width: 300px; */
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
 
}

.selectricWrapper p{
	margin-bottom: 0px !important;
	margin-top: 0px !important;
}


.selectricResponsive {
  width: 100%;
}

.selectric {
  border: 1px solid #ccc;
  border-color: #a6a6a6 #d3d1d1 #d3d1d1 #a6a6a6 !important;
  background: #f5f5f5;
  position: relative;
  border-radius: 6px;
 
 
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 30px 0 0;
  padding: 2px 5px;
  font-size: 13px;
  line-height: 18px;
  color: #555;
  min-height: 18px;
}
.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 100%;
  background: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgOCA1IiBzdHlsZT0iYmFja2dyb3VuZC1jb2xvcjojZmZmZmZmMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjgiIGhlaWdodD0iNSI+PHBhdGggZD0iTTcuNzgxIDEuNDQ0Yy0uMjgxLjMwNy0zLjIzOCAzLjMxMS0zLjIzOCAzLjMxMS0uMTUxLjE2NC0uMzQ3LjI0NS0uNTQ0LjI0NS0uMTk3IDAtLjM5NC0uMDgyLS41NDMtLjI0NSAwIDAtMi45NTctMy4wMDMtMy4yMzktMy4zMTEtLjI4MS0uMzA3LS4zLS44NTkgMC0xLjE4OC4zMDEtLjMyOC43MTktLjM1NCAxLjA4NyAwbDIuNjk1IDIuNzU1IDIuNjk0LTIuNzU1Yy4zNjgtLjM1NC43ODctLjMyOCAxLjA4NyAwIC4zMDEuMzI4LjI4Mi44ODEgMCAxLjE4N3oiIGZpbGw9IiNiYmIiLz48L3N2Zz4K) no-repeat 50%;
  font: 0/0 a;
}

@media \0screen\,screen\9 {
  .selectric .button {
    color: #DDD;
    text-align: center;
    font: 20px/30px Lucida Sans Unicode, Arial Unicode MS, Arial;
  }
}

.selectricHover .selectric {
	/*
  	border-color: rgba(123, 100, 82, 0.6);
	-webkit-box-shadow: 0px 0px 1px rgba(102, 175, 233, 0.6);
	box-shadow: 0px 0px 1px rgba(123, 100, 82, 0.6);
	*/
}
.selectricHover .selectric .button {
  color: #000;
}
.selectricHover .selectric .button:after {
  border-top-color: #000;
}

.selectricOpen {
  z-index: 9999;
}
.selectricOpen .selectric {
	outline: 0;
	border-color: rgba(123, 100, 82, 0.6);
	
	/*
	-webkit-box-shadow: 0px 0px 3px rgba(102, 175, 233, 0.6);
	 box-shadow: 0px 0px 3px rgba(123, 100, 82, 0.6);
	 */

}
.selectricOpen .selectricItems {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	  -ms-transform: translateY(0);
	   -o-transform: translateY(0);
		  transform: translateY(0);

	-webkit-transition: 0.2s;
	transition: 0.2s;	  
}

.selectricDisabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectricHideSelect {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectricHideSelect select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectricInput {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectricTempShow {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectricItems {
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(-20px);
	  -ms-transform: translateY(-20px);
	   -o-transform: translateY(-20px);
		  transform: translateY(-20px);
	position: absolute;
	top: 100%;
	left: 0;

	z-index: -1;
	
	margin: 8px 0px;
	padding: 10px 0px;
	
	border-radius: 5px;
	
	background: #f5f5f5;
	border: 0px solid rgba(123, 100, 82, 0.6);
	-webkit-box-shadow: 0px 0px 4px #777;
	box-shadow: 0px 0px 4px #777;
}

.selectricItems .selectricScroll {
  height: 100%;
  overflow: auto;
}

.selectricItems:before,
.selectricItems:after {
  content: "";
  position: absolute;
  top: -9px;
  left: 12px;
  width: 0;
  height: 0;
  border-bottom: 6px solid #BBB;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  margin-top: 3px;
 

}







.selectricAbove .selectricItems:before,
.selectricAbove .selectricItems:after {
  top: 100%;
  border-bottom-width: 0;
  border-top: 6px solid #BBB;
  margin-top: 0;
}


.selectricItems:after {
 	margin-top: 4px;
  	border-bottom-color: #f5f5f5; /* это цвет стрелочки вверх */
}

.selectricAbove .selectricItems:after {
  border-top-color: #f5f5f5;  /* это цвет стрелочки вниз */
  margin-top: -1px;
}











.selectricAbove .selectricItems {
  top: auto;
  bottom: 100%;
}

.selectricItems ul, .selectricItems li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  min-height: 20px;
}

.selectricItems li{
  display: block;
  padding: 2px 20px 2px 10px;
  color: #666;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.selectricItems li:hover {
  background: #e0e0e0;
  color: #555;
}




.selectricItems li.disabled {
  background: #F5F5F5;
  color: #BBB;
  cursor: default;
  
  opacity: 0;
  height: 10px;
  min-height: 10px;
}


