/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
}
body {
  margin: 0;
  font-family: "Ubuntu", Helvetica, Arial;
  font-size: 13px;
  line-height: 20px;
  color: #656d78;
  background-color: #ffffff;
}

.navbar {
  margin-bottom: 0;
}

.navbar-brand {
  padding: 0 15px;
}

.navbar-default {
  background: #fff;
  padding: 15px 0;
}

.navbar .nav > li > a {
  margin-top: 10px;
  padding: 3px 8px 4px 8px;
}

.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
  color: #fff;
  background-color: #378def;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.navbar .nav > li > a:hover,
.navbar .nav > li > a:focus {
  text-shadow: none;
  background-color: #ffffff;
  color: #c7c9cc;
}
.navbar .navbar-brand,
.navbar .nav > li > a,
.navbar .nav > li > a:hover,
.navbar .nav > li > a:focus {
  text-shadow: none;
}

.max-width200 {
  max-width: 200px !important;
}

/*** HomePage ***/

.reservation-form {
  width: 220px;
  padding: 10px 20px 20px 20px;
}

.flags-drop .divider {
  margin: 0 0 -1px 0;
  padding: 0;
}

.flags-drop > li > a:hover,
.flags-drop > li > a:focus {
  color: #ffffff;
  background-color: #378eef;
  background-image: -moz-linear-gradient(top, #378eef, #378eef);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#378eef),
    to(#378eef)
  );
  background-image: -webkit-linear-gradient(top, #378eef, #378eef);
  background-image: -o-linear-gradient(top, #378eef, #378eef);
  background-image: linear-gradient(to bottom, #378eef, #378eef);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#378eef', endColorstr='#378eef', GradientType=0);
}

/*** Homepage Slider **/
.slider-container {
  position: absolute;
  width: 100%;
  height: 350px;
  background-color: #fff;
  text-align: center;
}
.slider-container img {
  width: 100%;
  max-height: 390px;
  max-width: 1330px;
  text-align: center;
}

/*** Homepage booking tabs **/

.booking-form-container {
  position: relative;
  z-index: 1;
  top: 85px;
  max-width: 460px;

  margin-bottom: 50px;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;

  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}

.booking-form-container ul.nav-tabs li {
  width: 50%;
}

.booking-form-container ul.nav-tabs li a {
  border-radius: 0;
  margin-right: 0;
  padding-top: 13px;
  padding-bottom: 13px;
}

.booking-form-container ul.nav-tabs li a {
  /*background-color: #eeeeee;  ----------  original design */
  background-color: #f9f9f9;
  border-bottom: 1px solid #d2d2d2;
  border-top: 0;

  text-align: center;
  color: #a7aab0;
  font-family: "Ubuntu";
  font-size: 16px;
}

.booking-form-container ul.nav-tabs li a:hover,
.booking-form-container ul.nav-tabs li a:focus {
  border-top: 0;
}

.booking-form-container ul.nav-tabs li.active a {
  background-image: url("../img/tab_bg.jpg");
  background-position: 0 0;
  background-repeat: repeat-x;
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;

  text-align: center;
  color: #434b56;
  font-family: "Ubuntu";
  font-size: 16px;
}

.booking-form-container ul.nav-tabs li.first a {
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-left-radius: 5px;
  border-left: 1px solid #d2d2d2;
}

.booking-form-container ul.nav-tabs li.second a {
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
  border-right: 1px solid #d2d2d2;
}

.booking-form-container ul {
  margin-bottom: 0;
}
.booking-form-container .tab-content {
  overflow: hidden;
  background-color: #ffffff;

  border-right: 1px solid #d2d2d2;
  border-left: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;

  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

/**** Homepage Booking Form ***/
.quick-booking {
  float: left;
  padding: 30px 20px 0 20px;
  width: 100%;

  color: #7b838f;
  font-family: "Ubuntu";
  font-size: 13px;
}

/*.quick-booking .control-group {
	margin-bottom: 10px;
	float: left;
	width: 100%;
}*/

.quick-booking label {
  color: #7b838f;
  font-family: "Ubuntu";
  font-size: 13px;
}

.quick-booking .form-control {
  color: #a7abaf;
  border-color: #d2d2d2 !important;
}

.quick-booking .form-control:focus,
.quick-booking .form-control:hover {
  color: #555555;
  background-color: #f9f9f9;

  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;

  -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quick-booking .select-field {
  width: 420px;
}

.quick-booking .small-select-field {
  width: 120px;
}

.quick-booking .big-field {
  width: 400px;
}

.quick-booking .small-field {
  width: 78px;
  padding-left: 35px;
}

.quick-booking .tiny-field {
  width: 60px;
}

.calendar {
  background-image: url("../img/calendar.png");
  background-position: 10px 50%;
  background-repeat: no-repeat;

  color: #a7abaf;
  background-color: #fdfdfd !important;
  border-color: #d2d2d2;
}
.calendar:hover,
.calendar:focus {
  color: #555555;
  background-color: #f9f9f9 !important;
}

select {
  color: #a7abaf;
  background-color: #fdfdfd !important;
  border-color: #d2d2d2;
  font-size: 13px !important;
  line-height: 20px;
  padding: 4px 15px !important;
}
select:hover,
select:focus {
  color: #a7abaf;
  background-color: #fdfdfd !important;
  border-color: #d2d2d2;
}

form label {
  font-weight: normal;
}

/**** Homepage Intro Section ***/

.intro {
  float: left;
  position: relative;
  top: 35px;
  height: 450px;
}

.intro-text {
  float: left;
  height: 120px;
}

.intro-text h1 {
  color: #fff;
  font-family: "Ubuntu";
  font-size: 31px;
}

.intro-text h2 {
  color: #ebebeb;
  font-family: "Ubuntu";
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
}

.intro-cars {
  float: left;
  margin-top: 30px;
}

.intro-call-us {
  float: left;
  width: 100%;
  padding: 0;
  margin-top: 250px;
  text-align: center;
}

.intro-call-us p {
  padding-bottom: 0;
  margin-bottom: 5px;
  font-size: 19px;
  color: #5ab953;
}

.intro-call-us p a,
.intro-call-us p a:hover {
  text-decoration: none;
  color: #5ab953;
  font-weight: bold;
}

.intro-call-us small {
  font-size: 16px;
  color: #656d78;
}

/*** Newsletter ***/

.newsletter {
}

.newsletter .newsletter-form,
.newsletter .newsletter-form input,
.newsletter .newsletter-form label,
.newsletter .newsletter-form .btn {
  margin-bottom: 0;
  padding-bottom: 0;
}

.newsletter .newsletter-form label {
  color: #434b56;
  font-family: "Ubuntu";
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  padding-bottom: 10px;
  padding-left: 5px;
}

.newsletter .newsletter-form input[type="text"] {
  height: 45px;

  padding-top: 0;
  padding-left: 10px;

  margin-top: 2px;
  margin-right: 10px;
  margin-left: 2px;

  border: 1px solid #d2d2d2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgba(249, 249, 249, 0.3);
  -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/****** Boxy ******/
.boxy {
  border: 1px solid #d2d2d2;

  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;

  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #fff;
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}

.boxy-border {
  border-top: 5px solid #ef7c37;
}

.boxy-border-blue {
  border-top: 5px solid #378def;
}

.boxy .boxy-header {
  padding: 15px;
  border-bottom: 1px solid #d2d2d2;

  color: #434c57;
  font-family: "Ubuntu";
  font-size: 16px;
}

.boxy .boxy-header p {
  margin: 0;
  padding: 0;
}
.boxy .boxy-header a {
  font-family: "Ubuntu";
  font-size: 11px;
}

.boxy .boxy-header .head-left {
  width: 75%;
  display: inline-block;
}

.boxy .boxy-header .head-right {
  width: 22%;
  display: inline-block;
  text-align: right;
}

.boxy .left-div {
  width: 75%;
  display: inline-block;
}

.boxy .right-div {
  width: 22%;
  display: inline-block;
  text-align: right;
}

.boxy .subheading {
  padding: 5px 20px;
  margin: 0;

  font-family: "Ubuntu";
  font-size: 13px;
  color: #7c8490;
}

.grey-sub {
  background-color: #eeeeee;
}

.blue-sub {
  background-color: #dde9f7;
}

.inner-sub {
  width: 100% !important;
  margin-left: -20px !important;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.inner-sub-form {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.boxy .boxy-body {
  padding: 20px;
  color: #7c8490;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;

  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.boxy .boxy-body p:nth-last-child(1) {
  margin-bottom: 0;
}

.boxy .boxy-body ul {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;

  color: #7b8490;
  font-family: "Ubuntu";
  font-size: 13px;
}
.boxy .boxy-body ul li {
  line-height: 25px;
}

.boxy .boxy-footer {
  padding: 10px;
  border-top: 1px solid #d2d2d2;
  font-size: 11px;
  color: #acb3bb;
}

.boxy .boxy-footer p {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu";
}

/*** Boxy Menu ***/
.boxy-menu {
  padding: 0;
}
.boxy-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.boxy-menu ul li:nth-child(odd) {
  background-color: #f9f9f9;
}

/*** List with cars ***/

.boxy-list {
  padding: 0 !important;
  margin: 0 !important;
}

.boxy-list ul {
  margin: 0;
  padding: 0;
}

.boxy-list ul li {
  background-color: #f3f3f3;

  padding: 4px 20px;
  line-height: 25px;

  color: #7b8490;
  font-family: "Ubuntu";
  font-size: 13px;
}
.boxy-list ul li:nth-child(odd) {
  background-color: #f9f9f9;
}

.boxy-list ul li .list-left {
  width: 53%;
  display: inline-block;
}

.boxy-list ul li .list-right {
  width: 45%;
  display: inline-block;
  text-align: right;
}

.grey {
  background-color: #f9f9f9;
}

/**** Boxy testimonials **/

.boxy-footer-testimonials {
  padding: 10px 2px;
  border-top: 0;
}

.boxy-footer-testimonials p {
  margin: 0;
  padding: 0;

  color: #434b55;
  font-family: "Ubuntu";
  font-size: 13px;

  text-align: right;
}

.boxy-footer-testimonials p span {
  color: #a8abb0;
}

/**** /end Boxy ***/

/**** Footer ***/

footer {
  margin-top: 40px;
  padding: 40px 0 40px 0;

  border: 1px solid #d2d2d2;
  background-color: #fff;
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}

.foo-list li a {
  color: #7b8490;
  font-family: "Ubuntu";
  font-size: 13px;
}

.foo-list li a:hover,
.foo-list li a:focus {
  color: #378eef;
  text-decoration: none;
}

.support-footer {
  margin-top: 15px;
  padding: 10px;

  border: 1px solid #d2d2d2;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #f3f3f3;
  -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.support-footer .support-left {
  width: 30%;
  display: inline-block;

  font-size: 55px; /*** fonta awesome icon **/
  color: #ed7432;
}

.support-footer .support-right {
  width: 68%;
  display: inline-block;
}

.support-footer p {
  margin: 0;
  padding: 0;
}

.support-footer .muted {
  font-family: "Ubuntu";
  font-size: 11px;
}

.support-footer .support-phone {
  color: #434b55;
  font-family: "Ubuntu";
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.support-footer .support-phone a {
  color: #434b55;
  font-family: "Ubuntu";
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.support-footer .support-mail a {
  border-bottom: 1px dashed #4395ef;
  text-decoration: none;
}

.support-footer .support-mail a:hover {
  border-bottom: 1px solid #4395ef;
}

.social-footer {
  margin-top: 15px;
}

.social-footer li {
  display: inline-block;
  width: 32%;
}

.footer-bottom {
  padding: 15px 0 5px 0;

  border: 1px solid #cbcbcb;
  background-color: #f9f9f9;
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

.footer-bottom p {
  margin: 0;
  padding: 0;

  color: #aeb4bd;
  font-family: "Ubuntu";
  font-size: 12px;
}

.foo-terms {
  margin: 0;
  padding: 0;
}

.foo-terms li {
  display: inline-block;
  margin-right: 5px;
  color: #aeb4bd;
}

.foo-terms li a {
  color: #aeb4bd;
  font-family: "Ubuntu";
  font-size: 12px;
}

.foo-terms li a:hover {
  text-decoration: none;
  color: #4395ef;
}

/***** Support BOX ***/

.support-box {
  margin-top: 25px;
  padding: 10px;

  border: 1px solid #d2d2d2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #f9f9f9;

  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}

.support-box .support-left {
  width: 30%;
  display: inline-block;

  font-size: 55px; /*** fonta awesome icon **/
  color: #ed7432;
}

.support-box .support-right {
  width: 68%;
  display: inline-block;
}

.support-box p {
  margin: 0;
  padding: 0;
}

.support-box .muted {
  font-family: "Ubuntu";
  font-size: 11px;
}

.support-box .support-phone {
  color: #434b55;
  font-family: "Ubuntu";
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
.support-box .support-phone a {
  color: #434b55;
  font-family: "Ubuntu";
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.support-box .support-phone a:hover {
  text-decoration: none;
}

.support-box .support-mail a {
  border-bottom: 1px dashed #4395ef;
  text-decoration: none;
}

.support-box .support-mail a:hover {
  border-bottom: 1px solid #4395ef;
}

/***** /SUPPORT BOX ***/

/**** Contact Page ****/
.contact-form .control-label {
  width: 120px;
  margin-top: 8px;
}

.contact-form .controls {
  margin-left: 140px;
}

.social-block {
  color: #7c8490;
  /*font-size: 20px;*/
  display: inline-block;
}

.social-block li {
  color: #7c8490;
  font-size: 34px;
  display: inline-block;
  margin-right: 5px;
}

.social-block li a {
  color: #7c8490;
}

.social-block li a:hover {
  text-decoration: none;
}

.social-block li.facebook a:hover {
  color: #3b5998;
}

.social-block li.twitter a:hover {
  color: #00aced;
}

.social-block li.gplus a:hover {
  color: #dd4b39;
}

/**** Help Page ***/

.help-page .panel-default > .panel-heading {
  color: #7c8490;
  background-color: #fff;
  border-color: #ddd;
}

.help-page .panel-group a {
  color: #7c8490;
  font-size: 13px;
}

.help-page .panel-title a:hover,
.help-page .panel-title a:focus {
  color: #378eef;
  text-decoration: none;
}

.help-page .panel-title .question {
  color: #7c8490;
  font-weight: bold;
}

/**** Car Fleet Steps ***/
.steps {
  border: 1px solid #d2d2d2;
  border-top: 0;
  background-color: rgba(255, 255, 255, 0.4);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);

  padding: 0;
  margin: 0;
}

.steps .step-list {
  margin: 0;
  padding: 0;

  height: 50px;
}

.steps .step-list li {
  border-right: 1px solid #d1d1d1;

  margin: 0 -5px 0 0;
  padding: 0;

  width: 25%;
}

.steps .step-list li.last {
  border-right: 0;
}

.steps .step-list li a {
  color: #585858;
  font-family: "Ubuntu";
  font-size: 15px;
  text-decoration: none;
  text-align: center;

  padding: 15px 0;
  margin: 0;
  display: inline-block;

  width: 100%;
}

.steps .step-list li a:hover {
  text-decoration: none;
}

.steps .step-list li a.disabled {
  color: #c7c9cd;
  cursor: text;
}

.steps .step-list li.current {
  background: #434b56;
}
.steps .step-list li.current a {
  color: #ffffff;
}

/*** Car Box **/
.car-box {
  width: 100%;
}

.car-box .box-car-left {
  padding: 20px 0 0 10px;

  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
}

.car-box .box-car-middle {
  padding: 20px 0;
}

.car-box .box-car-right {
  background: #f3f3f3;
  padding: 20px;
  text-align: center;

  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
}

.car-box .car-box-title {
  color: #444c57;
  font-family: "Ubuntu";
  font-size: 14px;
}

.car-box-features {
  color: #656d78;
  font-family: "Ubuntu";
  font-size: 13px;

  margin: 5px 0 10px 0 !important;
}
.car-box-features img {
  margin-right: 5px;
  vertical-align: middle;
}

.car-box .box-car-right .car-box-price {
  color: #444c57;
  font-family: Ubuntu;
  font-size: 18px;
  font-weight: bold;
}

.car-box .box-car-right .btn {
  margin-top: 15px;
}

.car-box-bar {
  width: 100%;
  height: 2px;
  background-image: url("../img/bar.png");
  background-position: 0 0;
  background-repeat: repeat-x;

  clear: both;
}

/**** FlexSlider ***/
.slider {
  margin: 0 !important;
}
#carousel li {
  margin-right: 5px;
}
#carousel img {
  display: block;
  opacity: 0.5;
  cursor: pointer;
}
#carousel img:hover {
  opacity: 1;
}
#carousel .flex-active-slide img {
  opacity: 1;
  cursor: default;
}
.flexslider {
  margin: 0 0 10px;
  background: #fff;
  border: 4px solid #fff;
}
.flex-direction-nav a {
  width: 26px;
  height: 26px;
  margin: -10px 0 0;
  color: rgba(0, 0, 0, 1) !important;
}
.flex-direction-nav a:before {
  font-size: 26px;
}

.ribbon-info {
  background: url("../img/ribbon_info.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  display: block;
  width: 41px;
  height: 41px;
  position: absolute;
  z-index: 1;
}
.ribbon-info:hover {
  cursor: pointer;
}

/**** Car Details Page ***/
.car-details-list {
}

.car-details-list li {
  background-color: #f6f6f6;
  padding: 8px 20px;
}
.car-details-list li:nth-child(odd) {
  background-color: #f3f3f3;
}
.car-details-list li:nth-child(1) {
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.car-details-list li:nth-last-child(1) {
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.car-details-list li span {
  width: 39%;
  text-align: left;
  display: inline-block;
}

.car-details-list li strong {
  width: 59%;
  text-align: left;
  display: inline-block;
}

/**** Similar Cars ***/
.box-similar-image {
  width: 179px;
  height: 110px;
  text-align: center;

  padding: 20px 20px 0 20px;
}

.box-similar-foo-left {
  width: 59%;
  display: inline-block;
  text-align: left;
}

.box-similar-foo-right {
  width: 39%;
  display: inline-block;
  text-align: right;
}

.contact-large-block {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-large-block li {
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-right: 20px;

  font-size: 18px;
  vertical-align: middle;
}

.contact-large-block li a {
  font-size: 18px;
  color: #7b8490;
  padding: 0;
  margin: 0;
}

.contact-large-block li a:hover {
  color: #378eef;
}

/**** EXTRAS PAGE ***/
.box-extra {
  padding: 20px;
}

.box-extra .box-extra-check {
  background: #f3f3f3;
  padding: 20px 0 20px 8px;

  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
}
.box-extra .box-extra-check .extra-input {
  margin-top: 38px;
}

.box-extra .box-extra-image {
  text-align: center;
  padding: 20px 0;
}

.box-extra .box-extra-content {
  padding: 20px 0;
}

.box-extra .box-extra-content .extra-title {
  font-size: 14px;
  color: #444c57;
  padding-bottom: 10px;
}

.box-extra .box-extra-price {
  background: #f3f3f3;
  padding: 20px;

  font-size: 20px;
  color: #444c57;
  text-align: center;

  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
}

.box-extra .box-extra-price .extra-price {
  margin-top: 38px;
}

.box-extra-bar {
  width: 100%;
  height: 2px;
  background-image: url("../img/bar.png");
  background-position: 0 0;
  background-repeat: repeat-x;

  clear: both;
}

.blog_title {
  color: #434c57 !important;
  font-family: Ubuntu !important;
  font-size: 16px !important;
  font-weight: bold;
}
.blog_title:hover {
  text-decoration: none;
  color: #378eef !important;
}

textarea,
select,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #fdfdfd;
}

.parsley-error-list {
  margin-left: 0 !important;
}
.parsley-error-list li {
  list-style: none !important;
}

.circle {
  /*    background-color: #ef7c37;*/
  border: 1px solid #ef7c37;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-block;
  padding: 10px 5px 0 5px;
  margin: 0;
  color: #434c57;
  line-height: 15px;
  text-align: center;
}

.p10 {
  padding: 15px;
}

.mt8 {
  margin-top: 8px;
}
.ml2 {
  margin-left: 2px;
}

.mr10 {
  margin-right: 10px;
}

.box-extra {
  border-left: 2px solid #f9f9f9;
}
.box-extra:hover {
  background-color: #f3f3f3;
  border-left: 2px solid #378def;
}
.box_asig_title {
  margin-top: 10px;
  font-size: 25px;
}
.box-extra-price {
  background: none !important;
}
.btn-price {
  min-width: 85px;
}

.circle {
  width: 50px;
  height: 50px;
}

.promo {
  background-color: #ef7c37;
  color: #fff;
}
.promo .boxy-body {
  color: #fff;
  font-size: 16px;
}

.typeahead {
  width: 280px;
}
.typeahead li a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.big-form .input-field {
  color: #555;
}
.selector span {
  color: #555 !important;
}

.alert-danger,
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
}

.overlay {
  background: url(../img/over.png);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.overlay span {
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  width: 100%;
  position: absolute;
  bottom: 50%;
  left: 0;
  color: #ddd;
  font-family: "Ubuntu", Helvetica, Arial;
  font-weight: bold;
}
.alert {
  font-size: 16px;
}
.alert-success {
  background-color: #4ea14f;
  border-color: #4ea14f;
  color: #fff;
  text-shadow: none;
}
.alert-success h4 {
  color: #fff;
}

.alert-danger,
.alert-error {
  background-color: #ef5a37;
  border-color: #ef5a37;
  color: #fff;
  text-shadow: none;
}

.boxy .subheading {
  color: #000;
}

.rca_validate_img {
  float: right;
  margin-right: 20px;
  margin-top: -45px;
  position: relative;
}

.rca_2min_img {
  float: right;
  margin-right: 20px;
  margin-top: -110px;
  position: relative;
}

.div_titlu_valabilitate .nav-tabs > li.active > a {
  background-color: #f9f9f9 !important;
}
.div_titlu_valabilitate .nav-tabs > li > a {
  font-family: "Ubuntu";
  font-size: 16px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* IE10-specific styles go here */

  .boxy .boxy-body {
    padding-right: 0;
  }

  .boxy .subheading {
    padding-right: 6px;
  }

  .inner-sub {
    width: 99% !important;
  }
}

.btn-mini {
  padding: 0 6px;
  font-size: 10.5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.label_quote {
  border-radius: 50px;
  padding: 0 !important;
  height: 15px;
  width: 15px;
  padding: 5px;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.div_btn_valabilitate {
  text-align: right;
}

.box_btns {
  text-align: right;
}
.box_circles {
  text-align: right;
}

.tip i,
.tip2 i {
  color: #2f79cd;
}

@media (min-width: 1200px) {
  .bigtip div.tooltip-inner {
    max-width: 470px;
  }
}

@media (min-width: 990px) and (max-width: 1200px) {
  .hide990_1200 {
    display: none;
  }
}

@media (max-width: 1024px) {
  .intro {
    text-align: center;
  }
  .intro-call-us {
    margin-top: 200px;
  }
}

@media (max-width: 993px) {
  .rca_2min_img {
    display: none;
  }
}

@media (max-width: 979px) {
  .booking-form-container {
    top: 20px;
  }

  .img_2min {
    margin-top: 0;
  }

  .rca_validate_img {
    margin-top: -20px;
  }

  .tip,
  .tip2 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  footer .container:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom,
  .footer-bottom p {
    text-align: center;
  }

  .booking-form-container {
    top: 20px;
  }
}

@media (max-width: 767px) {
  .navbar-default .nav li a {
    border-bottom: 1px solid #e7e7e7;
    padding: 0 8px 10px 8px;
  }
  .navbar-default .nav li:nth-last-child(1) a {
    border-bottom: 0;
  }

  .checkbox-inline + .checkbox-inline,
  .radio-inline + .radio-inline {
    margin-left: 0 !important;
  }
  .checkbox-inline,
  .radio-inline {
    display: block;
    margin-bottom: 5px;
  }

  #subscribe {
    margin-top: 10px;
  }

  .box_btns {
    padding-top: 15px;
  }
  .box_circles {
    text-align: right;
  }

  .step_livrare_title {
    /*            text-align: center;*/
    font-weight: normal;
  }
  .step_livrare_title strong {
    font-weight: normal;
  }

  .booking-form-container {
    max-width: 100%;
  }
  .div_img2_min {
    text-align: right;
    margin-right: 5%;
  }
}

@media (max-width: 480px) {
  footer {
    text-align: center;
  }
  footer .container:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom,
  .footer-bottom p {
    text-align: center;
  }

  .newsletter-form {
    text-align: center;
  }
  .newsletter-form button {
    margin-top: 10px;
  }

  .booking-form-container {
    top: 20px;
  }

  .img_2min {
    margin-top: 0;
  }

  .form_heading {
    text-align: center;
  }
}

@media (max-width: 320px) {
  .hide320 {
    display: none;
  }

  .img_2min {
    margin-left: 0 !important;
    margin-top: 0;
    width: 100%;
  }

  .rca_validate_img {
    width: 90%;
  }

  .form_heading {
    text-align: center;
  }

  .align_center_320 {
    text-align: center;
  }

  .div_titlu_valabilitate {
    width: 100%;
  }
  .div_btn_valabilitate {
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
  .div_titlu_valabilitate {
    text-align: center;
  }

  .box-extra {
    padding-left: 10px;
    padding-right: 10px;
  }
}
