*::-webkit-input-placeholder {
	color: #666;
	opacity: 1;
}
*:-moz-placeholder {
	color: #666;
	opacity: 1;
}
*::-moz-placeholder {
	color: #666;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: #666;
	opacity: 1;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
	
}
body input:required:valid,
body textarea:required:valid {
	
}
body {
   font-family:'Open Sans', sans-serif;
	font-size: 14px;
}
a{
	color:#000;
}
a:hover{
	text-decoration: none;
}
a:active{
	background: transparent;
}
#allrights h4{
	text-align: center;
}
#allrights li{
	padding: 15px;
}
#fixed-menu li:hover a{
	color: #FF921A;
}
#fixed-menu:hover #fixed-icon{
	transform:scaleX(1);
}
#fixed-menu a{
	color: #fff;
}
#fixed-menu h4{
	text-align: center;
	font-size: 24px;
}
#fixed-icon{
	font-size: 40px;
	position: absolute;
	right:8px;
	top:15px;
	cursor: pointer;
	color: #3E3C66;
	-webkit-transition: transform .4s ease-in;
	-o-transition: transform .4s ease-in;
	transition: transform .4s ease-in;
	transform: scaleX(-1);
}
#fixed-menu:hover li::after{
	opacity:1;
}
#fixed-menu{
	overflow: hidden;
	border:5px solid #FF921A;
	position: fixed;
	top:10%;
	left:0;
	font-size: 16px;
	z-index:9999;
	color: #fff;
	font-weight: 600;
	padding: 30px 30px 50px 30px;
	transform:translateX(-85%);
	width:400px;
	height:80%;
	border-radius:10px;
	-webkit-transition: transform .8s ease-in-out;
	-o-transition: transform .8s ease-in-out;
	transition: transform .8s ease-in-out;
	background: #FFC375;
}
#fixed-menu:hover{
	transform:translateX(0%);	
}
#fixed-menu ul{
    padding-inline-start: 0;
    padding-inline-end: 31px;
}
#fixed-menu li{
	padding: 5px;
	cursor: pointer;
	-webkit-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
	position: relative;	
}
#fixed-menu li::after {
	opacity:0;
	content: " ";
	position: absolute;
	border:10px solid;
	border-color: transparent #fff transparent transparent;
	color: #fff;
	top: 10px;
	right:0;
	-webkit-transition: opacity .8s ease-in-out;
	-o-transition: opacity .8s ease-in-out;
	transition: opacity .8s ease-in-out;
}
#fixed-menu li:hover::after {
	transition:all .3s ease-in-out;
	transform: scaleX(-1);
	border-color: transparent #FF921A transparent transparent;
}


#scroll-to span{
	width:65px;
	height:64px;
	font-size: 55px;
	padding: 0 0 0 12px;
	border:3px solid rgba(255,146,26,.5);
	border-radius:100%;
	color: rgba(38,30,83,.5);
}
#scroll-to{
	cursor: pointer;
	position: fixed;
	bottom:10%;
	right:75px;
	z-index:999;
	display: none;
}
#scroll-to:hover span{
	background: #FFC375;
	color: rgba(38,30,83,1);
	border:3px solid rgba(255,146,26,1);
}
.uppercase{
	text-transform: uppercase;
}
.small{
	text-transform: lowercase;
}
.hide{
	display: none;
}
.show{
	display: block;
}
.opacity0{
	opacity:0;
}
.opacity1{
	opacity:1;
}
#recall{
	z-index:9999;
	display: none;
	position: fixed;
	bottom:24px;
	left:3%;
	color: #fff;
	width:45%;
	height:45px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	padding-top: 0px;
	text-transform: uppercase;
	background: #EE2C2C;
	border-radius:3px;
	border:1px solid #EE2C2C;
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
#recall:hover:after {
    z-index: -1
}
#recall:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(135deg, transparent 40px, rgba(255, 255, 255, 0.4) 60px, transparent 65px) no-repeat;
    background-position: -100px 0px;
    transform-origin: center;
    animation-name: but;
    animation-duration: 4s;
    animation-timing-function: cubic-bezier( .2, .2, .3, .4); 
    animation-iteration-count: infinite;
}
@keyframes but {
    from {background-position: -100px 0px;}
    to {background-position: 500px 0px;}
}
#rewrite{
	z-index:9999;
	display: none;
	position: fixed;
	bottom:24px;
	right:3%;
	color: #fff;
	width:45%;
	height:45px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	background: #EE2C2C;
	border-radius:3px;
	border:1px solid #EE2C2C;
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
#rewrite:hover, #recall:hover{
	border:1px solid rgba(246,0,20,1);
	box-shadow: inset 300px 0 0 0 rgba(246,0,20,1);
}
#rewrite i, #recall i{
    font-size: 21px;
    position: relative;
    left: -10px;
    top: 2px;
}
#rewrite i {
    top: 0px;
}
#modal-container{
   background: rgba(198,198,198, .8);
	display: none;
}
#modal-container{
    position: fixed;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    display: none; 
}
#contact-form{
    width: 400px;
    height:440px;
    z-index:999999;
    position: relative;
    margin: 0 auto;
    padding: 95px 20px 13px 20px;
    border-radius: 10px;
    background: #999;
    background: url('../img/bg-logo.jpg')no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    border:3px solid #eee;
 }
#contact-form input:focus{
	border:2px solid rgba(1,15,44,.8);
}
#contact-form input{
	text-transform: uppercase;
	width:85%;
	font-size: 20px;
	background: #eee;
	font-family: "Open Sans";
	height:40px;
	color: rgba(2,31,77,1);
	margin: 0 auto;
	border-radius:4px;
	padding-left: 20px;
	-webkit-box-shadow: 1px 0px 2px 0 rgba(198,198,198,.8);
	box-shadow: 1px 0px 2px 0 rgba(198,198,198,.8);
	border:2px solid rgba(198,198,198,.8);
}    
#contact-form label{
	text-align: center;
	display: block;
	margin: 0 auto 10px auto;
	color: #fff;
	font-size: 24px;
	text-shadow: 1px 2px 1px rgba(1,17,43,1);
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
}
#contact-form .close{
    color: #eee;
    opacity:.5;
    position: absolute;
    right:12px;
    text-align: center;
    top: 10px;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 30px;
}
#contact-form .close:hover{
	opacity:1;
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=4)";
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
#modal-btn{
	width:85%;
	display: block;
	margin: 123px auto 0 auto;
	height:40px;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
	background: #EE2C2C;
	border:1px solid #EE2C2C;
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
#modal-btn:hover{
	border:1px solid rgba(246,0,20,1);
	-webkit-box-shadow: inset 300px 0 0 0 rgba(246,0,20,1);
	box-shadow: inset 300px 0 0 0 rgba(246,0,20,1);
}
#header .nav > li > a:hover, 
#header .nav > li > a:focus{
	background: transparent;
}

li{
	list-style: none;
}
iframe{
	border-radius:5px;
}
nav.navbar{
	position: relative;
}
#checkbox-toggle{
    display: none;
}
#logo-top-line{
	display: none;
}
#mobile-bar{
	display: none;
	font-size: 38px;
	color: #fff;
	z-index:999;
	cursor: pointer;
}
body{
	max-width:100%;
}
.container.wrapper{
	max-width:1050px;
	position: relative;
}
#header{
	background: url(../img/bg.jpg)no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	height:675px;
	padding-top: 25px;
}
.phone{
	color: #303030;
}
#header>.container.wrapper{
	background: url(../img/bg-wrapper-head.png)no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	height:650px;
}
#logo{
	position: absolute;
	top:-10px;
	left:-40px;
}
.navbar{
	padding-top: 6px;
	padding-left: 60px;
}
.navbar li a{
	text-transform: uppercase;
	font-weight: bold;
	padding: 5px 19px 5px 18px;
	background: #F82E2E;
}
.navbar li:first-child{
	padding-left: 5px;
}
.navbar li{
	-webkit-box-shadow: 0px 2px  3px 0 #FF7979;
	box-shadow: 0px 2px 3px 0 #FF7979;
	padding: 9px 0 10px 0;
	background: #F82E2E;
}
.navbar li a:hover{
	background: #F82E2E;
	color: #FFB800;
}
.navbar li a.active{
	color: #FFB800;
}
.navbar li a{
	color: #fff;
	border-left:1px solid #EE0000;
}
.navbar li a.first{
	border-left: none;
}
.navbar li.first:after {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    border-bottom: 49px solid transparent;
    border-right: 30px solid #F82E2E;
}
.red{
	color: #F82E2E;
	display: block;
}
.grey{
	color: #333231;
	display: block;
}
#text-header-first{
	width:90%;
	position: relative;
	left:13.2%;
	top:-6px;
	font-size: 23px;
} 
#text-header-first h1{
	font-size: 23px;
	margin-top: 5px;
	margin-bottom: 5px;
}
#text-header-first h1.large-h1{
	font-size: 22px;
}
#text-header-first h1 .small{
	font-size: 20px;
}
#text-header-second{
	width:90%;
	position: relative;
	left:13.2%;
	top:19px;
	font-size: 14px;
} 
#text-header-third{
	width:90%;
	position: relative;
	left:13.2%;
	top:43px;
	font-size: 14px;
} 
#phone-head img{
	display: none;
/*    width: 40px;*/
}
#phone-head{
	font-size: 24px;
	font-weight: bold;
	position: relative;
	left:8%;
	top:-15px;
}
#phone-head img {
/*    width: 100px;*/
}
.navbar-nav li{
	z-index:999;
} 

/* ----------Advantages----------------- */
#advantages-head, 
#whattodo-head-txt,
#tips-head-txt,
#price-head-txt,
#price-head-txt-2,
#price-head-txt-3,
#about-us-head-txt,
#about-slider-txt,
#calculator-head-txt,
#contacts-head-txt{
	margin: 0;
	font-size: 26px;
	text-transform: uppercase;
	width:100%;
	display: block;
	text-align: center;
	color: #fff;
	position: relative;
	top: 13px;
}
#trall-head-txt{
	margin: 0;
	font-size: 26px;
	text-transform: uppercase;
	width:100%;
	display: block;
	text-align: center;
	color: #fff;
	position: relative;
	top: 13px;
}
#wrapper-whattodo-head1{
	margin: 0;
	margin-bottom: -15px;
	text-align: center;
	background: #F1F1F1;
}
#wrapper-whattodo-head2 button{
	z-index:999;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	margin: 0 auto;
	position: relative;
	top:13px;
	padding: 10px;
	color: #fff;
	background: #F82E2E;
	border:none;
	-webkit-box-shadow: 0px 2px  3px 0 #FF7979;
	box-shadow: 0px 2px 3px 0 #FF7979;
	border-radius:3px;
}
#wrapper-whattodo-head2 button.dop-but {
    top:-5px;
}
#wrapper-whattodo-head2 button:hover{
	background: #EE0000;
}
#whattodo{
	background: #FFC375;
}
#whattodo p{
	background: #FFF4E6;
	padding: 10px;
}
#wrapper-advantages-head, 
#wrapper-whattodo-head3,
#wrapper-tips-head,
#wrapper-price-head,
#wrapper-price-head-2,
#wrapper-price-head-3,
#wrapper-about-us-head,
#wrapper-contacts-head,
#wrapper-cities-head,
#wrapper-slider-head{
	background: #FF921A;
}
#wrapper-trall-head{
	background: #FF921A;
}
#wrapper-whattodo-head2{
	background: #FFEFBE;
	padding-top: 20px;
}
#wrapper-whattodo-head3{
	padding-top: 40px;
	position: relative;
	top:-30px;
	z-index:9;
}
#advantages{
	background: #F1F1F1;
}
#advantages #advantages-text-center{
	padding-top: 50px;
	text-align: center;
	display: block;
	margin: 0 auto;
	width:35%;
	font-size: 18px;
}
#whattodo .bottom-line-grey{
	z-index:99;
	position: relative;	
}
#whattodo .bottom-line-orange{
	position: relative;
	top:-30px;
	z-index:1;
}
.bottom-line{
	display: block;
	text-align: center;
	margin: 0 auto;
}
#advantages .icons{
	width:20%;
	padding: 15px;
	float: left;
}
#advantages .icons img{
	display: block;
	margin: 0 auto;
	padding-bottom: 10px;
}
.icons h5{
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
}
#advantages .icons h5 span{
	text-transform: lowercase;
	font-weight: lighter;
	display: block;

}
#advantages{
	padding-bottom: 25px;
}
#advantages .icons{
	padding-top: 25px;
}
/* ----------Whatodo----------------- */
#whattodo .steps{
	position: relative;
	width:90%;
	margin: 0 auto;
}
#whattodo .steps img{
	position: absolute;
}
#whattodo .steps-mod img {
    width: 45px;
    display: block;
    border-radius: 50%;
    height: 40px;
}
#whattodo .steps p{
	margin-left: 50px;
}
#whattodo .steps span{
	display: block;
}
#whattodo{
	padding-bottom: 40px;
}
#tips{
	background: #F1F1F1;
	padding-bottom: 40px;
}
#tips .container.wrapper{
	padding-top: 60px;
}
#tips .tips{
	position: relative;
	width:90%;
	margin: 0 auto;
}
#tips .tips img{
	position: absolute;
	top:10px;
	left:0;
}
#tips .tips p{
	margin-left: 50px;
	padding:10px;
}
#tips span{
	font-weight: bold;
}

/* -----------Price---------------- */
#price{
	background: #F1F1F1;
}
#price-left-block{
	position: relative;
}
#bg-girl2{
	z-index:1;
	position: relative;
	bottom:-110px;
	left:0;
}
#price button{
	width:300px;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 8px;
	color: #fff;
	position: absolute;
	right:0;
	top:57%;
	background: #F82E2E;
	border:none;
	-webkit-box-shadow: 0px 2px  3px 0 #FF7979;
	box-shadow: 0px 2px 3px 0 #FF7979;
	border-radius:3px;
}
#price button:hover{
	background: #EE0000;
}
#price .table-price li{
	font-size: 16px;
	height:auto;
	z-index:1;
	padding: 7px 5px;
	position: relative;
}
#price .start-price{
	font-size: 12px;
	position: absolute;
	right:10px;
}
#price .icon-avto{
	padding-left: 15px;
}
#price .start-price i{
	font-size: 20px;
	font-style: normal;
}
.price-txt{
	position: absolute;
	left:110px;
}
#price img.bottom-line{
	z-index:9;
	position: relative;
	top:30px;
}
#wrapper-price-head,#wrapper-price-head-2,#wrapper-price-head-3{
	position: relative;
	z-index:999;
	top:30px;
}
#price .table-price{
	z-index:1;
	margin-bottom: 0;
	padding-bottom: 0;
	position: relative;
}
#price .table-price li:first-child{
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
	text-align: right;
	height:80px;
	padding-right: 20px;
}
#price .table-price li:last-child{
}
.odd{
	background: #FF921A;
}
.even{
	background: #FFC08C;
}

#pre-type #wrapper-price-head, #pre-type #wrapper-price-head-2, #pre-type #wrapper-price-head-3{
    top: 0px;
}
#pre-type img.bottom-line{
	z-index:9;
	position: relative;
	top:0px;
    width: 67%;
    height: 35px;
}
.type-box {
    margin: 60px auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.type-box .type-it {
    width: 185px;
    text-align: center;
    margin: 0px 15px 20px;
}
.type-box .type-it h2 {
    font-size: 16px;
    margin: 10px auto;
}
.type-box .type-it>a {
    background: #f82e2e;
    color: #fff;
    width: 90px;
    display: block;
    padding: 5px 0px;
    border-radius: 5px;
    font-size: 14px;
    margin: 10px auto
}

/* time-calc */
#calc img.bottom-line{
	z-index:9;
	position: relative;
	top:30px;
    width: 55%;
}
#calc .container {
    padding: 75px 0 50px;
}
.calc-block {
    border: 4px solid #d6d6d6; 
    padding: 15px 10px 0;
}
.calc-block h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-left: 10px;
    position: relative;
    font-weight: bold;
}
.calc-block h4:before {
    position: absolute;
    content: "1";
    padding: 5px 10px;
    border-radius: 50%;
    background: #2c3e50;
    color: #fff;
    left: -40px;
    top: -5px;
}
.calc-block .city-calc h4 {
    display: inline-block;
    margin-right: 50px;
    margin-left: 20px;
} 
.calc-block .city-calc h4:before {
    content: "2";
}
.calc-block .city-calc h5 {
    font-size: 18px;
    color: #2c3e50;
    position: relative;
    padding: 0px 10px;
    background: #fff;
    display: inline-block;
    font-weight: bold;
}
.calc-block .city-calc h5:after {
/*
    position: absolute;
    content: "";
    height: 2px;
    width: 200px;
    background: #2c3e50;
    top: 11px;
    left: 100px;
*/
}
.calc-block .city-calc h5:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 20px;
    background: #2c3e50;
    top: 11px;
    left: -20px;
}
.select {
    padding-left: 50px;
}
.select-uslug {
    width: 180px;
    text-align: center;
    padding: 5px 0 5px;
    border: 1px solid #c0c9c9;
    border-radius: 5px;
    margin: 25px 0 10px;
}
.usl-img2 {
    display: none;
}
.select-uslug p {
    margin-top: 15px;
}
.select .checkbox {
  vertical-align: top;
  margin: 0 3px 0 0;
  width: 17px;
  height: 17px;
}
.select .checkbox + label {
  cursor: pointer;
    display: block;
}
.select .checkbox:not(checked) {
  position: absolute;
  opacity: 0;
}
.select .checkbox:not(checked) + label {
  position: relative;
  padding: 0 0 0 25px;
}
.select .checkbox:not(checked) + label:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background: #fff;
    border: 1px solid #d5d3d3;
}
.select .checkbox:checked + label:before {
  background: url(../img/icons/check.png) no-repeat center;
}
.select .but {
    background: #fff;
    color: #ea5947;
    box-shadow: none;
    border: 2px solid #ea5947;
    font-weight: bold;
    font-size: 24px;
    margin-top: 15px;
}
.city-calc p{
    color: #ea5947;
    font-weight: bold;
    margin-top: 10px;
}
#map1 {
    width: 100% !important;
    height: 280px !important;
    overflow: hidden !important;
}
.girl-ban {
    padding-left: 40px;
}
.girl-ban img {
    display: block;
    margin: 45px auto 0;
}
.but-block {
    text-align: center;
    background: #f9cd6d;
    padding: 35px 5px 10px 5px;
    margin-top: -16px;
}
.but-block .but {
    font-weight: bold;
    padding: 10px 35px;
}
#but-zvon {
    background: rgba(246,0,20,1);
    color: #fff;
    border: none;
}
#but-zvon:hover {
    background: rgb(255, 54, 70);
}
.but-block p {
    font-weight: bold;
    margin-top: 5px;
    font-size: 14px;
}
.but-block p span {
    text-transform: uppercase;
}
.range {
    margin-top: 25px;
    background: url(../img/range-bg.png) no-repeat center;
    background-size: contain;
}
.range img {
    position: relative;
/*    transition: all linear 3s;*/
    left: 2%;
    width: 90px;
    top: -20px;
}
.time {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    padding: 0px;
}
.time p {
    margin: 0;
}
.bot-but-calc {
    
}
.bot-but-calc div {
    text-align: center;
    padding: 15px 0;
    background: #f9cd6d;
/*    border: 2px solid #f9cd6d;*/
    margin-bottom: 10px;
}
.bot-but-calc a{
    display: inline-block;
    margin: 5px auto;
    background: rgba(246,0,20,1);
    color: #fff;
    border: none;
    padding: 8px 15px;
/*    width: 250px;*/
/*    border-radius: 5px;*/
    font-weight: bold;
}
/* ----------About-us---------------- */
#about-us{
	position: relative;
	z-index:999;
	background: #FFC375;
}
#about-us .about-txt-block{
	display: block;
	margin: 30px auto 60px auto;
	width:90%;
	background: #FFF3E4;
	padding: 20px;
	position: relative;
}
#about-us .about-txt-block img {
    width: 400px;
    float: right;
    margin-left: 15px;
}
#about-us p{
	padding: 10px;
}
#about-us h5{
	width:380px;
	position: absolute;
	top:-44px;
	left:0;
	padding: 8px;
	padding-left: 30px;
	background: #FF921A;
	font-size: 16px;
	color: #fff;
}
#about-us h5:after{
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    border-top: 34px solid transparent;
    border-left: 50px solid #FF921A;
}
/* ------------Slider------------------ */
#slider{
	background: #F1F1F1;
	padding-bottom: 50px;
}
#slider .item img {
    height: 300px;
    width: 100%;
}
#slider-itself{
	margin: 50px auto 0 auto;
/*	width:90%;*/
/*	max-width:800px;*/
}
#slider a{
	top:45%;
	font-size: 30px;
}
.carousel-control.right, .carousel-control.left {
  background-image: none;
  opacity: 1;
    width: 5%;
}
#slider iframe {
    width: 100%;
    margin: 0px auto;
    border: 1px solid #ccc;
    height: 300px;
    border-radius: 0;
}
/*------------Calculator----------------*/
#wrapper-calkulator-head{
	background: #FF921A;
}
#calculator select{
	width:260px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('../img/select.png');
	background-repeat: no-repeat;
	background-position: center right 0px;
	padding: 2px;
	background-size: 30px;
	border-radius:3px;
	border:none;
	border-top:1px solid #acacac;
	border-left:1px solid #acacac;
	-webkit-box-shadow: 1px 1px 1px 0px #D2D2D0;
	box-shadow: 1px 1px 1px 0px #D2D2D0;
}
#pictures{
	width:70%;
}
#tipevaki{
	width:80%;
}
#formanip{
	display: block;
}
#calk-block1{
	width:60%;
	padding-top: 40px;
	padding-bottom: 40px;
	margin: 0 auto;
}
#calk-block2 h4{
	display: block;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
}
#calculator label{
	display: block;
	font-size: 16px;
	text-transform: uppercase;
}
#calk-block1 label{
	position: absolute;
	top:20px;
	left:60px;
}
#calk-block2 .radio-item{
	display: inline-block;
}
#map{
	height:380px;
	width:460px;
	padding: 0;
	border:3px solid #fff;
	border-radius:3px;
}
#formanip{
	text-align: right;
	padding-right: 70px;
}
#map-block{
	padding-left: 70px;
}
#map-block h4{
	padding-bottom: 26px;
}
#formanip .input_group{
	padding-top: 15px;
}
#calk-block2{
	padding: 40px 0 20px 0;
	background: #FFEFBE;
	width:100%;
}
#calk-block2 .row{
	margin: 0;
}
.calk_box .row{
	margin: 0 !important;
}
#cars-form{
	position: relative;
	text-align: center;
	padding-top: 60px;
}
#evakuator-form{
	position: relative;
	text-align: center;
	padding-top: 60px;
}
#calk-block1 .row{
	padding-top: 20px;
	padding-bottom: 20px;
}
#calculator .row{
	margin: 0;
}
#calk-block1 .transport_img_box{
	text-align: center;
}
#calk-block1 .transport_img_box2{
	text-align: right;
	padding-right:0px;
}
#chevron_down1{
	display: block;
	margin: 0 auto 20px auto;
}
#calculator{
	background: #EFEFEF;
}
#wrapper-calkulator{
	background: #EFEFEF;
	width:100%;
	padding: 0;
}
/* ------Checkbox-custom--------- */
.checkbox-calk{
  vertical-align: top;
  margin: 0 3px 0 0;
  width: 17px;
  height: 17px;
}
.checkbox-calk + label {
  cursor: pointer;
}
.checkbox-calk:not(checked) {
	display: none;
}
.checkbox-calk:not(checked) + label {
  position: relative;  
  padding: 0 0 0 60px;  
}
/* Оформление первой части чекбокса в выключенном состоянии (фон). */
.checkbox-calk:not(checked) + label:before {
  content: '';
  position: absolute;
  top: 10px;
  right: 0;
  width: 50px;
  height: 26px;
  border-radius: 3px;
  background: #CDD1DA;
  z-index:1000;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.2);
}
/* Оформление второй части чекбокса в выключенном состоянии (переключатель). */
.checkbox-calk:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 12px;
  right: 26px;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: #FFF;
  box-shadow: 0 2px 5px rgba(0,0,0,.3);
  transition: all .2s;
  z-index:1000;  
}
.checkbox-calk:checked + label:before {
  background: #FF921A;
}
.checkbox-calk:checked + label:after {
  right: 2px;
}
.checkbox-calk:focus + label:before {
  box-shadow: 0 0 0 3px rgba(255,255,0,.5);
}
/* ---radio-custom-- */
.radio {
  vertical-align: top;
  width: 17px;
  height: 17px;
  margin: 0 3px 0 0;
}
.radio + label {
  cursor: pointer;
}
.radio:not(checked) {
  position: absolute;
  opacity: 0;
}
.radio:not(checked) + label {
  position: relative;
  padding: 0 0 0 35px;
}
.radio:not(checked) + label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 6px;
  width: 22px;
  height: 22px;
  border: 1px solid #999;
  border-radius: 100%;
  background: #FFF;
}
.radio:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 9px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #FF921A;
  opacity: 0;
  transition: all .2s;
}
.radio:checked + label:after {
  opacity: 1;
}
.radio:focus + label:before {
	border:none;
   box-shadow:0 0 0 2px rgba(255,146,26,.8);
}
#calk-block2 label{
	display: block;
}
#map-block {
    position: relative;
}
#map-block input{
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
}
#map-block #cp_km{
	font-size: 18px;
	border:none;
	font-weight: bold;
	background: #FFEFBE;
	border-bottom:2px solid #4C4C4C;
	width:35%;
}
#result-map{
/*
	float: right;
	padding-top: 15px;
	padding-right: 55px;
	display: block;
	margin: 0 auto;
*/
    position: absolute;
    top: 55%;
    left: -10%;
}
#chevron_down2{
	display: block;
	margin: 0 auto;
}
#calk-block3 h4{
	padding-bottom: 30px;
}
#calk-block3 .col-md-6{
	padding: 0;
}
#calk-block3 label{
	font-size: 12px;
	font-weight: 300;
	padding-right:60px;
	padding-top: 3px;
}
#dead_time{
	border:none;
	background: #EFEFEF;
	border-bottom: 2px solid #333333;
	width:10%;
	color: #333333;
	text-align: center;
	font-weight: 600;
	font-size: 18px;	
}
#sale-label{
	width:100%;
}
.red-txt{
	font-size: 16px;
	font-weight: 600;
	color: red;
}
#calk-block3 .item-block3{
	position: relative;
	margin: 0;
	padding-bottom: 20px;
}
#calk-block3{
	text-align: right;
	padding-top: 40px;
	padding-bottom: 40px;
}
#calk-block3 #bottom-col-6{
	padding-right: 70px;
}
#calk-block3 h4{
	display: block;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
}
#calk-block3 .row{
	margin: 0;
}
#submit-btn{
	display: block;
}
#send-form-block input, #send-form-block textarea,
#send-form-block label, #send-form-block #price-total{
	display: block;
}
#calk-block3 #send-form-block{
	text-align: left;
	padding-left: 70px;
}
#phone{
	padding: 6px;
	width:235px;
	border:2px solid #E4E4E4;
	border-radius:4px;
	color: #667;
	font-size: 16px;
}
#prim{
	border:2px solid #E4E4E4;
	border-radius:4px;
	width:300px;
	padding: 10px;
	color: #667;
	font-size: 16px;	
}
#evacuator_form span{
	color: #667;
}
#price-total{
	text-align: center;
	padding: 5px 5px 12px 5px;
	width:140px;
	background: #FF921A;
	color: #fff;
}
#send-form-block h4{
	margin-bottom: 0;
	padding-bottom: 25px;
}
#evacuator_form{
	padding-top: 20px;
}
#result{
	font-size: 26px;
	border-bottom: 1px solid #fff;
}
/* -------Checkbox-bottom------------- */
.checkbox-bottom{
  vertical-align: top;
  margin: 0 3px 0 0;
  width: 17px;
  height: 17px;
}
.checkbox-bottom + label {
  cursor: pointer;
}
.checkbox-bottom:not(checked) {
	display: none;
}
.checkbox-bottom:not(checked) + label {
  position: relative;  
  padding: 0 0 0 60px;  
}
/* Оформление первой части чекбокса в выключенном состоянии (фон). */
.checkbox-bottom:not(checked) + label:before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 26px;
  border-radius: 3px;
  background: #CDD1DA;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.2);
}
/* Оформление второй части чекбокса в выключенном состоянии (переключатель). */
.checkbox-bottom:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 2px;
  right: 26px;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: #FFF;
  box-shadow: 0 2px 5px rgba(0,0,0,.3);
  transition: all .2s;  
}
.checkbox-bottom:checked + label:before {
  background: #FF921A;
}
.checkbox-bottom:checked + label:after {
  right: 2px;
}
.checkbox-bottom:focus + label:before {
  box-shadow: 0 0 0 3px rgba(255,255,0,.5);
}
/* ----------Checkbox-bottom2------------------- */
.checkbox-bottom2{
  vertical-align: top;
  margin: 0 3px 0 0;
  width: 17px;
  height: 17px;
}
.checkbox-bottom2 + label {
  cursor: pointer;
}
.checkbox-bottom2:not(checked) {
	display: none;
}
.checkbox-bottom2:not(checked) + label {
  position: relative;  
  padding: 0 0 0 60px;  
}
/* Оформление первой части чекбокса в выключенном состоянии (фон). */
.checkbox-bottom2:not(checked) + label:before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 26px;
  border-radius: 3px;
  background: #CDD1DA;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.2);
}
/* Оформление второй части чекбокса в выключенном состоянии (переключатель). */
.checkbox-bottom2:not(checked) + label:after {
  content: '';
  position: absolute;
  top: 2px;
  right: 26px;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: #FFF;
  box-shadow: 0 2px 5px rgba(0,0,0,.3);
  transition: all .2s;  
}
.checkbox-bottom2:checked + label:before {
  background: #FF921A;
}
.checkbox-bottom2:checked + label:after {
  right: 2px;
}
.checkbox-bottom2:focus + label:before {
  box-shadow: 0 0 0 3px rgba(255,255,0,.5);
}
#submit-btn{
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 8px;
	color: #fff;
	background: #F82E2E;
	border:none;
	-webkit-box-shadow: 0px 2px  3px 0 #FF7979;
	box-shadow: 0px 2px 3px 0 #FF7979;
	border-radius:3px;
	margin-top: 20px;
	margin-bottom: 30px;
}
#submit-btn:hover{
	background: #EE0000;
}

#otzyv{
	background: #F1F1F1;
	padding-bottom: 30px;
    padding-top: 0px;
}
#otzyv .otstup {
    margin-top: 0;
}
#otzyv .carousel-inner {
    padding: 0px 0px;
}
#otzyv .otz-block {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 35px;
    border: 5px solid #FF921A;
}
#otzyv .item img {
    height: 260px;
    width: 30%;
    margin-right: 20px;
}
#slider-otzyv{
	margin: 30px auto 0 auto;
}
#slider-otzyv .row>p {
    margin-bottom: 15px;
    font-size: 15px;
    text-align: center;
}
#otzyv .text-otzyv {
    font-size: 18px;
}
#otzyv .text-otzyv span {
    display: block;
    margin: 10px 0;
}
#otzyv .text-otzyv span:nth-of-type(1) {
    font-weight: bold;
    color: #7db936;
    font-size: 22px;
}
#otzyv .text-otzyv span:nth-of-type(2) {
    font-weight: bold;
    font-size: 20px;
}
#otzyv a{
	top:45%;
	font-size: 30px;
}
#otzyv .carousel-control.right {
    right: 0px;
}
.carousel-control.right, .carousel-control.left {
  background-image: none;
  opacity: 1;
    width: 5%;
}
/* --------------Contacts---------------------- */
#contacts{
	background: #636363;
	padding-bottom: 30px;
}
#contacts .container.wrapper{
	padding-top: 40px;
}
#trall .container.wrapper{
	padding-top: 30px;
}
#slider.gruzovoi .container.wrapper{
	padding-top: 30px;
}
#bottom-map{
	width:100%;
}
#bottom-txt{
	width:80%;
	margin: 0 auto;
}
#contacts h5{
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}
#contacts p{
	color: #fff;
	font-size: 16px;
	padding-top: 20px;
}
#bottom-btn{
	width:240px;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 8px;
	color: #fff;
	background: #F82E2E;
	border:none;
	border-radius:3px;
	margin-top: 20px;
	margin-bottom: 10px;
}
#bottom-btn:hover, #contacts a.bot-a:hover{
	background: #EE0000;
}
#contacts a.bot-a {
    width:240px;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 8px;
	color: #fff;
	background: #F82E2E;
	border:none;
	border-radius:3px;
	margin-top: 0px;
	margin-bottom: 5px;
    display: block;
    text-align: center
}
.skydka {
    background: #ededed;
    color: #292828;
    padding: 10px 20px 10px;
    margin-top: 10px
}
.skydka h4 {
    margin: 0 0 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.skydka h4+p {
    color: #292828 !important;
    margin: 0;
    padding-top: 0 !important;
}
.uslug {
    padding-left: 0px;
}
#contacts .uslug p {
    margin-bottom: 10px;
    padding: 0;
    font-size: 15px
}
.uslug p:first-child {
    margin-bottom: 15px
}
.uslug p a {
    color: #fff;
}
.uslug p a:hover {
    text-decoration: underline;
}

.payment {
    padding: 20px 0 10px;
}
.payment h3 {
    text-align: center;
    margin: 0;
}
.payment h3 {
    width: 450px;
    background: url(/img/payment.png) center/100% 100% no-repeat;
    padding: 50px 0px 50px 60px;
    text-align: center;
    margin: 0 auto;
    font-weight: 600;
}
.payment-bl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 80%;
    margin: 40px auto 0;
}
.payment-bl div {
    width: 28%;
    position: relative;
}
.payment-bl img {
    width: 28%;
    display: block;
    margin-bottom: 30px
}
.payment-bl div img {
    width: 100%;
    height: auto;
}
.payment-bl div p {
    position: absolute;
    bottom: 35px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
}
/* -----------Cities------------------- */
#cities-head-txt{
	margin: 0;
	font-size: 26px;
	text-transform: uppercase;
	width:100%;
	display: block;
	text-align: center;
	color: #fff;
	position: relative;
	top: 13px;
}
#cities .container{
	padding-top: 30px;
}
#cities .first{
	text-align: center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #FF921A;
}
#cities p:hover a{
	color: #FF921A;
}
#cities p:hover{
	cursor: pointer;
}
#cities a{
	color: #fff;
}
#copy:hover{
	color: #3E3C66;
}
#copy{
	cursor: pointer;
	margin-top: 30px;
	padding: 10px;
	color: #fff;
	background: #FF921A;
	text-align: center;
}
#cities{
	background: #636363;
}





#modal-container, #agreement{
    position: fixed;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    display: none; 
}
form label.label-control {
    position: relative;
    margin-top: 5px;
    width: 100%;
    padding-left: 10px;
    top: 10px;
/*    text-align: center;*/
}
form input[type="checkbox"] {
    width: 1px  !important;
    height: 1px !important;
    position: relative;
    top: 1px;
    left: 7px;
    z-index: -1;
}
form label .chekc-text {
    margin-top: 0px;
    padding-top: 0px;
    display: inline-block;
    position: relative;
    top: -4px;
    font-size: 9px;
    font-weight: 600;
}
.chekc-text {
    top: 5px;
    width: 90%;
/*    float: right;*/
}
form label .checked-style {
    width: 15px;
    display: inline-block;
    height: 15px;
    background: #ffffff;
    margin-right: 0px;
    border-radius: 3px;
    padding: 0px;
    margin-top: 2px;
    border: 1px solid;
    
/*    float: left;*/
}
form input[type=checkbox]:checked ~ .checked-style {
    background: url(../img/check.png) no-repeat;
}
#agreement #agree-text {
    width: 400px;
    margin: 70px auto 0;
    z-index: 2;
    background: #fff;
    padding: 10px 0px;
}
#agreement  .text-agree {
    height: 210px;
    width: 100%;
    overflow-y: scroll;
    margin: 20px auto 10px;
    text-align: justify;
    padding: 10px;
    border: 1px solid #000;
}
#agreement  .text-agree h4 {
    font-size: 14px;
}
#agreement  .text-agree ul {
    padding-left: 10px;
}
#agreement  button{
    display: inline-block;
    font-size: 20px;
    padding: 5px 20px;
    margin: 10px;
}
#agreement button#agree {
    background: #77ff5e;
    border: 0px;
}
#agreement button#not-agree {
    background: #bababa;
    border: 0px;
}


/********** Contact ***********/
.contact-block {
    text-align: center;
    font-size: 19px;
    padding: 0px 0 30px
}
.contact-block p {
    margin: 10px auto;
}
.contact-block a{
    font-weight: bold;
    font-size: 24px;
    color: rgba(246,0,20,1);
}
.operator {
    padding: 10px 0 0px;
    background: #ffd600;
    border: 5px solid #ff2d2d;
    margin: 20px auto 10px;
}
.operator p {
    margin-bottom: 10px;
}
.post-mail {
    display: block;
    margin: 0px auto 0;
    color: #0013a5;
    font-weight: bold;
}
.consultant img {
    float: left;
    margin-right: 20px;
}
.consultant p {
    margin: 5px auto;
    text-align: left;
    font-size: 16px;
}
.consultant span {
    display: block;
    text-align: left;
    font-size: 16px;
    color: #de0000;
    font-weight: bold;
}
.adress-block {
    background: #ffffff;
    border: 5px solid #ffd600;
/*    box-shadow: 0px 0px 0px 3px #e3e3e3;*/
    padding: 10px 15px 10px;
    text-align: center;
    margin-bottom: 20px;
}
.adress-block h3 {
    display: inline-block;
    margin: 10px auto;
    padding: 10px 35px;
    border: 2px solid #be0000;
    font-size: 20px;
    background: #f2f2f2;
}
.adress-block h4 {
    margin: 10px 0 15px;
    padding: 10px 0 12px;
    border-bottom: 2px dashed #ccc;
}
.adress-block h4 a {
    color: #0031ff;
}
.adress-block h4 a:hover {
    text-decoration: underline;
}
.adress-item {
    margin-top: 20px;
    margin-bottom: 15px;
}
.img-block-adr1, .img-block-adr2, .img-block-adr3{
    text-align: center;
}
.img-block-adr1 img, .img-block-adr2 img, .img-block-adr3 img{
    width: 100%;
    border: 1px solid #d30000;
    box-shadow: 0px 0px 5px 1px #ffd600;
    height: 230px;
}
.img-block-adr3{
    
}
.adress-item iframe {
    width: 100%;
    border: 1px solid #d30000;
    box-shadow: 0px 0px 5px 1px #ffd600;
    height: 230px;
}
.contact {
    padding-bottom: 20px
}
.contact h5{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
}
.contact p {
    font-size: 17px;
}
.contact p span {
    font-size: 22px;
    display: block;
    padding-top: 20px;
    padding-bottom: 0px;
    border-top: 2px solid #FF921A;
}
.contact button {
    width: 100%;
    background: #FF921A;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    padding: 8px;
    font-size: 18px;
    font-weight: 600
}










/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
#logo{
	width:100px;
	left:-20px;
}
#header>.container.wrapper{
	background: url(../img/bg-wrapper-head-desktop.png)no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	height:550px;
}
#header{
	height:575px;
} 
#text-header-first{
	top:-33px;
	font-size: 18px;
	width:50%;
}
#text-header-first h1.large-h1{
	font-size: 18px;	
}
#text-header-first h1{
	font-size: 18px;	
}
#text-header-first h1 .small{
	font-size: 18px;	
}
#text-header-second{
	top:-15px;
	font-size: 13px;
	width:50%;
}
#text-header-third{
	top:4px;
	font-size: 13px;
	width:50%;
}
#phone-head img{
	display: inline-block;
	width:35px;
}
#phone-head{
	font-size: 22px;
	left:0;
	top:-20px;
	text-align: center;
	height:49px;
	display: block;
	padding: 0;
	padding-top: 5px;
	border:2px solid #FFF1BE;
	z-index:1;
}
#map-block{
	padding-left: 25px;
}
#formanip{
	padding-right: 25px;
}


}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
#text-header-first h1{
	font-size: 16px;	
}
#text-header-first h1.large-h1{
	font-size: 16px;	
}	
#text-header-first h1 .small{
	font-size: 14px;	
}
#price #bg-girl2{
	bottom:0;
	left:0;
}
#price .wrapper.container{
	padding-top: 50px;
}
#price button{
	top:19%;
	left:28%;
}
#calculator #calk-block1 label {
	position: relative;
	text-align: center;
	top:-10px;
	left:10px;
}
#formanip{
	text-align: center;
}
#map-block{
	padding-top: 50px;
	text-align: center;
}
#header .container{
	width:94%;
}
#phone-head{
	position: absolute;
	border:none;
	text-align: right;
	top:130px;
	right:10%;
}
#header>.container.wrapper{
	height:500px;
}
#header{
	height:525px;
} 
#text-header-first{
	top:-13px;
	left:13%;
	font-size: 16px;
	width:80%;
}
#text-header-second{
	top:0px;
	left:13%;
	font-size: 11px;
	width:80%;
}
#text-header-third{
	top:18px;
	left:13%;
	font-size: 11px;
	width:80%;
}
.checkbox-calk:not(checked) + label:before {
	right:30px;
}
.checkbox-calk:not(checked) + label::after{
	right:56px;
}
.checkbox-calk:checked + label::after{
	right:32px;
}
#blocked-drive{
	width:5%;
	margin: 0 auto;
}
#map-block{
	padding-left: 25px;
	width:100%;
	text-align: center;
	padding-bottom: 20px;
}
#map{
	margin: 0 auto;
}
#result-map{
	width:90%;
	margin: 0 auto;
}
#calk-block3{
	text-align: center;
	width:100%;
}
#calk-block3 #bottom-col-6{
	padding:20px;
}
#calk-block3 h4{
	margin: 0 auto;
	width:100%;
}
#calk-block3 .item-block3{
	padding-right: 50px;
}
#calk-block3 #send-form-block{
	padding: 20px;
	width:100%;
	margin: 0 auto;
	text-align: center;
}
#send-form-block input, 
#send-form-block textarea, 
#send-form-block #price-total{
	margin: 0 auto;
	width:50%;
}
#send-form-block #submit-btn{
	margin-left:auto;
	margin-right:auto;
	width:50%;
	margin-bottom: 10px;
}
#calculator .transport_img_box{
	margin-top: 20px;
}
#calculator .transport_img_box2{
	margin-top: 20px;
}

#contacts{
	padding-bottom: 30px;
}
#contacts .container.wrapper{
	padding-top: 40px;
}
#contacts #bottom-txt{
	width:33%;
	margin: 0 auto;
}
#contacts #bottom-txt p{
	font-size: 14px;
}
#bottom-btn{
	width:240px;
	display: block;
	font-size: 18px;
 	margin-top: 20px;
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
}
#bottom-map{
	width:65%;
	margin: 0 auto;
} 






}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    #mobile-bar{
	display: block;
	position: fixed;
	top:6px;
    left:15px;
	z-index:2222;
}	
#header .navbar li.first::after{
	display: none;
}
#mobile-nav{
	display:none;
	position: fixed;
	width:100%;
	top:50px;
	right:0;
	z-index:1111;
}
#mobile-nav li a{
	border-left: none;
}
#mobile-nav li{
	padding-left: 20%;
}
#mobile-nav li:hover{
	background: #159a21;
}
#mobile-nav li:hover a{
	background: #159a21;
	color: #FFB800;
}

    #mobile-bar b {
        font-size: 22px;
        margin-left: 20px;
        position: relative;
        top: -8px;
        font-family:'Open Sans', sans-serif;
        font-weight: 600
    }
.phone-mobi a {
    color: #fff;
}
#header nav.navbar{
	margin-bottom: 0px;
}
    #about-us .about-txt-block img {
        float: none;
        width: 90%;
        margin: 0 auto;
        display: block;
    }
    form label.label-control {
    top: 2px;
}
    #agreement #agree-text {
    width: 95%;
    margin: 70px auto 0;
}
    #agreement  button{
    font-size: 16px;
    padding: 5px 15px;
    margin: 4px;
}
#text-header-first h1{
	font-size: 23px;	
}
#text-header-first h1.large-h1{
	font-size: 23px;	
}
#text-header-first h1 .small{
	font-size: 20px;	
}
#fixed-menu{
	display: none;
}
#wrapper-advantages-head{
	padding: 10px;
	height:52px;
}
#wrapper-advantages-head h2{
	top:0;
	font-size: 24px;
} 
#advantages .bottom-line{
	display: none;
} 
#wrapper-whattodo-head2{
	padding: 10px;
	height:52px;
}
#wrapper-whattodo-head2 button{
	top:80px;
}
#wrapper-whattodo-head3{
	padding: 10px;
	height:52px;
}
#wrapper-whattodo-head3 h2{
	top:0;
	font-size: 24px;
}
#whattodo .container.wrapper{
	padding-top: 50px;
}
#whattodo .bottom-line{
	display: none;
}
#wrapper-tips-head{
	padding: 10px;
	height:52px;
}
#wrapper-tips-head h2{
	top:0;
	font-size: 24px;
}
#tips .bottom-line{
	display: none;
}
#wrapper-price-head,#wrapper-price-head-2,#wrapper-price-head-3{
	padding: 10px;
	height:52px;
}
#wrapper-price-head h2,#wrapper-price-head-2 h2,#wrapper-price-head-3 h2{
	top:0;
	font-size: 24px;
}
#price .bottom-line{
	display: none;
}
#wrapper-about-us-head{
	padding: 10px;
	height:52px;
}
#wrapper-about-us-head h2{
	top:0;
	font-size: 24px;
}
#about-us .bottom-line{
	display: none;
}
#wrapper-slider-head{
	padding: 10px;
	height:52px;
}
#wrapper-slider-head h2{
	top:0;
	font-size: 24px;
}
#slider .bottom-line{
	display: none;
}
#wrapper-calkulator-head{
	padding: 10px;
	height:52px;
}
#wrapper-calkulator-head h2{
	top:0;
	font-size: 24px;
}
#calculator .bottom-line{
	display: none;
}
#wrapper-contacts-head{
	padding: 10px;
	height:52px;
}
#wrapper-trall-head{
	padding: 10px;
	height:52px;
}
#wrapper-contacts-head h2{
	top:0;
	font-size: 24px;
}
#wrapper-trall-head h2{
	top:0;
	font-size: 24px;
}
#contacts .bottom-line{
	display: none;
}
#trall .bottom-line{
	display: none;
}
#wrapper-cities-head{
	padding: 10px;
	height:52px;
}
#wrapper-cities-head h2{
	top:0;
	font-size: 24px;
}
#cities .bottom-line{
	display: none;
}
#send-form-block input, 
#send-form-block textarea{
	margin: 0 auto;
	width:60%;
}
#send-form-block #submit-btn{
	width:60%;
}
#send-form-block #price-total{
	width:60%;
}
#logo{
	display: none;
}
#phone-head{
	display: none;
}
#header{
	background: url(../img/slider_bg2.jpg)no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
   height:500px;
}
#header>.container.wrapper{
	background: url(../img/bg-wrapper-head.png)no-repeat;
	-webkit-background-size: 0;
	background-size: 0;
}
#mobile-bar{
	display: block;
	position: fixed;
	top:2px;
	right:15px;
	z-index:2222;
}	
#header .navbar li.first::after{
	display: none;
}
#mobile-nav{
	display:none;
	position: fixed;
	width:110%;
	top:30px;
	right:0;
    left: 0;
	z-index:1111;
}
#mobile-nav li a{
	border-left: none;
}
#mobile-nav li{
	padding-left: 10%;
}
#mobile-nav li:hover{
	background: #F90F0F;
}
#mobile-nav li:hover a{
	background: #F90F0F;
	color: #FFB800;
}
#logo-mobile{
	width:45px;
	position: fixed;
	left:15px;
	top:5px;	
}
#logo-top-line span{
	position: relative;
	font-size: 22px;
	color: #fff;	
}
#logo-top-line{
	display: block;
	text-align: center;
	padding: 0px 50px;
	position: fixed;
	width:100%;
	min-height:40px;
	top:0;
	left:0;
	z-index:2222;
	background: #F82E2E;
}
#header nav.navbar{
	margin-bottom: 0px;
}
#text-header-first{
	border-radius:10px 10px 0 0;
	width:70%;
	top:0;
	font-weight: bold;
	font-size: 22px;
	padding: 20px;
	z-index:1;
	background: rgba(198,198,198,.8);
}
#text-header-second,
#text-header-third{
	z-index:1;
	margin: 0;
	width:70%;
	top:0;
	font-weight: bold;
	font-size: 18px;
	padding: 20px;
	background: rgba(198,198,198,.8);
}
#text-header-third{
	border-radius:0 0 10px 10px;
}	
#checkbox-toggle ~ label{
    padding-top: 15px;
    cursor: pointer;
}
input[type=checkbox]#checkbox-toggle:checked ~ #mobile-nav{
    display: block;
}
#advantages .icons{
	width:100%;
	margin: 0 auto;
}
#advantages #advantages-text-center{
	width:80%;
	display: block;
	margin: 0 auto;
	padding: 25px 5px;
}
#price button{
	left:34%;
	z-index:999;	
}
#price-right-block{
	padding: 0;
}
#price .table-price{
	padding-left: 0;
	margin: 0;
}
#price .table-price li:first-child{
	text-align: center;
	padding-top: 20px;
}
#price .table-price li:last-child{
	height:75px;
}
#price .start-price{
	right:10%;
}
#price .icon-avto{
	padding-left: 100px;
}
#price .price-txt{
	left:190px;
	font-size: 14px;
	top:10px;
}	
#cities p{
	padding-left: 40px;
}
#cities .col-md-2{
	padding-top: 30px;
}

    
      /********** Contact ***********/
.contact-block {
    font-size: 18px;
    padding: 40px 0 30px
}
.contact-block p {
    margin: 10px auto;
}
.operator {
    padding: 10px 0 0px;
    background: rgb(255, 176, 89);
    border: 3px solid #ffcece;
    box-shadow: 0px 0px 0px 3px #FF921A;
    margin: 20px auto 0px;
}
.operator p {
    margin-bottom: 10px;
}
.consultant img {
    float: none;
    margin-right: 0px;
}
.consultant p {
    margin: 5px auto;
    text-align: center;
}
.consultant span {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.adress-block h3 {
    font-size: 18px;
}
.adress-block h4 {
    margin: 10px 0;
}
.adress-block h4 a {
    color: #0031ff;
}
.adress-block h4 a:hover {
    text-decoration: underline;
}
.adress-item {
    margin-top: 15px;
    margin-bottom: 15px;
}
.adress-head {
    background: #f8f8f8;
    padding: 10px;
}
.adress-head p {
    position: relative;
    margin: 0;
    font-size: 15px;
}
.adress-cont p {
    position: relative;
    margin: 0;
    font-size: 15px;
}
.img-block-adr1{
    text-align: center;
    padding: 0px
}
    .img-block-adr2 {
        padding: 0;
    }
.img-block-adr3{
    text-align: center;
    padding: 0px
}
    .adress-cont img {
        width: 100%;
        margin: 10px auto;
    }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 690px) {
#price button{
	left:40%;
	width:250px;
	z-index:999;	
}
#contacts #bottom-txt{
	width:80%;
	margin: 0 auto;
}
#bottom-btn{
	width:240px;
	display: block;
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
}
#bottom-map{
	width:80%;
	margin: 0 auto;
} 
#map-block{
	padding-left: 10px;
}	
#map{
	width:400px;
	height:400px;
}

    #result-map{
    position: static;
}
.navbar li{
	-webkit-box-shadow: 0px 2px  3px 0 #FF7979;
	box-shadow: 0px 2px 3px 0 #FF7979;
	padding: 6px 0;
	background: #F82E2E;
}



		
		
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 620px) {
#price button{
	left:42%;
	width:250px;
	z-index:999;	
}
#contacts #bottom-txt{
	width:85%;
	margin: 0 auto;
}
#bottom-map{
	width:85%;
	overflow: hidden;
	margin: 0 auto;
} 
#header #mobile-nav{
	width:100%;
}
#wrapper-whattodo-head3{
	height:72px;
}
#wrapper-whattodo-head2 button{
	top:100px;
}
#wrapper-price-head,#wrapper-price-head-2,#wrapper-price-head-3{
	height:72px;
}
#wrapper-tips-head{
	height:72px;
}

#header{
	background: url(../img/slider_bg2.jpg)no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
   height:400px;
}
#text-header-first{
	margin-top: 30px;
}
#mobile-bar{
	display: block;
	position: fixed;
	top:10px;
	right:15px;
	z-index:2222;
}	
#mobile-nav{
	margin: 0;
	display:none;
	position: fixed;
	width:100%;
	top:80px;
	right:0;
	z-index:1111;
}
#mobile-nav li{
	padding-left: 21%;
}
#logo-mobile{
	width:45px;
	position: fixed;
	left:25px;
	top:7px;	
}
#logo-top-line span{
	font-size: 16px;
	color: #fff;
	text-align: left;
	display: block;
	padding-left: 10%;
}
#clock-icon{
 	padding: 6px;	
	font-size: 24px;		
}
#phone-mobile{
 	padding: 6px;
	font-size: 24px;
}
#header nav.navbar{
	margin-bottom: 0px;
}
#text-header-first{
	border-radius:10px 10px 0 0;
	width:80%;
	top:0;
	font-weight: bold;
	font-size: 18px;
	padding: 15px;
	z-index:1;
	background: rgba(198,198,198,.8);
}
#text-header-second,
#text-header-third{
	z-index:1;
	margin: 0;
	width:80%;
	top:0;
	font-weight: bold;
	font-size: 14px;
	padding: 15px;
	background: rgba(198,198,198,.8);
}
#text-header-third{
	border-radius:0 0 10px 10px;
}	
#checkbox-toggle ~ label{
    padding-top: 15px;
    cursor: pointer;
}
input[type=checkbox]#checkbox-toggle:checked ~ #mobile-nav{
    display: block;
}
#calculator #calk-block1 label {
    left: 5px;
    position: relative;
    top: -10px;
}

#price .start-price{
	right:5%;
}
#price .icon-avto{
	padding-left: 50px;
}
#price .price-txt{
	left:140px;
	font-size: 14px;
	top:10px;
}	
#price{
	overflow: hidden;
}
#header #mobile-nav{
	width:100%;
}
#mobile-bar{
	display: block;
	position: fixed;
	top:4px;
	left:15px;
	z-index:2222;
}	
#mobile-nav{
	margin: 0;
	display:none;
	position: fixed;
	width:100%;
	top:40px;
	right:0;
	z-index:1111;
}
#mobile-nav li{
	padding-left: 11%;
}
#logo-mobile{
	width:45px;
	position: fixed;
	left:65px;
	top:17px;	
}
#logo-top-line span{
	font-size: 16px;
	color: #fff;
	text-align: left;
	display: block;
	padding-left: 20%;
}
#clock-icon{
 	padding: 6px;	
	font-size: 24px;		
}
#phone-mobile{
 	padding: 6px;
	font-size: 24px;
}
#header nav.navbar{
	margin-bottom: 0px;
}
    #result-map{
    position: static;
}

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
#text-header-first h1{
	font-size: 20px;	
}
    #result-map{
    position: static;
/*
    top: 55%;
    left: -10%;
*/
}
#text-header-first h1 .small{
	font-size: 18px;	
}
#about-us h5{
	padding-left: 0;
	text-align: center;
}
#allrights h4{
	font-size: 16px;
}
#contact-form input{
	width:90%;
	font-size: 18px;
}
#modal-btn{
	width:90%;
    margin-top: 105px;
}
    form label .chekc-text {
        top: 2px;
    }
#scroll-to{
	display: none !important;	 
}
#rewrite{
	display: inline-block;
}
#recall{
	display: inline-block;
}
#slider a{
	top:35%;
}
#contact-form{
	 padding-top: 65px;
    width: 300px;
    height:380px;
}
#cities p{
	padding-left: 30%;
	font-size: 16px;
}
#cities p{
	padding-left: 0px;
	text-align: center;
}
#cities p.first{
	text-align: center;
	width:80%;
	margin: 15px auto;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
#cities .col-md-2{
	width:100%;
}
#price button{
	left:40%;
	font-size: 14px;
	z-index:999;	
	width:200px;
}
#price .price-txt{
	left:92px;
	font-size: 14px;
	top:10px;
}
#price #bg-girl2{
	left:-60px;
}

#price .icon-avto{
	padding-left: 12px;
}
#price .table-price{
	padding-left: 0;
	margin: 0;
}
#contacts #bottom-txt{
	width:100%;
	margin: 0 auto;
}
#bottom-map{
	width:100%;
	overflow: hidden;
	margin: 0 auto;
} 
#about-us h5::after{
	display: none;
}
#about-us h5{
	width:100%;
}
#wrapper-advantages-head{
	padding: 10px;
	height:52px;
}
#wrapper-advantages-head h2{
	top:0;
	font-size: 20px;
} 
#wrapper-whattodo-head2{
	padding: 10px;
	height:52px;
}
#wrapper-whattodo-head2 button{
	top:85px;
}
#wrapper-whattodo-head3{
	padding: 10px;
	height:63px;
}
#wrapper-whattodo-head3 h2{
	top:0;
	font-size: 20px;
}
#whattodo .container.wrapper{
	padding-top: 65px;
}
#wrapper-tips-head{
	padding: 10px;
	height:62px;
}
#wrapper-tips-head h2{
	top:0;
	font-size: 20px;
}
#wrapper-price-head,#wrapper-price-head-2,#wrapper-price-head-3{
	padding: 8px;
	height:82px;
}
#wrapper-price-head h2,#wrapper-price-head-2 h2,#wrapper-price-head-3 h2{
	top:0;
	font-size: 20px;
}
#wrapper-about-us-head{
	padding: 10px;
	height:52px;
}
#wrapper-about-us-head h2{
	top:0;
	font-size: 20px;
}
#wrapper-slider-head{
	padding: 10px;
	height:62px;
}
#wrapper-slider-head h2{
	top:0;
	font-size: 20px;
}
#wrapper-calkulator-head{
	padding: 10px;
	height:62px;
}
#wrapper-calkulator-head h2{
	top:0;
	font-size: 20px;
}
#wrapper-contacts-head{
	padding: 10px;
	height:52px;
}
#wrapper-trall-head{
	padding: 10px;
	height:52px;
}
#wrapper-trall-head{
	padding: 10px;
	height:52px;
}
#wrapper-tral-head h2{
	top:0;
	font-size: 20px;
}
#wrapper-contacts-head h2{
	top:0;
	font-size: 20px;
}
#wrapper-trall-head h2{
	top:0;
	font-size: 20px;
}
#wrapper-cities-head{
	padding: 10px;
	height:62px;
}
#wrapper-cities-head h2{
	top:0;
	font-size: 20px;
}
#send-form-block #submit-btn{
	font-size: 15px;
}
#calculator .item-block3{
	padding-right: 15px;
}



#calculator select{
	width:100%;
}
#calculator #calk-block1{
	width:80%;
}
#calculator #pictures{
	width:100%;
}
#calculator #tipevaki{
	width:100%;
}
#map-block{
	overflow: hidden;
	padding-left: 10px;
	width:100%;
	text-align: center;
	padding-bottom: 20px;
}
#map{
	height:420px;
	width:340px;
	margin: 0 auto;
}
#result-map{
	width:90%;
	margin: 0 auto;
}
#send-form-block input, 
#send-form-block textarea{
	margin: 0 auto;
	width:80%;
}
#send-form-block #submit-btn{
	width:80%;
}
#send-form-block #price-total{
	width:80%;
}
#logo-mobile{
	left:18px;
}
#header{
	background: url(../img/slider_bg2.jpg)no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
   height:620px;
}
#text-header-first{
	margin-top: 30px;
}
#text-header-first{
	width:100%;
	left:0;
	top:30px;	
	padding: 30px 15px;
	font-size: 20px;
}
#text-header-second,
#text-header-third{
	padding: 0 15px 30px 15px;
	width:100%;
	top:30px;	
	left:0;
	font-size: 16px;
}
#price button {
    font-size: 14px;
    left: 47%;
    top: 23%;
    width: 200px;
    z-index: 999;
}
#copy{
	padding: 7px;
}
/* time-calc */
#calc img.bottom-line{
	display: none;
}
#calc .container {
    padding: 45px 0 30px;
}
.calc-block {
    border: 4px solid #d6d6d6; 
    padding: 15px 10px 0;
}
.calc-block h4 {
    font-size: 15px;
    margin-right: 50px;
    margin-left: 20px;
}
    .calc-block h4:before {
    position: absolute;
    content: "1";
    padding: 5px 10px;
    border-radius: 50%;
    background: #2c3e50;
    color: #fff;
    left: -30px;
    top: -5px;
}
.calc-block .city-calc h4 {
    display: inline-block;
    margin-right: 50px;
    margin-left: 20px;
} 
.calc-block .city-calc h4:before {
    content: "2";
    left: -40px;
}
.calc-block .city-calc h5 {
    font-size: 18px;
    color: #2c3e50;
    position: relative;
    padding: 0px 10px;
    background: #fff;
    display: inline-block;
    font-weight: bold;
}
.calc-block .city-calc h5:after {
    display: none
}
.select {
    padding-left: 0px;
}
.select-uslug {
    width: auto;
}
.city-calc p{
    color: #ea5947;
    font-weight: bold;
    margin-top: 10px;
}
#map12 {
    width: 100%;
    height: 280px;
}
.girl-ban {
    padding-left: 15px;
}
.girl-ban img {
    display: block;
    margin: 15px auto 0;
}
.but-block {
    padding: 25px 5px 5px;
    margin-top: -16px;
}
.but-block p {
    font-weight: bold;
    margin-top: 5px;
    font-size: 14px;
}
.but-block p span {
    text-transform: uppercase;
}
.range {
    margin-top: 35px;
    background: url(../img/range-bg.png) no-repeat center;
    background-size: contain;
}
.range img {
    position: relative;
/*    transition: all linear 3s;*/
    left: 0%;
    width: 80px;
    top: -20px;
}
.time {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 0px;
}
.time p {
    margin: 0;
}
.bot-but-calc {
    
}
    .bot-but-calc div {
        text-align: center;
    padding: 15px 0;
    margin-bottom: 10px;
    margin-top: 10px;
    }
.bot-but-calc a{
    display: block;
    width: 60%;
    margin: 5px auto;
    border: none;
    font-size: 13px;
    padding: 7px 0px;
}
    
#otzyv .bottom-line{
	display: none;
}
    #otzyv #wrapper-slider-head {
        height: auto;
    }
#otzyv .otstup {
    margin-top: 0;
}
#otzyv .otz-block {
    display: block;
    padding: 20px 20px;
    border: 5px solid #FF921A;
    height: 630px;
}
#otzyv .item img {
    width: 90%;
    display: block;
    margin: 0 auto;
    height: auto;
}
#slider-otzyv{
	margin: 30px auto 0 auto;
}
#slider-otzyv .row>p {
    margin-bottom: 15px;
    font-size: 15px;
    text-align: center;
}
#otzyv .text-otzyv {
    font-size: 15px;
    margin-top: 10px;
}
#otzyv .text-otzyv span {
    display: block;
    margin: 5px 0;
}
#otzyv .text-otzyv span:nth-of-type(1) {
    font-weight: bold;
    color: #7db936;
    font-size: 20px;
}
#otzyv .text-otzyv span:nth-of-type(2) {
    font-weight: bold;
    font-size: 17px;
}
#otzyv a{
	top:45%;
	font-size: 30px;
}
#otzyv .carousel-control.right {
    right: 5px;
}
#otzyv .carousel-control.left {
    left: 5px;
}
.carousel-control.right, .carousel-control.left {
  background-image: none;
  opacity: 1;
    width: 5%;
}
#slider{
	background: #F1F1F1;
	padding-bottom: 20px;
}
#slider .item img {
    height: auto;
    margin: 15px auto;
    width: 100%;
    height: auto;
}
#slider-itself{
	margin: 30px auto 0 auto;
}
#slider a{
	top:45%;
	font-size: 30px;
}
.carousel-control.right, .carousel-control.left {
  background-image: none;
  opacity: 1;
    width: 5%;
}
#slider iframe {
    width: 100%;
    margin: 0px auto;
    border: 1px solid #ccc;
    height: auto;
    border-radius: 0;
}
    .payment {
    padding: 20px 0 10px;
}
.payment h3 {
    width: 350px;
    background: url(/img/payment.png) center/100% 100% no-repeat;
    padding: 35px 0px 35px 50px;
    font-weight: 600;
    font-size: 20px
}
.payment-bl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 90%;
    margin: 20px auto 0;
}
.payment-bl img {
    width: 49%;
    display: block;
    margin-bottom: 30px
}
    .payment-bl div {
    width: 49%;
    position: relative;
}
    .payment-bl div p {
    position: absolute;
    bottom: 25px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
        font-size: 12px;
}
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 380px) {
#map{
	width:240px;
	height:240px;
}
 
#text-header-first{
	margin-top: 0px;
}
.radio:not(checked) + label {
    padding: 0 0 0 30px;
    position: relative;
}
#price .price-txt{
	left:60px;
	font-size: 12px;
	top:10px;
}
#price .icon-avto{
	width:42px;
}
#price .start-price{
	right:5px;
}
#price .start-price i{
	font-size: 16px;
}
#price #bg-girl2{
	left:-60px;
}
#price button{
	left:35%;
	font-size: 14px;
	z-index:999;	
	width:190px;
}





}

#popup h3 {
    font-size: 30px;
    margin: 0 auto 10px;
    font-weight: bold;
    color: #000;
}
#popup .modal-dialog p {
    font-size: 18px;
    text-align: center;
}
#popup .modal-dialog input {
    margin: 20px auto;
    padding: 10px;
    height: 50px;
    width: 280px;
    border: 2px solid #ffd600;
    font-size: 18px;
    color: #000;
    outline: none
}
#popup .modal-dialog .but, #popup .get-opros .but{
    margin-bottom: 10px;
    background: #99ff99;
}
.modal .close {
    opacity: 1;
    position: absolute;
    top: 5px;
    right: 5px;
}
#thx4 .modal-dialog {
    width: 300px;
    border: none;
    margin: 50px auto 0;
}
#thx4 .modal-body {
    background: #fff;
}
#thx4 .modal-dialog p {
    font-size: 20px;
    font-weight: bold;
    margin: 20px auto;
}
#popup .modal-dialog  {
   width: 520px;
}
#popup .modal-body {
    padding: 40px 30px
}
#popup h3 {
    font-size: 24px;
    display: flex;
    align-items: center;
    margin: 0 0 20px;
    text-transform: uppercase;
    justify-content: center;
}
#popup h3 img {
    margin-right: 10px;
}
#popup h3+p>a {
    font-size: 32px;
    color: #e30002;
    border-bottom: 1px solid #feff29;
    padding-bottom: 10px;
    font-weight: bold;
}
#popup .head-p {
    font-size: 30px;
    margin: 25px 0 15px
}
.opros,#popup .get-opros .but {
    width: 190px;
    margin: 10px;
    color: #e30002;
    border: 1px solid #99ff99;
	font-weight: 600;
	height: 40px;
}
.opros:hover {
    background: #e30002;
    color: #fff;
}

.opros-block, .opros-form {
    padding: 0px 0 0;
    display: none;
}
#popup .opros-block>p {
    text-align: left;
    margin-bottom: 25px;
    font-size: 30px;
}
.get-opros {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#popup .label-control {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0;
    display: none
}
.label-control+label {
    position: relative;
    font-size: 14px;
    font-weight: normal;
    padding-left: 35px;
    width: auto;
    margin-bottom: 10px;
    text-align: left;
    cursor: pointer;
    width: 50%
}
.label-control+label a {
    text-decoration: underline
}
.label-control+label:before {
    position: absolute;
    content: '';
    width: 22px;
    height: 22px;
    left: 0px;
    top: 5px;
    cursor: pointer;
    border: 1px solid #e30002
}
.label-control:checked+label:before {
    background: #fff url(../img/icon/check.png) center no-repeat;;
}
/* ---radio-custom-- */
.radio-opros {
    vertical-align: top;
    width: 17px;
    height: 17px;
    margin: 0 3px 0 0;
}

.radio-opros + label {
    cursor: pointer;
    margin-bottom: 25px
}

.radio-opros:not(checked) {
    position: absolute;
    opacity: 0;
}

.radio-opros + label {
    position: relative;
    padding-left: 70px;
    display: flex;
    align-items: center;
    color: #565555;
    font-size: 20px;
    font-weight: normal;
    padding-top: 5px
}

.radio-opros:not(checked) + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 5px;
    width: 38px;
    height: 38px;
    background: #FFF;
    box-shadow: 0px 0px 5px 0px #afafaf
}

.radio-opros:checked + label:before {
    background: #ff0000;
    box-shadow: 0px 0px 5px 0px #afafaf, inset 0px 0px 0px 10px #fff
}

.extr {
    width: auto;
    position: fixed;
    top: 30%;
    right: 1%;
    background: #4ddd22;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
	z-index: 9999;
}
.extr-close {
    position: absolute;
    top: -30px;
    right: 0;
    cursor: pointer;
}
.extr p {
    text-transform: uppercase;
}
.extr .but_mod {
    height: 50px;
    padding: 10px;
	width: 190px;
	background:#feff29;
}
.extr .up{
	position: absolute;
    bottom: 110px;
    left: 0;
    max-width: 195px;
}

@media only screen and (max-width : 640px) {
	#popup .modal-dialog  {
		width: 95%;
	}
	#popup .modal-body {
		padding: 20px 10px
	}
	
	#popup .head-p {
		font-size: 30px;
		margin: 15px 0 15px
	}
	.opros {
		width: 150px;
		margin: 10px;
	}
    .get-opros {
        flex-wrap: wrap;
	}
    .get-opros .label-control+label {
		width: 100%
	}
	#popup{
		margin-top: 15%;
		z-index: 9999;
	}
	.extr {
    top: 70%;
}
}
#modal-zakaz2 .but{
	height: 50px;
    padding: 10px;
    width: 190px;
    background: #feff29;
	text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    border: none;
}
  
