.callback {
	display: none;
	position: fixed;
	right: 40px;
	bottom: 250px;
	width: 405px;
	height: 66px;
	z-index: 9999;
}
@media(max-width: 546px) {
	.callback {
		right: 0;
		bottom: 0;
	}
}
@-webkit-keyframes shake {
	0% {
		left:-10px;
	}
	16% {
		left:9px;
	}
	33% {
		left:-6px;
	}
	50% {
		left:5px;
	}
	66% {
		left:-2px;
	}
	83% {
		left:1px;
	}
	100% {
		left: 0px;
	}
}
.callback .close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	width: 12px;
	height: 12px;
	background: url('../images/close.png') center no-repeat;
	opacity: 0.4;
	transition: 0.5s;
	cursor: pointer;
}
.callback .close:hover {
	opacity: 0.9;
}
.callback .body {
	position: absolute;
	bottom: 0;
	right: 5px;
	z-index: 9;
	width: 400px;
	height: 60px;
	background: #113C52;
	border-radius: 30px;
	padding: 5px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 130px 200px 50px;
	grid-column-gap: 5px;
	box-shadow: rgba(0,0,0,0.5) 0 0 20px;
	animation: shake .6s linear;
	overflow: hidden;
}
.callback .item {
	text-align: center;
	color: #fff;
	position: relative;
}
.callback .calltext {
	margin: 4px 0 0 0;
	padding: 0;
	font-size: 14px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.callback .calltext span {
	display: block;
}
.callback .calltime {
	margin: 7px 0 0 0;
	padding: 0;
	font-size: 8px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	cursor: pointer;
	text-decoration: none;
	color: #60caf8;
}
.callback .calltime:hover {
	text-decoration: underline;
}
.callback input {
	width: 100%;
	height: 34px;
	border: 0;
	padding: 0 0 0 40px;
	box-sizing: border-box;
	font-size: 16px;
}
.callback label {
	position: absolute;
	content: url('../images/rus.png');
	top: 7px;
	left: 7px;
}
.callback .callok {
	margin: 0 0 0 0;
	padding: 0;
	font-size: 8px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	text-decoration: none;
	color: #fff;
}
.callback .callok:before {
	content: url('../images/check.png');
	margin-right: 3px;
}
.callback .callok a {
	color: #fff;
	text-decoration: underline;
}
.callback .callok a:hover {
	color: #60caf8;
}
.callback .btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #21A8E1 url('../images/call.png') center no-repeat;
	cursor: pointer;
}
.callback .btn:hover {
	background: #60caf8 url('../images/call.png') center no-repeat;
}
.mailcall {
	display: none;
}