.customSelect {
	position: relative;
	display: inline-block;
	line-height: 2em;
	cursor: pointer;
	margin: 35px 260px 0px;
	background-color: rgba(255,255,255, 0.8);
	border-radius: 0;
  height: 46px;
  text-align: left;
  color:#1d1b1b;
  font-size: 18px;
  z-index: 10;
	width: 420px !important;
}

#select_country {
	visibility: hidden;
}
#select-select_country{
	/* visibility: hidden; */
	border-radius: 6px;
}
.customSelect .selectValueWrap {
	padding: 5px 0 0 0;
	font-family: 'museo_sans_cyrl500';
	transform: translateY(-40px);
}
.customSelect .selectedValue {
  padding: 0 0 0 40px;
  display: inline;
  vertical-align: middle;
  margin-bottom: 0;
  line-height: 1.2;
  height: 35px;
  /* height: 30px!important; */
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #1d1b1b;
  cursor: pointer;
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
  box-sizing: border-box;
  /* background-color: #f5f5f5;
   *background-color: #fff;
   background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
   background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
   background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
   background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
   background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
   background-repeat: repeat-x;
   border: 1px solid #bbbbbb;
   border-color: #e6e6e6 #e6e6e6 #bfbfbf;
   border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
   border-bottom-color: #a2a2a2;
   -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
           border-radius: 4px;
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
   filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
   *zoom: 1;
   -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
           box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); */
          /* width: 100%;
            height: 100%;
            white-space: nowrap;
            overflow: hidden;
            position: relative;
            background-color: white;
            border: 1px solid #d9d9d9;
            border-radius: 0.4em;
            padding: 0 1.5em 0 1em;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;  */

}
.customSelect .selectList {
	z-index: 100;
	position: absolute;
	left: -999em;
	top: -999em;
	margin: -2px 0 0 -4px;
 /*  padding: 5px 0;
 margin: 2px 0 0; */
  list-style: none;
  background-color: rgba(255,255,255,0.8);
  /* border: 1px solid #ccc; */
	border-radius: 0;
  	border-top: none;
  /* border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px; */
 /*  border-bottom-width: 1px; */
  -webkit-border-radius: 0 0 3px 3px;
     -moz-border-radius: 0 0 3px 3px;
          border-radius: 0 0 3px 3px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
 /*  -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
         background-clip: padding-box;  */
}

.customSelect.select-open{
	-webkit-border-radius: 3px 3px 0 0 ;
     -moz-border-radius: 3px 3px 0 0 ;
          border-radius: 3px 3px 0 0 ;
    border-bottom: none;
    margin-bottom: 24px;
}

.customSelect.select-open .selectValueWrap .caret{
	-webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
			transform: rotate(180deg);
}


.customSelect.select-open .selectList {
	left: 3px !important;
	top: 50px;
	width: 420px;
	font-family: 'museo_sans_cyrl500';
	color: #383838;
	/* -webkit-border-radius: 0;
		-moz-border-radius: 0;
	        border-radius: 0; */
}
.customSelect .selectList dl {
	/* background: #fff;	 */

}
.customSelect .selectList dl.defaultScrollbar {
	overflow-x: hidden;
	overflow-y: scroll;
}
.customSelect dl, .customSelect dd {
	margin: 0;
}
.customSelect dd {
	zoom: 1;
	cursor: pointer;
}
.customSelect .disabled {
	color: #999;
	cursor: default;
}
.customSelect .selected {
	/* color: #ffffff;
	text-decoration: none;
	background-color: #0081c2;
	background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
	background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
	background-image: -o-linear-gradient(top, #0088cc, #0077b3);
	background-image: linear-gradient(to bottom, #0088cc, #0077b3);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); */
}
.customSelect .selectList dd.hovered {
	/* background: #999;
	color: #fff; */
	background-color: #ffffff;
  color: #e53a5a;
}
.customSelect .selectList dd.hovered:last-child  {
	/* background: #999;
	color: #fff; */
	-webkit-border-radius:0 0 6px 6px;
     -moz-border-radius:0 0 6px 6px;
          border-radius:0 0 6px 6px;
}
.customSelect .selectList dd.disabled.hovered {
	background: none;
	color: #999;
}
.customSelect dt {
	font-weight: bold;
	font-style: italic;
	padding: 2px 10px 2px 6px;
}
.customSelect dd {
	padding: 2px 10px 5px 15px;
}
.customSelect .disabled dd {
	color:#bbb;
}
.hasJS select.custom {
	position: absolute;
	left: -999em;
}
.hasJS select.custom.use-default {
	position: absolute;
	font-size: 16px;
	visibility: visible;
	opacity: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}


.customSelect.focused .selectedValue {
	/* box-shadow: 0 0 2px #00aedb; */
}
.customSelect.disabled .selectedValue {
	border: 1px solid #ccc;
	color: #ccc;
	cursor: default;
}
.customSelect .caret {
	background-image: url(../img/global/ic_arrow_drop_down.svg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	display: inline-block;
	/* width: 0;
	height: 0;
	margin-right: 3px;
	vertical-align: top;
	border-top: 4px solid  #707070;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: ""; */
	width: 15px;
	height: 15px;
	/* background: url(../images/select_arrow_down.png) no-repeat center center; */
		 -o-transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
       -moz-transition: all linear 0.3s;
    		transition: all linear 0.3s;
}
.customSelect .selectValueWrap .caret {
	border: none !important;
	position: absolute;
	top: 21px;
	right: 15px;
	cursor: pointer;
}
.customSelect .jspPane {
	overflow-x: hidden;
}
.customSelect .jspVerticalBar {
	background: none;
	width: 8px;
}
.customSelect .jspHorizontalBar {
	height: 0;
	overflow: hidden;
}
.customSelect .jspTrack {
	background: none;
	right: 3px;
	border-radius: 5px;
}
.customSelect .jspDrag {
	border-radius: 5px;
	color: #707070;
	/* min-height: 20px; */

	opacity: .5;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #363636;
	*background-color: #222222;
	background-image: -moz-linear-gradient(top, #444444, #222222);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
	background-image: -webkit-linear-gradient(top, #444444, #222222);
	background-image: -o-linear-gradient(top, #444444, #222222);
	background-image: linear-gradient(to bottom, #444444, #222222);
	background-repeat: repeat-x;
	border-color: #222222 #222222 #000000;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.select_pin_img{
	background: url(../img/global/ic_pin_input.svg) no-repeat;
}
.selectedValue span {
    position: relative;
    top: 10px;
    left: 15px;
    display: block;
    height: 27px;
    width: 20px;
    float: left;
    clear: right;
}

.global_coverage .customSelect{
	position: absolute;
	margin: 35px 326px 20px;
}


#select-contact_us_srvices{
	margin: 0 0 20px 0;
    display: block;
    border: none;
    background-color: rgb(255, 255, 255);
    border-radius: 3px;
	box-shadow: 0.5px 0.866px 3px 0px rgba(255, 255, 255, 0.1);
}
	#select-contact_us_srvices .selectList{
		background-color: rgb(255, 255, 255);
    	border-radius: 3px;
		box-shadow: 0.5px 0.866px 3px 0px rgba(255, 255, 255, 0.1);
		border: none;
		margin: 0;
	}
	.select_contact_pin_img{
		/* background: url(../images/contact_us_pin_services.png) no-repeat; */
	}
	#select-contact_us_srvices .selectedValue span {
		position: relative;
    	top: 8px;
    	left: 10px;
    	display: block;
    	height: 18px;
    	width: 15px;
    	float: left;
    	clear: right;
	}

.activation_select{
	margin: 0 0 0 0;
	border: 1px solid rgb(215, 215, 215);
	border-radius: 3px;
	margin: 12px 0 20px 0;
}
	.activation_select .selectList{
		width: auto !important;
		background-color: rgb(255, 255, 255);
    	border-radius: 0 0 3px 3px;
		box-shadow: 0.5px 0.866px 3px 0px rgba(255, 255, 255, 0.1);
		border: 1px solid rgb(215, 215, 215);
		margin: -2px 0 0 0px;
		/* margin: 0; */
	}
	.activation_select.customSelect.select-open{
		margin: 12px 0 21px 0;
	}
