/*
-webkit-
 -khtml-
   -moz-
    -ms-
     -o-
*/
/*@import url(https://fonts.googleapis.com/css?family=Ubuntu:500,700&subset=latin,cyrillic);*/
.hidden{
	opacity: 0;
	display: none;
}
.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
         -o-user-select: none;
            user-select: none;
}
.myCallMeDiv{
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	overflow: auto;
	background: rgba(255, 255, 255, 0.7);
	-webkit-transition:	ease .5s;
	   -moz-transition: ease .5s;
	    -ms-transition: ease .5s;
	     -o-transition: ease .5s;
	        transition: ease .5s;
	z-index: 999999;
}
.upTop{
	top: -1000px!important;
}
.myCallMeForm{
	position: absolute;
	top: 50px;
	left: 50%;
	width: 400px;
	margin: 0 0 0 -200px;
	background: #F5F5F5;
	padding:10px;
	border-radius: 3px;
	box-shadow: 5px 5px 10px rgba(0,0,0,.4);
	color: #444;
	border: 1px solid #B5B5B5;
}
.myCallMeForm>*{
	display: block;
	font-family: 'Ubuntu', sans-serif;
}
.title{
	margin: 5px;
	text-align: center;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 700;
	cursor: default;
}
.myCallMeForm input:hover, .myCallMeForm textarea:hover{
	border: 1px solid #0E0E21;
}
.myCallMeForm input:focus, .myCallMeForm textarea:focus{
	border: 1px solid #0E0E21;
	outline: none;
}
.myCallMeForm input, .myCallMeForm textarea{
	width: 92%;
	resize: none;
	padding: 10px;
	margin: 5px;
	border: 1px solid #BDBDBD;
	border-radius: 3px;
	font-weight: 500;
	font-family: 'Ubuntu', sans-serif;
	-webkit-transition: ease .3s;
	-moz-transition: ease .3s;
	-ms-transition: ease .3s;
	-o-transition: ease .3s;
	transition: ease .3s;
}
.myCallMeForm textarea{
	height: 80px;
}
.myCallMeForm button:focus{
	outline: none;
}
.myCallMeForm button{
	color: #E0E0E0;
	background: #0E0E21;
	border-radius: 3px;
	font-weight: 700;
	border: 1px solid #000;
	cursor: pointer;
	box-shadow: 2px 2px 5px rgba(0,0,0,.4);
	font-family: 'Ubuntu', sans-serif;
	-webkit-transition: ease .3s, color linear 0s;
	   -moz-transition: ease .3s, color linear 0s;
	    -ms-transition: ease .3s, color linear 0s;
	     -o-transition: ease .3s, color linear 0s;
	        transition: ease .3s, color linear 0s;
}

.myCallMeForm button:hover{
	background: #000;
	border: 1px solid #757575;
	box-shadow: 1px 1px 2px rgba(0,0,0,.4);
}
.myCallMeForm .myCallMeClose:hover{
    color: #FF2D2D;
}
.myCallMeForm .myCallMeSubmit:hover{
    color: #8EFFBC;
}
.myCallMeClose{
	position: absolute;
	top: -1px;
	right: -1px;
}
.myCallMeSubmit{
	border: 1px solid #000000;
	margin: 10px auto 5px;
	padding: 5px 15px;
}