@charset "UTF-8";

/* Base styles and typography*/

@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700,900");

@font-face {
  font-family: "Roboto", sans-serif, sans-serif;
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-bold {
  font-weight: 700;
}

.text-extrabold {
  font-weight: 900;
}

.text-error {
  color: #c60000;
}

.text-green {
  color: #69ae7b;
}

.text-color-brand-primary {
  color: #d6161e;
}

.text-blue {
  color: #425282;
}

.text-white {
  color: #fff;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font: 14px "Roboto", sans-serif;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
  color: #000;
}

a {
  color: #000;
}

a:hover {
  color: #d6161e;
}

a:focus {
  outline: 0;
  text-decoration: unset;
  color: initial;
}

img {
  max-width: 100%;
}

.object-fit-contain img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.object-fit-cover img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.fouc,
.fouc-lazy {
  opacity: 0;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap::before,
.flex-wrap::after {
  content: normal;
}

.flex-center-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-start-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-center-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-justify-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.no-padding-right {
  padding-right: 0;
}

.no-padding-left {
  padding-left: 0;
}

.padding-top-xs {
  padding-top: 15px;
}

.padding-bottom-xs {
  padding-bottom: 15px;
}

.padding-top-s {
  padding-top: 30px;
}

.padding-top-m {
  padding-top: 40px;
}

.padding-top-l {
  padding-top: 70px;
}

.padding-bottom-s {
  padding-bottom: 30px;
}

.padding-s {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-xs {
  padding-top: 15px;
  padding-bottom: 15px;
}

.container-m {
  max-width: 945px;
}

.container-xm {
  max-width: 990px;
}

.container-l {
  max-width: 1170px;
}

.section-title {
  color: #000;
  padding-top: 15px;
  padding-bottom: 15px;
}

.section-title.blue {
  color: #425282;
}

.section-title.red {
  color: #c60000;
}

.section-title.no-padding {
  padding: 0;
}

.section-title h1,
.section-title h2 {
  margin-top: 5px;
  margin-bottom: 5px;
}

address {
  margin-bottom: 0;
}

.breadcrumb {
  background: transparent;
  padding: 8px 15px 8px 0;
  font-size: 14px;
  margin-bottom: 0;
}

.breadcrumb a {
  color: #d6d6d6;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  content: '\003e';
  color: #d6d6d6;
}

.p-no-margin p {
  margin: 0;
}

.page-header {
  margin: 0;
  min-height: 320px;
  color: #fff;
  position: relative;
  border-bottom: 0;
  text-shadow: 1px 1px 5px #000;
}

.page-header .header-title {
  position: absolute;
  bottom: 0;
  left: auto;
  max-width: 1170px;
  width: 100%;
  text-transform: uppercase;
}

.page-header .header-title h1 {
  font-size: 30px;
  font-weight: 500;
}

.page-header .breadcrumb > .active,
.page-header .breadcrumb a {
  color: #fff;
}

.bg-grey {
  background: #d7dbe9;
}

.bg-grey-light {
  background: #eff1f8;
}

.bg-blue {
  background: #425282;
}

.bg-tab-wrapper {
  position: relative;
  width: 100%;
  background: #fff;
}

.cards-wrapper {
  margin-left: -40px;
  margin-right: -40px;
}

.box-shadow {
  -webkit-box-shadow: 0 0 6px -4px rgba(151, 158, 177, 0.85);
  box-shadow: 0 0 6px -4px rgba(151, 158, 177, 0.85);
  border: 1px solid rgba(239, 241, 248, 0.6);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.box-shadow:hover {
  -webkit-box-shadow: 0 0 19px 1px rgba(151, 158, 177, 0.94);
  box-shadow: 0 0 19px 1px rgba(151, 158, 177, 0.94);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.box-shadow-2 {
  -webkit-box-shadow: 0 2px 2px 0 rgba(151, 158, 177, 0.85);
  box-shadow: 0 2px 2px 0 rgba(151, 158, 177, 0.85);
  border: 1px solid rgba(239, 241, 248, 0.6);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.box-shadow-2:hover {
  -webkit-box-shadow: 7px 12px 40px -4px rgba(151, 158, 177, 0.94);
  box-shadow: 7px 12px 40px -4px rgba(151, 158, 177, 0.94);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.map-container {
  position: relative;
  margin-top: -105px;
  z-index: 1;
}

.map-container.normal {
  margin-top: 0;
}

.fa-facebook-official {
  color: #145b9f;
  margin-right: 15px;
}

.two-columns {
  -webkit-columns: 2;
  columns: 2;
}

.height-inherit {
  height: inherit;
}

.border.right {
  border-right: 1px solid #d7dbe9;
}

.career-descripton h2 {
  margin-top: 10px;
  margin-bottom: 0;
}

.career-descripton h4 {
  color: #425282;
  font-weight: 400;
}

ul {
  line-height: 24px;
}

.content {
  position: relative;
  overflow-x: hidden;
  /* 
    For sticky menu
    --------------------*/
  margin-top: 130px;
}

.content.content-hide {
  /* height: 0!important;
        overflow: hidden;
        opacity: 0; */
  height: 100vh;
  overflow: hidden;
}

.more-info-text {
  font-size: 18px;
}

.text-helper {
  color: #c7ccde;
  font-weight: 400;
}

.row-flex-fix::before,
.row-flex-fix::after {
  content: normal;
}

.product-info.flex-wrap {
  width: 100%;
}

.slider-insurers .swiper-wrapper {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0, 0) !important;
  transition-timing-function: cubic-bezier(0, 0, 0, 0) !important;
}

.slider-services .swiper-wrapper {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0, 0) !important;
  transition-timing-function: cubic-bezier(0, 0, 0, 0) !important;
}

.slider-services .swiper-wrapper .swiper-slide {
  background: transparent;
}

.select2-dropdown {
  z-index: 1000;
}

/* .modal-backdrop {
    z-index: 1100;
} */

.content ul {
  list-style: url("../img/checkmark.png");
}

.content .attr-columns ul {
  list-style: none;
}

.list-unstyled {
  list-style: none !important;
}

#category .car-selector-wrapper {
  height: 130px;
}

#category .image-wrapper {
  height: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* Layout styles */

footer {
  -webkit-box-shadow: 0 -8px 20px -10px #d6d6d6;
  box-shadow: 0 -8px 20px -10px #d6d6d6;
  position: relative;
  z-index: 4;
}

footer .footer-top {
  padding: 40px 0;
}

footer .footer-top .footer-logo {
  margin-bottom: 28px;
  max-width: 200px;
}

footer .footer-top .footer-title {
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(215, 219, 233, 0.5);
  margin-bottom: 25px;
}

footer .footer-top .footer-title h5 {
  font-weight: 700;
}

footer .footer-top .footer-menu li {
  margin-bottom: 5px;
}

footer .footer-social {
  border-top: 2px solid #eff1f8;
  padding: 20px 0;
}

footer .footer-social a {
  color: #d6d6d6;
  padding: 0 17px;
}

footer .footer-social a:hover {
  color: #d6161e;
}

footer .footer-social ul {
  margin-bottom: 0;
}

footer .footer-bottom {
  background: #3e475f;
  color: #fff;
  min-height: 53px;
}

footer .footer-bottom ul,
footer .footer-bottom p {
  margin-bottom: 0;
}

footer .footer-bottom a {
  color: #fff;
}

footer .footer-bottom .copyright li:not(:last-child) {
  position: relative;
}

footer .footer-bottom .copyright li:not(:last-child)::after {
  height: 14px;
  content: "";
  border-right: 1px solid #fff;
  position: absolute;
  top: 5px;
  right: -3px;
  bottom: auto;
  left: auto;
}

.form-control {
  height: 40px;
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: 1px solid #d6d6d6;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control:focus {
  border: 1px solid #d6d6d6;
  -webkit-box-shadow: none;
  box-shadow: none;
}

label {
  font-weight: 400;
}

.form-group {
  margin-bottom: 10px;
}

.radio-custom label,
.cb-custom label {
  font-size: 14px;
  position: relative;
  display: inline-block;
  margin-right: 15px;
  padding-left: 25px !important;
  cursor: pointer;
}

.radio-custom label:before,
.cb-custom label:before {
  background: #fff;
  position: absolute;
  bottom: 1px;
  left: 0;
  top: 0;
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 1px solid #d6d6d6;
  margin-right: 10px;
  content: '';
  border-radius: 50%;
  /* stops bg color from leaking outside the border: */
}

.radio-custom.white label:before,
.white.cb-custom label:before {
  background: #fff;
  border: 1px solid #d7dbe9;
}

.radio-custom input[type=radio],
.cb-custom input[type=radio] {
  opacity: 0;
}

.radio-custom input[type=radio]:checked + label:before,
.cb-custom input[type=radio]:checked + label:before {
  font-size: 14px;
  line-height: 20px;
  content: '\2716';
  text-align: center;
  color: #979eb1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.cb-custom label:before {
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.cb-custom input[type=checkbox] {
  opacity: 0;
  margin-left: 0;
}

.cb-custom input[type=checkbox]:checked + label:before {
  font: 14px/14px 'FontAwesome';
  /* font-size: 37px; */
  letter-spacing: 0;
  /* content: " •"; */
  content: "✓";
  text-align: center;
  color: #979eb1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0 !important;
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
}

input[type=number] {
  -moz-appearance: textfield;
}

.select2-container {
  width: 100%;
}

.select2-container:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-container .select2-selection--single {
  height: 40px;
  border-radius: 4px;
  outline: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.select2-container .select2-container--default .select2-selection--single {
  border-radius: 2px;
  border: 1px solid #d7dbe9;
}

.select2-container .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
}

.select2-container .select2-selection__clear {
  padding: 0 13px 0 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  padding: 0 20px;
}

/* 
.select2-container--default {
    .select2-selection--single {
        border: 1px solid $grey-400;
        .select2-selection__arrow {
            height: 40px;
        }
    }
} */

.select2-container--default.select2-container--disabled .select2-selection--single {
  cursor: not-allowed;
}

textarea {
  resize: none;
}

.no-border-input .form-control {
  border: 1px solid transparent;
}

.no-border-input .select2-container--default .select2-selection--single {
  border: 1px solid transparent;
}

.slider.slider-horizontal .slider-selection {
  background: #bb0305;
}

.slider.slider-horizontal .slider-handle {
  background: #d6161e;
  background: -webkit-gradient(linear, left top, left bottom, from(#d6161e), to(#bb0305));
  background: linear-gradient(to bottom, #d6161e, #bb0305);
  cursor: pointer;
}

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  background: #d6161e;
  text-transform: initial;
  color: #fff;
  cursor: pointer;
  display: block;
}

.inputfile + label:hover {
  background: #d7d9df;
}

.inputfile:focus + label,
.inputfile + label:hover {
  background: #d7d9df;
}

.form-group-custom-margins .form-group {
  margin-bottom: 30px;
}

.sticky-menu,
.navbar-top,
.navbar {
  background: #fff;
  /* 
    For sticky menu 
    ----------------------*/
  position: fixed;
  left: 0;
  z-index: 1010;
  width: 100%;
}

.navbar-top {
  min-height: 80px;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar-top.nav-up {
  top: -100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar-top .user {
  font-size: 14px;
  font-weight: 500;
}

.navbar-top .user li {
  position: relative;
}

.navbar-top .user li a {
  color: #5f677e;
}

.navbar-top .user li:not(:last-child) a:after {
  height: 15px;
  content: "";
  border-right: 1px solid #5f677e;
  position: absolute;
  top: 5px;
  right: -3px;
  bottom: auto;
  left: auto;
}

.navbar-top .telephone {
  font-size: 25px;
  font-weight: 900;
}

.navbar-form .input-group {
  width: 100%;
  height: 50px;
}

.navbar-form .form-nav-search {
  border-top-left-radius: 100px !important;
  border-bottom-left-radius: 100px !important;
  background-clip: padding-box;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-clip: padding-box;
  background: #d6d6d6;
  background: -webkit-gradient(linear, left top, left bottom, from(#d6d6d6), to(#eff1f8));
  background: linear-gradient(to bottom, #d6d6d6, #eff1f8);
  height: 50px;
  border: 0;
  font-size: 16px;
}

.navbar-form .form-nav-search::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: italic;
}

.navbar-form .form-nav-search::-moz-placeholder {
  /* Firefox 19+ */
  font-style: italic;
}

.navbar-form .form-nav-search:-ms-input-placeholder {
  /* IE 10+ */
  font-style: italic;
}

.navbar-form .form-nav-search:-moz-placeholder {
  /* Firefox 18- */
  font-style: italic;
}

.navbar-form .btn-search {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-clip: padding-box;
  border-top-right-radius: 100px !important;
  border-bottom-right-radius: 100px !important;
  background-clip: padding-box;
  background: #d6d6d6;
  background: -webkit-gradient(linear, left top, left bottom, from(#d6d6d6), to(#eff1f8));
  background: linear-gradient(to bottom, #d6d6d6, #eff1f8);
  height: 50px;
  border: 0;
}

.navbar-brand {
  width: 166px;
  height: 59px;
  padding: 0;
}

.navbar {
  margin-bottom: 0;
  /* 
    For sticky menu 
    ----------------------
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 100;*/
  top: 80px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar.nav-up {
  top: -100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar-default {
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: 0 8px 20px -10px #d6d6d6;
  box-shadow: 0 8px 20px -10px #d6d6d6;
  background: #eff1f8;
  background: -webkit-gradient(linear, left top, left bottom, from(#eff1f8), to(#fff));
  background: linear-gradient(to bottom, #eff1f8, #fff);
}

.navbar-default .navbar-nav li a {
  padding-right: 30px;
  padding-left: 29px;
  font-weight: 900;
  font-size: 14px;
  color: #000;
}

.navbar-default .navbar-nav li a:hover {
  color: #5f677e;
}

.navbar-default .navbar-nav li:not(:last-child) a:after {
  height: 15px;
  content: "";
  border-right: 1px solid #d7dbe9;
  position: absolute;
  top: 35%;
  right: 0;
  bottom: auto;
  left: auto;
}

.navbar-default .navbar-nav li:last-child {
  /* a {
                    background-color: $grey-300;
                } */
}

.navbar-default .navbar-nav li:last-child i {
  margin-right: 10px;
}

.navbar-custom {
  position: relative;
}

.navbar-custom .dropdown.open {
  background: #eff1f8;
}

.navbar-custom .with-submenu {
  position: static;
}

.navbar-custom .with-submenu .fa {
  margin-right: 5px !important;
}

.navbar-custom .with-submenu .submenu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  max-width: 1170px;
  z-index: 20;
}

.navbar-custom .with-submenu .submenu a {
  font-weight: 400;
}

.navbar-custom .with-submenu.open > a::before {
  background: #5f677e;
  width: 10px;
  height: 10px;
  content: " ";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: -5px;
}

.navbar-custom .with-submenu.open .submenu {
  display: block;
}

.navbar-custom .with-submenu.open .submenu .submenu-inner {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 4px solid #5f677e;
  position: relative;
  left: -50%;
  min-height: 280px;
  border-bottom: 1px solid #000;
}

.navbar-custom .with-submenu .submenu-list-wrapper {
  background: #eff1f8;
  position: relative;
  width: 100%;
}

.navbar-custom .with-submenu .submenu-list {
  padding: 30px 5px;
}

.navbar-custom .with-submenu .submenu-list li {
  padding: 5px;
  max-width: 20%;
  border-bottom: 1px solid #d6d6d6;
  /* &:not(:last-child) {
                    border-bottom: 1px solid $grey-500;
                } */
}

.navbar-custom .with-submenu .submenu-list li a {
  width: 100%;
  display: block;
  position: static;
  padding-right: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-custom .with-submenu .submenu-list li a::after {
  content: '';
  border-right: 0 !important;
}

.navbar-custom .with-submenu .submenu-list > li {
  max-width: 25%;
}

.navbar-custom .with-submenu .submenu-list > li > a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: static;
  padding-right: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-custom .with-submenu .submenu-list > li > a img {
  margin-right: 10px;
}

.navbar-custom .with-submenu .submenu-list > li > a p {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 80%;
  flex: 1 1 80%;
  margin-bottom: 0;
}

.navbar-custom .with-submenu .submenu-details {
  padding: 10px 25px;
  position: absolute;
  width: 75%;
  left: 25%;
  top: 0;
  background: #fff;
  display: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.navbar-custom .with-submenu .submenu-details.showed {
  display: block;
  height: 100%;
}

.navbar-custom .with-submenu .submenu-details li {
  margin-left: 12.5px;
  margin-right: 12.5px;
}

.navbar-custom .with-submenu .submenu-details li a {
  background: #fff;
  padding-right: 0;
  padding-left: 20px;
  line-height: 1.3;
}

.navbar-custom .question-mark {
  position: absolute;
  right: -10px;
  width: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
}

.navbar-custom .question-mark a {
  padding: 10px;
  font-size: 38px;
  color: #5f677e;
}

.navbar-custom .question-mark .fa {
  font-style: italic;
}

.nav-favorites:hover .icon-garage {
  background: url("../img/icons/icon-garage-hover.png");
  margin-right: 10px;
}

.nav-favorites .icon-garage {
  margin-right: 10px;
}

.nav-favorites .dropdown-menu > li > a {
  white-space: initial;
  font-weight: 100;
  padding: 5px 10px;
}

.nav-favorites .dropdown-menu > li > a:hover {
  font-weight: 700;
}

.bg-tab {
  background: url("../img/bg-tab-1.png") no-repeat center -70px;
  width: 100%;
  height: 57px;
  z-index: 0;
}

.bg-tab-2 {
  background: url("../img/bg-tab-2.png") no-repeat center top/cover;
  width: 100%;
  height: 94px;
  z-index: 2;
  margin-top: -70px;
}

.bg-tab-3 {
  background: url("../img/bg-tab-3.png") no-repeat center top/cover;
  width: 100%;
  height: 94px;
  z-index: 2;
  position: relative;
}

.bg-tab-3.mirrored {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.bg-tab-4 {
  background: url("../img/bg-tab-4.png") no-repeat center top/cover;
  width: 100%;
  height: 132px;
  z-index: 2;
  position: relative;
  top: -13px;
}

.bg-auto-change {
  background: url("../img/bg-auto-change.jpg") no-repeat center top/cover;
  width: 100%;
  height: 250px;
  z-index: 2;
  position: relative;
}

.bg-evaluation-2 {
  background: url("../img/banner-2.png") no-repeat center top/cover;
  width: 100%;
  height: 250px;
  z-index: 2;
  position: relative;
}

.bg-banner-3 {
  background: url("../img/banner-3.png") no-repeat center top/cover;
  width: 100%;
  height: 250px;
  z-index: 2;
  position: relative;
}

.bg-action-newsletter {
  background: url("../img/bg-action-newsletter.png") no-repeat center top/cover;
  width: 100%;
  height: 250px;
  z-index: 2;
  position: relative;
}

.bg-checkmarked {
  background: url("../img/bg-checkmarked.png") no-repeat center bottom/cover;
  width: 100%;
  height: 100%;
}

.bg-regmodal {
  background: url("../img/bg-regmodal.jpg") no-repeat center bottom/cover;
  width: 100%;
  height: 100%;
}

.bg-career {
  background: url("../img/career-application-header.jpg") no-repeat center bottom/cover;
  width: 100%;
  height: 100%;
}

.bg-header-faq {
  background: url("../img/bg-header-faq.jpg") no-repeat center bottom/cover;
  width: 100%;
  height: 100%;
}

.bg-leasing {
  background: url("../img/bg-leasing-header.jpg") no-repeat center bottom/cover;
  width: 100%;
  height: 100%;
}

.bg-page-not-found {
  background: url("../img/bg-header-faq.jpg") no-repeat center bottom/cover;
  width: 100%;
  height: 100%;
}

.bg-why-to-us {
  background: url("../img/bg-why-to-us.jpg") no-repeat center bottom/cover;
  width: 100%;
  height: 100%;
}

.bg-services {
  background: url("../img/bg-services.jpg") no-repeat center bottom/cover;
  width: 100%;
  height: 100%;
}

.bg-valuation-why-to-us {
  background: url("../img/bg-valuation-why-to-us.png") no-repeat center bottom/cover;
  width: 100%;
  height: 520px;
  margin-top: 110px;
  padding: 25px;
}

.bg-layer-finance-side {
  background: url("../img/bg-layer-finance-side.png") no-repeat center bottom/cover;
  width: 100%;
  height: 440px;
  margin-top: 10px;
  padding: 25px;
}

.layer {
  /* background-color: #fff;
    width: 100%;
    height: 100%!important;
    z-index: 10; */
  background: #fff;
  width: 100%;
  height: auto;
  z-index: 10;
  position: absolute;
  top: 130px;
  left: 0;
}

.layer .close {
  opacity: 1;
  font-size: 36px;
}

.layer .section-title {
  padding-top: 50px;
  padding-bottom: 50px;
}

.layer .layer-auto-name h2 {
  font-size: 18px;
}

.layer .layer-auto-price {
  font-size: 30px;
  font-weight: 900;
}

.layer .select2-container--default .select2-selection--single {
  border-radius: 4px;
  border: 1px solid #d6d6d6;
}

.layer-finance .slider-horizontal {
  width: calc(100% - 170px);
}

.layer-finance .bs-slider + span {
  font-size: 18px;
  font-weight: 700;
  color: #425282;
  margin-left: 20px;
}

.layer-finance .regular-payment {
  font-size: 30px;
  font-weight: 700;
  color: #d6161e;
  margin-left: 10px;
}

/* Components */

a.btn.disabled {
  cursor: not-allowed;
  pointer-events: all;
}

.btn:focus {
  outline: 0;
}

.btn-default {
  font: 500 18px/25px "Roboto", sans-serif;
  padding: 8px 35px;
  letter-spacing: 1.3px;
  height: 40px;
  min-width: 225px;
  color: #fff;
  border: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.btn-default:hover {
  border-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}

.btn-default:focus {
  border-color: transparent;
}

.btn-default.btn-primary,
.btn-default.inputfile {
  background: #d6161e;
  background: -webkit-gradient(linear, left top, left bottom, from(#d6161e), to(#bb0305));
  background: linear-gradient(to bottom, #d6161e, #bb0305);
}

.btn-default.btn-primary:not(.disabled):hover,
.btn-default.inputfile:not(.disabled):hover {
  border-color: transparent;
  background: #d6161e;
  background: -webkit-gradient(linear, left bottom, left top, from(#d6161e), to(#bb0305));
  background: linear-gradient(to top, #d6161e, #bb0305);
}

.btn-default.btn-secondary {
  background: #5f677e;
  background: -webkit-gradient(linear, left top, left bottom, from(#5f677e), to(#3e475f));
  background: linear-gradient(to bottom, #5f677e, #3e475f);
}

.btn-default.btn-secondary:not(.disabled):hover {
  border-color: transparent;
  background: #5f677e;
  background: -webkit-gradient(linear, left bottom, left top, from(#5f677e), to(#3e475f));
  background: linear-gradient(to top, #5f677e, #3e475f);
}

.btn-default.btn-fb {
  background: #145b9f;
  font-size: 14px;
  font-weight: 500;
}

.btn-default.btn-fb:hover {
  background: #074077;
  color: #fff;
}

.btn-default.btn-google {
  background: #ff583d;
  font-size: 14px;
  font-weight: 500;
}

.btn-default.btn-google:hover {
  background: #d73116;
  color: #fff;
}

.btn-default.btn-100 {
  width: 100%;
}

.btn-default.btn-tab {
  background: #d7dbe9;
  border-radius: 0;
  color: #c7ccde;
}

.btn-default.btn-tab.active {
  background: #3e475f;
  color: #fff;
}

.btn-default.sharp {
  background: #d6161e !important;
  border-radius: 0;
  /* stops bg color from leaking outside the border: */
  -webkit-box-shadow: 0;
  box-shadow: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-default.sharp:hover {
  background: #d6161e !important;
  -webkit-box-shadow: 7px 8px 21px 0 rgba(214, 22, 30, 0.3);
  box-shadow: 7px 8px 21px 0 rgba(214, 22, 30, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-default.btn-style-1 {
  background: #d6161e !important;
  border-radius: 0;
  /* stops bg color from leaking outside the border: */
  -webkit-box-shadow: 0;
  box-shadow: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-default.btn-style-1:hover {
  background: #d6161e !important;
  -webkit-box-shadow: 7px 8px 21px 0 rgba(214, 22, 30, 0.3);
  box-shadow: 7px 8px 21px 0 rgba(214, 22, 30, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-default.btn-style-2 {
  background: #d6161e !important;
  border-radius: 0;
  /* stops bg color from leaking outside the border: */
  -webkit-box-shadow: 0 4px #890204;
  box-shadow: 0 4px #890204;
  position: relative;
  top: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.btn-default.btn-style-2:hover {
  top: 2px;
  -webkit-box-shadow: 0 2px #890204 !important;
  box-shadow: 0 2px #890204 !important;
}

.btn-default.btn-style-2:active {
  top: 4px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn-default.btn-style-3 {
  background: #d6161e !important;
  border-radius: 4px;
  /* stops bg color from leaking outside the border: */
  -webkit-box-shadow: 0 4px #890204;
  box-shadow: 0 4px #890204;
  position: relative;
  top: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.btn-default.btn-style-3:hover {
  top: 2px;
  -webkit-box-shadow: 0 2px #890204 !important;
  box-shadow: 0 2px #890204 !important;
}

.btn-default.btn-style-3:active {
  top: 4px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn-default.btn-style-4 {
  background: #d6161e !important;
  border-radius: 0;
  /* stops bg color from leaking outside the border: */
  -webkit-box-shadow: 0 8px 20px 0 #d6161e;
  box-shadow: 0 8px 20px 0 #d6161e;
  position: relative;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-default.btn-style-4:hover {
  top: 2px;
  -webkit-box-shadow: 0 6px 20px 0 #d6161e !important;
  box-shadow: 0 6px 20px 0 #d6161e !important;
}

.btn-default.btn-style-4:active {
  top: 4px;
  -webkit-box-shadow: 0 4px 20px 0 #d6161e !important;
  box-shadow: 0 4px 20px 0 #d6161e !important;
}

.btn-default.btn-style-5 {
  background: #d6161e !important;
  border-radius: 0;
  /* stops bg color from leaking outside the border: */
  border: 2px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 20px;
}

.btn-default.btn-style-5:hover {
  background: #fff !important;
  color: #d6161e;
  border: 2px solid #d6161e !important;
}

.btn-default.btn-style-5:active {
  border-bottom: 4px solid #d6161e !important;
}

.btn-default.btn-style-6 {
  background: #d6161e !important;
  border-radius: 0;
  /* stops bg color from leaking outside the border: */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-default.btn-style-6:hover {
  background: #bb0305 !important;
}

.btn-default.btn-style-6:active {
  background: #a20304 !important;
}

.btn-default.btn-style-7 {
  background: #d6161e !important;
  border-radius: 0;
  /* stops bg color from leaking outside the border: */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-default.btn-style-7:hover {
  background: #e81e26 !important;
}

.btn-default.btn-style-7:active {
  background: #bb0305 !important;
}

.btn-default.btn-style-8 {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6161e), color-stop(50%, #bf141b)) !important;
  background: linear-gradient(to right, #d6161e 50%, #bf141b 50%) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-size: 200% 100% !important;
  background-position: 0 100% !important;
}

.btn-default.btn-style-8:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6161e), color-stop(50%, #bf141b)) !important;
  background: linear-gradient(to right, #d6161e 50%, #bf141b 50%) !important;
  background-position: 100% 100% !important;
  background-size: 200% 100% !important;
}

.btn-default.btn-style-8:active {
  background: #890204;
}

.btn-default.btn-style-9 {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6161e), color-stop(50%, #fff)) !important;
  background: linear-gradient(to right, #d6161e 50%, #fff 50%) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-size: 200% 100% !important;
  background-position: 0 100% !important;
  border: 2px solid #d6161e !important;
}

.btn-default.btn-style-9:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d6161e), color-stop(50%, #fff)) !important;
  background: linear-gradient(to right, #d6161e 50%, #fff 50%) !important;
  background-position: 100% 100% !important;
  background-size: 200% 100% !important;
  color: #d6161e;
}

.btn-default.btn-style-9:active {
  background: #890204;
}

.demo-buttons li {
  padding-left: 30px;
  padding-right: 30px;
}

.demo-buttons .btn-default {
  min-width: 160px !important;
  max-width: 260px !important;
  margin-bottom: 35px !important;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  background: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  background: #d6161e;
  width: 10px;
  height: 10px;
  opacity: 1;
}

.swiper-pagination-bullets .swiper-pagination-bullet:not(:last-child) {
  margin-right: 35px;
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}

.slider-header-wrapper {
  position: relative;
}

.slider-header-wrapper .swiper-pagination-bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.slider-header img {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.slider-clients {
  max-height: 570px;
  height: 100%;
}

.slider-clients .swiper-slide {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.slider-clients .swiper-slide .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  max-height: 530px;
}

.slider-clients .quote-wrapper {
  max-width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
}

.slider-clients .swiper-pagination {
  position: relative;
  bottom: 0;
  padding: 10px 0;
}

.slider-brands .swiper-slide {
  background: transparent;
}

.slider-brands .swiper-slide .image-wrapper {
  height: 110px;
}

.cookie-container {
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 80px;
  color: #fff;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 15px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
}

.cookie-container p {
  margin: 0;
}

.cookie-container a {
  color: #fff;
  text-decoration: underline;
}

.flash-message-container {
  z-index: 1010;
  color: #fff;
  font-size: 16px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 32px;
  font-weight: 600;
}

.flash-message-container.success {
  background: #69ae7b;
}

.flash-message-container.error {
  background: #c60000;
}

.flash-message-container .close {
  font-size: 30px;
  color: #000;
  opacity: 1;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}

.flash-message-container p {
  margin: 0;
}

.icon {
  display: block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.icon.icon-car-papers {
  background: url("../img/icons/icon-car-papers.png") no-repeat 0 0/contain;
  width: 32px;
  height: 30px;
}

.icon.icon-distance {
  background: url("../img/icons/icon-distance.png") no-repeat 0 0/contain;
  width: 39px;
  height: 25px;
}

.icon.icon-calendar {
  background: url("../img/icons/icon-calendar.png") no-repeat 0 0/contain;
  width: 27px;
  height: 27px;
}

.icon.icon-gearbox {
  background: url("../img/icons/icon-gearbox.png") no-repeat 0 0/contain;
  width: 25px;
  height: 25px;
}

.icon.icon-engine {
  background: url("../img/icons/icon-engine.png") no-repeat 0 0/contain;
  width: 33px;
  height: 24px;
}

.icon.icon-fuel {
  background: url("../img/icons/icon-fuel.png") no-repeat 0 0/contain;
  width: 24px;
  height: 28px;
}

.icon.icon-fuel-benzin {
  background: url("../img/icons/icon-benzin.png") no-repeat 0 0/contain;
  width: 38px;
  height: 28px;
}

.icon.icon-fuel-diesel {
  background: url("../img/icons/icon-diesel.png") no-repeat 0 0/contain;
  width: 38px;
  height: 28px;
}

.icon.icon-fuel-hibrid {
  background: url("../img/icons/icon-hibrid.png") no-repeat 0 0/contain;
  width: 38px;
  height: 28px;
}

.icon.icon-fuel-electric {
  background: url("../img/icons/icon-electric.png") no-repeat 0 0/contain;
  width: 38px;
  height: 28px;
}

.icon.icon-search {
  background: url("../img/icons/icon-search.png") no-repeat 0 0/contain;
  width: 29px;
  height: 33px;
}

.icon.icon-garage {
  background: url("../img/icons/icon-garage.png") no-repeat 0 0/contain;
  width: 23px;
  height: 17px;
}

.icon.icon-garage:hover {
  background: url("../img/icons/icon-garage-hover.png");
}

.icon.icon-alarm-clock {
  background: url("../img/icons/icon-alarm-clock.png") no-repeat center center/contain;
  display: inherit;
  height: 13px;
  width: 13px;
}

.icon.icon-telephone {
  background: url("../img/icons/icon-telephone.png") no-repeat center center/contain;
  display: inherit;
  height: 63px;
  width: 63px;
}

.icon.icon-home-2 {
  background: url("../img/icons/icon-home-2.png") no-repeat center center/contain;
  display: inherit;
  height: 63px;
  width: 63px;
}

.icon.icon-monitor {
  background: url("../img/icons/icon-monitor.png") no-repeat center center/contain;
  display: inherit;
  height: 63px;
  width: 63px;
}

.icon.icon-arrow-right {
  background: url("../img/icons/icon-arrow-right.png") no-repeat center center/contain;
  display: inherit;
  height: 21px;
  width: 21px;
}

.icon.icon-profile {
  background: url("../img/icons/icon-profile.png") no-repeat center center/contain;
  display: inherit;
  height: 80px;
  width: 80px;
}

.icon.icon-lock {
  background: url("../img/icons/icon-lock.png") no-repeat center center/contain;
  display: inherit;
  height: 32px;
  width: 22px;
}

.icon.icon-handshake {
  background: url("../img/icons/icon-handshake.png") no-repeat center center/contain;
  display: inherit;
  height: 62px;
  width: 62px;
}

.icon.icon-info {
  background: url("../img/icons/icon-info.png") no-repeat center center/contain;
  display: inherit;
  height: 62px;
  width: 62px;
}

.icon.icon-car-question {
  background: url("../img/icons/icon-car-question.png") no-repeat center center/contain;
  display: inherit;
  height: 62px;
  width: 62px;
}

.icon.icon-map-marker {
  background: url("../img/icons/icon-map-marker.png") no-repeat center center/contain;
  display: inherit;
  height: 62px;
  width: 62px;
}

.icon.icon-thumb-up-blue-circle {
  background: url("../img/icons/icon-thumb-up-blue-circle.png") no-repeat center center/contain;
  height: 103px;
  width: 103px;
}

.icon.icon-textbox {
  width: 100%;
  height: 62px;
}

.icon.icon-textbox.icon-heart {
  background: url("../img/icons/icon-heart.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-heart-blue-circle {
  background: url("../img/icons/icon-heart-blue-circle.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-swimbelt {
  background: url("../img/icons/icon-swimbelt.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-dollar {
  background: url("../img/icons/icon-dollar.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-dollar-blue-circle {
  background: url("../img/icons/icon-dollar-blue-circle.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-hand-with-money-blue-circle {
  background: url("../img/icons/icon-hand-with-money-blue-circle.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-thumb-up {
  background: url("../img/icons/icon-thumb-up.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-thumb-up-fill {
  background: url("../img/icons/icon-thumb-up-fill.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-money {
  background: url("../img/icons/icon-money.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-money-big {
  background: url("../img/icons/icon-money-big.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-home {
  background: url("../img/icons/icon-home.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-documents {
  background: url("../img/icons/icon-documents.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-documents-big {
  background: url("../img/icons/icon-documents-big.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-shield {
  background: url("../img/icons/icon-shield.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-cars {
  background: url("../img/icons/icon-cars.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-cars-blue-circle {
  background: url("../img/icons/icon-cars-blue-circle.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-speedmeter {
  background: url("../img/icons/icon-speedmeter.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-cogs {
  background: url("../img/icons/icon-cogs.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-car-on-road {
  background: url("../img/icons/icon-car-on-road.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-20-percent {
  background: url("../img/icons/icon-20-percent.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-20-percent-big {
  background: url("../img/icons/icon-20-percent-big.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-car {
  background: url("../img/icons/icon-car.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-car-big {
  background: url("../img/icons/icon-car-big.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-car-blue-circle {
  background: url("../img/icons/icon-car-blue-circle.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-calendar-circle {
  background: url("../img/icons/icon-calendar-circle.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-calendar-big {
  background: url("../img/icons/icon-calendar-big.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-time {
  background: url("../img/icons/icon-time.png") no-repeat center center/contain;
}

.icon.icon-textbox.icon-changing {
  background: url("../img/icons/icon-changing.png") no-repeat center center/contain;
}

.icon.icon-textbox.with-border-blue {
  border: 2px solid #425282;
  border-radius: 50%;
  width: 62px;
  margin-left: auto;
  margin-right: auto;
}

.icon.icon-textbox.middle-size {
  height: 45px;
}

.social-icon {
  color: #d6d6d6;
}

.social-icon:hover {
  color: #d6161e;
}

.cards-wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}

.product-card {
  background: #fff;
  width: 230px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 0 19px -4px rgba(151, 158, 177, 0.85);
  box-shadow: 0 0 19px -4px rgba(151, 158, 177, 0.85);
  border: 1px solid rgba(239, 241, 248, 0.6);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 8px;
  margin-right: 8px;
}

.product-card:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 0 19px 1px rgba(151, 158, 177, 0.94);
  box-shadow: 0 0 19px 1px rgba(151, 158, 177, 0.94);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product-card:hover .product-card-name h3 {
  color: #d6161e;
}

/*.product-card:not(:first-child) {
  margin-left: 25px;
}*/

.product-card .product-card-text-wrapper {
  padding: 10px 10px 20px;
}

.product-card .product-card-text-wrapper .product-card-name {
  color: #425282;
  height: 50px;
  padding-bottom: 15px;
}

.product-card .product-card-text-wrapper .product-card-name h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
}

.product-card .product-card-text-wrapper .product-card-desc {
  color: #5f677e;
  height: 50px;
}

.product-card .product-card-text-wrapper .product-card-desc p {
  margin: 0;
}

.product-card .product-card-text-wrapper .product-card-price {
  font-weight: 900;
  color: #000;
  font-size: 24px;
}

.product-card-row {
  border: 1px solid #d6d6d6;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*transition: all 0.2s;*/
  overflow: hidden;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  /* &.scaling {
        .product-img {
            opacity: 0;
        }
    } */
}

.product-card-row .swiper-slide {
  width: 290px;
  /*transition: all 0.2s;*/
}

.product-card-row .product-img {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 30%;
  flex: 1 1 30%;
  position: relative;
  /* float: left; */
  width: 290px;
  /*transition: all 0.2s;*/
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.product-card-row .product-img .product-img-inner {
  width: 290px;
  position: relative;
  height: 100%;
  /*transition: all 0.2s;*/
}

.product-card-row .product-img .product-img-inner .place-wrapper {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  z-index: 1;
  display: none;
}

.product-card-row .product-img .product-img-inner .place-wrapper .place {
  padding: 0;
  line-height: 0.9;
  color: #425282;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.product-card-row .product-img .product-img-inner .place-wrapper .place::after {
  content: url(../img/bg-tab-place.png);
  position: absolute;
  bottom: -1px;
  left: 100%;
}

.product-card-row .product-img .product-img-inner .zoom-icon-wrapper {
  background: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  color: #979eb1;
  width: 30px;
  height: 30px;
  font-size: 18px;
  border-top-left-radius: 4px;
  opacity: 0.7;
}

.product-card-row .product-img .product-img-inner .zoom-icon-wrapper .fa-search-minus {
  display: none;
}

.product-card-row .product-img .product-img-inner:hover .zoom-icon-wrapper {
  opacity: 1;
}

.product-card-row .product-img .rounded-tab {
  background: url("../img/bg-tab-place.png") center right #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  /* width: 100%; */
  max-width: 40%;
  padding: 10px;
}

.product-card-row .product-datas {
  padding: 15px 15px;
  -ms-flex-preferred-size: 73%;
  flex-basis: 73%;
  /*transition: all 0.2s;*/
  /*  @include breakpoint(lg) {
            max-height: 220px;
        } */
}

.product-card-row .auto-name h2 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #425282;
}

.product-card-row .auto-description-text {
  height: 70px;
}

.product-card-row .auto-subtitle h3 {
  font-size: 18px;
  margin-top: 0;
  font-weight: 700;
  color: #425282;
}

.product-card-row .auto-attributes .icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.product-card-row .auto-attributes ul {
  line-height: initial;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-card-row .auto-attributes .auto-attribute-item {
  width: calc(20% - 10px);
  color: #425282;
  font-size: 12px;
  font-weight: 700;
}

.product-card-row .icon-garage {
  margin-left: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.product-card-row .price-wrapper {
  background: #eff1f8;
  /* height: 100%; */
  height: inherit;
  padding: 15px 0;
  -ms-flex-preferred-size: 27%;
  flex-basis: 27%;
  /*transition: all 0.2s;*/
}

.product-card-row .price-wrapper .price {
  font-size: 33px;
  color: #425282;
  font-weight: 900;
}

.product-card-row .price-wrapper .price-info {
  text-align: center;
}

.product-card-row .price-wrapper .price-info strong {
  font-size: 18px;
}

.product-card-row .price-wrapper .btn {
  min-width: 175px;
  width: 60%;
}

.product-card-row .swiper-button-prev,
.product-card-row .swiper-button-next {
  opacity: 0;
  /*transition: all 0.2s;*/
}

.product-card-row .swiper-button-prev {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E") no-repeat center/80px 40px;
  padding: 0 60px 85% 0;
  top: 0%;
  margin-top: 0;
  left: 0;
}

.product-card-row .swiper-button-next {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E") no-repeat center/80px 40px;
  padding: 0 0 85% 60px;
  top: 0%;
  margin-top: 0;
  right: 0;
}

.product-card-row:hover .swiper-button-prev:not(.swiper-button-disabled),
.product-card-row:hover .swiper-button-next:not(.swiper-button-disabled) {
  opacity: 0.75;
  /*transition: all 0.2s;*/
}

.product-card-row.scaled {
  /*transition: all 0.2s;*/
}

.product-card-row.scaled .product-datas,
.product-card-row.scaled .price-wrapper {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.product-card-row.scaled .auto-attributes ul {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-card-row.scaled .price-info {
  text-align: center;
}

.product-card-row.scaled .product-img,
.product-card-row.scaled .product-img-inner {
  width: 580px;
  /*transition: all 0.2s;*/
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.product-card-row.scaled .swiper-slide {
  /* width: 580px!important; */
  /*transition: all 0.2s;*/
}

.product-card-row.scaled .zoom-icon-wrapper .fa-search-minus {
  display: block !important;
}

.product-card-row.scaled .zoom-icon-wrapper .fa-search-plus {
  display: none;
}

.product-card-row.scaled .place-wrapper {
  display: block !important;
}

.into-garage .icon-garage {
  margin-left: 10px;
  display: inline-block;
  vertical-align: bottom;
}

.into-garage:hover .icon-garage {
  background: url("../img/icons/icon-garage-hover.png");
  display: inline-block;
  vertical-align: bottom;
}

.search form {
  background: #c7ccde;
  padding: 33px 25px;
  margin-bottom: 50px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
}

.search .main-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.search .main-search .form-group {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
}

.search .main-search .form-group:not(:first-child) {
  margin-left: 8px;
}

.search .select2-container {
  width: 100% !important;
}

.search .selector li a {
  font-weight: 700;
}

.details-search {
  background: #eff1f8;
  height: 320px;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  top: 75%;
  margin: 25px 0;
  border-bottom: 1px solid #666;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  /* &:after {
        content: "";
        position: absolute;
        width: 98%;
        bottom: 1px;
        left: 1%;
        z-index: -1;
        transform: 1;
        box-shadow: 0 0 4px 1px #000000;
    } */
}

.details-search .nav-tabs li.active > a::after {
  background: #eff1f8;
  border: 0;
  margin-top: 5px;
  width: 100%;
  content: "";
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#c7ccde), to(transparent));
  background: linear-gradient(to right, transparent, #c7ccde, transparent);
}

.details-search .tab-content {
  padding-top: 25px;
}

.details-search .parameters-wrapper {
  margin-bottom: 15px;
  max-width: 905px;
}

.details-search .parameters-wrapper .form-group {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 24%;
  flex: 1 1 24%;
}

.details-search .parameters-wrapper .form-group:not(:first-child) {
  margin-left: 8px;
}

.details-search .parameters-wrapper .form-group .select2-selection__placeholder {
  font-style: italic;
}

.details-search .bs-sliders-wrapper {
  max-width: 825px;
}

.details-search .bs-sliders-wrapper .form-control {
  max-width: 140px;
}

.details-search .bs-sliders-wrapper .slider.slider-horizontal {
  width: 360px;
}

.details-search .colors-chooser {
  max-width: 420px;
}

.details-search .colors-chooser ul {
  margin-left: 20px;
}

.details-search .colors-chooser .colors-chooser-item {
  background: #fff;
  position: relative;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #000;
}

.details-search .colors-chooser .colors-chooser-item.selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  line-height: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  text-shadow: 0 0 1px black;
}

.details-search .colors-chooser .colors-chooser-item input {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  cursor: pointer;
}

.details-search .colors-chooser .colors-chooser-item img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.details-search .other-options {
  max-width: 770px;
}

.details-search .details-search-close {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
}

.details-search .details-search-close a {
  color: #979eb1;
}

.text-box-icon-top-wrapper .text-box-title {
  padding-bottom: 15px;
}

.text-box-icon-top-wrapper .text-box-content {
  text-align: justify;
}

.text-box-icon-top-wrapper .text-box-content.text-center {
  text-align: center;
}

.modal {
  z-index: 1060;
}

.modal .modal-header {
  border-bottom: 0;
  color: #425282;
}

.modal .modal-header h3,
.modal .modal-header h4 {
  font-weight: 700;
}

.modal .btn {
  width: 100%;
}

.modal .close {
  opacity: 1;
}

.modal-login .modal-dialog {
  width: 350px;
}

.modal-login .modal-dialog .modal-body {
  padding: 15px 45px;
}

.modal-login .modal-dialog .socail-login-wrapper {
  padding: 5px 45px;
}

.modal-login .modal-dialog hr {
  border-top: 1px solid #d7dbe9;
}

.registration-form-header {
  padding-left: 0;
}

.modal-dialog {
  width: 740px;
}

.modal-dialog .modal-body {
  width: 100%;
  padding: 15px 45px 15px 0;
}

.modal-dialog .socail-login-wrapper {
  padding: 15px 45px 15px 0;
  width: 100%;
}

.advantages {
  padding-left: 45px;
  line-height: 24px;
  max-width: 70%;
}

.advantages li {
  margin-bottom: 35px;
}

.advantages p {
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 700;
}

.auto-attributes-item {
  width: 100%;
  min-height: 170px;
  cursor: pointer;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.auto-attributes-item:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.auto-attributes-item:hover h4 {
  color: #425282;
  font-weight: 700;
}

.auto-attributes-item:hover .overlay {
  background: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(#fff), color-stop(rgba(255, 255, 255, 0.9)), to(transparent));
  background: linear-gradient(to right, #fff, #fff, rgba(255, 255, 255, 0.9), transparent);
}

.auto-attributes-item .overlay {
  background: #eff1f8;
  background: -webkit-gradient(linear, left top, right top, from(#eff1f8), color-stop(#eff1f8), color-stop(rgba(248, 250, 255, 0.9)), to(transparent));
  background: linear-gradient(to right, #eff1f8, #eff1f8, rgba(248, 250, 255, 0.9), transparent);
  position: absolute;
  left: 15px;
  top: 0;
  /* width: calc(100% - 30px);
        height: calc(100% - 30px); */
  width: 95%;
  height: inherit;
  z-index: 2;
}

.auto-attributes-item .bg-auto-attr {
  z-index: 1;
  width: 230px;
  height: 100%;
  float: right;
}

.auto-attributes-item .bg-auto-attr.bg-auto-attr-inside {
  background: url("../img/bg-auto-attr-inside.jpg") no-repeat center right/cover;
}

.auto-attributes-item .bg-auto-attr.bg-auto-attr-outside {
  background: url("../img/bg-auto-attr-outside.jpg") no-repeat center right/cover;
}

.auto-attributes-item .bg-auto-attr.bg-auto-attr-technical {
  background: url("../img/bg-auto-attr-technical.jpg") no-repeat center right/cover;
}

.auto-attributes-item .bg-auto-attr.bg-auto-attr-media {
  background: url("../img/bg-auto-attr-media.jpg") no-repeat center right/cover;
}

.auto-attributes-item .auto-attributes {
  padding: 15px;
  z-index: 3;
  position: relative;
}

.position-box {
  margin-bottom: 15px;
}

.position-box .position-img {
  max-width: 255px;
}

.position-box .position-name {
  color: #425282;
}

.position-box .position-name h3 {
  color: #425282;
  font-size: 24px;
}

.container-pagination .pagination-item {
  background: transparent;
  color: #000;
  height: 30px;
  width: 30px;
  font-weight: 700;
  border-radius: 4px;
  /* stops bg color from leaking outside the border: */
}

.container-pagination .pagination-item.active a {
  color: #d6161e;
}

.container-pagination .pagination-item a {
  padding: 4px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.container-pagination .pagination-next,
.container-pagination .pagination-prev {
  background: #d7dbe9;
}

.container-pagination .pagination-next:hover,
.container-pagination .pagination-prev:hover {
  background: #425282;
}

.container-pagination .pagination-next:hover a,
.container-pagination .pagination-prev:hover a {
  color: #fff;
}

.floater-wrapper {
  max-width: 1140px;
  min-height: 1px;
  position: fixed;
  bottom: 30px;
  right: 5%;
  z-index: 2;
}

.floater-wrapper .floater-item {
  position: relative;
  margin-bottom: 15px;
  /* position: absolute; */
  top: -100vh;
  left: 0;
  z-index: 10;
}

.floater-wrapper .floater {
  background: #fff;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  /*  &.floater-info {
            position: absolute;
            bottom: 0;
            right: 0;
        } */
}

.floater-wrapper .floater-bubble {
  background: #fff;
  width: 320px;
  padding: 15px;
  color: #5f677e;
  position: absolute;
  bottom: 70px;
  right: 80px;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
  display: none;
}

.floater-wrapper .floater-bubble::after {
  background: #fff;
  content: "\00a0";
  display: block;
  height: 16px;
  width: 46px;
  position: absolute;
  bottom: -10.5px;
  right: 0;
  -webkit-transform: rotate(28deg) skew(51deg) scale(1.2);
  transform: rotate(28deg) skew(51deg) scale(1.2);
  -webkit-box-shadow: 2px 2px 2px 0 rgba(179, 179, 179, 0.4);
  box-shadow: 2px 2px 2px 0 rgba(179, 179, 179, 0.4);
}

.floater-wrapper .floater-bubble.showed {
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
  z-index: 4;
}

.floater-wrapper .floater-bubble .floater-title {
  font-weight: 900;
  font-size: 18px;
}

.personnel-wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}

.personnel-wrapper .personnel-image {
  margin-bottom: 20px;
}

.personnel-wrapper .personnel-name {
  font-weight: 700;
  color: #425282;
}

.personnel-wrapper .personnel-name p {
  margin-bottom: 5px;
}

.personnel-wrapper .personnel-phone p {
  margin-bottom: 5px;
}

.justification-item {
  color: #425282;
  height: 170px;
}

.justification-item .justification-item-inner {
  padding: 10px 20px 5px 20px;
}

.justification-item:nth-child(odd) .justification-item-inner {
  background: #f0f1f3;
}

.justification-item:nth-child(even) .justification-item-inner {
  background: #dee1e9;
}

.justification-item .justification-head {
  margin-bottom: 20px;
}

.justification-item .justification-head .icon {
  width: 62px;
  margin-right: 15px;
}

.tabbed-form-wrapper {
  background: #dee1e9;
  border-top: 4px solid #425282;
}

.tabbed-form-wrapper form {
  padding: 40px 70px 20px;
}

.comparision-wrapper {
  text-align: center;
  border: 2px solid #d6d6d6;
  margin: 20px 0;
}

.comparision-wrapper .comparision-item {
  min-height: 43px;
  /* @include breakpoint(xs) {
            .comparision-key {
                order: -1;
                flex: 1 1 100%;
            }
            .comparision-value {
                flex: 1 1 50%;
            }
        } */
}

.comparision-wrapper .comparision-item p {
  margin-bottom: 0;
}

.comparision-wrapper .comparision-item .price {
  font-size: 24px;
}

.comparision-wrapper .comparision-item:nth-child(odd) {
  background: #eff1f8;
}

.comparision-wrapper .comparision-item .comparision-inner {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.comparision-wrapper .comparision-item .comparision-inner h2 {
  margin: 0;
}

.comparision-wrapper .comparision-item .comparision-inner:not(:first-child),
.comparision-wrapper .comparision-item .comparision-inner:not(:last-child) {
  border-left: 1px solid #d7dbe9;
  border-right: 1px solid #d7dbe9;
}

.steps-slider {
  border-bottom: 1px solid #d7dbe9;
}

.steps-slider .swiper-slide {
  background: transparent;
  cursor: pointer;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.steps-slider .step-image {
  opacity: 0.7;
  border: 2px solid transparent;
}

.steps-slider .step-image.active {
  border: 2px solid #425282;
  opacity: 1;
}

.steps-slider .step-name {
  color: #425282;
  font-size: 16px;
  font-weight: 500;
  min-height: 40px;
  margin-top: 10px;
}

.steps-slider-outer .swiper-button-prev,
.steps-slider-outer .swiper-button-next {
  background: url("../img/icons/icon-arrow-right.png") no-repeat center center/contain;
  /* TODO: Arrow position */
  top: 30%;
}

.steps-slider-outer .swiper-button-next {
  right: -20px;
}

.steps-slider-outer .swiper-button-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -20px;
}

.step-description-wrapper {
  min-height: 105px;
}

.step-description-wrapper .step-description-inner {
  opacity: 0;
  padding: 20px 15px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
}

.step-description-wrapper .step-description-inner.showed {
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.step-description-wrapper .step-description-inner .step-number {
  font-size: 48px;
  font-weight: 700;
  color: #425282;
  line-height: 48px;
  margin-right: 15px;
}

#layerslider .type-1 {
  color: #d6161e;
}

#layerslider .type-1 .layer-inner {
  max-width: 600px;
}

#layerslider .type-1 h2 {
  font-size: 48px;
  font-weight: 900;
  /* text-transform: uppercase; */
}

#layerslider .type-1 .content {
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 28px;
  display: inline-block;
}

#layerslider .type-1 h2 {
  color: #fff;
  display: inline-block;
}

#layerslider .type-1 .layer-title {
  background: rgba(0, 0, 0, 0.75);
  padding: 15px;
  color: #fff;
  display: inline-block;
}

#layerslider .type-1 .layer-subtitle {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 15px 15px 15px 15px;
  display: inline-block;
}

#layerslider .type-1 .layer-subtitle p {
  margin-bottom: 0;
}

#layerslider .type-1 .layer-text {
  background: #000;
  padding: 15px;
  margin-top: 0;
  display: inline-block;
}

#layerslider .type-1 .layer-text p {
  margin-bottom: 0;
}

#layerslider .ls-bottom-slidebuttons {
  top: auto;
  bottom: 0;
  display: none;
}

#layerslider .ls-bottom-slidebuttons a {
  background: #d6161e;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 15px;
}

#layerslider .ls-bottom-slidebuttons a.ls-nav-active {
  background: #000;
}

.ls-slide .overlay {
  height: inherit;
  width: inherit;
  background: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(#fff), color-stop(rgba(255, 255, 255, 0.9)), to(transparent));
  background: linear-gradient(to right, #fff, #fff, rgba(255, 255, 255, 0.9), transparent);
}

.ls-slide .btn-default {
  -webkit-transition: unset;
  transition: unset;
  height: 25px;
}

.type-header {
  /* .layer-text {
        top: 30%!important;
    } */
}

.type-header .layer-inner {
  max-width: 40%;
}

.type-header .title {
  background: rgba(0, 0, 0, 0.75);
  padding: 15px;
  display: inline-block;
}

.type-header .title h2 {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  display: inline-block;
}

.type-header .layer-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  display: inline-block;
}

.type-header .content {
  font-size: 18px;
  font-weight: 500;
  width: 80%;
  padding: 30px 0;
  display: inline-block;
}

.type-header .content2 {
  background: #000;
  color: #d6161e;
  padding: 15px 15px 15px 15px;
  display: inline-block;
}

.search-section .tab-pane {
  position: relative;
}

.search-section .tab-pane .bg-tab-wrapper {
  position: absolute;
  left: 0;
  top: 100%;
}

.search-section .tags ul {
  margin-left: 0;
}

.search-section .tags .search-tag {
  background: transparent;
  border: 1px solid #425282;
  padding: 3px 10px;
  font-weight: 500;
  margin-right: 10px;
  color: #425282;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 3px;
  /* stops bg color from leaking outside the border: */
}

.search-section .tags .search-tag a {
  color: #425282;
}

.search-section .tags .search-tag a:last-child {
  padding-left: 10px;
}

.search-section .tags .search-tag:hover {
  border: 1px solid #fff;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.search-section .more-models {
  font-size: 18px;
}

.search-section .more-models li {
  padding: 0 15px;
  position: relative;
}

.search-section .more-models li:not(:last-child)::after {
  height: 15px;
  content: "";
  border-right: 1px solid #d7dbe9;
  position: absolute;
  top: 5px;
  right: 0;
  bottom: auto;
  left: auto;
}

.search-section .more-models li a {
  padding: 10 15px;
  color: #5f677e;
}

.search-section .slider-brands .swiper-wrapper {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0, 0) !important;
  transition-timing-function: cubic-bezier(0, 0, 0, 0) !important;
}

.gallery-viewer {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1060;
}

.gallery-viewer #galleryClose {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 15;
}

.gallery-viewer #galleryImage {
  height: 85vh;
  position: relative;
}

.gallery-viewer #galleryImage:hover .gallery-actions-wrapper {
  z-index: 10;
  opacity: 1;
}

.gallery-viewer #galleryImage .disabled-overlay {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.gallery-viewer #galleryImage .actual-image {
  position: relative;
  /* overflow: hidden; */
  /* border: 1px solid #000; */
}

.gallery-viewer #galleryImage .actual-image img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  width: auto;
  height: 100%;
}

.gallery-viewer #galleryImage .swiper-button-prev {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E");
}

.gallery-viewer #galleryImage .swiper-button-next {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E");
}

.gallery-viewer .swiper-slide {
  background: transparent;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gallery-viewer .gallery-actions-wrapper {
  position: fixed;
  opacity: 0;
  min-width: 100%;
  height: 50px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 3;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery-viewer .gallery-actions-wrapper .gallery-action-button {
  margin-right: 20px;
  padding: 10px;
  cursor: pointer;
}

.gallery-viewer #galleryThumbnails {
  height: 15vh;
}

.gallery-viewer #galleryThumbnails .swiper-wrapper {
  width: 80%;
}

.gallery-viewer #galleryThumbnails .box-image-slider {
  max-height: 80px;
}

.gallery-viewer #galleryShare .dropdown-menu {
  left: -220%;
  font-size: 15px;
}

.gallery-viewer #galleryShare .dropdown-menu .fa {
  margin-right: 15px;
  font-size: 18px;
}

.gallery-viewer #galleryShare .dropdown-menu .fa-twitter {
  color: #1da1f2;
}

.gallery-viewer #galleryShare .dropdown-menu .fa-google-plus-official {
  color: #dd4b39;
}

/* Pages */

.search {
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eff1f8));
  background: linear-gradient(to bottom, #fff, #eff1f8);
}

.search .rounded-tab {
  background: url("../img/search-rounded-tab.png") no-repeat 0 0/cover transparent;
  width: 190px;
  height: 57px;
  background-position-y: 1px;
  font-weight: 900;
  padding: 18px 25px;
  position: relative;
  font-size: 18px;
  z-index: 1;
}

.search .last-search {
  background: #d7dbe9;
  width: 300px;
  height: 57px;
  position: relative;
  left: -190px;
  top: 1px;
  cursor: pointer;
  padding-left: 120px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-clip: padding-box;
}

.tab-content-home {
  min-height: 300px;
}

.nav-tabs-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 0;
}

.nav-tabs-centered > li > a {
  font-weight: 700;
  font-size: 14px;
  border: 0;
}

.nav-tabs-centered > li > a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: transparent;
  -webkit-transition: width .5s ease, background-color .5s ease;
  transition: width .5s ease, background-color .5s ease;
}

.nav-tabs-centered > li > a:hover {
  background: transparent;
  border: 0;
}

.nav-tabs-centered > li > a:focus {
  background: transparent !important;
  border: 0;
}

.nav-tabs-centered > li.active {
  margin-bottom: 0;
}

.nav-tabs-centered > li.active > a {
  background: transparent;
  color: #425282;
  border: 0;
}

.nav-tabs-centered > li.active > a:after {
  width: 100%;
  background: #fff;
}

.nav-tabs-centered > li.active > a:focus {
  background: transparent;
  color: #425282;
  border: 0;
}

.nav-tabs-centered > li.active > a:hover {
  background: transparent;
  color: #425282;
  border: 0;
}

.home-service-wrapper {
  position: relative;
}

.home-service-wrapper .service-image {
  width: 100%;
  max-height: 236px;
}

.home-service-wrapper .service-name {
  position: absolute;
  top: auto;
  right: 15px;
  bottom: 0;
  left: auto;
  color: #fff;
  font-weight: 900;
}

.text-box-icon-top-wrapper {
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /* .text-box-title {
        height: 40px;
    } */
}

.text-box-icon-top-wrapper.showed {
  opacity: 1;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.search-results-head {
  background: #eff1f8;
  border-bottom: 1px solid #d7dbe9;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: #425282;
}

.search-results-head .select2-container {
  margin-left: 15px;
}

.search.transparent {
  background: transparent;
}

.cars-banner-wrapper {
  margin-top: -30px;
  margin-bottom: -30px;
}

.cars-banner-wrapper .bg-evaluation-2 {
  height: 220px;
}

.auto-name {
  color: #425282;
}

.auto-name h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
}

.auto-place {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-top: 5px;
}

.auto-place h4 {
  margin: 0;
  font-weight: 700;
}

.gallery-viewer,
.product-images-wrapper {
  /* .swiper-slide-active {
        .box-image-slider {
            border: 1px solid $brand-color-primary;
            box-shadow: none;
        }
    } */
}

.gallery-viewer .box-image,
.product-images-wrapper .box-image {
  height: 430px;
  cursor: pointer;
  margin-bottom: 10px;
}

.gallery-viewer .box-image .main-image a,
.product-images-wrapper .box-image .main-image a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.gallery-viewer .box-image .swiper-button-prev,
.product-images-wrapper .box-image .swiper-button-prev {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center/40px 80px;
  padding: 0 60px 75% 0;
  /* top: 0%; */
  margin-top: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.gallery-viewer .box-image .swiper-button-next,
.product-images-wrapper .box-image .swiper-button-next {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center/40px 80px;
  padding: 0 0 75% 60px;
  /* top: 0%; */
  margin-top: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.gallery-viewer .box-image .car-papers-wrapper,
.product-images-wrapper .box-image .car-papers-wrapper {
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 48px;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 90px;
  left: 40px;
}

.gallery-viewer .box-image .car-papers-wrapper .icon-wrapper,
.product-images-wrapper .box-image .car-papers-wrapper .icon-wrapper {
  background: #fff;
  height: 48px;
  width: 48px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50%;
  /* stops bg color from leaking outside the border: */
}

.gallery-viewer .box-image .car-papers-wrapper .icon-wrapper .car-papers-counter,
.product-images-wrapper .box-image .car-papers-wrapper .icon-wrapper .car-papers-counter {
  background: #d6161e;
  position: absolute;
  top: 0;
  left: -5px;
}

.gallery-viewer .box-image .car-papers-wrapper .car-papers,
.product-images-wrapper .box-image .car-papers-wrapper .car-papers {
  display: none;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  color: #425282;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.gallery-viewer .box-image .car-papers-wrapper .car-papers .car-papers-inner,
.product-images-wrapper .box-image .car-papers-wrapper .car-papers .car-papers-inner {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 250px;
}

.gallery-viewer .box-image .car-papers-wrapper:hover,
.product-images-wrapper .box-image .car-papers-wrapper:hover {
  width: 80%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(70%, #fff), to(transparent));
  background: linear-gradient(to right, #fff 70%, transparent);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background-clip: padding-box;
}

.gallery-viewer .box-image .car-papers-wrapper:hover .car-papers,
.product-images-wrapper .box-image .car-papers-wrapper:hover .car-papers {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 60px;
  top: 6px;
  height: 100%;
  width: 80%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background-clip: padding-box;
}

.gallery-viewer .box-image .car-papers-wrapper:hover .car-papers .car-papers-inner,
.product-images-wrapper .box-image .car-papers-wrapper:hover .car-papers .car-papers-inner {
  opacity: 1;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.gallery-viewer .box-image .car-papers-wrapper:hover .icon-wrapper,
.product-images-wrapper .box-image .car-papers-wrapper:hover .icon-wrapper {
  background: #fff;
  height: 48px;
  width: 48px;
  margin-right: 20px;
  z-index: 1;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.gallery-viewer .product-thumbnails,
.product-images-wrapper .product-thumbnails {
  width: 90%;
}

.gallery-viewer .product-thumbnails .swiper-wrapper,
.product-images-wrapper .product-thumbnails .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gallery-viewer .thumbnails.swiper-button-next,
.gallery-viewer .thumbnails.swiper-button-prev,
.product-images-wrapper .thumbnails.swiper-button-next,
.product-images-wrapper .thumbnails.swiper-button-prev {
  top: auto;
  bottom: 4%;
  height: 20px;
  width: 20px;
}

.gallery-viewer .thumbnails.swiper-button-next,
.product-images-wrapper .thumbnails.swiper-button-next {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23727272'/%3E%3C/svg%3E");
}

.gallery-viewer .thumbnails.swiper-button-prev,
.product-images-wrapper .thumbnails.swiper-button-prev {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23727272'/%3E%3C/svg%3E");
}

.gallery-viewer .box-image-slider,
.product-images-wrapper .box-image-slider {
  cursor: pointer;
  border: 2px solid transparent;
  max-width: 100px;
  max-height: 85px;
  /* width: 85px; */
}

.gallery-viewer .box-image-slider img,
.product-images-wrapper .box-image-slider img {
  height: inherit;
  width: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.gallery-viewer .box-image-slider:hover,
.product-images-wrapper .box-image-slider:hover {
  border: 2px solid #d6161e;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.gallery-viewer .box-image-slider.active,
.product-images-wrapper .box-image-slider.active {
  border: 2px solid #d6161e;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.auto-information-wrapper strong {
  font-weight: 900;
}

.auto-information-wrapper .border-bottom {
  border-bottom: 1px solid #d7dbe9;
}

.auto-information-wrapper .dl-horizontal {
  line-height: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.auto-information-wrapper .dl-horizontal dt {
  font-weight: 400;
  text-align: left;
  margin-bottom: 5px;
}

.auto-information-wrapper .dl-horizontal dd {
  text-align: right;
}

.auto-information-wrapper .auto-price-forint {
  font-weight: 900;
  font-size: 24px;
  margin-top: -10px;
}

.auto-information-wrapper .instalment a {
  color: #425282;
}

.auto-information-wrapper .instalment .instalment-price {
  font-weight: 700;
  font-size: 18px;
}

.auto-information-wrapper .instalment p {
  margin-bottom: 0;
}

.auto-information-wrapper .auto-information {
  margin-top: 10px;
  margin-bottom: 5px;
}

.auto-contact-wrapper .auto-contact-item {
  padding: 15px 0;
}

.auto-contact-wrapper .icon {
  margin-right: 15px;
}

.disabled-overlay {
  background: #425282;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  opacity: 0.75;
  cursor: pointer;
}

.ac-good-to-know .text-box-content {
  min-height: 60px;
  text-align: center;
}

.id-card-wrapper {
  max-width: 260px;
}

.id-card-wrapper img {
  height: 167px;
  margin-bottom: 10px;
}

.collapse-faq {
  padding: 15px;
}

.collapse-faq-wrapper {
  background: #5f677e;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
}

.collapse-faq-wrapper a {
  color: #fff;
}

.faq-question {
  font-weight: 700;
}

.faq-answer {
  padding-left: 5%;
}

.contact-head {
  background: #eff1f8;
  padding: 15px;
  font-size: 18px;
  color: #425282;
}

.contact-head .contact-phone {
  font-size: 24px;
  text-align: right;
}

.contact-head .contact-phone a {
  color: #425282;
}

.contact-details {
  padding: 40px 15px 20px;
  border-bottom: 3px solid #eff1f8;
  color: #425282;
}

.contact-details a {
  color: #425282;
}

.routeplanner-box {
  position: absolute;
  left: 10%;
  top: 30px;
  width: 350px;
}

#routeplanForm {
  background: #fff;
  width: 350px;
  -webkit-box-shadow: 0 0 6px -4px rgba(151, 158, 177, 0.85);
  box-shadow: 0 0 6px -4px rgba(151, 158, 177, 0.85);
  border-radius: 8px;
  /* stops bg color from leaking outside the border: */
}

#routeplanForm .form-head {
  background: #5f677e;
  color: #fff;
  padding: 8px 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

#routeplanForm .form-head p {
  margin-bottom: 0;
}

#routeplanForm .form-inner {
  padding: 15px;
}

#routeplanForm .form-inner .form-control {
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

#routeplanForm .form-inner .input-group-btn {
  margin-bottom: -23px;
  vertical-align: bottom;
}

#routeplanForm .form-inner .input-group-btn .btn-search {
  background: #fff;
  width: 40px;
  height: 40px;
  padding: 5px;
  border-top: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

#routeplanForm .form-inner .input-group-btn .btn-search .icon.icon-search {
  background-position: center center;
  width: 100%;
  height: 100%;
}

.user-information-wrapper {
  padding-bottom: 20px;
  border-bottom: 2px solid #d7dbe9;
}

.user-information-wrapper .user-info {
  margin-left: 20px;
  font-weight: 700;
}

.user-information-wrapper .user-info p {
  margin-bottom: 0;
}

.user-information-wrapper .user-info .user-name {
  color: #d6161e;
  font-size: 24px;
}

.user-information-wrapper .password p {
  margin-bottom: 0;
}

.user-information-wrapper .password .icon-lock {
  margin-bottom: 10px;
}

.custom-tabs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.custom-tabs-wrapper .profile-tab-wrapper {
  /* flex: 1 1 (100%/3); */
  text-align: center;
}

.custom-tabs-wrapper .profile-tab-wrapper.active {
  border-bottom: 5px solid #425282;
}

.custom-tabs-wrapper .profile-tab-wrapper.active .profile-tab {
  padding-bottom: 5px;
}

.custom-tabs-wrapper .profile-tab-wrapper.active .profile-tab .badge {
  background: #d6161e;
}

.custom-tabs-wrapper .profile-tab-wrapper .profile-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  padding: 0 20px;
}

.custom-tabs-wrapper .profile-tab-wrapper .profile-tab .badge {
  background: #3e475f;
  margin-left: 10px;
  height: 20px;
  width: 20px;
  font-size: 12px;
}

.table-papers {
  border: 3px solid #d6d6d6;
}

.table-papers.table-striped > tbody > tr:nth-of-type(even) {
  background: #eff1f8;
}

.table-papers.table-striped > tbody > tr:nth-of-type(odd) {
  background: #fff;
}

.table-papers th,
.table-papers td {
  border-left: 2px solid #d6d6d6;
  border-right: 2px solid #d6d6d6;
}

.table-papers > tbody > tr > td {
  border-top: 0;
}

@media (min-width: 1200px) {
  .product-card-row {
    /* height: 220px; */
  }

  .product-card-row .product-img {
    /* height: 220px; */
  }
}

@media (max-width: 767px) {
  .text-center-xs {
    text-align: center;
  }

  .flex-col-xs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ekko-lightbox .modal-dialog {
    margin: 30px auto;
  }

  .map-container {
    height: 330px;
    margin-bottom: 20px;
  }

  .map-container a {
    height: inherit;
    width: inherit;
  }

  .map-container img {
    height: inherit;
    width: inherit;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .height-inherit {
    height: auto;
  }

  .content {
    margin-top: 50px;
  }

  footer .footer-social a {
    padding: 0 9px;
  }

  footer .footer-bottom .development a {
    display: block;
  }

  .form-horizontal .form-group {
    margin-bottom: initial;
  }

  .form-horizontal .form-group div {
    margin-bottom: 15px;
  }

  .navbar-top {
    /* 
        top: 0;
        height: 190px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 15px -2px #000; */
    /* top: 45px; */
    top: 0;
    /* height: 80px; */
    height: 40px;
    min-height: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 15px -2px #000;
    box-shadow: 0 0 15px -2px #000;
    position: fixed;
    width: 100%;
  }

  .navbar-top.nav-up {
    top: -100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .navbar-top .nav-search {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    top: 60px;
    padding-right: 15px;
  }

  .navbar-top .user {
    /* position: absolute;
            top: -45px;
            width: 50%;
            left: 50%;
            padding-right: 15px; */
    position: relative;
    /* top: -45px; */
    top: -10px;
    width: 50%;
    /* left: 50%; */
    padding-right: 15px;
    float: right;
  }

  .navbar-top .telephone {
    font-size: 19px;
    position: relative;
    width: 50%;
    left: 15px;
    top: 0;
    float: left;
    text-align: left;
  }

  .navbar-brand {
    width: 120px;
    padding: 10px 15px 15px;
    height: 50px;
  }

  .navbar-form .input-group {
    height: 40px;
  }

  .navbar-form .form-nav-search {
    height: 40px;
  }

  .navbar-form .btn-search {
    height: 40px;
  }

  .navbar {
    top: 0;
    /* top: 30px; */
    /* top: 60px; */
  }

  .navbar.nav-up {
    top: -100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .navbar-default {
    top: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    min-height: 40px;
  }

  .navbar-default .navbar-collapse {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 80vh;
  }

  .navbar-default .nav-search .navbar-form {
    margin-left: 15px;
    margin-right: 15px;
  }

  .navbar-default.nav-up {
    top: -100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .navbar-custom .with-submenu {
    position: relative;
  }

  .navbar-custom .with-submenu .submenu {
    position: relative;
    left: 0;
    top: 0;
    overflow: hidden;
  }

  .navbar-custom .with-submenu.open .submenu .submenu-inner {
    left: 0;
  }

  .navbar-custom .with-submenu .submenu-list li {
    max-width: 100%;
  }

  .navbar-custom .with-submenu .submenu-details {
    left: 100%;
    width: 100%;
    overflow: scroll;
    display: block;
    /* .flex-wrap {
                    flex-wrap: nowrap;
                } */
  }

  .navbar-custom .with-submenu .submenu-details.showed {
    left: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }

  .navbar-custom .with-submenu .submenu-details li {
    max-width: 40%;
  }

  .navbar-custom .question-mark {
    position: relative;
    right: 0;
    widht: auto;
    height: auto;
    display: block;
  }

  .mobile-info-menu-item a {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    font-size: 18px !important;
  }

  .navbar-toggle {
    margin-bottom: 0;
  }

  .bg-evaluation-2 {
    padding: 50px 15px 25px;
    height: 380px;
  }

  .bg-evaluation-2 .btn-default {
    letter-spacing: inherit;
  }

  .bg-banner-3 {
    padding: 25px;
    height: auto;
  }

  .bg-action-newsletter {
    height: 360px;
    z-index: 2;
    position: relative;
    padding: 0 15px;
  }

  .bg-checkmarked {
    padding-bottom: 40px;
  }

  .bg-checkmarked .btn-default {
    max-width: 200px;
  }

  .bg-valuation-why-to-us {
    margin-top: 0;
  }

  .bg-layer-finance-side {
    margin-top: 0;
  }

  .layer {
    top: 60px;
  }

  .layer .section-title {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .layer-finance .slider-horizontal {
    width: 100%;
  }

  .layer-finance .bs-slider + span {
    display: block;
    text-align: center;
    margin-left: 0;
  }

  .layer-finance .regular-payment {
    display: block;
  }

  .btn-default {
    width: 100%;
    font-size: 15px;
    min-width: 180px;
  }

  .btn-default.btn-fb.social {
    width: 100%;
  }

  .btn-default.btn-google.social {
    width: 100%;
  }

  .slider-clients {
    max-height: 100%;
  }

  .slider-clients .swiper-slide .row {
    max-height: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .slider-clients .quote-wrapper {
    max-width: 100%;
    margin: 10px auto;
  }

  .cookie-container {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cookie-container .btn {
    margin-top: 15px;
  }

  .cards-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .product-card:not(:first-child) {
    margin-left: 12.5px;
  }

  .product-card {
    margin-left: 12.5px;
    margin-right: 12.5px;
  }

  .product-card-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 0;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
  }

  .product-card-row .swiper-slide {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 20px;
  }

  .product-card-row .product-img {
    width: 100%;
  }

  .product-card-row .product-img .product-img-inner {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-height: 190px;
  }

  .product-card-row .product-img .product-img-inner img {
    vertical-align: top;
  }

  .product-card-row .product-datas {
    padding: 5px 5px 0 5px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
  }

  .product-card-row .auto-name h2 {
    font-size: 14px;
    margin-bottom: 0 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
  }

  .product-card-row .auto-description-text {
    height: auto !important;
    margin-bottom: 10px;
  }

  .product-card-row .auto-attributes .auto-attribute-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30%;
    flex: 1 1 30%;
  }

  .product-card-row .price-wrapper {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 3px 15px 5px 15px;
  }

  .product-card-row .price-wrapper .price {
    font-size: 20px;
  }

  .product-card-row .price-wrapper .price-info {
    text-align: center;
  }

  .product-card-row .swiper-button-prev,
  .product-card-row .swiper-button-next {
    opacity: 1;
  }

  .product-card-row .swiper-button-prev {
    padding: 0 60px 45% 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .product-card-row .swiper-button-next {
    padding: 0 60px 45% 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .autos-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .search form {
    border-top-right-radius: 0;
    margin-bottom: 20px;
  }

  .search .main-search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .search .main-search .form-group {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

  .search .main-search .form-group:not(:first-child) {
    margin-left: 0;
  }

  .details-search {
    height: auto;
    top: 90%;
  }

  .details-search .parameters-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .details-search .parameters-wrapper .form-group {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

  .details-search .parameters-wrapper .form-group:not(:first-child) {
    margin-left: 0;
  }

  .details-search .bs-sliders-wrapper .slider.slider-horizontal {
    width: 100%;
  }

  .details-search .details-search-close {
    position: relative;
    padding: 10px 0;
  }

  .modal-login .modal-dialog {
    width: auto;
  }

  .modal-login .modal-dialog .modal-body {
    padding: 5px 25px;
  }

  .modal-login .modal-dialog .socail-login-wrapper {
    padding: 5px 25px;
  }

  .modal-dialog {
    width: auto;
  }

  .modal-dialog .modal-body {
    width: auto;
    padding: 5px 25px;
  }

  .modal-dialog .socail-login-wrapper {
    width: auto;
    padding: 5px 25px;
  }

  .auto-attributes-item {
    height: auto;
    background-color: #eff1f8;
  }

  .auto-attributes-item .overlay {
    display: none;
  }

  .floater-wrapper .floater-bubble {
    width: 200px;
  }

  .justification-item {
    height: auto;
    margin-bottom: 15px;
  }

  .tabbed-form-wrapper form {
    padding: 40px 20px 20px;
  }

  .comparision-wrapper .comparision-item .price {
    font-size: 16px;
  }

  .comparision-wrapper .comparision-item .comparision-inner h2 {
    font-size: 16px;
  }

  .steps-slider .swiper-slide {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .steps-slider .swiper-slide-active .step-image {
    border: 2px solid #425282;
    opacity: 1;
  }

  .steps-slider-outer .swiper-button-next {
    right: 10px;
  }

  .steps-slider-outer .swiper-button-prev {
    left: 10px;
  }

  .step-description-wrapper {
    min-height: 185px;
  }

  .ls-slide .btn-default {
    max-width: 300px;
  }

  .type-header .layer-inner {
    max-width: 100%;
    padding: 20px;
  }

  .type-header .title h2 {
    font-size: 24px;
  }

  #mobileSearchToggle {
    display: none;
  }

  #mobileSearchToggle.collapse-shown {
    display: block;
  }

  .gallery-viewer #galleryImage .actual-image img {
    height: auto;
  }

  .gallery-viewer .gallery-actions-wrapper {
    opacity: 1;
    z-index: 10;
  }

  .search {
    padding-top: 10px;
  }

  .search .search-tabs {
    width: 100%;
    background-color: #d7dbe9;
    height: 57px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background-clip: padding-box;
  }

  .search .search-tabs .rounded-tab {
    background-size: 190px 58px;
    width: 190px;
    height: 58px;
  }

  .search .search-tabs .last-search {
    width: auto;
    padding-left: 0;
    left: 0;
  }

  .nav-tabs-centered {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .nav-tabs-centered > li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    /* flex-basis: 50%; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .home-service-wrapper {
    margin-bottom: 15px;
  }

  .satisfied-clients {
    min-height: 460px;
  }

  .satisfied-clients .slider-clients {
    height: 100%;
  }

  .search-results-head .results-count {
    padding-bottom: 15px;
  }

  .search-results-head .results-count .results-count-inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .search-results-head .ordering > div {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .cars-banner-wrapper {
    margin-top: 0;
    margin-bottom: 0;
  }

  .cars-banner-wrapper .bg-evaluation-2 {
    height: 280px;
  }

  .gallery-viewer .box-image,
  .product-images-wrapper .box-image {
    height: auto;
  }

  .gallery-viewer .product-thumbnails,
  .product-images-wrapper .product-thumbnails {
    margin-bottom: 20px;
  }

  .auto-information-wrapper .dl-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .auto-information-wrapper .dl-horizontal dt {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    font-weight: 500;
  }

  .auto-information-wrapper .dl-horizontal dd {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
  }

  .auto-information-wrapper .instalment .instalment-price {
    display: block;
  }

  .id-card-wrapper img {
    height: auto;
  }

  .contact-head .contact-phone {
    text-align: left;
  }

  .routeplanner-box {
    position: relative;
    top: 0;
    width: 250px;
  }

  #routeplanForm {
    width: 100%;
    -webkit-box-shadow: 0 8px 16px -3px rgba(151, 158, 177, 0.85);
    box-shadow: 0 8px 16px -3px rgba(151, 158, 177, 0.85);
  }

  .contact-map {
    margin-bottom: 260px;
  }

  .custom-tabs-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .custom-tabs-wrapper .profile-tab-wrapper {
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .content {
    margin-top: 180px;
  }

  .navbar-brand {
    width: 106px;
  }

  .navbar-custom .with-submenu .submenu {
    top: 50%;
  }

  .navbar-custom .question-mark {
    position: absolute;
    top: 50%;
    left: 30%;
    widht: auto;
    height: auto;
    display: block;
  }

  .product-card:not(:first-child) {
    margin-left: 12.5px;
  }

  .product-card {
    margin-left: 12.5px;
    margin-right: 12.5px;
  }

  .product-card-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .product-card-row .product-img .product-img-inner {
    margin-left: auto;
    margin-right: auto;
  }

  .product-card-row .product-datas {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .product-card-row .price-wrapper {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .position-box .position-name h3 {
    font-size: 18px;
  }

  .gallery-viewer .product-thumbnails,
  .product-images-wrapper .product-thumbnails {
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .content {
    margin-top: 180px;
  }

  .navbar-custom .with-submenu .submenu {
    top: 50%;
  }

  .navbar-custom .question-mark {
    position: absolute;
    top: 50%;
    left: 15%;
    widht: auto;
    height: auto;
    display: block;
  }

  .product-card-row .product-datas {
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
    /* flex-basis: 57.55%; */
  }
}

@media (min-width: 768px) and (max-width: 865px) {
  .navbar-custom .question-mark {
    position: absolute;
    top: 50%;
    left: 55%;
    widht: auto;
    height: auto;
    display: block;
  }
}