/*-- Base elements --*/

html, body {
    margin: 0;
    padding: 0;
    min-width: 100%;
    width: 100%;
}
body {
    font: 14px/20px arial;
    color: #303030;
}
h1, h2, h3, h4 {
    color: #047801;
    font-weight: normal;
    line-height: 1.2;
}
a:link, a:visited {
    color: #047801;
}
a img { border: 0; }
img { max-width: 100%; height: auto; }
.clear:before,
.clear:after {
    display: block;
    content: "";
    clear: both;
    height: 0;
}
.inner {
    width: 980px;
    margin: 0 auto;
}
.left { float: left; }
.right { float: right; }
a:hover { text-decoration: none; }
.wide {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    text-align: justify;
}
.wide:before, .wide:after {
    display: inline-block;
    width: 100%;
    content: "";
}
.wide li {
    display: inline-block;
    vertical-align: top;

}
.first { margin-left: 0 !important; margin-top: 0 !important; }
input[type="submit"],
.button {
    background: #008ae3;
    background: -webkit-linear-gradient(top, #008ae3 0, #077fcc 100%);
    background: -moz-linear-gradient(top, #008ae3 0, #077fcc 100%);
    background: -o-linear-gradient(top, #008ae3 0, #077fcc 100%);
    background: linear-gradient(top, #008ae3 0, #077fcc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008ae3', 
        endColorstr='#f1f1f1',GradientType=0);
    color: #ffffff;
    border: 1px solid #d0d0d0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    padding: 5px 30px;
    font: 14px/20px arial;
    position: relative;
    transition: all .5s ease 0s;
}
a.button { color: #ffffff; }
.button:hover, .button:disabled {
    background-color: #0268BC;
    opacity: 0.7;
}
.button.yellow {
    background: #64ad2a;
    background: -webkit-linear-gradient(top, #64ad2a 0, #51a221 100%);
    background: -moz-linear-gradient(top, #64ad2a 0, #51a221 100%);
    background: -o-linear-gradient(top, #64ad2a 0, #51a221 100%);
    background: linear-gradient(top, #64ad2a 0, #51a221 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#64ad2a', 
        endColorstr='#51a221',GradientType=0);
    color: #727272;
}
.button.yellow:hover {
    background: #58b91c;
    background: -webkit-linear-gradient(top, #58b91c 0, #58b91c 100%);
    background: -moz-linear-gradient(top, #58b91c 0, #58b91c 100%);
    background: -o-linear-gradient(top, #58b91c 0, #58b91c 100%);
    background: linear-gradient(top, #58b91c 0, #58b91c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#58b91c', 
        endColorstr='#58b91c',GradientType=0);
    color: #727272;
}
.button.dark {
    background: #016db3;
    background: -webkit-linear-gradient(top, #016db3 0, #005e9a 100%);
    background: -moz-linear-gradient(top, #016db3 0, #005e9a 100%);
    background: -o-linear-gradient(top, #016db3 0, #005e9a 100%);
    background: linear-gradient(top, #016db3 0, #005e9a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#016db3', 
        endColorstr='#005e9a',GradientType=0);
}
.spoiler {
    background: #077fcc;
    background: -webkit-linear-gradient(top, #077fcc 0, #005e9a 100%);
    background: -moz-linear-gradient(top, #077fcc 0, #005e9a 100%);
    background: -o-linear-gradient(top, #077fcc 0, #005e9a 100%);
    background: linear-gradient(top, #077fcc 0, #005e9a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#077fcc', 
        endColorstr='#005e9a',GradientType=0);
    display: block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 5px;
}
.spoiler a {
    display: block;
    padding: 5px 15px;
    text-decoration: none;
    position: relative;
}
.spoiler a:after {
    display: block;
    content: "";
    background: url(../images/down-arrow.png) no-repeat 0 0;
    height: 11px;
    width: 12px;;
    margin-top: -6px;
    position: absolute;
    right: 25px;
    top: 50%;
}
input[type="password"], input[type="text"], select, textarea {
    border: 0 none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    color: #727272;
    box-shadow: 5px;
    padding: 5px 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0 , 0.1) inset;
    font: 14px/20px arial;
    background-color: #fff;
}
input[type="radio"] {
    display: none;
}
input[type="radio"] + label {
    display: block;
    padding: 1px;
    font-size: 13px;
    position: relative;
}
input[type="radio"] + label:before {
    display: inline-block;
    content: "";
    background: url(../images/radio.png) no-repeat 0 -33px;
    height: 17px;
    width: 17px;
    margin-right: 5px;
    vertical-align: text-bottom;
	float: left;
	margin-top: 2px;
}
input[type="radio"]:checked + label:before {
    background: url(../images/radio.png) no-repeat 0 0;
}
input[disabled] {
    opacity: 0.5;
    cursor: default;
}
input[type="radio"][disabled] + label:before {
	background-position: 0 -108px;
}
input[type="radio"][disabled]:checked + label:before {
    background-position: 0 -75px;
}
input[type="checkbox"] {
    display: none;
}
input[type="checkbox"] + label:before {
    display: inline-block;
    content: "";
    padding: 10px;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 2px;
    background: url(../images/checkbox.png) no-repeat 0 0;
}
.custom-checkbox.ui-state-active input + label:before,
input[type="checkbox"]:checked + label:before {
    background-position: 0 -20px;
}
/*-- Top --*/

#top {
    background-color: #464646;
    color: #ffffff;
    font-size: 12px;
}
#top a {
    color: #ffffff;
}
#top .left > *, #top .right > * {
    /*float: left;*/
    display: inline-block;
    vertical-align: middle;
}
/*#top .left {
    margin-top: 5px;
}*/
#top .left a img {
    margin: 0 5px;
    vertical-align: middle;
}
#top .left .city-select {
    margin: 0 20px;
    padding-left: 20px;
    background: url(../images/city.png) no-repeat 0 50%;
    overflow: hidden;
    width: 140px;
}
#top .left select {
    border: none;
    color: #ffffff;
    text-decoration: underline;
    position: relative;
    width: 170px;
    background: url(../images/white-arrow.png) no-repeat 125px 50% #464646;
}
#top .right .login {
    /*margin: 5px 15px 0;*/
    margin-right: 15px;
}
#top .right .login img {
    vertical-align: middle;
    margin-right: 10px;
}
#search-button {
    /*display: block;*/
    padding: 5px;
    background-color: #313131;
}
#search-button img {
    vertical-align: middle;
}
#search-form {
    width: 0;
    overflow: hidden;
}
#search-field {
    background-color: #313131;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    color: #fff;
}
#search-form input[type="submit"] {
    display: none;
}
.inputtext-short {
    width: 100%;
    box-sizing: border-box;
}

/*-- Main --*/

#main {
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: fixed;
    /*padding-bottom: 5px;*/
}

.bg-fon1 {
    background-image: url(../images/fon.png);
}

.bg-fon2 {
    background-image: url(../images/bg-fon2.png);
}

.bg-fon3 {
    background-image: url(../images/bg-fon3.png);
}

/*---- Header ----*/

#header {
    padding: 20px 0 40px;
    position: relative;
    /*overflow: hidden;*/
}
#header .logo {
    float: left;
    margin-right: 60px;
}
#header > img,
.move_link {
    position: absolute;
    bottom: -15px;
    right: 0px;
    z-index: 10;
}
.move_link.moscow {
    right: -50px;
}
#header .date {
    margin: 0;
    text-align: right;
    color: #0068be;
    position: relative;
    z-index: 10;
    float: left;
}
#header .contacts {
    padding-top: 20px;
    /*display: inline-block;*/
    overflow: hidden;
}
#header .contacts img {
    float: left;
    margin-right: 15px;
}
#header .contacts .text {
    color: #0268bc;
    overflow: hidden;
    white-space: nowrap;
}
#header .contacts .text .tel {
    display: block;
    font-size: 29px;
    line-height: 100%;
    text-decoration: none;
}
#header .contacts .text a {
    font-size: 11px;
}

/*-- Traffic light --*/

.top-line {
    margin-bottom: 20px;
    position: relative;
    z-index: 100;
}

.informer {
    text-align: right;
}

.informer > * {
    display: inline-block;
    vertical-align: middle;
}

.probki {
    margin-left: 15px;
    color: #0068be;
    font-weight: 600;
    text-transform: uppercase;
}

.probki .traffic-light {
    display: inline-block;
    background: url(../images/traffic-light.png) no-repeat 0 0;
    height: 22px;
    width: 25px;
    text-align: center;
    color: #fff;
}

.probki .traffic-light.green {
    background-position: 0 0;
}

.probki .traffic-light.yellow {
    background-position: -27px 0;
}

.probki .traffic-light.red {
    background-position: -54px 0;
}

/*---- Menu ----*/

.menu {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    border: 1px solid #d0d0d0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    color: #ffffff;
    display: table;
    width: 100%;
    margin-bottom: 30px;
    background: #008ae3;
    background: -webkit-linear-gradient(top, #008ae3 0, #077fcc 100%);
    background: -moz-linear-gradient(top, #008ae3 0, #077fcc 100%);
    background: -o-linear-gradient(top, #008ae3 0, #077fcc 100%);
    background: linear-gradient(top, #008ae3 0, #077fcc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008ae3', 
        endColorstr='#f1f1f1',GradientType=0);
    box-sizing: border-box;
}
.menu li {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 0 3px;
    position: relative;
    transition: all 0.3s;
}
.menu li a {
    padding:  15px 0;
    color: #ffffff;
    text-decoration: none;
    display: block;
}
.menu .active {
    position: relative;
}
#header .menu .parent:hover:after,
#header .menu .active:after {
    display: block;
    content: "";
    height: 10px;
    width: 15px;
    background: url(../images/active-menu.png) no-repeat 0 0;
    position: absolute;
    bottom: -1px;
    left: 50%;
    margin-left: -7px;
    z-index: 200;
}
.menu .parent ul {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    left: -30%;
    right: -30%;
    top: 100%;
    padding: 5px 10px;
    z-index: 100;
}
.menu li:first-child ul {
    left: 0;
		right: auto;
}
.menu li:first-child ul {
    left: 0;
		right: auto;
}
.menu .parent:hover ul,
.menu .parent ul li {
    display: block;
}
.menu .parent ul li + li {
    border-top: 1px solid #efefef;
}
.menu .parent ul li a {
    color: #047801;
    padding: 10px;
    /*white-space: nowrap;*/
}
.menu .parent ul li a:hover {
    text-decoration: underline;
}

#menu-open {
    display: none;
    height: 50px;
    width: 70px;
    background: url(../images/menu-fon.png) no-repeat 50% 50%;/* #077FCC;*/
    border-radius: 5px;
    cursor: pointer;
}

/*---- Modules ----*/

#modules > ul {
    margin-bottom: 30px;
}
#modules .menu li {
    /*padding: 15px 20px;
    text-align: left;*/
}
/*modules .menu li a {
    padding: 0;
}*/
#modules .menu li img {
    margin-right: 10px;
    vertical-align: middle;
}
#modules .menu li span {
    overflow: hidden;
    max-width: 116px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-family: 'FuturaPTregular';
    font-size: 17px;
}
h2.futura{
    font-family: 'FuturaPTBold';
    font-size:  26px;
    margin-bottom: 13px;
    color: #333;
    text-transform: uppercase;
}
.countries {
    display: flex;
}
.group-country-1{
    width: 357px;
    flex-basis: 357px;
    min-width: 357px;
    display: flex;
    flex-wrap: wrap;
    margin-right: 3px;
    justify-content: space-between;
}
.group-country-2{
    flex-grow: 1;
}
.country.half-view{
    width: 49.5%;
}
.country.wide-view{
    width: 100%;
}
.country{
    position: relative;
    height: 164px;
    margin-bottom: 3px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
}

.country.hx2{
    height: 331px;
}
.country img{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.country span.a-title {
    position: absolute;
    z-index: 1;
    color: #fff;
    left: 18px;
    font-size: 21px;
    bottom: 14px;
    font-family: 'FuturaPTBold';
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.country span.a-title a {
       text-decoration: none;
    color: #fff;
  
}
.country span.a-title:after{
    content: '';
    background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDMwNiAzMDYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwNiAzMDY7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBpZD0iY2hldnJvbi1yaWdodCI+CgkJPHBvbHlnb24gcG9pbnRzPSI5NC4zNSwwIDU4LjY1LDM1LjcgMTc1Ljk1LDE1MyA1OC42NSwyNzAuMyA5NC4zNSwzMDYgMjQ3LjM1LDE1MyAgICIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=) center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    margin: auto;
    margin-left: 5px;
}
.group-country-2 span.a-title{
    bottom: auto;
    top: 43px;
    left: auto;
    right: 45px;
    max-width: 200px;
    line-height: 1.2;
}
/* .country:hover span.a-title{
    color: #ffdd00;
}
.country:hover span.a-title:after{
   background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDMwNiAzMDYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwNiAzMDY7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBpZD0iY2hldnJvbi1yaWdodCI+CgkJPHBvbHlnb24gcG9pbnRzPSI5NC4zNSwwIDU4LjY1LDM1LjcgMTc1Ljk1LDE1MyA1OC42NSwyNzAuMyA5NC4zNSwzMDYgMjQ3LjM1LDE1MyAgICIgZmlsbD0iI2ZmZGQwMCIvPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=) center no-repeat;
   -webkit-background-size: contain;
   background-size: contain;
} */
.country:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform:  scale(1.1);
    transform: scale(1.1);
}
/*------ Booking module ------*/

#booking {
    background-color: #077fcc;
    border: 1px solid #d0d0d0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    float: left;
    min-height: 400px;
    width: 638px;
    /*overflow: hidden;*/
    position: relative;
    margin-bottom: 30px;
    color: #fff;
}

#booking a {
    color: #fff;
}

#booking .yellow {
  color: #727272;
}

#booking .booking-nav {
    width: 100%;
    border-collapse: collapse;
}

.booking-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.booking-main .booking-nav > a,
.booking-nav .clear {
    list-style: none;
    padding: 15px 0;
    margin: 0 25px;
    border-bottom: 1px solid #0164bb;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    display: block;
}

#booking .booking-nav ul li {
    float: left;
    background: url(../images/line.png) repeat-x 0 50%;
    padding-left: 65px;
}

#booking .booking-nav ul li.first {
    padding: 0 65px 0 0;
}

#booking .booking-nav ul li.first + li {
    padding: 0 65px 0 0;
}

#booking .booking-nav ul li.first.active + li {
    padding: 0 0 0 65px;
}

#booking .booking-nav ul a {
    text-decoration: none;
    color: #fff;
}

#booking .booking-nav ul a span {
    display: inline-block;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    background: #80c4f0;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    color: #077fcc;
    font-weight: bold;
}

#booking .booking-nav ul li.active {
    background: none;
    padding: 0 10px 0 0 !important;
}

#booking .booking-nav ul .active span {
    background-color: #fff;
    margin-right: 10px;
}

#booking .booking-nav .edit {
    background-color: #047801;
}

#booking .booking-nav td.edit {
    border-radius: 0 5px 0 0;
}

#booking .booking-nav .edit a {
    padding: 15px 25px 15px 60px;
    color: #fff;
    text-decoration: none;
    background: /*url(../images/pen.png)*/url(../images/login-white.png) no-repeat 25px 50%;
    background-size: 20px;
}

#booking #order {
    padding: 25px 25px 50px;
    color: #fff;
}

#order .left, #order .right {
    width: 268px;
    /*padding-bottom: 40px;*/
}

#order .left {
    margin-right: 50px;
}

#order .left > div, #order .right > div {
    padding-bottom: 10px;
}

#booking .chosen-container,
#booking input {
    margin-bottom: 15px;
}

#booking select {
    width: 100%;
    min-width: 80px;
    margin-bottom: 15px;
}

/*#booking .custom-select {
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    background: url(../images/arrows.png) no-repeat 96% 50% #fff;
}

#booking .custom-select select {
    background: none;
    max-height: 29px;
}*/

.calendar {
    width: 106px;
    margin-right: 10px;
    background: /*url(../images/calendar.png) no-repeat 92% 50% */#fff;
}

.time {
    display: inline-block;
    margin-right: 10px;
    /*background: url(../images/clock.png) no-repeat 88% 50% #fff;*/
    border-radius: 5px;
    vertical-align: top;
    margin-bottom: 15px;
}

#booking .time {
    width: 70px;
}

#booking .left-arrow,
#booking .right-arrow,
#booking .driver-info {
    padding-left: 25px;
    margin-bottom: 5px;
    display: block;
}

.left-arrow {
    background: url(../images/left-arrow.png) no-repeat 0 2px;
}

.right-arrow {
    background: url(../images/right-arrow.png) no-repeat 0 2px;
}

.driver-info span,
.driver-info {
    background: url(../images/man.png) no-repeat 0 50%;
}

#booking .padd-top {
    padding-top: 25px;
    padding-bottom: 0 !important;
}

#booking .accordion .custom-checkbox.toggle {
    line-height: 29px;
    margin-bottom: 0;
    margin: 0;
    padding: 0;
    background: none;
}

#booking .custom-checkbox:after {
    display: none;
}

#booking .custom-checkbox span {
    background: url(../images/checkbox.png) no-repeat 0 0;
		height: 20px;
		width: 20px;
		display: inline-block;
}

#booking .custom-checkbox.active span {
    background-position: 0 -20px;
}

#order .accordion input {
    margin-bottom: 5px;
}

#booking .custom-checkbox + .ui-accordion-content input {
    width: 230px;
}

#booking .bottom {
    position: absolute;
    bottom: 25px;
    padding: 0 !important;
    width: 50%;
}

#booking .bottom .button {
    margin-bottom: 0;
    margin-right: 50px;
    float: right;
}

#booking .help {
    display: inline-block;
    background: url(../images/help.png) no-repeat 0 50%;
    padding-left: 25px;
    margin-right: 10px;
    line-height: 34px;
}

/*------ Booking next steps ------*/

/*-------- Booking Auto --------*/

#booking.full-width {
    width: 100%;
    background-color: #047801;
}

.booking-main {
    box-shadow: 5x 0 5px 0 rgba(0, 0, 0, 0.1);
    width: 720px;
    /*float: left;*/
    background-color: #077fcc;
    display: table-cell;
    vertical-align: top;
}

.order-info {
    width: 260px;
    /*float: left;*/
    display: table-cell;
    vertical-align: top;
}

#booking.full-width .booking-nav {
    width: auto;
}

.booking-main .booking-body .top-body {
    margin: 0 5px;
}

.booking-main .booking-body .top-body > div {
    float: left;
    padding-right: 37px;
}

.booking-main .booking-body .top-body label {
    display: block;
    margin-bottom: 5px;
}

.booking-main .booking-body .top-body .auto {
    width: 250px;
}

.booking-main .booking-body .top-body .auto label {
    background: url(../images/auto.png) no-repeat 0 50%;
    padding-left: 25px;
}

.booking-main .booking-body .top-body .gearbox {
    width: 185px;
}

.booking-main .booking-body .top-body .gearbox label {
    background: url(../images/gearbox.png) no-repeat 0 50%;
    padding-left: 25px;
}

/*#booking .booking-main .booking-body .top-body .gearbox select {
    width: 202px;
}*/

.booking-main .booking-body .top-body .mileage {
    width: 175px;
    padding: 0;
}

.booking-main .booking-body .top-body .mileage label {
    background: url(../images/mileage.png) no-repeat 0 50%;
    padding-left: 25px;
}

/*#booking .booking-main .booking-body .top-body .mileage select {
    width: 192px;
}*/

.booking-main .booking-body {
    padding: 20px 5px 25px 20px;
}

.booking-main .booking-body .info {
    margin: 0 5px 25px;
}

.booking-main .booking-body .item-wrapper {
    position: relative;
    padding-bottom: 35px;
    overflow: hidden;
}

.booking-main .booking-body .item {
    box-sizing: border-box;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    color: #047801;
    margin: 5px;
    position: relative;
    z-index: 5;
    padding-bottom: 10px;
}

.step2 .item-wrapper:hover .item,
.park .item-wrapper:hover .item{
    border: 5px solid #047801;
    margin: 0;
}

.booking-main .booking-body .item:after {
    display: block;
    content: "";
    clear: both;
}

.booking-main .booking-body .item > div {
    float: left;
    position: relative;
}

.booking-main .booking-body .item .left {
    max-width: 215px;
    margin-right: 10px;
}

.booking-main .booking-body .item .mid {
    width: 230px;
    font-size: 12px;
}

.booking-main .booking-body .item .right {
    float: right;
    width: 220px;
    margin-left: 10px;
}

.booking-main .booking-body h3,
#booking .booking-main .booking-body .item .about {
    color: #555555;
}

.booking-main .booking-body h3 {
    margin-left: 20px;
    margin-bottom: 35px;
}

.step2 .booking-main .booking-body h3 {
    width: 350px;
}

.booking-main .booking-body .left img {
    margin-left: 20px;
}

.booking-main .booking-body .item .about {
    display: block;
    background: url(../images/bubble.png) no-repeat;
    height: 41px;
    width: 214px;
    line-height: 50px;
    text-align: center;
}

.properties {
    list-style: none;
    padding: 0;
    margin: 50px 0 40px;
    text-align: left;
}

.properties li {
    display: inline-block;
    background: url(../images/auto-icons.png) no-repeat 0 0;
    margin: 0 4px;
    height: 41px;
    width: 36px;
    text-align: center;
    color: #fff;
    line-height: 50px;
    vertical-align: middle;
}

.properties li.doors {
    
}

.properties li.people {
    background-position: -37px 0;
    width: 33px;
}

.properties li.luggage {
    background-position: -70px 0;
    width: 39px;
}

.properties li.manual {
    background-position: -110px 0;
    width: 29px;
}

.properties li.automatical {
    background-position: -218px 0;
    width: 33px;
}

.properties li.air-conditioning {
    background-position: -140px 0;
    width: 30px;
}

.properties li.petrol {
    background-position: -251px 0;
    width: 33px;
}

.properties li.expend {
    background-position: -284px 0;
    width: 42px;
}

.properties li.car {
    background: url(../images/park1.png) no-repeat 0 0;
    width: 109px;
    height: 48px;
    float: left;
    margin-right: 10px;
}

.properties li.petrol a {
    margin-left: -2px;
}

#main .properties li.expend a {
    color: #047801;
    font-size: 11px;
    line-height: 100%;
    margin-top: 35px;
}

#main .properties li.car a {
    color: #047801;
		margin-top: 10px;
}

.item .mid p {
    text-align: center;
}

.item .right p {
    text-align: right;
    font-size: 13px;
    padding-right: 20px;
}

.item .right p span {
    display: block;
    font-weight: bold;
    line-height: 30px;
}

.item .right .card,
.item .right .cash {
    display: block;
    height: 61px;
    color: #fff;
    text-shadow: 0 0 2px #555;
}

.item .right .card {
    background: url(../images/price.png) no-repeat 100% 0;
}

.item .right .card span {
    font-size: 26px;
    padding-top: 5px;
}

.item .right .cash {
    background: url(../images/price-mini.png) no-repeat 100% 0;
    height: 54px;
}

.item .right .cash span {
    font-size: 20px;
    padding-top: 5px;
    line-height: 24px;
}

.booking-body .item-wrapper .button {
    display: block;
    text-align: center;
    width: 147px;
    float: right;
    margin: 0 10px 0 0;
}


.booking-main .booking-body .more {
    display: block;
    height: 132px;
    background: url(../images/more-full.png) no-repeat 50% 0;
    text-align: center;
    text-decoration: none;
    font-size: 26px;
    font-weight: bold;
    line-height: 40px;
    margin-top: 25px;
}

.booking-main .booking-body .more:hover {
    background-position: 50% 5px;
}

/*-------- Order Info --------*/

.order-info .booking-body {
    padding: 10px;
    box-shadow: 0 -20px 20px rgba(0, 0, 0, 0.2);
    /*text-align: center;*/
}

#your-order {
    text-align: center;
}

.order-info .booking-body {
    position: relative;
}

.order-info #your-order .your-car,
.order-info .booking-body > * {
    text-align: left;
}

.order-info .booking-nav {
    padding: 15px 25px;
}

.order-info .booking-nav .title {
    display: inline-block;
    background: url(../images/order.png) no-repeat 0 50%;
    padding-left: 30px;
}

.order-info .edit {
    display: inline-block;
    background: url(../images/edit.png) no-repeat 0 50%;
    height: 21px;
    width: 21px;
    float: right;
}

.order-info .your-car {
    background-color: #fff;
    padding: 10px;
    font-size: 12px;
    color: #077fcc;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
    position: relative;
}

#booking p span {
    font-weight: bold;
}

.order-info .your-car .route {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #077fcc;
}

.order-info .your-car .route p {
    margin: 0;
}

.order-info .your-car .route > div {
    text-align: right;
}

.order-info .your-car .route-car {
    display: inline-block;
    height: 41px;
    width: 47px;
    background: url(../images/auto-icons.png) no-repeat -170px 0;
}

.order-info .your-car .route span {
    display: block;
}

.booking-body .button {
    padding: 5px 15px;
    display: inline-block;
    margin: 25px auto;
}

/*-------- Step 3 --------*/

.step5 .booking-main,
.step4 .booking-main,
.step3 .booking-main {
    width: 480px;
    height: 452px;
}

.step5 .order-info,
.step4 .order-info,
.step3 .order-info {
    width: 500px;
}

.info-button {
    display: inline-block;
    background: url(../images/info.png) no-repeat 0 0;
    height: 20px;
    width: 20px;
    vertical-align: middle;
    margin-left: 10px;
}

.info-button:hover {
    opacity: 0.7;
}

.step3 .booking-main .booking-body {
    padding: 10px 25px 25px;
}

.step5 .order-info .booking-body,
.step4 .order-info .booking-body,
.step3 .order-info .booking-body {
    padding: 10px 10px 25px;
}

.step3 .booking-main .booking-body .belay {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    padding: 2px 15px 15px;
    background-color: #2965a1;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2) inset;
}

.step3 .belay div p {
    text-align: right;
    margin-bottom: 5px;
}

#booking.step3 .belay span {
    color: #ffe100;
    font-weight: normal;
    float: left;
}

#booking .mini {
    float: left;
    margin-right: 10px;
    margin-bottom: 0;
    /*background: url("../images/arrows.png") no-repeat scroll 85% 50% #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;*/
}

#booking select.mini {
    width: 45px;
}

.mini .chosen-single {
    background-position: 85% 50%
}

/*#booking .custom-checkbox.mini {
    float: left;
}

#booking .custom-checkbox.mini input {
    margin: 0 10px 0 0;
    vertical-align: middle;
}

#booking .custom-select.mini select {
    width: 63px;
}*/

.step3 .booking-main .booking-body .clear p {
    text-align: right;
    padding-right: 15px;
    line-height: 27px;
}

#booking.step3 .booking-main .booking-body .clear p span {
    float: left;
    font-weight: normal;
}

.step5 .your-car .route,
.step4 .your-car .route,
.step3 .your-car .route {
    float: left;
    width: 200px;
    border: none;
    margin: 0;
    padding: 0;
}

.step5 .your-car .car-info,
.step4 .your-car .car-info,
.step3 .your-car .car-info {
    float: right;
    width: 240px;
}

.order-info .edit.dark {
    background: url(../images/edit-dark.png) no-repeat 0 0;
}

.order-info .edit.dark:hover {
    opacity: 0.7;
}

.step5 .your-car .car-info .edit,
.step4 .your-car .car-info .edit,
.step3 .your-car .car-info .edit {
    float: right;
}

.step5 .your-car .car-info h3,
.step4 .your-car .car-info h3,
.step3 .your-car .car-info h3 {
    margin:5px 0 0;
    color: #555;
    margin-left: 10px;
}

.step5 .your-car .car-info img,
.step4 .your-car .car-info img,
.step3 .your-car .car-info img {
    margin-left: 10px;
}

#booking.step5 .car-info .properties,
#booking.step4 .car-info .properties,
#booking.step3 .car-info .properties {
    margin: 0;
}

.step5 .order-info .add-fees p,
.step4 .order-info .add-fees p,
.step3 .order-info .add-fees p {
    margin: 0;
    text-align: right;
    clear: both;
}

.step5 .order-info .add-fees p span,
.step4 .order-info .add-fees p span,
.step3 .order-info .add-fees p span {
    float: left;
    font-size: 12px;
    font-weight: normal !important;
		text-align: left;
		max-width: 360px;
}

.step3 .order-info .add-fees p span {
    max-width: 390px;
}

.step5 .button, .step4 .button,
.step3 .order-info .button {
    width: 195px;
    padding-top: 10px;
    padding-bottom: 10px;
    vertical-align: middle;
    margin: 5px 5px 0;
}

.step5 .button span, .step4 .button span,
.step3 .order-info .button span {
    font-size: 18px;
    font-weight: bold;
}

#booking .button.yellow {
    border: 0;
}

#booking.step3 .order-info .button.yellow {
    max-width: 175px;
    color: #555;
}

.step3 .button.discount {
    padding-right: 50px;
}

.button.discount .ribbon {
    position: absolute;
    top: -1px;
    right: -1px;
    height: 59px;
    width: 59px;
    background: url(../images/ribbon10.png) no-repeat 0 0;
}

.step3 .add-fees > div {
    margin-top: 15px;
}

/*-------- Step 4 --------*/

.step4 .booking-main {
    min-height: 580px;
}

.step4 .booking-main .booking-body {
    padding: 10px 10px 25px;
}

.park .order-info .booking-body,
.step5 .order-info .booking-body,
.step4 .order-info .booking-body {
    box-shadow: none;
    padding-top: 0;
}

.step4 .button {
    width: 182px;
    margin: 0;
}

.data {
    padding: 10px;
}

.data p {
    margin-top: 0;
}

.data .left, .data .right {
    width: 49.9%;
}

.data input[type="text"] {
    width: 175px;
}

.data table td {
    width: 50%;
    vertical-align: top;
}

.data table .radio {
    padding-top: 5px;
}

.paper,
.paper span {
    background: url(../images/paper.png) no-repeat 0 0;
    padding-left: 25px;
    display: block;
    margin-bottom: 5px;
}

.paper span {
    padding-left: 0;
    margin-bottom: 0;
}

.comment span {
    background: url(../images/comment.png) no-repeat 0 0;
}

.agreed {
    padding: 10px;
    font-size: 13px;
}

.agreed + p {
    margin-top: 0;
}

.add-fees {
    padding-top: 10px;
}

.add-fees > div {
    margin-top: 30px;
}

.step4 .discount {
    width: 205px;
    margin: 0 5px 0 0;
}

.step4 .discount + .button {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 18px;
    vertical-align: bottom;
}

/*-------- Step 5 --------*/

.step5 .booking-main {
    min-height: 520px;
}

.step5 .booking-main .booking-body {
    padding: 25px;
}

.order-comment {
    padding-top: 15px;
    font-style: italic;
}

.order-comment span {
    font-weight: normal !important;
    font-size: 12px;
    font-style: normal;
}

.your-order {
    padding-bottom: 25px;
    text-align: center;
}

.your-order div,
.your-order input {
    /*text-align: center;*/
    margin-bottom: 15px;
}

.your-order > div {
    border: 2px solid #fff;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
    display: inline-block;
    padding: 5px 25px;
}

.your-order > p {
    text-align: left;
}

.step5 .your-order p {
    margin: 0;
}

.your-order p a {
    text-decoration: underline;
}

.your-order p a.zeroclipboard-is-hover,
.your-order p a:hover {
    text-decoration: none;
}

.your-order p span {
    font-size: 18px;
    font-weight: normal !important;
}

.step5 p {
    margin: 0 0 10px;
}

.step5 .add-fees > div + div {
    margin-top: 15px;
}

/*-------- Park --------*/

.park .booking-main {
    width: 520px;
    /*min-height: 911px;*/
}

.park .order-info {
    width: 460px;
}

.park .booking-nav > * {
    
}

.park .booking-main .booking-nav > * {
    margin-right: 0;
}

.park .order-info .booking-nav {
    padding: 0;
}

.park .order-info .booking-nav > * {
    display: block;
    border-bottom: 1px solid #077fcc;
    padding: 15px 0 15px 25px;
    margin-right: 25px;
}

.park .booking-main .booking-body,
.park .order-info .booking-body {
    padding: 20px 25px;
}

.park .booking-main .booking-body .top-body > div {
    padding: 0;
}

.park .item-wrapper {
    padding-top: 1px;
}

.park .item-wrapper.active .item {
    margin: 5px;
    border: 0 none;
		box-shadow: 0 0 0 5px #ffe300;
}

.park .top-body .auto {
    padding-right: 25px !important;
}

.park .mid-body .info {
    margin-bottom: 5px;
}

#booking.park .properties {
    margin: 15px 0;
}

.park .item .card {
    background: url(../images/price1.png) no-repeat 0 0;
}

.park .booking-main .booking-body .item-wrapper {
    overflow: visible;
}

.park .item-wrapper.active:after {
    display: block;
    content: "";
    height: 82px;
    width: 35px;
    position: absolute;
    right: -30px;
    top: 116px;
    margin-top: -65px;
    background: url(../images/traingle1.png) no-repeat 0 0;
		z-index: 10;
}

.park .order-info h3 {
    font-size: 24px;
    color: #fff;
    margin-top: 0;
}

.chosen-car {
    background-color: #fff;
    padding: 35px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    color: #077fcc;
    width: 340px;
    position: relative;
}

/*.chosen-car ul {
    list-style: none;
    padding-left: 25px;
    margin: 0;
}

.chosen-car ul li {
    font-size: 13px;
}*/

#booking .chosen-car a {
    color: #047801;
}

.chosen-car table {
    border-collapse: collapse;
    border: 1px solid #077fcc;
}

.chosen-car th,
.chosen-car td {
    padding: 2px;
}

.chosen-car th {
    background-color: #efefef;
}

.chosen-car .gallery {
    text-align: center;
}

.chosen-car .gallery img {
    max-width: 100%;
}

.chosen-car .gallery ul {
    display: inline-block;
    margin: 15px 0;
    padding: 0;
}

.chosen-car .gallery ul li {
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    border: 3px solid #077fcc;
}

.chosen-car .gallery ul li img {
    display: block;
}

.chosen-car .accordion .slide {
    color: #077fcc !important;
    padding-left: 15px;
    background: url(../images/arrow-blue.png) no-repeat 0 50%;
    text-decoration: none;
    margin-top: 20px;margin-bottom: 5px;
}

.chosen-car .accordion .slide.active,
.chosen-car .accordion .slide.ui-state-active {
    background: url(../images/arrow-blue-down.png) no-repeat 0 50%;
}

.park .order-info .booking-body {
    text-align: right;
}

.auto-details {
    text-align: center;
}

.auto-details img {
    display: inline;
    margin: 0 10px;
    height: auto;
    width: auto;
}

.chosen-car .about {
	display: block;
	height: 24px;
	width: 24px;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
}

.chosen-car .about img {
	width: 100%;
}

#main .properties a {
    color: #fff;
    font-size: 12px;
}

/*------ Slider module ------*/

#modules .slider {
    background-color: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #d0d0d0;
    float: right;
    margin-bottom: 10px;
    position: relative;
    height: 425px;
		width: 300px;
    overflow: hidden;
}
#modules .right .slider {
  float: none;
  margin-bottom: 30px;
}
.slick-list, .slick-track, .slick-slide {
    height: 100%;
}
.slick-slide {
    position: relative;
}
.slick-slide img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.main_slider img {
    position: relative;
}

.main_slider .slick-dots li.slick-active button {
    background: #ffe001;
    width: 7px;
    height: 7px;
}

.main_slider .slick-dots li button {
    width: 7px;
    height: 7px;
    background: #fff;
}

.main_slider .slick-dots {
    bottom: -5px;
    right: 0;
    text-align: center;
}

.main_slider .slick-dots li {
    margin-right: 8px;
    width: 7px;
}

.main_slider .slick-prev:before, .main_slider .slick-next:before {
    content: none;
    color: #ffe001;
    opacity: 1;
    /* background: #ffe001; */
}

.main_slider .slick-prev {
    left: 5px;
    z-index: 9;
}

.main_slider .slick-next {
    right: 5px;
}

.main_slider {
    margin-bottom: 10px;
	overflow: hidden;
	max-height: 165px;
}

.main_slider .slick-slide img {
	margin: 0 auto;
}

.main_slider .slick-prev, .main_slider .slick-next {
    color: #ffe001;
    opacity: 0.7;
}

.main_slider .slick-prev:hover, 
.main_slider .slick-next:hover, 
.main_slider .slick-prev:focus, 
.main_slider .slick-next:focus {
    color: #ffe001;
    opacity: 1;
}


.main_slider .mobile {
      display: none;
}

/*#modules .slider ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#modules .slider ul li img {
    position: absolute;
    bottom: 0;
    right: 0;
}*/
.slick-slide .text {
    padding: 25px;
    color: #727272;
    height: 100%;
}
.slick-slide .text h3 {
    margin-top: 0;
    font-size: 18px;
}
.slick-slide .button {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 10;
}
.slick-dots {
    width: auto;
    margin: 0;
    bottom: 25px;
    right: 15px;
	z-index: 15;
}
/*#modules .slider .nav-bar {
    position: absolute;
    right: 25px;
    bottom: 25px;
}*/
.slick-dots li button {
    float: left;
    margin: 0 5px;
    height: 17px;
    width: 17px;
    background: url(../images/slider-nav.png) no-repeat;
    text-indent: -100px;
    overflow: hidden;
    cursor: pointer;
}
.slick-dots li button:before {
    display: none;
}
.slick-dots li.slick-active button {
    background: url(../images/slider-nav-active.png) no-repeat;
    cursor: default;
}

/*------ Banners modules ------*/

.banners li,
.info li {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    width: 300px;
    overflow: hidden;
    position: relative;
    margin-left: 20px;
}
.banners li {
    height: 220px;
    color: #ffffff;
}
.banners .text {
    position: absolute;
    top: 0;
    left: 0;
    /*width: 250px;
    height: 170px;*/
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 25px;
    /*text-shadow: -2px -2px 3px #474747;*/
    font-size: 14px;
    text-align: left;
}
.banners li img {
    max-width: 100%;
    width: 100%;
}
.banners .text h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    font-family: 'FuturaPTBold';
    line-height: 1.2;
}

.banners .text p {
    margin: 10px 0;
    max-width: 90%;
    font-family: 'FuturaPTregular';
    font-size: 16px;
}
/*.banners .text h3 + p:before {
    border-bottom: 1px solid #ffffff;
    box-shadow: 0 0 2px #474747;
    display: block;
    width: 100%;
    content: "";
    margin-bottom: 10px;
}*/
.banners li .text a {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.banners li .text a .button {
    background: #fff;
    padding: 15px 25px;
    border: 0;
    border-radius: 0;
    font-family: 'FuturaPTBold';
    font-size: 16px;
    width: 100%;
    color: #333;
    text-transform: uppercase;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    opacity: 1;
    -webkit-transition:    all 0.5s;
    -o-transition: all 0.5s;
    transition:    all 0.5s;
}
.banners li .text a .button:after {
    display: inline-block;
    content: "";
    height: 14px;
    width: 14px;
        position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
    margin-left: 10px;
    background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDMwNiAzMDYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwNiAzMDY7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBpZD0iY2hldnJvbi1yaWdodCI+CgkJPHBvbHlnb24gcG9pbnRzPSI5NC4zNSwwIDU4LjY1LDM1LjcgMTc1Ljk1LDE1MyA1OC42NSwyNzAuMyA5NC4zNSwzMDYgMjQ3LjM1LDE1MyAgICIgZmlsbD0iIzAwMDMzMyIvPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=) center no-repeat;
    background-size: contain;
    -webkit-transition:    all 0.5s;
    -o-transition: all 0.5s;
    transition:    all 0.5s;
}
.banners li .text a .button:hover {
    color: #1e9523;
}
.banners li .text a .button:after{
    background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDMwNiAzMDYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwNiAzMDY7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBpZD0iY2hldnJvbi1yaWdodCI+CgkJPHBvbHlnb24gcG9pbnRzPSI5NC4zNSwwIDU4LjY1LDM1LjcgMTc1Ljk1LDE1MyA1OC42NSwyNzAuMyA5NC4zNSwzMDYgMjQ3LjM1LDE1MyAgICIgZmlsbD0iIzFlOTUyMyIvPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=)center no-repeat;
    background-size: contain;
}
.banners .text .button {
    color: #ffffff;
    text-shadow: none;
    font-size: 14px;
    position: absolute;
    bottom: 12px;
    left: 0;
}
.banners img {
    max-width: none;
}

/*------ Info modules ------*/

.info {
    font-size: 13px;
    line-height: 130%;
}
.info li {
    border: 1px solid #d0d0d0;
    padding: 25px;
    background-color: #ffffff;
    width: 585px;
    min-height: 260px;
}
.info li.first {
    width: 250px;
}
.info li h3 {
    margin-top: 0;
    font-size: 18px;
    padding-left: 45px;
    line-height: 30px;
}
.info .reviews h3 {
    background: url(../images/review.png) no-repeat 0 50%;
}
.info .news h3 {
    background: url(../images/news.png) no-repeat 0 50%;
}
.review p {
    margin: 0 0 10px;
}
.info .author,
.info .date {
    color: #047801;
    display: inline;
    margin-right: 20px;
}
.info .links a {
    margin-right: 20px;
}
.review, #modules .one-news {
    overflow: hidden;
    margin-bottom: 0;
}
.one-news p {
    margin: 0;
}
.one-news {
	padding: 5px 0;
    display: flex;
}
.one-news a {
    color: #303030;
    text-decoration: none;
}
.one-news a:hover {
    text-decoration: underline;
}
.news .one-news .date {
    float: left;
}

/*---- Content ----*/

.page, .car-content, #content {
    border: 1px solid #d0d0d0;
    padding: 25px 25px 50px;
    margin: 40px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    background: #ffffff;
    background: -webkit-linear-gradient(top, #ffffff 40%, #f1f1f1 100%);
    background: -moz-linear-gradient(top, #ffffff 40%, #f1f1f1 100%);
    background: -o-linear-gradient(top, #ffffff 40%, #f1f1f1 100%);
    background: linear-gradient(top, #ffffff 40%, #f1f1f1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', 
        endColorstr='#f1f1f1',GradientType=0);
    font-size: 13px;
}
#content td {
    vertical-align: top;
}
#content tr td {
    padding-left: 25px;
    width: 50%;
}
#content tr td:first-child {
    padding-left: 0;
    padding-right: 25px;
}

/*-- Footer --*/

#footer {
    background: #fff;
    border-top: 1px solid #009900;
}
#footer .top {
    border-bottom: 1px solid #047801;
    padding: 50px 0 25px;
    margin: 0 30px;
}
#footer .bottom {
    border-top: 1px solid #047801;
    padding: 20px 0 30px;
    margin: 0 30px;
}
#footer .left {
    font-size: 13px;
}
#footer .top img {
    float: left;
}
#footer .top ul {
    list-style: none;
    margin: 0;
    padding-left: 45px;
    float: left;
    font-size: 13px;
}
#footer .button {
    padding: 5px 15px;
    /*margin-left: -10px;*/
		height: 34px;
}
#footer .subscription * {
    display: inline-block;
    vertical-align: middle;
}
#footer .subscription input[type="text"] {
    padding: 7px 10px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2) inset;
    /*margin-left: 10px;*/
    width: 115px;
}
#footer .socials {
    text-align: right;
    padding-top: 25px;
}
#footer .socials a {
    margin-left: 5px;
}

#footer .socials a img {
    max-height: 24px;
}

/*-- Popup --*/

.popup {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    padding: 40px 100px;
    margin: 0 auto;
    /*display: inline-block;*/
    text-align: center;
}

.popup input {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.popup input[type="password"],
.popup input[type="text"] {
    min-width: 200px;
}

.popup p {
    margin: 0 0 15px;
}

.popup p a {
    color: #727272;
    font-size: 11px;
}

.close-button {
	display: block;
	padding: 2px;
	border: 1px solid #047801;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
	border-radius: 50%;
	width: 20px;
	text-align: center;
	font-weight: bold;
	font-family: cursive;
	color: #047801 !important;
	text-transform: uppercase;
	position: absolute;
	right: 10px;
	top: 10px;
	font-family: cursive;
	cursor: pointer;
  text-decoration: none;
}

/*-- Accordion --*/

.accordion .toggle,
.ui-accordion-header {
    background: #077fcc;
    background: -webkit-linear-gradient(top, #077fcc 0, #005e9a 100%);
    background: -moz-linear-gradient(top, #077fcc 0, #005e9a 100%);
    background: -o-linear-gradient(top, #077fcc 0, #005e9a 100%);
    background: linear-gradient(top, #077fcc 0, #005e9a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#077fcc', 
        endColorstr='#005e9a',GradientType=0);
    display: block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    position: relative;
}

.accordion .toggle:hover,
.ui-accordion-header:hover {
    opacity: 0.8;
    cursor: pointer;
}

.ui-helper-hidden-accessible {
    display: none;
}

#booking .accordion .toggle,
#booking .ui-accordion-header {
    margin: 0 0 5px;
    color: #fff;
    padding: 5px 45px 5px 15px;
}

.accordion .toggle span,
.ui-accordion-header span {
    display: inline-block;
    height: 18px;
    vertical-align: middle;
    width: 18px;
    margin-right: 10px;
}

.accordion .toggle:after,
.ui-accordion-header:after {
    display: block;
    content: "";
    background: url(../images/down-arrow.png) no-repeat 0 0;
    height: 11px;
    width: 12px;;
    margin-top: -6px;
    position: absolute;
    right: 25px;
    top: 50%;
}

.accordion .toggle.active,
.accordion .toggle.active:after,
.ui-accordion-header-active,
.ui-accordion-header-active:after {
    background: none;
}

#booking .ui-accordion-header-active {
    margin-bottom: 0;
}

.accordion .toggle + div {
		display: none;
}

.accordion .toggle.active + div {
		display: block;
}

textarea { resize: none; }

.accordion textarea {
    width: 95%;
    height: 90%;
}

.chosen-car .accordion .toggle,
.chosen-car .ui-accordion-header {
    filter: none;
}

.chosen-car .accordion .toggle:after,
.chosen-car .accordion .toggle span,
.chosen-car .ui-accordion-header:after,
.chosen-car .ui-accordion-header span {
    display: none;
}
.chosen-car .accordion .toggle + div,
.chosen-car .ui-accordion-content {
    font-size: 13px;
}

/*-- Tooltip --*/

.properties li a,
.tooltip {
    display: block;
    height: 100%;
    width: 100%;
}

.tooltip-style {
    background-color: #fff;
    border: 2px solid #d9d9d9;
    padding: 2px 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    z-index: 100;
    display: inline-block;
    font-size: 11px;
}

/*-- Plus-min --*/

#booking p span.cross,
#booking p span.plus,
#booking p span.minus {
    display: inline-block;
    float: none;
    height: 18px;
    width: 18px;
    background: url(../images/plus-min.png) no-repeat 0 0;
    vertical-align: middle;
    margin: 0 5px;
    cursor: pointer;
}

#booking p span.cross:hover,
#booking p span.plus:hover,
#booking p span.minus:hover {
    opacity: 0.7;
}

#booking p span.plus {
    background-position: 0 -18px;
}

#booking p span.minus {
    background-position: 0 -36px;
}

/*-- Buttons print pdf --*/

#booking .button.print,
#booking .button.pdf {
    width: auto;
    float: none;
    color: #555;
    padding: 7px 10px;
    margin: 0 0 0 3px;
}

#booking .button.print img,
#booking .button.pdf img {
    margin-right: 3px;
    vertical-align: middle;
}

/*-- Chosen (jquery select) --*/

/*#booking .custom-select {
    background: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    overflow: inherit;
}*/

#booking .chosen-container .search-field {
    padding: 0;
		/*min-height: 30px;*/
}

#booking .chosen-container .search-field input {
    margin: 5px 0 5px 5px;
    padding: 0;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0);
		display: none;
}

.chosen-container-multi .search-field span {
    line-height: 30px;
		padding-left: 10px;
}

.chosen-container-multi .search-choice + .search-field {
    display: none;
}

.chosen-container {
    color: #555;
    position: relative;
    font-size: 12px;
    /*border-radius: 5px;*/
}

.chosen-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: visible;
}

.chosen-drop ul li {
    padding: 3px 10px;
    color: #555;
}

.chosen-single {
    display: block;
    padding: 5px 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1) inset;
    max-height: 40px;
    position: relative;
    background: url("../images/arrows.png") no-repeat scroll 96% 50% #fff;
    overflow: hidden;
}

.chosen-single span {
    color: #555;
}

/*.custom-select */.chosen-single div {
    position: absolute;
    right: 0;
}

.chosen-container .chosen-drop {
    display: none;
    position: absolute;
    left: 0;
    border: 1px solid #777;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    border-top: 0;
    width: 100%;
    z-index: 100;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.chosen-container > * {
    background-color: #fff;
}

.chosen-container.chosen-with-drop .chosen-drop {
    display: block;
}

.chosen-container .chosen-choices {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1) inset;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    max-height: 60px;
    background: url("../images/arrows.png") no-repeat scroll 96% 50% #fff;
}

.chosen-container .chosen-choices .search-choice {
    float: left;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    background-color: #e7e7e7;
    padding: 0 20px 0 5px;
    margin: 5px;
    position: relative;
}

.chosen-container .chosen-choices .search-choice-close {
    background: url(../images/chosen-sprite.png) no-repeat -42px 1px;
    display: block;
    font-size: 1px;
    height: 12px;
    position: absolute;
    right: 3px;
    top: 4px;
    width: 12px;
    cursor: pointer;
    z-index: 100;
}

.chosen-container .chosen-results li:hover {
    background-color: #047801;
    color: #fff;
}

.chosen-container-single .chosen-drop .chosen-search {
    display: none;
}


/*-- Car page --*/

.car-page > .left {
		width: 640px;
}

.car-page > .right {
		width: 300px;
}

.car-page .banners {
		display: inline-block;
}

.car-page .banners li {
		margin: 30px 0 0;
}

.car-page .banners li.first {
		margin: 0;
}

.left #booking {
  width: 100%;
}

.car-content {
		margin: 0;
		overflow: hidden;
}

.car-content p {
		margin: 30px 0;
		overflow: hidden;
}

.car-content .left {
		margin-right: 30px;
}

.car-content p span {
		overflow: hidden;
		display: block;
}

.text-properties {
		list-style: none;
		margin: 0;
		padding: 0;
		overflow: hidden;
}

.text-properties li {
		border-top: 1px solid #303030;
}

.text-properties li.first {
		border: 0;
}

.car-content .properties {
		float: left;
		width: 250px;
		margin:  0 10px 0 0;
}

.car-content .text-properties {
		float: left;
		margin-left: 18px;
		width: 145px;
}

.car-page .accordion .chosen-container {
		width: 100% !important;
}

.car-page .accordion .chosen-container.time {
    width: 70px !important;
}

/*---- Car page accordion ----*/

.car-page #booking {
		min-height: inherit;
}

.car-page #booking #order {
    padding-bottom: 25px;
}

.car-page #booking .accordion .toggle,
.car-page #booking .ui-accordion-header {
		margin: 0;
		padding: 0;
		position: relative;
}

.car-page .accordion .toggle:after,
.car-page .accordion .toggle span,
.car-page .ui-accordion-header:after,
.car-page .ui-accordion-header span {
		display: none;
}

.car-page #booking .bottom {
		position: relative;
		bottom: 0;
		width: 100%;
}

.car-page #booking .right .bottom {
		margin-top: 30px;
}

.car-page #booking .bottom .button {
		margin: 0;
}

.car-page #booking .accordion .toggle ul,
.car-page #booking .ui-accordion-header ul {
		margin-left: 380px;
}

.car-page #booking .accordion .toggle ul span,
.car-page #booking .ui-accordion-header ul span {
		margin: 0;
}

.car-page #booking .accordion .toggle ul .first,
.car-page #booking .ui-accordion-header ul .first {
		height: 30px;
		width: 30px;
		padding: 0 !important;
		overflow: hidden;
}

.car-page .accordion .toggle > a,
.car-page .ui-accordion-header > a {
		position: absolute;
		top: 15px;
		left: 25px;
		line-height: 30px;
}

.car-page #booking .accordion .toggle ul .active span,
.car-page #booking .ui-accordion-header ul .active span {
		margin-right: 0;
}

.car-page .accordion .toggle.active > a,
.car-page .ui-accordion-header.ui-state-active > a {
		display: none;
}

.car-page #booking .accordion .toggle.active ul,
.car-page #booking .ui-accordion-header.ui-state-active ul {
		margin-left: 25px;
}

.car-page #booking .accordion .toggle.active ul .first,
.car-page #booking .ui-accordion-header.ui-state-active ul .first {
		height: auto;
		width: auto;
		padding-right: 10px !important;
}

.car-page #booking .accordion .toggle.active ul .active span,
.car-page #booking .ui-accordion-header.ui-state-active ul .active span {
		margin-right: 10px;
}

.car-page .car-content .button {
		display: inline-block;
		margin: 10px 0 20px;
}

/*-- Cabinet --*/

.cabinet .booking-nav div > a {
    font-weight: bold;
}

.cabinet .booking-nav span {
    float: right;
}

#booking.cabinet .booking-nav .urface {
    margin: 0 25px;
		color: #ffe300;
}

.cabinet .booking-main table {
    width: 100%;
    border-collapse: collapse;
}

.cabinet .booking-main td {
    width: 33.33%;
    height: 25px;
}

.cabinet .booking-main td .button {
    margin-top: 0;
}

.cabinet input[type="text"] {
    width: 170px;
}

.cabinet .order-info .booking-body {
    box-shadow: none;
}

.cabinet .order-info .button {
    padding: 5px 0;
    width: 100%;
}

.cabinet #your-order > p {
    text-align: left;
}

.cabinet .order-info .your-car .route {
    border-bottom: 0;
}

#booking.cabinet .your-car a {
    color: #077fcc;
}

.cabinet h4 {
    font-size: 14px;
    font-weight: bold;
}

#booking.cabinet .bottom {
    width: auto;
}

.cabinet .booking-main .booking-body {
    padding-bottom: 85px;
}

.lock {
    background: url(../images/lock.png) no-repeat 0 50%;
    display: block;
    margin-bottom: 5px;
    padding-left: 25px;
}

.white {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
    color: #077fcc;
}

.class_description .whiteDesc {
	color: #fff;
}

.bonus {
    font-size: 18px;
}

.bonus p {
    margin: 0;
}

.bonus .bonus-value {
    color: red;
    margin-bottom: 5px;
}

.center {
    text-align: center;
}

/*-- Urcabinet --*/

.cabinet .price {
    font-size: 18px;
    font-weight: bold;
}

/*-- Drivers --*/

.drivers hr {
  border: 0;
  border-bottom: 1px solid #0164bb;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  margin-right: 20px;
}

.driver .booking-main .booking-body,
.history .booking-main .booking-body {
    padding-bottom: 0;
}


/*-- History --*/

.history .item .mid p {
    text-align: left;
}

#booking.history .item a {
    color: #047801;
}

.history .booking-main .booking-body .left {
    width: 195px;
    margin-left: 15px;
}

.history .booking-main .booking-body .left img {
    margin-left: 0;
}

.history .tarif {
    font-weight: bold;
    text-decoration: none;
}

.history .item .order-num {
    font-style: italic;
}

.history .booking-main .booking-body h3 {
    margin-left: 0;
    color: #047801;
    font-weight: bold;
}

.history .item .mid {
    padding-bottom: 10px;
}

.history .mid p {
    margin: 0 0 5px;
}

/*-- Rating --*/

.history .rating {
    padding-right: 20px;
    text-align: right;
}

.rating .star {
    height: 26px;
    width: 27px;
    background: url(../images/stars.png) no-repeat 0 0;
    display: inline-block;
    margin-left: 2px;
}

.rating .star:hover,
.rating .star.hover,
.rating .star.on {
    background-position: 0 -26px;
}

/*--  --*/

.calendar + a {
    text-decoration: none;
}

img.calendar-icon {
    height: 15px;
    width: 16px;
    margin-left: -40px;
    margin-right: 21px;
    vertical-align: text-bottom;
}

img.calendar-icon-hover {
    margin-left: -40px;
    margin-top: 8px;
}

.time .chosen-single {
    background: url(../images/clock.png) no-repeat 88% 50% #fff;
}

#booking .time .chosen-container {
    margin-bottom: 0;
}

.error {
    border: 2px solid #d05151 !important;
}

.reserve-t img {
    margin-right: 10px;
}

.step3 .booking-main .booking-body,
.step5 .booking-main .booking-body {
    padding: 25px 25px 50px;
}

.time .chosen-container .chosen-drop {
    overflow-y: scroll;
    max-height: 260px;
}

#starti .errortext {
		background: #ffa6a6;
    background: -webkit-linear-gradient(top, #ffa6a6 0, #d05151 100%);
    background: -moz-linear-gradient(top, #ffa6a6 0, #d05151 100%);
    background: -o-linear-gradient(top, #ffa6a6 0, #d05151 100%);
    background: linear-gradient(top, #ffa6a6 0, #d05151 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa6a6', 
        endColorstr='#d05151',GradientType=0);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #d05151;
    margin-bottom: 15px;
    overflow: hidden;
    color: #fff;
    text-shadow: 1px 1px 0 #d05151;
}

#starti .errortext span {
    background: url(../images/warning.png) no-repeat 15px 50%;
    padding: 15px 25px 15px 70px;
    display: block;
}
/* #ffa6a6; #d85f5f */

#booking h1 {
    color: #fff;
}

/*-- Load --*/

.mid-body {
    position: relative;
}

.load {
    opacity: 0;
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    margin-top: -50px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

/*-- Breadcrummbs --*/

.breadcrumbs {
    color: #909090;
    font-size: 12px;
}
.breadcrumbs a {
    color: #909090;
}

/*-- Page --*/

.car-page {
    margin-bottom: 30px;
}

.page {
    margin: 0;
    font-size: 14px;
}

.page h1 {
    font-size: 22px;
    line-height: 120%;
}

.page h2 {
    font-size: 20px;
    line-height: 120%;
    margin: 30px 0 15px;
}

.page h2 span {
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #047801;
    color: #fff;
    line-height: 30px;
    width: 30px;
    text-align: center;
    margin-right: 10px;
}

.car-page .right .menu {
    background: #fff;
    padding: 25px;
    width: auto;
    display: block;
}


#modules .car-page .right .menu li {
    display: block;
    padding:0 0 0 22px;
    background: url("../images/slider-nav.png") no-repeat 0 1px;
    margin: 3px 0;
    text-align: left;
}


#modules .car-page .right .menu li.active {
    background: url("../images/slider-nav-active.png") no-repeat 0 1px;
}

.right .menu li a {
  padding: 0;
}

.car-page .right .menu li a {
    color: #303030;
    font-size: 14px;
    font-style: italic;
}

.car-page .right .menu li a:link,
.car-page .right .menu li a:visited {
    color: #047801;
    text-decoration: underline;
}

.car-page .right .menu li a:hover {
    text-decoration: none;
}


/*-- --*/

#booking .custom-select1.mini {
    width: 45px;
    float: left;
    margin-right: 10px;
    margin-bottom: 0;
    background: url("images/arrows.png") no-repeat scroll 85% 50% #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

#booking .custom-select1.mini select {
    width: 63px;
}

#booking .custom-select1 select {
    background: none repeat scroll 0 0 #fff;
    max-height: 29px;
    min-width: 48px;
}

input[type="password"], .page input[type="text"], .page  select, .page  textarea {
	border: 1px solid #c0c0c0;
}

table.style-table {
  border: 2px solid #047801;
  border-collapse: separate !important;
	border-spacing: 0;
  overflow: hidden;
	-webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
	width: 100%;
}

.sale_order_full_table td,
table.content-table th,
table.data-table th {
  /*background: url(images/table_head.gif) repeat-x 0 0;*/
	border: 0;
}

/*table.content-table td,
table.data-table td {
  border-top: 0;
}*/

table.style-table tr + tr td {
  border-top: 2px solid #047801;
}

/*.content-table {
  width: 100%;
	border: 1px solid #000;
	border-radius: 25px;
}*/

.content-table td,
.content-table th {
  padding: 5px;
}

table.grid-table,
table.grid-table td,
.add-fees .data-table,
.add-fees .data-table td {
  border: 0;
}

.bx_order_list_table tr:nth-child(2n+1) > *,
.bx_order_list_table_order tr:nth-child(2n+1) > *,
.grid-table tr:nth-child(2n+1) > *,
.add-fees .data-table tr:nth-child(2n+1) > * {
  background-color: rgba(0, 0, 0, 0.1);
}

.bx_order_list_table tr > *:nth-child(2n+1),
.bx_order_list_table_order tr > *:nth-child(2n+1),
.grid-table tr > *:nth-child(2n+1),
.add-fees .data-table tr > *:nth-child(2n+1) {
  background-color: rgba(0, 0, 0, 0.1);
}

.bx_order_list_table tr:nth-child(2n+1) > *:nth-child(2n+1),
.bx_order_list_table_order tr:nth-child(2n+1) > *:nth-child(2n+1),
.grid-table tr:nth-child(2n+1) > *:nth-child(2n+1),
.add-fees .data-table tr:nth-child(2n+1) > *:nth-child(2n+1) {
  background-color: rgba(0, 0, 0, 0.2);
}

.car-content p .Apple-style-span {
  display: inline;
}

/*table.data-table, table.bx_order_list_table, table.bx_order_list_table_order {
	border: 0;
}*/

.gallery {
  text-align: center;
}

.gallery ul {
  list-style: none;
	margin: 15px 0;
	padding: 0;
}

.gallery ul li{
  display: inline-block;
	margin: 0 5px;
}

.prop_list {
  overflow: hidden;
}

.car-content td img {
  margin: 0 15px;
}

#custombox-overlay {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

/*.half {
    float: left;
    width: 126px !important;
}

.city.half {
    margin-right: 15px;
}*/

#content .content-table tr td,
#content .content-table tr th {
  width: auto;
  padding: 10px 15px;
  vertical-align: middle;
}

#top select option {
  background-color: #464646;
}

.item .right .rebate {
  background: url("../images/rebate.png") no-repeat 100% 0;
}

.item .right .rebate + .cash span {
  text-decoration: line-through;
}

.step2 .order-info .booking-body .button {
  display: block;
}

.step4 .back, .step3 .order-info .back {
  width: auto;
  float: right;
  padding: 5px 15px;
  margin-top: 15px;
}

table.style-table th {
  background: #009900;
  background: -webkit-linear-gradient(top, #009900 0, #047801 100%);
  background: -moz-linear-gradient(top, #009900 0, #047801 100%);
  background: -o-linear-gradient(top, #009900 0, #047801 100%);
  background: linear-gradient(top, #009900 0, #047801 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009900', 
    endColorstr='#047801',GradientType=0);
	color: #fff;
	text-align: left;
}

/*.content-table tr,
.data-table tr {
  color: #047801;
}*/

table.style-table .properties {
  margin: 0;
}

.bx_order_list .bx_order_list_table,
.bx_order_list .bx_order_list_table_order {
  border-collapse: separate !important;
	border-spacing: 0;
  overflow: hidden;
	-webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
	border: 0;
}

.bx_order_list .bx_order_list_table thead tr td[colspan="2"],
.bx_order_list .bx_order_list_table tbody tr td[colspan="2"],
.bx_order_list .bx_order_list_table_order thead tr td {
    background: #ffffff;
    background: -webkit-linear-gradient(top, #ffffff 0, #f1f1f1 100%);
    background: -moz-linear-gradient(top, #ffffff 0, #f1f1f1 100%);
    background: -o-linear-gradient(top, #ffffff 0, #f1f1f1 100%);
    background: linear-gradient(top, #ffffff 0, #f1f1f1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', 
        endColorstr='#f1f1f1',GradientType=0);
		color: #047801;
}

.bx_order_list .bx_order_list_table td[colspan] {
		border-radius: 5px 5px 0 0;
}

.bx_order_list .bx_order_list_table td,
.bx_order_list .bx_order_list_table_order td {
    padding: 10px;
}

.bx_order_list .bx_ol_sku_prop td {
    padding: 1px 1px 10px;
		/*background-color: inherit !important;*/
}

.text-right {
    text-align: right;
		margin: 10px 0;
}

table.form-table {
    background: none transparent;
}

table.form-table th {
    background: none;
}

table.form-table td {
    border: 0;
}

table.blue input[type="password"],
table.blue input[type="text"],
table.blue textarea,
table.form-table input[type="password"],
table.form-table input[type="text"],
table.form-table textarea {
		width: 90%;
}

table.blue .chosen-container {
  max-width: 87%;
}

#modules .table {
		border-spacing: 39px 0;
		display: table;
		margin-bottom: 30px;
		margin-left: -40px;
		width: 1060px;
}

#modules .table > #booking,
#modules .table > .utility {
    display: table-cell;
    float: none;
    vertical-align: top;
}

#modules .table > .slider .slick-list {
    width: 300px;
}

.slick-list {
    overflow: visible;
}

.slick-track {
    position: inherit;
}

#modules .info.table {
    padding: 0;
}

#modules .info.table li {
    display: table-cell;
    float: none;
    vertical-align: top;
}

/*#modules .table > .slider .slick-slide .text {
    margin-top: -50px;
}*/

table.blue,
.blue {
    background: #047801;
}

table.blue {
  border-radius: 5px;
}

table.blue td,
table.blue th {
  padding: 15px;
}

.blue a:link,
.blue a:visited,
.blue * {
    color: #fff;
}

.blue .breadcrumbs a {
    color: #dfdfdf;
}

.blue .form-required {
    color: red;
}

.blue textarea {
	color: #727272;
}

.ui-tabs-nav {
  margin-bottom: -1px;
  padding: 0 15px;
  list-style: none;
}

.ui-tabs-nav li {
    display: inline-block;
}

.ui-tabs-nav a {
  display: inline-block;
	border-radius: 5px 5px 0 0;
	padding: 5px 15px;
	border: 1px solid #d0d0d0;
	text-decoration: none;
	border-bottom: 1px solid #fff;
}

.ui-tabs-nav a:link,
.ui-tabs-nav a:visited {
  background: #047801;
	color: #fff;
	border-bottom: 1px solid #d0d0d0;
}

.ui-tabs-nav .ui-tabs-active a,
.ui-tabs-nav a[href]:hover {
  background-color: #047801;
}

.ui-tabs-panel {
  border: 1px solid #d0d0d0;
	border-radius: 5px;
	padding: 10px;
}

/*-- --*/

.blue select, .blue option,
div.bx-auth-service-form span,
div.soc-serv-title {
  color: #727272;
}

div.soc-serv-title-grey {
  color: #fff;
}

table.blue tr td:first-child,
table.blue tr th:first-child {
  max-width: 320px;/*100px;*/
}

.data table.sale_order_full_table td {
  width: auto;
}

.data table.sale_order_full_table input[type="text"] {
  width: 85%;
  /*margin-top: 10px;*/
}

.car-page .step4 .order-info {
  width: 638px;
}

.car-page .booking-main .booking-body .item .mid {
  width: 150px;
}

.car-page .step4 .button {
  width: auto;
  margin-top: 25px;
}

.booking-nav a.yellow {
  color: #ffe300 !important;
}

.pure {
  padding: 0 !important;
}

.history {
  background: #077fcc;
}

.history .booking-main {
  display: block;
  margin-left: -25px;
  width: 638px;
}

.history .breadcrumbs *,
.order a:link, .order a:visited,
.order > *, .history > * {
  color: #fff;
}

.order {
  background: #047801;
  color: #fff;
  padding: 25px 10px !important;
}

.order .order-info .booking-body {
  padding: 25px 0 0;
}

.time.chosen-container .chosen-drop {
  overflow-y: scroll;
  max-height: 260px;
}

.time.chosen-container .chosen-drop::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

.time.chosen-container .chosen-drop::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

.global {
  float: left;
  margin: 0;
  color: #047801;
  position: relative;
  z-index: 20;
}

.global a {
  margin: 0 3px;
}

/*-- Special-offer --*/

.special-offer {
  /*display: inline-block;*/
  border: 1px solid #dadbdb;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
  background-color: #fff;
}

.special-offer .title,
.button.orange {
  display: block;
  box-sizing: border-box;
  background: #fd6f34;
  background: -webkit-linear-gradient(top, #fd6f34 0, #cc3e03 100%);
  background: -moz-linear-gradient(top, #fd6f34 0, #cc3e03 100%);
  background: -o-linear-gradient(top, #fd6f34 0, #cc3e03 100%);
  background: linear-gradient(top, #fd6f34 0, #cc3e03 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd6f34', 
        endColorstr='#cc3e03',GradientType=0);
  text-align: center;
  width: 100%;
}

.special-offer .title {
  padding: 12px;
  color: #fff;
  font-size: 1.5em;
  font-weight: 400;
}

.special-offer .title img {
  display: block;
  width: 100%;
}

.countdown {
  padding: 20px;
  text-align: center;
}

.countdown p {
  margin: 0 0 5px;
}

.flip-clock-wrapper {
  display: inline-block;
  margin: 0;
  width: auto;
  padding-bottom: 15px;
}

.flip-clock-wrapper ul {
  height: 40px;
  width: 20px;
  padding-left: 27px;
  margin: 0;
}

.flip-clock-wrapper .flip {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
}

.flip-clock-wrapper .flip + .flip {
  margin-left: 1px;
}

.flip-clock-wrapper ul li {
  line-height: 40px;
}

.flip-clock-wrapper ul li a div div.inn {
  background-color: #f1f1f1;
  font-size: 26px;
  color: #303030;
  font-family: arial;
  font-weight: 400;
  text-shadow: none;
  border: 1px solid #c9c9c9;
}

.flip-clock-wrapper ul li a div.up div.inn {
  background-color: #e2e2e2;
}

.flip-clock-divider {
  width: 5px;
  height: 40px;
}

.flip-clock-dot {
  display: none;
}

.flip-clock-divider .flip-clock-label {
  bottom: -1.5em;
  right: -40px;
  top: auto;
}

.flip-clock-divider.hours .flip-clock-label,
.flip-clock-divider.minutes .flip-clock-label,
.flip-clock-divider.seconds .flip-clock-label {
  right: -44px;
}

.button.orange {
  padding: 10px;
  margin-top: 15px;
}

/*-- /Special-offer --*/

#main-menu > li:first-child a {
    width: 40px;
    background: url(../images/home-icon.png) no-repeat 50% 50%;
    text-indent: -999px;
    overflow: hidden;
}

#main-menu > li:first-child ul {
    display: none !important;
}

/*-- Sticker --*/

.sticker-block {
  position: relative;
  /*bottom: 35px;
  left: 0;*/
}

.sticker {
  display: block;
  border: 2px solid #fff;
  border-radius: 0 10px 10px 0;
  background: #e98b39;
  background: -webkit-linear-gradient(top, #e98b39 0, #d37523 100%);
  background: -moz-linear-gradient(top, #e98b39 0, #d37523 100%);
  background: -o-linear-gradient(top, #e98b39 0, #d37523 100%);
  background: linear-gradient(top, #e98b39 0, #d37523 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e98b39', 
    endColorstr='#d37523',GradientType=0);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  padding: 2px 25px;
  margin-left: -12px;
  text-decoration: none;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
}

.sticker:before {
  display: block;
  content: "";
  position: absolute;
  left: -2px;
  bottom: -8px;
  width: 14px;
  height: 8px;
  background: url(../images/corner.png) no-repeat 0 0;
}

.sticker.orange {
  background: url(../images/sticker-bg2.png) repeat-x scroll 0 0 / auto 100% #d88d40;
}

.sticker.orange:before {
  background: url(../images/sticker-corner2.png) no-repeat 0 0 / auto 100%;
}

/*-- /Sticker --*/

/*-- Screen 800px --*/

@media screen and (max-width: 1080px) {
  .inner {
    width: 100%;
    max-width: 750px;
  }
  #main .inner {
    overflow: hidden;
  }
  /*- Header -*/
  #header {
    padding: 20px 0;
  }
  .global {
    display: none;
    width: 100%;
  }
  #header .date,
  #header .tel {
    display: none;
  }
  #header .contacts {
    float: right;
    width: 295px;
  }
  #header > img,
  .move_link {
    display: none;
  }
  .menu li:first-child ul {
    left: -20px;
    right: -60%;
  }
  .menu li:last-child ul {
    right: -20px;
    left: -60%;
  }
  /*- Modules -*/
  #modules .table {
    border-spacing: 0;
    margin-left: 0;
    width: 100%;
  }
  #modules .table > #booking {
    width: auto;
  }
  /*#booking .bottom .button.yellow {
    display: block;
    margin-top: 10px;
  }*/
  #booking .booking-nav ul li.first,
  #booking .booking-nav ul li.first + li {
    padding-right: 50px;
  }
  #booking .bottom {
    max-width: 268px;
  }
  #booking .bottom .button {
    margin-right: 0;
    float: none;
    width: 100%;
    box-sizing: border-box;
  }
  #booking.step3 .order-info .button {
    float: left;
  }
  #booking.step3 .order-info .back {
    float: right;
  }
  #modules .table,
  #modules .table > #booking,
  #modules .table > .utility {
    display: block;
  }
  #modules .table > .utility {
    max-width: none;
  }
  .special-offer {
    max-width: 40%;
    float: left;
  }
  .fast-order {
    max-width: 40%;
    float: right;
  }
  #modules .menu li:last-child {
    display: inherit;
  }
  .banners li, .info li {
    width: 230px;
    margin-left: 10px;
  }
  #modules .info.table {
    border-spacing: 30px 0;
    margin-left: -30px;
    width: 810px;
  }
  .info li {
    width: 440px;
  }
  .info li.first {
    width: 180px;
  }
  .chosen-car {
    width: 295px;
  }
  .car-page > .left,
  .car-page > .right {
    width: 100%;
    float: none;
  }
  .car-page > .right {
    margin-top: 30px;
  }
  .car-page .banners li {
    margin: 0 0 0 10px;
  }
  .car-page .step4 .order-info {
    width: 100%;
    display: block;
  }
  #modules > .menu li a {
    padding: 10px 0;
  }
  /*- Footer -*/
  #footer .top img {
    display: none;
  }
  #footer .subscription a {
    display: none;
  }
}

/*-- /Screen 800px --*/

/*-- Screen 320px --*/

@media screen and (max-width: 735px) {

.main_slider {
	max-height: unset;
}

.main_slider .mobile {
      display: block;
}


.main_slider .desktop {
      display: none;
}

.main_slider.slick-slider {
    margin-bottom: 0px;
}
  .inner {
    width: 320px;
    box-sizing: border-box;
    position: relative;
  }
  .menu, .menu li,
  .table {
    display: block;
  }
  .menu {
    padding: 25px 20px;
  }
  /*.menu li + li {
    margin-top: 20px;
  }*/
  .menu .parent ul {
    background-color: transparent;
    position: static;
    display: block;
    border: 0;
  }
  .menu .parent ul li + li {
    margin-top: 0;
    border: 0;
  }
  .menu .parent ul li a {
    color: #fff;
  }
  #main .inner {
    padding: 0 10px;
  }
  /*- Top -*/
  #top {
    position: relative;
    margin-bottom: 50px;
  }
  .left, .right {
    float: none;
  }
  #top .right {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  #top .right .login {
    background-color: #464646;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }
  #top .left .city-select {
    margin: 0 5px;
    width: 80px;
  }
  #top .left select {
    background-position: 67px 50%;
  }
  /*- Header -*/
  #header {
    padding: 20px 0;
    text-align: center;
  }
  #top #search-button,
  #header .date,
  #header > img,
  #header .contacts .text a {
    display: none;
  }
  #header .logo,
  #header .contacts {
    float: none;
  }
  #header .contacts {
    width: auto;
    padding-top: 40px;
    display: block;
  }
  #header .contacts img {
    width: 25px;
  }
  #header .contacts .text {
    text-align: left;
  }
  #header .contacts .text .tel {
    display: inline-block;
    font-size: 20px;
    line-height: 26px;
    color: #0268BC;
  }
  #menu-open {
    display: block;
    float: right;
    margin-top: -40px;
  }
  #main-menu {
    display: none;
  }
  /*- Modules -*/
  #modules .table {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  #modules .table > #booking,
  #modules .table > .utility {
    display: block;
  }
  .special-offer {
    max-width: none;
    float: none;
  }
  .booking-nav .edit {
    display: none;
  }
  #booking .booking-nav ul li,
  #booking .booking-nav ul li.first.active + li {
    padding-left: 25px; 
  }
  #booking .booking-nav ul li.first + li {
    padding-right: 6px;
  }
  #booking.full-width .booking-nav ul li {
    padding-left: 6px;
  }
  #booking .booking-nav ul li.first {
    padding: 0 6px 0 0;
  }
  #order .left,
  #order .right {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #booking .chosen-container {
    /*width: 100% !important;*/
    box-sizing: border-box;
    margin-right: 0;
  }
  .booking-main, .order-info {
    width: auto;
    display: block;
    position: relative;
  }
  .booking-main .booking-body {
    padding: 20px;
  }
  .full-width .booking-main .booking-body .item > div {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .booking-main .booking-body .item .about {
    display: none;
  }
  .properties {
    margin: 10px 5px;
    text-align: center;
  }
  .item .mid p {
    display: none;
  }
  .order-info, {
    display: none;
  }
  .booking-main .booking-body .top-body .auto,
  .booking-main .booking-body .top-body .gearbox,
  .booking-main .booking-body .top-body .mileage {
    display: block;
    width: auto;
    padding: 0 !important;
    float: none;
  }
  .step2 .booking-main .booking-body h3 {
    width: auto;
    margin-left: 0;
  }
  .step5 .your-car .car-info,
  .step4 .your-car .car-info,
  .step3 .your-car .car-info {
    float: none;
    text-align: center;
    width: auto;
  }
  .step5 .booking-main, .step4 .booking-main, .step3 .booking-main,
  .step5 .order-info, .step4 .order-info, .step3 .order-info {
    width: auto;
    height: auto;
    min-height: auto;
  }
  #booking .chosen-container.mini {
    margin-right: 10px;
  }
  #booking select {
    background-color: #fff;
  }
   /*#booking .time {
    width: 80px;
    overflow: hidden;
  }
  #booking .time select {
   background: none;
    width: 120%;
    margin: 0;
  }*/
  .info-button {
    display: none;
  }
  #booking #order {
    padding-bottom: 125px;
  }
  #order .left .bottom {
    bottom: 75px;
  }
  #booking .bottom {
    width: 250px;
  }
  #booking.step5 .booking-main .bottom {
    position: static;
  }
  #booking.step4 .booking-main .button,
  #booking.step5 .booking-main .button {
    margin-top: 10px;
  }
  #booking.step4 .booking-main .discount,
  #booking.step4 .booking-main .discount + .button {
    width: 205px;
  }
  .data table.sale_order_full_table td {
    width: 50%;
  }
  .data table.sale_order_full_table input[type="text"] {
    width: 80%;
  }
  input[type="checkbox"] + label:before {
    float: left;
    overflow: hidden;
  }
  .park .booking-main,
  .park .order-info,
  .chosen-car {
    width: auto;
    min-height: none;
  }
  .park .item .card {
    background-position: 100% 50%;
  }
  .park .item-wrapper.active:after {
    display: none;
  }
  .data input[type="text"] {
    width: 105px;
  }
  #modules .table > .utility {
    display: block;
    margin: 25px 0;
  }
  #modules .slider {
    float: none;
  }
  #modules .table > .utility .slider + div {
    display: none;
  }
  #modules > .info, #content {
    display: none;
  }
  .car-page .banners li,
  .banners li, .info li {
    width: 100%;
    display: block;
    margin: 25px auto 0;
  }
  .car-page > .left {
    width: auto;
  }
  .step5 .your-car .route,
  .step4 .your-car .route,
  .step3 .your-car .route {
    float: none;
  }
  .step5 .order-info .add-fees p span,
  .step4 .order-info .add-fees p span,
  .step3 .order-info .add-fees p span {
    max-width: 200px;
  }
  #modules .menu li a {
    padding: 0;
  }
  #modules .menu li + li {
    margin-top: 20px;
  }
  .page {
    overflow-x: scroll;
  }
  .page input,
  .page textarea,
  .page select,
  .page label {
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
  table.form-table td img {
    max-width: 100%;
  }
  table.form-table thead,
  table.form-table tbody,
  table.form-table tr,
  table.form-table th,
  table.form-table td,
  table.blue,
  table.blue thead,
  table.blue tbody,
  table.blue tr,
  table.blue td,
  table.blue th {
    box-sizing: border-box;
    display: block;
    width: 100%;
  }
  table.form-table tr,
  table.blue tr {
    margin-bottom: 15px;
  }
  table.form-table th,
  table.form-table td,
  table.blue td,
  table.blue th{
    padding: 3px;
  }
  table.blue tr td:first-child,
  table.blue tr th:first-child {
    max-width: 100%;
  }
  table br {
    clear: both;
  }
  .history .booking-main {
    width: auto;
  }
  .history .item .mid p {
    display: block;
  }
  .chosen-car {
    overflow-y: auto;
  }
  .fast-order {
    max-width: none;
  }
  /*- Footer -*/
  #footer .top img {
    display: none;
  }
  #footer .subscription a {
    display: none;
  }
}

/*-- /Screen 320px --*/

/*-- Fast order --*/

.utility {
  max-width: 300px;
}

.fast-order {
  border: 1px solid #dadbdb;
  border-radius: 5px;
  width: 100%;
  text-align: left;
  overflow: hidden;
}

.fast-order .title {
  /*background: #ffe300;
  background: -webkit-linear-gradient(top, #ffe300 0, #ffcd00 100%);
  background: -moz-linear-gradient(top, #ffe300 0, #ffcd00 100%);
  background: -o-linear-gradient(top, #ffe300 0, #ffcd00 100%);
  background: linear-gradient(top, #ffe300 0, #ffcd00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe300', 
        endColorstr='#ffcd00',GradientType=0);
  color: #727272;*/
  box-sizing: border-box;
  display: block;
  text-align: left;
  width: 100%;
  font-size: 1.428571428571429em;/*1.714285714285714em;*//*1.5em;*/
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 400;
  /*padding: 12px;*/
}

.fast-order-body {
  padding: 20px;
  background: #00bd9c;/*url(../images/fast-form-bg.png) no-repeat 50% 80%;*/
  background-size: cover;
  color: #fff;
}

#form-info .errortext {
	background: #ffa6a6;
  background: -webkit-linear-gradient(top, #ffa6a6 0, #d05151 100%);
  background: -moz-linear-gradient(top, #ffa6a6 0, #d05151 100%);
  background: -o-linear-gradient(top, #ffa6a6 0, #d05151 100%);
  background: linear-gradient(top, #ffa6a6 0, #d05151 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa6a6', 
        endColorstr='#d05151',GradientType=0);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #d05151;
  margin-bottom: 15px;
  overflow: hidden;
  color: #fff;
  text-shadow: 1px 1px 0 #d05151;
}

#form-info .errortext span {
  background: url(../images/warning.png) no-repeat 15px 50%;
  padding: 15px 25px 15px 70px;
  display: block;
}

.for_common_form {
  text-align: left;
}

.for_common_form p {
  margin: 0 0 20px;
}

#fast-order-form {
  display: none;
}

.form-name {
  padding-left: 25px;
  background: url(../images/left-arrow.png) no-repeat 0 2px;/*url(../images/form-name-icon.png) no-repeat 0 50%;*/
  text-align: left;
  margin-bottom: 20px;
}

.block-address .inputtext {
  display: none;
}

.fast-order .chosen-container {
  width: 100% !important;
  text-align: left;
}

#form_input_address {
  display: none;
}

.fast-order input {
  box-sizing: border-box;
  width: 100%;
}

.form-row {
  margin-bottom: 20px;
}

.block-date_from {
  font-size: 0;
  color: #fff;
}

.block-date_from input {
  font-size: 14px;
  color: #303030;
  vertical-align: middle;
}

.fast-order textarea {
  max-width: 100%;
  box-sizing: border-box;
}

img.calendar-icon,
img.calendar-icon-hover {
  height: 15px;
  margin-left: -40px;
  margin-right: 21px;
  vertical-align: text-bottom;
  width: 16px;
  vertical-align: middle;
  margin-top: 0;
}

.fast-order img.calendar-icon,
.fast-order img.calendar-icon-hover {
  margin-left: -26px;
  margin-right: 10px;
  margin-top: 0;
}

.fast-order .button {
  display: inline-block;
  background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
  border: 0 none;
  color: #fff;
  border-radius: 0;
  margin-left: -20px;
  padding: 15px 20px;
}

.fast-order .button:after {
  border-right: 15px solid transparent;
  border-top: 50px solid rgba(0, 0, 0, 0.4);
  content: "";
  display: block;
  height: 100%;
  left: 100%;
  position: absolute;
  top: 0;
}

#send-fast-order {
  display: none;
}

/*-- /Fast order --*/

/*-- Cards --*/

.socials a,
.cards {
  display: inline-block;
  vertical-align: middle;
}

.cards {
    margin: 0 25px;
}

/*-- /Cards --*/

/*---- New lease terms ----*/

.line {
    margin-bottom: 25px;
    clear: both;
}

.line .column {
    float: left;
    width: 47%;
}

.line .column:first-child {
    padding-right: 6%;
}

.line p {
    margin: 0 0 25px;
}

.line ul {
    margin: 5px 0 25px;
    padding-left: 0;
    list-style: none;
}

.line ul li:before {
    display: inline;
    content: "�";
    margin-right: 3px;
}

.info.popup-tooltip {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #2e84c5;
    border-radius: 50%;
    color: #2e84c5;
    font-size: 10px;
    line-height: 11px;
    height: 11px;
    width: 11px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

/*---- /New lease terms ----*/


/* Terms */

div.terms ul li,
div.terms p {
    margin-bottom: 14px;
    line-height: 1.2;
    margin-top: 0;
    font-size: 14px;
}

div.terms ul li {
    margin-bottom: 8px;
}

div.terms ul {
    padding-left: 0;
}

div.terms ul li {
    list-style: none;
}

.terms .img {
    margin-bottom: 25px;
    margin-top: 25px;
}

.terms .cols {
    width: 100%;
}

.terms .cols > div {
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 30px;
}

.terms .cols > div:first-child {
    padding-left: 0px;
}

.terms .cols > .col-50 {
    width: 50%;
    float: left;
}

.text-center {
    text-align: center;
}

.print-version {
    margin-top: 50px;
    border-radius: 5px;
    background: -webkit-linear-gradient(90deg, #077fcc 0%, #008ae3 100%);
    background: -webkit-linear-gradient(bottom, #077fcc 0%, #008ae3 100%);
    background: linear-gradient(0deg, #077fcc 0%, #008ae3 100%);
    height: 32px;
    font: 400 14px/32px Arial;
    padding-left: 20px;
    padding-right: 20px;
    display: inline-block;
    color: #f5f5f5!important;
    text-decoration: none;
}

@media screen and (max-width: 735px) {
    .terms .cols > .col-50 {
        width: 100%;
    }
    .terms .cols > div {
        padding: 0;
    }
}

.terms .cols .subtitle {
    color: #303030;
    font: 700 14px / 1.6 Arial;
}

.terms .cols .title {
    color: #303030;
    font: 700 18px / 21px Arial;
    margin-bottom: 20px;
}

.terms table.tbl {
    color: #66a5d5;
    text-align: center;
    font: 600 14px / 1.2 Arial;
    border-collapse: collapse;
    margin-bottom: 28px;
}

.terms table.tbl .title {
    font: 400 14px / 1.2 Arial;
    text-align: left;
}

.terms table.tbl tr td {
    border-bottom: 2px solid #ebebeb;
    border-collapse: collapse;
}

.terms div table.tbl thead .title {
    text-align: center;
    line-height: 20px;
    padding: 10px 0;
}

.terms div table.tbl tbody td {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #009900;
}

.terms {}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}


/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/* End: Terms */
@media (max-width: 768px){
    #footer .bottom p a{
        display: inline-block;
        width: 100%;
    }
    .f-delimiter{
		display: none;
    }
}
@media (max-width: 991px) and (min-width: 768px){
    .banners li img{
        height: 160px;
    }
    .banners li .text a .button{
        position: absolute;
        top: 97%;
        height: 40px;
    }
    .banners li{
        overflow: visible;
    }
}

.wrapper-feedback__form form {
    padding: 30px;
}
.wrapper-feedback__form .wrapper-leave__feedback{
    background: linear-gradient(to right, #498806, #033612);
    background: -o-linear-gradient(to right, #498806, #033612);
    background: -ms-linear-gradient(to right, #498806, #033612);
    background: -moz-linear-gradient(to right, #498806, #033612);
    background: -webkit-linear-gradient(to right, #498806, #033612);
    padding: 10px;
}
.wrapper-feedback__form .wrapper-leave__feedback h3 {
    color: #fddc03;
    font-size: 26px;
    margin: 10px 0;
}

.wrapper-feedback__form .wrapper-feedback__item input:nth-child(1),
.wrapper-feedback__form .wrapper-feedback__item input:nth-child(2) {

}
.wrapper-feedback__form .wrapper-feedback__item input {
    box-shadow: unset;
    border: 1px solid #aeaeae;
    width: 100%;
}

.wrapper-feedback__form .wrapper-feedback__form-label,
.wrapper-feedback__form .wrapper-feedback__item label {
    margin-bottom: 5px;
    max-width: 150px;
}

.wrapper-feedback__form .wrapper-feedback__form-label,
.wrapper-feedback__form .wrapper-feedback__item input,
.wrapper-feedback__form .wrapper-feedback__item label {
    display: block;
    color: #333;
    font-size: 14px;
}
.wrapper-feedback__form .wrapper-feedback__item {
    width: 250px;
    margin-bottom: 15px;
    float: left;
    margin-left: 5px;
    margin-right: 5px;
}
.car-page .wrapper-feedback__form .button.yellow {
    color: #333;
    font-size: 16px;
    background: #fddc03;
    border: 0;
    padding: 10px 21px;
    margin: 0 10px 0 0;
    display: flex;
    font-weight: 700;
}
.wrapper-feedback__form {
    width: 100%;
    background-color: white;
    border: 1px solid #ebebeb;
    border-radius: 0;
}
.wrapper-feedback__form-textarea textarea {
    margin-bottom: 10px;
    width: 98%;
    box-shadow: unset;
    border: 1px solid #aeaeae;
}
.wrapper-feedback__form .wrapper-feedback__item-file + input {
    display: none;
}
.wrapper-feedback__form .wrapper-feedback__item-file {
    background-color: white;
    padding: 10px 15px;
    color: #009a00;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #009a00;
    border-radius: 5px;
    display: inline-flex;
    cursor: pointer;
    -webkit-transition: background-color .3s ease-in-out;
    -moz-transition: background-color .3s ease-in-out;
    -ms-transition: background-color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
}
.wrapper-feedback__form .wrapper-feedback__item-file:hover {
    background-color: #009a00;
    color: white;
}
.wrapper-feedback__form .wrapper-btns-feedback-forms {
    display: flex;
    justify-content: space-between;
}
.wrapper-feedback__form .wrapper-feedback__item-captcha input{
    display: block;
    box-shadow: unset;
    border: 1px solid #aeaeae;
}

.wrapper-feedback__form .requier-cnt p {
    margin: 0;
    color: #999;
    font-size: 12px;
}
.wrapper-feedback__form .requier-cnt {
    vertical-align: top;
    float: right;
}
.wrapper-feedback__form .requier-cnt,
.wrapper-feedback__form .wrapper-feedback__item-captcha {
    margin: 15px 0;
    color: #999;
    font-size: 12px;
    display: inline-block;
}
.wrapper-feedback__form .wrapper-feedback__item-captcha img {
    vertical-align: middle;
    margin: 10px 0;
    display: block;
}
.car-content p.news-item__name {
    color: #333;
    font-size: 18px;
    margin: 0;
    display: inline-flex;
    align-items: center;
}
.car-content p.news-item___review {
    font-size: 14px;
    color: #333;
    margin: 0 15px 15px 0;
}
.car-content p.news-date-time {
    display: inline-flex;
    margin: 0;
    font-size: 12px;
    color: #999;
    align-items: center;
}
.car-content .reviews-first__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.car-content .answer-reviews-first__row {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}
.car-content .wrapper-news-item__name img {
    margin-left: 10px;
}
.car-content .wrapper-news-date-time p {
    margin-bottom: 0;
}
.car-content .wrapper-news-item__name {
    color: #333;
    font-size: 18px;
}
.car-content .wrapper-news-date-time,
.car-content .wrapper-news-item__name {
    display: inline-flex;
    align-items: center;
}
.car-content .news-item.otvet {
    margin-top: 30px;
    padding: 20px;
    background-color: #edf8ed;
}
.car-content .wrapper-reviews__img a {
    display: block;
}
.car-content .wrapper-reviews__img img {
    max-width: 200px;
}

.bx_catalog_list_home .bx_catalog_list_home{
	border: none;
	margin: 0;
	padding: 0;
}