@font-face {
	font-family: Circe;
	src: url("../fonts/Circe.otf");
}

body {
	background-color: #fff;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 300;
}

::selection {
	background-color: #febf2a;
	color: #fff;
}

.container {
	width: 960px;
	margin: 0 auto;
}

.full-width {
	width: 100%;
	min-width: 960px;
}

.button {
	display: inline-block;
	height: 65px;
	line-height: 63px;
	padding: 0 60px;
	font-size: 23px;
	color: #403b4f;
	border-bottom: 2px solid #d9a524;
	background-color: #febf2a;
	position: relative;
	overflow: hidden;
}

.button span {
	position: relative;
	z-index: 2;
}

.button:before {
	content: "";
	position: absolute;
	left: -500px;
	top: 0;
	width: 350px;
	height: 65px;
	background-color: #fed42a;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	z-index: 1;
	-webkit-transition: left 1s ease;
	transition: left 1s ease;
}

.button:hover:before {
	left: 0;
}

.inner {
	padding: 60px 0;
}

.title {
	font-size: 55px;
	color: #403b4f;
	margin-bottom: 40px;
	position: relative;
}

.title-small {
	font-size: 20px;
	color: #403b4f;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 20px;
}

.list > li {
	font-size: 15px;
	color: #403b4f;
	line-height: 25px;
	margin-bottom: 25px;
	padding-left: 20px;
	position: relative;
}

.services .list > li:first-child:after {
	content: "";
	position: absolute;
	right: 30px;
	top: -60px;
	background: url("../img/cat-services.png");
	width: 72px;
	height: 101px;
}

.list > li > b {
	font-weight: 500;
	color: #403b4f;
}

.list > li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	background: url("../img/marker.png");
	width: 7px;
	height: 11px;
}

.list > li:last-child {
	margin-bottom: 0;
}

.spoiler {
	font-size: 15px;
	color: #7b7789;
	margin-bottom: 30px;
	border: 1px solid #bdbbc4;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.spoiler:hover,
.spoiler.active {
	border-color: #fd6969;
}

.spoiler .head {
	padding: 15px;
	cursor: pointer;
	position: relative;
	-webkit-text-size-adjust: 100%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.spoiler:hover .head,
.spoiler.active .head {
	color: #fd6969;
}

.spoiler .head:before {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -4px;
	background: url("../img/arrow.png");
	width: 12px;
	height: 8px;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.spoiler:hover .head:before {
	background: url("../img/arrow-active.png");	
}

.spoiler.active .head:before {
	background: url("../img/arrow-active.png");
	transform: rotate(180deg);
}

.spoiler .text {
	padding: 0 15px 15px 15px;
	display: none;
}

.spoiler .text p {
	font-size: 14px;
	line-height: 25px;
	color: #7b7789;
	margin-top: 15px;
}

.spoiler .text p:first-child {
	margin-top: 0;
}

.spoiler .text ol {
	counter-reset: item;
}

.spoiler .text ol > li {
	font-size: 14px;
	line-height: 25px;
	color: #7b7789;
	margin-top: 15px;
	position: relative;	
}

.spoiler .text ol > li:before {
	position: absolute;
	left: 0;
	top: 0;
	content: counter(item) ".";
	counter-increment: item;
	font-weight: 500;
}

.spoiler .text ol > li > b {
	display: block;
	padding-left: 18px;
	font-weight: 500;
}

/*Header*/

.header-wrap {
	background: url("../img/header.png") no-repeat;
	height: 620px;
	overflow: hidden;
}

.header {
	padding: 15px 0;
}

.header .logo {
	float: left;
}

.header .menu {
	float: right;
	height: 30px;
	line-height: 28px;
	margin: 15px 0;
}

.header .menu > ul > li {
	float: left;
	margin-right: 35px;
	position: relative;
}

.header .menu > ul > li:last-child {
	margin-right: 0;
}

.header .menu > ul > li > a {
	position: relative;
	display: block;
	font-size: 21px;
	color: #7b7789;
	text-transform: uppercase;
	border-bottom: 1px solid transparent;
	-webkit-transition: color .2s, border-bottom-color .2s;
	transition: color .2s, border-bottom-color .2s;
}

.header .menu > ul > li > a:hover,
.header .menu > ul > li a.active {
	color: #403b4f;
}

.header .menu > ul > li > a:before {
	content: "";
	width: 0;
	height: 2px;
	background-color: #fd6969;
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-transition: width .8s ease;
	transition: width .8s ease;
}

.header .menu > ul > li > a:hover:before,
.header .menu > ul > li > a.active:before {
	width: 100%;
}

.header .menu .drop-menu {
	position: absolute;
	right: 0;
	top: 100px;
	background-color: #febf2a;
	min-width: 100%;
	z-index: 15;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .5s ease, top .5s ease, visibility .5s ease;
	transition: opacity .5s ease, top .5s ease, visibility .5s ease;
}

.header .menu .drop-menu.active {
	top: 50px;
	opacity: 1;
	visibility: visible;
}

.header .menu .drop-menu:before {
	content: "";
	position: absolute;
	right: 20px;
	top: -5px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #febf2a transparent;
}

.header .menu .drop-menu li {
	display: block;
	line-height: initial;
}

.header .menu .drop-menu li > a {
	padding: 15px;
	display: block;
	font-size: 11px;
	color: #fff;
	white-space: nowrap;
	text-transform: uppercase;
	position: relative;
}

.header .menu .drop-menu li > a > span {
	position: relative;
	z-index: 2;
}

.header .menu .drop-menu li > a:before,
.header .menu .drop-menu li > a:after {
	content: "";
	position: absolute;
	top: 0;
	width: 0;
	height: 100%;
	background-color: #fd6969;
	z-index: 1;
	-webkit-transition: width .8s ease;
	transition: width .8s ease;
}

.header .menu .drop-menu li > a:before {
	left: 0;
}

.header .menu .drop-menu li > a:hover:before {
	width: 50%;
}

.header .menu .drop-menu li > a:after {
	right: 0;
}

.header .menu .drop-menu li > a:hover:after {
	width: 50%;
}

/*Banner*/

.banner .container {
	position: relative;
}

.banner .free-call {
	position: absolute;
	right: 0;
	top: 140px;
	color: #fd6969;
	font-size: 13px;
}

.banner .phone {
	position: absolute;
	right: 0;
	top: 90px;
	background-color: #fd6969;
	border-bottom: 2px solid #c75555;
	color: #fff;
	height: 45px;
	line-height: 43px;
	padding: 0 20px 0 50px;
	font-size: 20px;
	overflow: hidden;
}

.banner .phone:nth-of-type(1) {
    top: 30px;
    right: 0;
    border-bottom: 2px solid #d9a524;
    background-color: #febf2a;
}

.banner .phone span {
	z-index: 2;
	position: relative;
	width: 150px;
	display: block;
	white-space: nowrap;
	text-align: center;
}

.banner .phone:after {
	content: "";
	position: absolute;
	left: 15px;
	top: 11px;
	background: url("../img/phone.png");
	width: 23px;
	height: 23px;
	z-index: 2;
}

.banner .phone:before {
	content: "";
	position: absolute;
	left: -500px;
	top: 0;
	width: 350px;
	height: 45px;
	background-color: #fed42a;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	z-index: 1;
	-webkit-transition: left 1s ease;
	transition: left 1s ease;
}

.banner .phone:nth-of-type(2):before {
    display: none;
}

.banner .phone:hover:before {
	left: 0;
}

.banner .info {
	float: left;
	width: 460px;
	margin-top: 90px;
}

.banner .info p {
	color: #403b4f;
	font-size: 45px;
	line-height: 60px;
	margin-bottom: 30px;
}

.banner.small .info p {
	line-height: 45px;
	font-size: 35px;
}

.banner .info p:first-child {
	font-size: 47px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.banner.small .info p:first-child {
	font-size: 30px;
}

.banner .info p:last-child {
	font-family: Circe;
}

/*Parallax*/

.parallax-question {
	float: left;
	width: 130px;
	height: 172px;
	position: relative;
	margin: 150px 0 0 20px;
}

.parallax-head {
	float: right;
	width: 450px;
	height: 292px;
	position: relative;
	right: -150px;
}

.parallax-layer {
	position: absolute;
}

/*Content*/

.content {
	background: #f1f4f7;
	background: -moz-linear-gradient(top,  #f1f4f7 0%, #ffffff 20%);
	background: -webkit-linear-gradient(top,  #f1f4f7 0%,#ffffff 20%);
	background: linear-gradient(to bottom,  #f1f4f7 0%,#ffffff 20%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f4f7', endColorstr='#ffffff',GradientType=0 );
}

.description p {
	font-size: 15px;
	color: #7b7789;
	line-height: 25px;
	margin-top: 15px;
}

.description p:first-child {
	margin-top: 0;
}

.description ol {
	counter-reset: item;
}

.description ol li {
	font-size: 15px;
	color: #7b7789;
	line-height: 25px;
	margin-top: 15px;
	display: block;
	position: relative;
	padding-left: 18px;
}

.description ol li:before {
	position: absolute;
	left: 0;
	top: 0;
	content: counter(item) ".";
	counter-increment: item;
}

.description .img-wrap {
	text-align: center;
}

.description .column {
	width: 49%;
	margin-bottom: 40px;
}

.description .column.no-margin {
	margin-bottom: 0;
}

.description .column:first-child {
	float: left;
}

.description .column:last-child {
	float: right;
}

.services,
.about {
	border-top: 1px dashed #d9d8dc;
}

.about .title {
	padding-left: 120px;
}

.about .title:before {
	content: "";
	background: url("../img/cat-about.png");
	width: 77px;
	height: 110px;
	position: absolute;
	left: 0;
	top: -20px;
}

.about ul {
	text-align: center;
}

.about li {
	display: inline-block;
	vertical-align: top;
	width: 200px;
	margin-left: 110px;
	position: relative;
}

.about li:nth-child(4):before,
.about li:nth-child(5):before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -56.5px;
	background: url("../img/line.png");
	width: 113px;
	height: 16px;
}

.about li:nth-child(4),
.about li:nth-child(5) {
	padding-top: 25px;
}

.about li .ico {
	width: 94px;
	height: 85px;
	display: inline-block;
	margin-bottom: 15px;
	background-repeat: no-repeat !important;
	background-position: 50% 50% !important;
}

.about li:nth-child(1) .ico {
	background: url("../img/ico-1.png");
}

.about li:nth-child(2) .ico {
	background: url("../img/ico-2.png");
}

.about li:nth-child(3) .ico {
	background: url("../img/ico-3.png");
}

.about li:nth-child(4) .ico {
	background: url("../img/ico-4.png");
}

.about li:nth-child(5) .ico {
	background: url("../img/ico-5.png");
}

.about li .signature {
	font-size: 15px;
	color: #403b4f;
	line-height: 20px;
}

.reviews {
	background-color: #f1f5f7;
}

.reviews .shadow {

}

.reviews .child {
	margin-bottom: 45px;
}

.reviews .child:last-child {
	margin-bottom: 0;
}

.reviews .child .photo {
	float: left;
	width: 90px;
	height: 90px;
	border-radius: 50px;
	overflow: hidden;
}

.reviews .child .photo img {
	width: 100%;
}

.reviews .child .info {
    float: right;
    width: 840px;
}

.reviews .child .name {
	font-size: 19px;
	color: #403b4f;
	float: left;
}

.reviews .child .city {
	font-size: 19px;
	color: #7b7789;
	margin-left: 5px;
	float: left;
}

.reviews .child .date {
	font-size: 13px;
	color: #7b7789;
	float: right;
}

.reviews .child p {
	font-size: 13px;
	color: #7b7789;
	line-height: 20px;
	margin-top: 10px;
	text-align: justify;
}

.reviews .reminder {
	width: 200px;
	text-align: center;
	margin: 70px 0 60px 60px;
	position: relative;
}

.reviews .reminder span {
	display: block;
	line-height: 25px;
	font-size: 20px;
	color: #7b7789;
	font-family: 'Neucha', cursive;
	transform: rotate(6deg) scale(1) skew(1deg) translate(0px);
	-webkit-transform: rotate(6deg) scale(1) skew(1deg) translate(0px);
	-moz-transform: rotate(6deg) scale(1) skew(1deg) translate(0px);
	-o-transform: rotate(6deg) scale(1) skew(1deg) translate(0px);
	-ms-transform: rotate(6deg) scale(1) skew(1deg) translate(0px);	
}

.reviews .reminder:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: -50px;
	width: 21px;
	height: 33px;
	background: url("../img/reminder.png");
	-moz-animation: down 0.6s infinite alternate ease-in-out;
	-webkit-animation: down 0.6s infinite alternate ease-in-out;
}

@-webkit-keyframes down {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 0.4
	}
	100% {
		-webkit-transform: translateY(0.4em);
		transform: translateY(0.4em);
		opacity: 0.9
	}
}

@keyframes down {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 0.4
	}
	100% {
		-webkit-transform: translateY(0.4em);
		transform: translateY(0.4em);
		opacity: 0.9
	}
}

.reviews .button-cat {
	margin-top: 100px;
	text-align: center;
	position: relative;
}

.reviews .button-cat:before {
	content: "";
	position: absolute;
	left: 50%;
	margin-left: -36px;
	top: -27px;
	width: 72px;
	height: 27px;
	background: url("../img/cat-button.png");
	-webkit-transition: top .5 ease;
	transition: top .5s ease;
}

.reviews .button-cat.active:before {
	top: 0;
}

.contact {
	background: url("../img/contact.jpg");
	height: 760px;
	position: relative;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.contact .hidden {
	-webkit-transition: opacity .2s, visibility .2s;
	transition: opacity .2s, visibility .2s;
}

.contact .hidden.active {
	opacity: 0;
	visibility: hidden;
}

.contact .inner {
	position: relative;
	z-index: 5;
}

.contact p {
	font-size: 15px;
	color: #403b4f;
	line-height: 25px;
}

.contact .show {
	background-color: #fff;
	padding: 15px 40px;
	cursor: pointer;
	margin-top: 450px;
	float: left;
	-webkit-transition: background-color .2s;
	transition: background-color .2s;
}

.contact .show:hover,
.contact .show.active {
	background-color: #febf2a;
}

.contact .show span {
	font-size: 17px;
	color: #403b4f;	
	font-weight: 400;
	-webkit-transition: color .2s;
	transition: color .2s;
}

.contact .show:hover span,
.contact .show.active span {
	color: #fff;
}

.contact .show span:after {
	content: "Показать на карте";
}

.contact .show span.active:after {
	content: "Скрыть карту";
}

.contact .map {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .5s ease, visibility .5s ease;
	transition: opacity .5s ease, visibility .5s ease;
}

.contact .map.active {
	opacity: 1;
	visibility: visible;
}

.contact #map {
	position: absolute;
	left: 0;
	top: 0;
	height: 760px;
}

.footer {
	padding: 45px 0;
	font-size: 13px;
	color: #8f929d;
}

.footer .copyright, 
.footer .phone {
	/*float: left;*/
}

.footer .dev a, 
.footer .copyright a {
	color: #1a1f33;
	padding-bottom: 2px;
	border-bottom: 1px solid #1a1f33;
	-webkit-transition: color .2s, border-bottom-color .2s;
	transition: color .2s, border-bottom-color .2s;
}

.footer .dev a:hover,
.footer .copyright a:hover {
	color: #fd6969;
	border-bottom-color: #fd6969;
}

.footer .copyright span {
	display: block;
}

.footer .copyright span:first-child {
	margin-bottom: 5px;
}

.footer .copyright span:last-child {
	margin-top: 15px;
}

.footer .phone {
	/*margin-left: 150px;*/
	text-align: center;
}

.footer .phone .number {
	font-size: 39px;
	color: #1a1f33;
	margin-bottom: 10px;
}

.footer .phone .call {
	display: inline-block;
	color: #42495b;
	-webkit-transition: color .2s;
	transition: color .2s;
}

.footer .phone .call:hover {
	color: #fd6969;
}

.footer .phone .call span {
	cursor: pointer;
	border-bottom: 1px dotted #42495b;
	-webkit-transition: border-bottom-color .2s;
	transition: border-bottom-color .2s;
}

.footer .phone .call:hover span {
	border-bottom-color: #fd6969;
}

.footer .dev {
	float: right;
	position: relative;
	margin-top: 30px;
}

.footer .dev:before {
	content: "";
	position: absolute;
	left: -20px;
	top: -16px;
	background: url("../img/dev.png");
	width: 32px;
	height: 32px;
}

.modal,
.modal-two,
.modal-three {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(78,73,92,0.90);
	opacity: 0;
	z-index: 10;
	visibility: hidden;
	-webkit-transition: opacity 0.3s, visibility 0.3s;
	transition: opacity 0.3s, visibility 0.3s;
}

.modal.is-visible,
.modal-two.is-visible,
.modal-three.is-visible {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.3s, visibility 0s;
	transition: opacity 0.3s, visibility 0s;
}

.modal .modal-container,
.modal-two .modal-container,
.modal-three .modal-container {
	position: relative;
	width: 400px;
	left: 50%;
	top: 50%;
	margin-left: -200px;
	margin-top: -287px;
	border: 2px solid #403b4f;
	opacity: 1;
	-webkit-transform: translateY(-40px);
	transform: translateY(-40px);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.modal-two .modal-container {
	margin-top: -301.5px;
}

.modal-three .modal-container {
	margin-top: -253px;
}

.modal.is-visible .modal-container,
.modal-two.is-visible .modal-container,
.modal-three.is-visible .modal-container {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.modal-wrapper {
	text-align: center;
	padding: 40px 30px;
	border: 1px solid #fff;
	background-color: #fff;
}

.modal-wrapper h2 {
	color: #403b4f;
	font-size: 29px;
	line-height: 35px;
	font-weight: 400;
	margin-bottom: 35px;
}

.modal-wrapper .close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: url("../img/close.png");
	width: 15px;
	height: 15px;
	cursor: pointer;
	opacity: 0.3;
	-webkit-transition: all .8s ease;
	transition: all .8s ease;
}

.modal-wrapper .close:hover {
	opacity: 1;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.modal-wrapper input[type="text"] {
	width: 100%;
	background-color: #f1f5f7;
	height: 50px;
	line-height: 48px;
	margin-bottom: 10px;
	outline: none;
	padding: 0 20px;
	font-size: 15px;
	color: #7b7789;
	border-bottom: 2px solid transparent;
	box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.05) inset;
	-webkit-transition: border-bottom-color .2s ease;
	transition: border-bottom-color .2s ease;
}

.modal-wrapper input[type="text"].error {
    border-bottom-color: #fd6969;
}

.modal-wrapper input[type="text"]:focus {
	border-bottom-color: #febf2a;
}

.modal-wrapper textarea {
	background-color: #f1f5f7;
	outline: none;
	resize: none;
	padding: 15px 20px;
	min-height: 120px;
	font-size: 15px;
	color: #7b7789;
	width: 100%;
	border-bottom: 2px solid transparent;
	box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.05) inset;
	-webkit-transition: border-bottom-color .2s ease;
	transition: border-bottom-color .2s ease;
}

.modal-wrapper textarea:focus {
	border-bottom-color: #febf2a;
}

::-webkit-input-placeholder {
	font-size: 15px;
	color: #7b7789;
	font-weight: 300;
}

::-moz-placeholder {
	font-size: 15px;
	color: #7b7789;
	font-weight: 300;
}

:-moz-placeholder {
	font-size: 15px;
	color: #7b7789;
	font-weight: 300;
}

:-ms-input-placeholder {
	font-size: 15px;
	color: #7b7789;
	font-weight: 300;
}

.modal-wrapper input[type="submit"] {
	width: 100%;
	outline: none;
	-webkit-appearance: none;
	cursor: pointer;
	font-weight: 300;
	margin-top: 20px;
}

.modal-wrapper input[type="submit"]:focus {
	background-color: #fed42a;
	border-top: 2px solid #d9b724;
	border-bottom: none;
}

.modal-wrapper .upload {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-color: #f1f5f7;
	height: 50px;
	line-height: 48px;
	margin-bottom: 10px;
	outline: none;
	padding: 0 20px;
	text-align: left;
	border-bottom: 2px solid transparent;
	box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.05) inset;
}

.modal-wrapper .upload span {
	font-size: 15px;
	color: #7b7789;
	padding-bottom: 2px;
	border-bottom: 1px dotted #7b7789;
	-webkit-transition: color .2s, border-bottom-color .2s;
	transition: color .2s, border-bottom-color .2s ease;
}

.modal-wrapper .upload:hover span {
	color: #febf2a;
	border-bottom-color: #febf2a;
}

.modal-wrapper .upload input[type=file] {
	position: absolute;
	top: 0; 
	right: 0;
	font-size: 200px;
	opacity: 0;
	filter: alpha(opacity=0);
	cursor: pointer;
}

.sending-letter {
	background-color: #febf2a;
	position: fixed;
	left: 0;
	bottom: 50px;
	cursor: pointer;
	padding: 25px 0;
	width: 420px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	-webkit-transition: left 0.5s ease, opacity 0.5s ease, visivility 0.5s ease;
	transition: left 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}

.sending-letter.active {
	left: 50px;
	opacity: 1;
	visibility: visible;
}

.sending-letter .pos {
	background-color: #febf2a;
	width: 420px;
	height: 101px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.sending-letter:before {
	content: "";
	position: absolute;
	left: 50px;
	top: -18px;
	width: 72px;
	height: 27px;
	z-index: 1;
	background: url("../img/cat-button.png");
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-transform: rotate(10deg);
	transform: rotate(10deg);
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.sending-letter.active:before {
	top: -27px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.sending-letter h2 {
	font-size: 16px;
	color: #403b4f;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 20px;
	text-transform: uppercase;
	position: relative;
	z-index: 3;
}

.sending-letter p {
	font-size: 15px;
	color: #403b4f;
	position: relative;
	z-index: 3;
}

.call-back {
	margin: 20px 0 30px 0;
	position: relative;
	text-align: left;
}

.call-back span {
	font-size: 15px;
	color: #7b7789;
	display: inline-block;
}

.call-back span:nth-child(2) {
	color: #febf2a;
	border-bottom: 1px dotted #febf2a;
	margin-left: 5px;
	cursor: pointer;
    -webkit-transition: color .2s, border-bottom-color .2s;
    transition: color .2s, border-bottom-color .2s;
}

.call-back span:hover:nth-child(2) {
    color: #fd6969;
    border-bottom-color: #fd6969;
}

.call-back .time-wrapper {
	position: absolute;
	right: 0;
	top: -40px;
	width: 130px;
	border: 1px solid #7b7789;
	display: none;
	z-index: 10;
}

.call-back .time-wrapper input[type="text"] {
	display: none;
}

.call-back .time-wrapper li {
	height: 45px;
	line-height: 43px;
	width: 100%;
	background-color: #fff;
	font-size: 15px;
	color: #7b7789;
	cursor: pointer;
	text-align: center;
	transition: all 0.1s ease-in;
}

.call-back .time-wrapper li.active {
	background-color: #e5e5e5 !important;
	color: #7b7789 !important;
}

.call-back .time-wrapper li:hover {
	background-color: #febf2a;
	color: #fff;
}