.ch-item {
	border-radius: 50%;
	position: fixed;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	cursor: default;
	text-align: center;
	right: 150px; 
	bottom: 150px;
}

.ch-info-wrap, 
.ch-info{
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.ch-info-wrap {
	top: 20px;
	left: 20px;
	/* background: #f9f9f9 url(../images/bg.jpg);
		box-shadow: 
		0 0 0 20px rgba(255,255,255,0.2), 
	inset 0 0 3px rgba(115,114, 23, 0.8); */
	
}

.ch-info > div {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-position: center center;
	
	-webkit-backface-visibility: hidden; /*Just for webkit to have a smooth font*/
}

.ch-info .ch-info-front {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.ch-info .ch-info-back {
	opacity: 0;
	
	background: #fd6060;
	pointer-events: none;
	
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
	
	-webkit-transition: all 0.3s ease-in-out 0.2s;
	-moz-transition: all 0.3s ease-in-out 0.2s;
	-o-transition: all 0.3s ease-in-out 0.2s;
	-ms-transition: all 0.3s ease-in-out 0.2s;
	transition: all 0.3s ease-in-out 0.2s;
}

.ch-img-1 { 
	background-image: url(../images/callback.png);
}

.ch-info p {
	color: #fff;
	padding: 25px 5px 0;
	font-size: 14px;
	line-height: 120%;
}

.ch-item:hover .ch-info-front {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	
	opacity: 0;
} 

.ch-item:hover .ch-info-back {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	
	opacity: 1;
	pointer-events: auto;
}

/* Ѕазовые стили сло¤ затемнени¤ и модального окна  */
.overlay {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: none;
	/* фон затемнени¤ */
	background-color: rgba(0, 0, 0, 0.65);
	position: fixed; /* фиксированное поцизионирование */
	cursor: default; /* тип курсара */
}

/* активируем слой затемнени¤ */
.overlay:target {
	display: block;
}

/* стили модального окна */
.popup {
	top: -100%;
	right: 0;
	left: 50%;
	font-size: 14px;
	text-align: center;
	z-index: 1;
	margin: 0;
	min-width: 320px;
	max-width: 410px;
	/* фиксированное позиционирование, окно стабильно при прокрутке */
	position: fixed;
	padding: 15px;
	border: 1px solid #383838;
	background: #fefefe;
	/* скругление углов */
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	font: 14px/18px 'Tahoma', Arial, sans-serif;
	/* внешн¤¤ тень */
	-webkit-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
	-moz-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
	-ms-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
	box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
	-webkit-transform: translate(-50%, -500%);
	-ms-transform: translate(-50%, -500%);
	-o-transform: translate(-50%, -500%);
	transform: translate(-50%, -500%);
	-webkit-transition: -webkit-transform 0.6s ease-out;
	-moz-transition: -moz-transform 0.6s ease-out;
	-o-transition: -o-transform 0.6s ease-out;
	transition: transform 0.6s ease-out;
}

/* активируем модальный блок */
.overlay:target+.popup {
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	top: 20%;
}

/* формируем кнопку закрыти¤ */
.close {
	top: -10px;
	right: -10px;
	width: 20px;
	height: 20px;
	position: absolute;
	padding: 0;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	border-radius: 15px;
	background-color: rgba(61, 61, 61, 0.8);
	-webkit-box-shadow: 0px 0px 10px #000;
	-moz-box-shadow: 0px 0px 10px #000;
	box-shadow: 0px 0px 10px #000;
	text-align: center;
	text-decoration: none;
	font: 13px/20px 'Tahoma', Arial, sans-serif;
	font-weight: bold;
	-webkit-transition: all ease .8s;
	-moz-transition: all ease .8s;
	-ms-transition: all ease .8s;
	-o-transition: all ease .8s;
	transition: all ease .8s;
}

.close:before {
	color: rgba(255, 255, 255, 0.9);
	content: "X";
	text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
	font-size: 12px;
}

.close:hover {
	background-color: rgba(252, 20, 0, 0.8);
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);    
}

/* элементы м-медиа, фреймы */
.popup embed, 
.popup iframe {
	top: 0;
	right: 0;
	bottom: 0; 
	left: 0; 
	display:block;
	margin: auto;
	min-width: 320px;
	max-width: 600px;
	width: 100%;
}

/* параграфы */
.popup p {
	margin: 0;
	padding: 0;
	font-size: 20px;
	line-height: normal;
}

.send_button {
	color: #fff;
	text-decoration: none;
	background: #000;
	padding: 0 10px 0 10px;
	outline: none;
	height: 36px;
	font-size: 16px;
	margin-top: 30px;
    text-decoration: none;
    border: 1px #000 solid;  
} 
.send_button:hover {
	background: #fff;
	color: #000;
    border: 1px #000 solid;
}

.phone_input {
	color: #000;
	width: 200px;
	font-size: 26px;
	border: none;
}