/*
FIX Auto Service
Készítette: netpeople.hu
marosi.csaba@netpeople.hu
Minden jog fenntartva.
(c) 2013
*/

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  outline: none;
}

b,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

a,
input[type="submit"] {
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  border: none;
}

/* Font faces */
@font-face {
  font-family: "KeepC";
  src: url("../fonts/keepcalm-medium-webfont.eot");
  src: url("../fonts/keepcalm-medium-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/keepcalm-medium-webfont.ttf") format("truetype"),
    url("../fonts/keepcalm-medium-webfont.svg#KeepC") format("svg");
  font-weight: normal;
  font-style: normal;
  font-smooth: always;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transform: rotate(-0.0000000001deg);
  -ms-transform: rotate(-0.0000000001deg);
  transform: rotate(-0.0000000001deg);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

/* Body definitions */
body {
  font: normal 14px Helvetica, Arial, sans-serif;
  color: #444;
  background: #f4f4f4;
  /* background-color: #000000; */
  text-align: center;
  overflow-y: scroll;
}

.wrapper {
  width: calc(100% - 10px);
  max-width: 940px;
  margin: 0 auto;
  padding: 0 5px;
  position: relative;
  text-align: left;
}

/* UI elements */
.btn {
  display: inline-block;
  padding: 10px 30px;
  font: normal 15px "KeepC", Helvetica, Arial, sans-serif;
  color: #fff;
  background: #e2001a;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #f20923),
    color-stop(100%, #ce0018)
  );
  background: -webkit-linear-gradient(top, #f20923 0%, #ce0018 100%);
  background: -o-linear-gradient(top, #f20923 0% #ce0018 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f20923),
    to(#ce0018)
  );
  background: -o-linear-gradient(top, #f20923 0%, #ce0018 100%);
  background: linear-gradient(top, #f20923 0%, #ce0018 100%);
  -webkit-box-shadow: inset 0 1px #db4074, 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px #db4074, 0 2px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid #ce0018;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none !important;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  outline: none;
}

.btn:hover {
  background: #e2001a;
  border: 1px solid #e2001a;
}

.btn:focus {
  background: #e2001a;
  border: 1px solid transparent;
  -webkit-box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.3);
  -webkit-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}

.btn-gray {
  background: #444;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #949494),
    color-stop(100%, #606060)
  );
  background: -webkit-linear-gradient(top, #949494 0%, #606060 100%);
  background: -o-linear-gradient(top, #949494 0% #606060 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#949494),
    to(#606060)
  );
  background: -o-linear-gradient(top, #949494 0%, #606060 100%);
  background: linear-gradient(top, #949494 0%, #606060 100%);
  border: 1px solid #939393;
  -webkit-box-shadow: inset 0 1px #afafaf, 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px #afafaf, 0 2px 2px rgba(0, 0, 0, 0.2);
}

.btn-gray:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #a5a5a5),
    color-stop(100%, #5f5f5f)
  );
  background: -webkit-linear-gradient(top, #a5a5a5 0%, #5f5f5f 100%);
  background: -o-linear-gradient(top, #a5a5a5 0% #5f5f5f 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#a5a5a5),
    to(#5f5f5f)
  );
  background: -o-linear-gradient(top, #a5a5a5 0%, #5f5f5f 100%);
  background: linear-gradient(top, #a5a5a5 0%, #5f5f5f 100%);
  border: 1px solid #999;
  -webkit-box-shadow: inset 0 1px #afafaf, 0 2px 2px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 1px #afafaf, 0 2px 2px rgba(0, 0, 0, 0.4);
}

/* Header section */
#header {
  width: 100%;
  height: 75px;
  float: left;
  background: #ebebeb;
  /* background-color: #000000; */
  border-bottom: 1px solid #d4d4d4;
}

#header .logo {
  width: 157px;
  height: 138px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 800;
  background: url(../img/fix_logo.png) no-repeat;
  /* background: url(../img/fix-logo-s.png) no-repeat; */
  background-size: 100% auto;
}

/* Top navigation */
#menu {
  width: calc(100% - 165px);
  float: right;
  margin: 45px 20px 0 0;
}

#menu li {
  float: right;
  margin-left: 3px;
}

#menu li a {
  font: normal 12px "KeepC", Helvetica, Arial, sans-serif;
  color: #5e5e5e;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px;
}

#menu li a:hover {
  color: #222;
}

#menu li a.open {
  color: #e2001a;
}

#menu li a.open i,
#menu li.selected a i {
  background: url(../img/menu-dd-arrow.png) bottom no-repeat !important;
}

#menu li a.toggler i {
  width: 10px;
  height: 5px;
  display: inline-block;
  position: relative;
  top: -2px;
  background: url(../img/menu-dd-arrow.png) top no-repeat;
}

#menu li.stressed a {
  background: #e2001a;
  color: #fff;
}

#menu li.selected a {
  color: #e2001a;
}

#menu .dropdown {
  width: 890px;
  position: absolute;
  top: 75px;
  left: 0;
  z-index: 750;
  padding: 70px 25px 10px 25px;
  display: none;
  background: #fff;
  border: 1px solid #d4d4d4;
}

#menu .dropdown ul.services {
  width: 100%;
  float: left;
}

#menu .dropdown ul.services li {
  width: 32.5%;
  height: 36px;
  margin-bottom: 13px;
  float: left;
  background-position: 0px 0px;
  background-repeat: no-repeat;
}

#menu .dropdown ul.services li a {
  width: 73%;
  float: right;
  position: relative;
  font: bold 14px/18px Helvetica, Arial, sans-serif;
  color: #5e5e5e;
  margin-right: 10%;
  padding: 0;
  text-transform: none;
  text-align: left;
}

#menu .dropdown ul.services li a:hover {
  color: #777;
}

#menu .fb {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 44px;
  right: 0;
  display: inline-block;
  background: url(../img/fb.png) no-repeat;
}

/* Herospace */
#herospace {
  display: none;
  width: 100%;
  position: relative;
  float: left;
  text-align: center;
  overflow: hidden;
  margin-top: -1px;
}

.mobile-reservation {
  display: block;
  position: relative;
  width: 100%;
  float: left;
  padding: 3rem .5rem 1.5rem .5rem;
}

.mobile-reservation a {
  user-select: none;
  margin: 0;
  outline: none;
  cursor: pointer;
  font: normal 12px "KeepC", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  background: #e2001a;
  color: #fff;
  padding: 6px;
}

@media screen and (min-width: 768px) {
  #herospace {
    display: block;
  }

  .mobile-reservation {
    display: none;
  }
}

#herospace .hero-bg {
  width: 1920px;
  height: 520px;
  /* display: none; */
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0 -960px;
  z-index: 200;
  text-align: center;
}

#herospace .hero-bg-mobile {
  width: 100%;
  height: auto;
}

#herospace .wrapper {
  height: 520px;
  z-index: 600;
  overflow: hidden;
  text-align: center;
}

#herospace .wrapper .image {
  width: 940px;
  height: 280px;
  display: block;
  position: absolute;
  right: 0;
  top: 60px;
}

/* Featured boxes */
#boxes {
  width: 100%;
  float: left;
  position: relative;
  z-index: 700;
  margin-top: -150px;
}

#boxes .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

#boxes article {
  /* width: 280px; */
  /* min-height: 330px; */
  height: auto;
  /* height: 386px; */
  /* float: left; */
  flex: 0 1 30%;
  padding: 10px;
  margin: 0 auto 20px auto;
  background: #fff;
  /* text-align: justify; */
}

#boxes article.last {
  margin-right: 0;
}

#boxes article .image {
  width: 100%;
  height: 130px;
  text-align: center;
  /* background: #e2001a; */
  background: #ffffff;
}

#boxes article .teaser {
  width: 260px;
  float: left;
  margin: 10px 0 0 0 !important;
  padding: 10px;
}

#boxes article .teaser,
#boxes article .teaser p,
#boxes article .teaser div {
  font-size: 14px;
  line-height: 21px;
  color: #5e5e5e;
  margin-bottom: 10px;
}

#boxes article .teaser h2,
#boxes article .teaser h3,
#boxes article .teaser h4,
#boxes article .teaser h5 {
  color: #e2001a;
  font-family: "KeepC", Helvetica, Arial, sans-serif;
  line-height: 1.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#boxes article .teaser h2 {
  font-size: 21px;
}
#boxes article .teaser h3 {
  font-size: 19px;
}
#boxes article .teaser h4 {
  font-size: 17px;
}
#boxes article .teaser h5 {
  font-size: 14px;
}

#boxes article .teaser b,
#boxes article .teaser strong {
  color: #e2001a;
}

#boxes article .teaser i,
#boxes article .teaser em {
  background: #e2001a;
  font-weight: bold;
  font-style: normal;
  color: #fff;
  padding: 2px;
}

#boxes article .teaser a {
  color: #e2001a;
}

#boxes article .teaser h3 a {
  text-decoration: none;
}

#boxes article .teaser h3 a:hover {
  text-decoration: underline;
}

#boxes article .teaser li {
  font-size: 14px;
  line-height: 21px;
  padding-left: 18px;
  background: url(../img/li.png) 4px 8px no-repeat;
}

/* Newsletter subscribe */
.nl-box {
  width: 96%;
  float: left;
  padding: 2%;
  margin: 20px 0;
  background: #fff;
}

.nl-wrap {
  width: 367px;
  float: left;
  background: url(../img/nl-bg.png) 15px 10px no-repeat;
  padding: 20px 20px 20px 225px;
  border-right: 1px solid #e6e6e6;
}

.nl-wrap div,
.nl-wrap p,
.nl-wrap li {
  font-size: 14px;
  line-height: 1.3em;
  color: #525252;
}

.nl-wrap h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3em;
  color: #e2001a;
  margin-bottom: 10px;
}

.nl-form {
  width: 258px;
  float: right;
  padding-top: 12px;
}

.nl-form.full-size {
  width: 400px;
  float: left;
}

.nl-form label {
  width: 100%;
  float: left;
  margin: 5px 0;
}

.nl-form .nl-form-field-3 {
  display: none;
}

.nl-form label span {
  width: 23%;
  float: left;
  position: relative;
  top: 11px;
}

.nl-form label .form-input {
  width: 70%;
  float: right;
  font: normal 14px Arial, Helvetica, sans-serif;
  margin: 2px 5px;
  padding: 8px 3px;
  color: #777;
  background: #f9f9f9;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #e1e1e1),
    color-stop(100%, #ebebeb)
  );
  background: -webkit-linear-gradient(top, #e1e1e1 0%, #ebebeb 100%);
  background: -o-linear-gradient(top, #e1e1e1 0% #ebebeb 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e1e1e1),
    to(#ebebeb)
  );
  background: -o-linear-gradient(top, #e1e1e1 0%, #ebebeb 100%);
  background: linear-gradient(top, #e1e1e1 0%, #ebebeb 100%);
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  -webkit-box-shadow: inset 1px 1px 1px #fff;
  box-shadow: inset 1px 1px 1px #fff;
}

.nl-form label.nl-form-field-4 span {
  width: 70%;
}

.nl-form label.nl-form-field-4 .form-field {
  float: left;
  margin-right: 10px;
  margin-top: 10px;
}

.nl-form .btn-submit {
  float: left;
  margin-top: 10px;
}

/* SEO content */
#seo {
  width: 95%;
  float: left;
  padding: 2.5%;
  margin-top: -20px;
  background: #fff;
}

#seo h1 {
  display: block;
  font: normal 20px/1.5em "KeepC", Helvetica, Arial, sans-serif;
  color: #e2001a;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#seo p,
#seo div,
#seo li {
  display: block;
  line-height: 1.5em;
  color: #5e5e5e;
  margin-bottom: 20px;
}

/* Preloader */
.preloader {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8000;
  background: rgba(255, 255, 255, 0.75);
}

.preloader-body {
  width: 170px;
  height: 170px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  z-index: 9000;
  margin-top: -85px;
  margin-left: -85px;
  background: #e2001a;
  text-align: center;
  border-radius: 10px;
  color: #fff;
}

.preloader-body img {
  width: 60px;
  height: 60px;
  margin: 25px 0 15px 0;
}

.preloader-body span {
  display: block;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5em;
}

/* Page content */
#main {
  width: 100%;
  float: left;
}

#main h1.page-title {
  width: 100%;
  float: left;
  position: relative;
  color: #e2001a;
  font: normal 19px/1.3em "KeepC", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin: 20px 0;
}

#main h1.page-title.service-image {
  width: 95%;
  padding-left: 40px;
}

#main h1.page-title img {
  width: 36px;
  height: 36px;
  position: absolute;
  top: -8px;
  left: 0;
}

.page-wrapper {
  width: calc(100% - 40px);
  float: left;
  background: #fff;
  margin-top: 2px;
  padding: 65px 20px 10px 20px;
  position: relative;
}

.page-content-tiny {
  width: 385px !important;
  float: left;
}

.map-container {
  width: 500px;
  float: right;
}

.map-container a {
  font-size: 12px;
  color: #e2001a;
  line-height: 1.5em;
}

.page-content {
  width: 100%;
  float: left;
  margin-bottom: 25px !important;
}

.page-content a {
  color: #e2001a;
  text-decoration: underline;
}

.page-content a:hover {
  text-decoration: none;
}

.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5 {
  display: block;
  font-weight: bold;
  color: #e2001a;
  margin: 0 0 5px 0;
}

.page-content h2 {
  font-size: 16px;
}
.page-content h3 {
  font-size: 15px;
  color: #5e5e5e;
}
.page-content h4 {
  font-size: 14px;
}
.page-content h5 {
  font-size: 12px;
}

.page-content,
.page-content p,
.page-content div,
.page-content span {
  font-size: 14px;
  line-height: 21px;
  color: #5e5e5e;
  margin-bottom: 10px;
}

.page-content ul,
.page-content ol {
  width: 99%;
  float: left;
  margin: 10px 0 10px 1%;
}

.page-content li {
  font-size: 14px;
  line-height: 21px;
  padding-left: 18px;
  background: url(../img/li.png) 4px 8px no-repeat;
}

.page-content img {
  max-width: 100%;
}

.discount-nodes {
  width: 100%;
  float: left;
  margin: 10px 0 20px 0;
}

.discount-nodes article {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}

.discount-nodes article .image {
  width: 8%;
  float: left;
  text-align: center;
}

.discount-nodes article .image img {
  width: 80%;
}

.discount-nodes article .wrap {
  width: 91%;
  float: right;
  text-align: left;
  line-height: 1.5em;
  padding-top: 5px;
}

.discount-nodes article .wrap h4 a {
  font-size: 16px;
  font-weight: bold;
  color: #e2001a;
  text-decoration: none;
}

.discount-nodes article .wrap h4 a em {
  font-style: normal;
  font-weight: bold;
  background: #e2001a;
  color: #fff;
  padding: 2px 3px;
}

.discount-nodes article .wrap h4,
.discount-nodes article .wrap p,
.discount-nodes article .wrap div {
  margin-bottom: 5px;
  line-height: 1.5em;
}

.online-discounts h2 {
  font: normal 19px "KeepC", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #e2001a;
  margin-bottom: 15px;
}

.online-discounts ul {
  width: 100%;
  margin: 0;
}

.online-discounts ul li {
  background: none;
  padding-left: 0;
  line-height: 2em;
  margin-bottom: 3px;
}

.online-discounts ul li a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #e2001a;
}

.online-discounts ul li em {
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  margin-left: 5px;
  background: #e2001a;
  color: #fff;
  padding: 3px;
}

/* Check in box */
.check-node {
  width: 100%;
  height: 90px;
  position: relative;
  float: left;
  background: #fff;
  margin: 20px 0;
}

.check-node a.opener {
  width: 100%;
  height: 150px;
  display: block;
  z-index: 800;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  background: none;
}

.check-node .discount {
  width: 25%;
  height: 120px;
  float: left;
  padding-top: 30px;
  background: #e2001a;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.check-node .discount {
  font: bold 17px/1.7em "KeepC", Helvetica, Arial, sans-serif;
  color: #fff;
}

.check-node .discount em {
  font-size: 66px;
  font-style: normal;
  display: block;
}

.check-node .body {
  width: 96%;
  float: left;
  padding: 2%;
  text-align: center;
}

.check-node .body h6 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 10px;
  color: #5e5e5e;
}

.check-node .body .check-btn small {
  width: 52%;
  float: right;
  font-size: 11px;
  line-height: 1.2em;
  margin-top: 3px;
  color: #8a8a8a;
}

/* Check in */
h2.service-title {
  position: relative;
  font: normal 19px "KeepC", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #e2001a;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ce6b87;
}

h2.service-title span.step {
  width: 100%;
  float: left;
  font: bold 14px Helvetica, Arial, sans-serif;
  color: #5e5e5e;
  text-transform: none;
  margin-bottom: 5px;
}

/* h2.service-title:after {
    content: '';
    width: 86px;
    height: 61px;
    display: block;
    position: absolute;
    top: -5px;
    right: 0;
    background: url(../img/lyoness.png) no-repeat;
} */

#servicesContainer p.phone {
  padding-bottom: 15px;
  line-height: 1.7em;
  border-bottom: 1px solid #ce6b87;
}

#servicesContainer p.phone a {
  color: #444;
  font-weight: bold;
  text-decoration: none;
}

.reserve-info {
  width: 100%;
  min-height: 70px;
  float: left;
  margin-bottom: 10px;
}

.reserve-info .selected-services {
  width: 38%;
  float: left;
}

.reserve-info .selected-services p,
.reserve-info .selected-services li {
  font-size: 12px;
  line-height: 1.5em;
  color: #5e5e5e;
}

.reserve-info .selected-services li {
  background: url(../img/dot.png) 5px 5px no-repeat;
  padding-left: 15px;
}

.reserve-info .disclaimer {
  width: 60%;
  float: right;
  padding-top: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3em;
  color: #e2001a;
  text-align: left;
}

p.service-subtitle {
  width: 100%;
  float: left;
  font-size: 12px;
  margin: -10px 0 20px 0;
  color: #777;
}

.stressed-item {
  width: 97%;
  float: left;
  line-height: 1.5em;
  margin-bottom: 20px;
  padding: 1.5%;
  background: #f4f4f4;
}

.stressed-item span {
  line-height: 1.5em;
}

.checklist {
  width: 100%;
  float: left;
  margin: 10px 0 25px 0;
}

.checklist-tiny .item {
  height: auto !important;
  line-height: auto !important;
  border: none !important;
}

.checklist-tiny .item b {
  font-size: 15px !important;
  font-weight: normal !important;
}

.checklist .item {
  width: 100%;
  height: 45px;
  line-height: 45px;
  vertical-align: middle;
  float: left;
  line-height: 20px;
  margin: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}

.checklist .item:last-child {
  border-bottom: none;
}

.checklist .item img {
  position: relative;
  top: -3px;
  height: 38px;
  vertical-align: middle;
  margin: 0 3px 0 10px;
}

.checklist .item b {
  font-size: 16px;
  margin-left: 5px;
}

.checklist .selected-line b {
  color: #e2001a;
}

.checklist .item .ez-checkbox,
.checklist .item .ez-radio {
  position: relative;
  top: 3px;
}

.checklist .item em {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  background: #e2001a;
  color: #fff;
  padding: 4px 6px;
  margin-left: 5px;
}

.controls {
  width: 100%;
  float: left;
  margin-top: 25px;
}

.controls .left {
  float: left;
}
.controls .right {
  float: right;
}

.alert {
  width: 96.5%;
  float: left;
  background: #f7f7f7;
  padding: 1.5%;
  border: 1px solid #e2001a;
  font-size: 14px;
  font-weight: bold;
  color: #e2001a;
  display: none;
}

.alert-visible {
  display: block;
}

.alert-green {
  color: #427316 !important;
  border: 3px solid #427316;
}

.alert-red {
  color: #c11d1d !important;
  border: 3px solid #c11d1d;
}

.alert-warning {
  color: #db9807 !important;
  border: 3px solid #db9807;
}

/* Offers */
.check-offers {
  width: 100%;
  float: left;
  margin: -10px 0 20px 0;
}

.check-offer-item {
  width: 100%;
  float: left;
  padding: 12px 0;
  border-bottom: 1px solid #e2001a;
}

.check-offer-item:last-child {
  border-bottom: none;
}

.check-offer-item .image {
  width: 68%;
  float: left;
}

.check-offer-item .image img {
  width: 45%;
  float: left;
  margin-right: 20px;
}

.check-offer-item .lead-wrap {
  width: 50%;
  float: left;
  padding-top: 10px;
}

.check-offer-item .lead-wrap.full {
  width: 100%;
}

.check-offer-item .lead-wrap h6 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5em;
  color: #e2001a;
  margin-bottom: 5px;
}

.check-offer-item .lead-wrap,
.check-offer-item .lead-wrap p,
.check-offer-item .lead-wrap div,
.check-offer-item .lead-wrap li {
  font-size: 14px;
  line-height: 1.5em;
  color: #444;
  margin-bottom: 5px;
}

.check-offer-item .choose {
  width: 30%;
  float: right;
  padding-top: 50px;
}

.check-offer-item .choose span {
  position: relative;
  top: -3px;
  left: 5px;
}

/* Time table */
#times {
  width: 100%;
  position: relative;
  float: left;
  padding-top: 10px;
}

.time-table {
  width: 100%;
  float: left;
  border-collapse: collapse;
}

.time-table th {
  width: 13%;
  color: #999;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5em;
  color: #e2001a;
  vertical-align: middle;
  padding: 10px;
  background: #f9f9f9;
  border-bottom: 3px solid #c0c0c0;
}

.time-table th.today {
  background: #fdf5f5;
  border-bottom: 3px solid #e2001a;
}

.time-table th.today span {
  color: #e2001a;
}

.time-table th.inactive {
  background: #f0f0f0;
  color: #ddd;
}

.time-table th.inactive span {
  color: #ddd;
}

.time-table th span {
  font-size: 12px;
  color: #777;
  display: block;
}

.time-table td {
  font-family: "KeepC", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  height: 36px;
  padding: 0;
  border: 1px solid #f0f0f0;
  border-bottom: 1px solid #c0c0c0;
  text-align: center;
  color: #c0c0c0;
}

.time-table td.inactive {
  background: #f9f9f9;
}

.time-table td.today {
  background: #fffbfb;
  color: #ddd;
  border-bottom: 1px solid #f9d2d2;
}

.time-table td.today a {
  color: #ddd;
}

.time-table td a {
  width: 100%;
  height: 36px;
  line-height: 36px;
  display: block;
  font-family: "KeepC", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #333;
}

.time-table td.inactive a {
  color: #ddd;
}

.time-table td.highlighted {
  background: #e2001a;
}

.time-table td.highlighted a {
  color: #fff !important;
}

.flotta-list {
  width: 100%;
  float: left;
  margin-bottom: 15px;
}

.flotta-list .left,
.flotta-list .right {
  width: 47%;
}

.flotta-list .left {
  float: left;
}
.flotta-list .right {
  float: right;
}

.flotta-list li {
  line-height: 1.5em;
  margin-bottom: 10px;
}

.coda-nav-left,
.coda-nav-right {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: -18px;
  right: 0;
  z-index: 700;
  background: url(../img/table-nav-arrows.png) left no-repeat;
}

.coda-nav-left a,
.coda-nav-right a {
  width: 20px;
  height: 20px;
  display: block;
}

.coda-nav-right {
  right: 10px;
  background-position: right;
}
.coda-nav-left {
  right: 35px;
  background-position: left;
}

/* Vehicle data */
.vehicle-data {
  width: 100%;
  float: left;
}

.vehicle-data table {
  width: 100%;
  float: left;
  margin: 5px 0;
}

.vehicle-data table td {
  font-size: 14px;
  padding: 3px 5px;
  vertical-align: middle;
  position: relative;
}

.vehicle-data table td div {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}

.vehicle-data .text-input {
  font: normal 14px Arial, Helvetica, sans-serif;
  /* margin: 2px 5px; */
  padding: 8px 3px;
  color: #777;
  background: #f9f9f9;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #e1e1e1),
    color-stop(100%, #ebebeb)
  );
  background: -webkit-linear-gradient(top, #e1e1e1 0%, #ebebeb 100%);
  background: -o-linear-gradient(top, #e1e1e1 0% #ebebeb 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e1e1e1),
    to(#ebebeb)
  );
  background: -o-linear-gradient(top, #e1e1e1 0%, #ebebeb 100%);
  background: linear-gradient(top, #e1e1e1 0%, #ebebeb 100%);
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  -webkit-box-shadow: inset 1px 1px 1px #fff;
  box-shadow: inset 1px 1px 1px #fff;
}

.vehicle-data .text-input.error {
	margin-bottom: 12px;
}
.vehicle-data .input-error {
	font-size: 12px;
	color: #e2001a;
	position: absolute;
	line-height: 0;
	top: calc(100% - 5px);
	left: 0;
}

.vehicle-data .text-input.size-1 {
  width: 100px;
}
.vehicle-data .text-input.size-2 {
  width: 210px;
}
.vehicle-data .text-input.size-3 {
  width: 330px;
}

.vehicle-data table td label {
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  margin-right: 10px;
}

.thanks-data {
  padding: 0 10px;
}

.thanks-data p {
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 10px;
  color: #5e5e5e;
}

.thanks-data table {
  border-collapse: collapse;
}

.thanks-data td {
  color: #5e5e5e;
  padding: 7px 0 !important;
}

/* Custom inputs */
.ez-hide {
  opacity: 0;
  filter: alpha(opacity=0);
}

.ez-checkbox {
  width: 21px;
  height: 21px;
  position: relative;
  top: -1px;
  background: transparent url(../img/check-states.png) top no-repeat;
  display: inline-block;
}

.ez-radio {
  width: 21px;
  height: 21px;
  position: relative;
  top: -1px;
  background: transparent url(../img/radio-states.png) top no-repeat;
  display: inline-block;
}

.ez-radio input {
  width: 21px;
  height: 21px;
  cursor: pointer !important;
}
.ez-checkbox input {
  width: 21px;
  height: 21px;
  cursor: pointer !important;
}

.ez-checkbox,
.ez-radio {
  zoom: 1;
  *display: inline;
  _height: 15px;
}
.ez-checked {
  background-position: bottom;
}
.ez-selected {
  background-position: bottom;
}

.ez-checkbox-green {
  background: transparent url(../img/checkbox-green.png) 0 1px no-repeat;
  display: inline-block;
}
.ez-checked-green {
  background-position: bottom;
}
.ez-checkbox-green {
  zoom: 1;
  *display: inline;
  _height: 15px;
}

/* Footer section */
#footer {
  width: 100%;
  float: left;
}

#footer .tyres,
#footer .cars {
  width: 100%;
  float: left;
  margin: 15px 0;
}

#footer .tyres h5 {
  font: normal 13px "KeepC", Helvetica, Arial, sans-serif;
  color: #9e9e9e;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#footer .tyres img {
  vertical-align: middle;
  margin: 0 0 7px 7px;
}

#footer .tyres p {
  margin-top: 5px;
  line-height: 21px;
  color: #9e9e9e;
}

#footer .cars {
  color: #9e9e9e;
  font-size: 14px;
  line-height: 21px;
}

#footer .legal {
  width: 100%;
  float: left;
  font-size: 13px;
  color: #9e9e9e;
  margin: 5px 0 15px 0;
}

#footer .legal a {
  color: #9e9e9e;
}

/* POPUP */

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  display: none;
  opacity: 0;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}

.popup.showme {
  display: block;
  z-index: 3000;
  opacity: 1;
}

.popup.showme .dialog {
  top: 0px;
}

.popup .dialog {
  position: relative;
  top: -1000px;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background-color: transparent;
  z-index: 2010;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
}

.popup .dialog-body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 300px;
  min-height: 500px;
  max-height: 500px;
  max-width: 700px;
}

.popup .dialog-body img {
  height: 512px;
  width: 692px;
}

.popup .popup-targi-close {
  position: absolute;
  cursor: pointer;
  top: -25px;
  right: -35px;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 7px 10px;
  font-weight: bold;
}

/* profil cuccok */
.nl-form.new-nl-form {
  float: none;
  width: 100%;
  max-width: 400px;
}

.nl-form.new-nl-form .nl-form-field-1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.nl-form.new-nl-form .nl-form-field-1 span {
  min-width: 155px;
  width: auto;
  top: 0;
  white-space: nowrap;
  padding-right: 20px;
}

.nl-form.new-nl-form .nl-form-field-1 .form-field {
  width: 200px;
}

.nl-form.new-nl-form .nl-form-field-1 .form-input {
  width: 100%;
  float: none;
  margin: 0;
}

.nl-form.new-nl-form .btn {
  display: block;
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.time-table-mod-wrapper {
  margin: 20px 0;
  overflow: auto;
}

.time-table-mod {
  overflow: hidden;
}

.time-table-mod td {
  color: #5e5e5e;
  height: 40px;
}

.time-table-mod td .btn {
  padding: 5px 10px;
  font: normal 13px "KeepC", Helvetica, Arial, sans-serif;
}

/* lebego tovabb gomb */

.form-button-floating {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}

.form-button-floating.hidden {
  display: none;
}
