.pricetable td .lease-p {
  font-size: 10px !important;
  line-height: 10px !important;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 10%);
  width: 100%;
  margin: 0;
}

.price-grid .lease-p {
  font-size: 10px;
  line-height: 12px;
  margin: 4px 0 10px 0;
}

.pricetable td.payments,
.pricetable td.specialprice {
  position: relative;
}

.hide {
  display: none !important;
}

.hide2 {
  visibility: hidden;
}

.price-box-overlay {
  display: none;
}

p.onlygrid {
  display: none;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  grid-template-rows: auto;
  grid-gap: 16px;
}

.price-grid .price-box:first-child:not(#front .price-box:first-child) {
  display: none;
}

.price-grid .price-box {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  grid-template-rows: auto;
  gap: 0px 0px;
  grid-template-areas:
    "title title title"
    "p1 p2 p3"
    "img img img"
    "color color color";
  position: relative;
  padding: 10px;
  background: #fff;
  border: 1px solid #dddbdb;
  cursor: pointer;
}

.price-grid .price-box-booked {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  grid-template-rows: auto;
  gap: 0px 0px;
  grid-template-areas:
    "title title title"
    "p1 p2 p3"
    "img img img"
    "color color color";
  position: relative;
  padding: 10px;
  background: #fff;
  border: 1px solid #dddbdb;
  cursor: pointer;
}

.price-box-booked div {
  opacity: 1;
}

.price-grid .price-box-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  opacity: 0;
}

.bookedRow td {
  opacity: 1 !important;
}

.booked {
  color: #fff;
  background: #d82b04;
  border-radius: 4px;
  padding: 4px;
  opacity: 1 !important;
}

.price-grid .booked {
  padding: 4px 10px;
  border-radius: 0 0 0 4px;
}

.mbackground {
  overflow: initial !important;
  position: static;
}

.mbackground.all .price-box .smallcolor,
.mbackground.all .price-grid .price-box-booked .smallcolor {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-box {
  transition: 0.15s ease-in-out;
}

.price-box-booked {
  transition: 0.15s ease-in-out;
}

.price-box:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 15%);
}

.price-box-booked:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 15%);
}

.owl-theme .owl-nav {
  opacity:0;
  visibility: hidden;
  margin-top: 10px;
  position: absolute;
  width: 100%;
  top: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .3s ease-in-out;
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.owl-carousel .owl-item{
    display:flex;
    align-items:center;
    max-height:220px;
    overflow:hidden
}

.owl-carousel .owl-nav .owl-next::before, .owl-carousel .owl-nav .owl-prev::before{
  font-size: 20px;
  font-family: "iconfont";
  color: white;
    background: rgb(121 111 110 / 50%);
  padding:4px;
  border:2px solid transparent;
  border-radius: 6px;
}

.owl-carousel .owl-nav .owl-next:focus::before, .owl-carousel .owl-nav .owl-prev:focus::before{
  border:2px solid white
}

.owl-carousel .owl-nav .owl-next:active::before, .owl-carousel .owl-nav .owl-prev:active::before{
  background: rgb(121 111 110 / 80%);
}

.owl-carousel .owl-nav .owl-next::before{
  content:'\E002'
}

.owl-carousel .owl-nav .owl-prev::before{
  content:'\E001'
}

.owl-dots{
  opacity:0;
  visibility: none;
  transition: all .3s ease-in-out;
  margin: 4px 0;
}

.price-box:hover .owl-theme .owl-nav, .price-box-booked:hover .owl-theme .owl-nav, .price-box:hover .owl-dots, .price-box-booked:hover .owl-dots{
  opacity:1;
  visibility: visible;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary) !important;
}

.price-box p.onlygrid,
.price-box-booked p.onlygrid {
  display: block;
  margin-bottom: 6px;
  line-height: 15px;
}

.price-box .redprice {
  font-size: 21px;
  color: #9d0605;
  font-weight: 700;
  font-family: var(--headings-font-family);
}

.price-box-booked .redprice {
  font-size: 21px;
  color: #9d0605;
  font-weight: 700;
  font-family: var(--headings-font-family);
}

.price-box .bprice {
  font-size: 21px;
  color: #000;
  font-family: var(--headings-font-family);
}

.price-box-booked .bprice {
  font-size: 21px;
  color: #000;
  font-family: var(--headings-font-family);
}

.price-box-booked p.regularprice {
  text-decoration: line-through;
}

.price-box p.regularprice {
  text-decoration: line-through;
}

.price-grid .price-box b,
.price-grid .price-box-booked b {
  text-align: center;
  grid-area: title;
  color: #000;
  margin: 26px 0px 18px 0;
  font-family: var(--headings-font-family);
  font-size: 16px;
}

.price-grid .price-box p {
  text-align: center;
}

.price-grid .price-box-booked p {
  text-align: center;
}

.price-grid .price-box br {
  display: none;
}

.price-grid .price-box-booked br {
  display: none;
}

.special {
  text-align: center !important;
}

.price-grid .price-box .special:first-child {
  grid-area: p1;
}

.price-grid .price-box .special:nth-child(2) {
  grid-area: p2;
}

.price-grid .price-box .special:last-child {
  grid-area: p3;
}

.price-grid .price-box .price-img,
.price-grid .price-box-booked .price-img {
  display: flex;
  align-items: center;
  grid-area: img;
}

.price-grid .price-box .col {
  position: absolute;
  right: 0;
  top: 0;
}

.price-grid .price-box-booked .col {
  position: absolute;
  right: 0;
  top: 0;
}

.price-box .col .red {
  font-size: 12px;
  padding: 4px;
  min-height: auto;
}

.price-grid .price-box .smallcolor,
.price-grid .price-box-booked .smallcolor {
  grid-area: color;
  align-self: flex-end;
  margin: 0;
  line-height: 14px;
}

.price-grid .data-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px 10px;
  padding: 10px;
}

.price-grid .smallcolor p {
  line-height: 12px;
}

.price-grid .data-wrap p {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 1em;
}

.price-grid p.fuelefficiencyElectric {
  text-align: left;
}

.price-grid .smallcolor .car-color {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.price-grid .smallcolor .color-name {
  display: flex;
  flex-direction: column;
}

.price-grid .smallcolor .color-name .color-base {
  margin-bottom: 4px;
  color: #000;
}

.price-grid .smallcolor .color-name .color-sec {
  font-size: 12px;
}

.price-grid .data-wrap p::before {
  content: "";
  display: inline-flex;
  background-size: 18px 18px;
  height: 18px;
  width: 18px;
  margin-right: 6px;
}

.data-wrap .fueltype::before {
  background-image: url("/img/fueltype.svg");
}

.data-wrap .transmission::before {
  background-image: url("/img/transmission.svg");
}

.data-wrap .power:before {
  background-image: url("/img/engine.svg");
  background-size: 20px 20px !important;
  height: 20px !important;
  width: 20px !important;
  margin-left: -2px;
}

.data-wrap .fuelefficiency::before {
  background-image: url("/img/fuel.svg");
}

.data-wrap .fuelefficiencyElectric::before {
  background-image: url("/img/bolt.svg");
}

.data-wrap .modelyear::before {
  background-image: url("/img/modelyear.svg");
}

.data-wrap .mileage::before {
  background-image: url("/img/mileage.svg");
}

.price-grid .price-box-booked .smallcolor {
  grid-area: color;
  margin: 0;
  line-height: 14px;
}

.price-grid .price-img img {
  width: 100%;
  margin-bottom: 10px;
}

.pricetable td .smallcolor {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.pricetable td .data-wrap {
  display: flex;
}

.pricetable td .smallcolor .data-wrap {
  display: flex;
  align-items: center;
}

.pricetable td .data-wrap p::before {
  content: "";
  display: inline-flex;
  background-size: 18px 18px;
  height: 18px;
  width: 18px;
  margin-right: 6px;
}

.pricetable td .smallcolor p {
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 14px;
  margin: 0 8px 6px 0;
}

.pricetable td .smallcolor .color-sec:before {
  content: "(";
}

.pricetable td .smallcolor .color-sec:after {
  content: ")";
}

.smallcolor .car-color svg {
  stroke: #000;
  stroke-width: 10px;
}

.pricetable td .smallcolor span {
  margin-right: 3px;
}

.pricetable td .red {
  float: none;
}

.pricetable .modimg {
  position: relative;
}


.pricetable td .specialoffer {
  font-size: 14px;
  color: #fff;
  background: #fd9348;
  font-weight: 500;
  padding: 2px 0px;
  left: 0%;
  width: 100%;
  top: 0;
  border-radius: 4px 4px 0 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.price-grid .specialoffer {
  position: absolute;
  font-size: 14px;
  color: #fff;
  background: #fd9348;
  padding: 8px 12px;
  top: 0;
  left: 0;
  border-radius: 0 0 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stock {
  background: #1e8c22;
}

.booked{
  background: #D82B04;
}

.coming {
  background: #EBAA05;
}

.price-grid .booked span, .price-grid .coming span, .price-grid .stock span{
  display:none
}

.status{
  color: #fff;
  border-radius: 50%;
  padding: 3px;
}

.side_status{
  display: flex;
  gap: 8px;
}

.status_wrap{
  display: flex;
  padding: 8px 12px;
  gap: 5px;
  align-items:center
}

.side_status .status_wrap{
  padding:0;
}

.status_wrap span{
  line-height: normal;
}

.shop-equipment {
  columns: 2;
  column-gap: 35px;
  margin-bottom: 40px;
}

.shop-equipment div {
  break-inside: avoid-column;
  margin-bottom: 3rem;
}

.shop-equipment li {
  list-style-type: none;
  background: url("/img/check.svg") no-repeat left;
  padding-left: 24px;
  margin-bottom: 20px;
}

.expnd-btn {
  color: #000;
  text-decoration: none;
}

.expnd-btn:hover {
  color: #000;
}

.expnd-btn img {
  margin-left: 8px;
  transform: rotate(180deg);
}

.expnd-btn.open img {
  transform: rotate(0);
  transition: transform 0.2s linear;
}

.expnd-btn .open-text {
  display: none;
}

.expnd-btn.open .close-text {
  display: none;
}

.expnd-btn.open .open-text {
  display: inherit !important;
}

.eq-wrapper,
#techdatas-extra {
  overflow: hidden;
  transition: max-height 300ms;
  max-height: 0;
}
.eq-wrapper.open,
#techdatas-extra.open {
  max-height: 1600px;
}

.shoptable {
  display: flex;
}

.contenttable td:nth-child(2) {
  text-align: right;
}

.shoptable .contenttable,
.shoptable .contenttable td {
  border-right: 0;
  border-left: 0;
}

.shoptable .redtext {
  font-size: 16px;
}

.price-switch {
  display: flex;
  margin-bottom: 16px;
}

.price-switch a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: var(--text-font-family);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 18px;
  border-bottom: 1px solid #dddbdb;
  text-align: center;
  padding: 10px 6px;
  cursor: pointer;
}

.price-switch .fprice {
  flex: 1;
}

.price-switch .flease {
  flex: 2;
}

.price-switch a.active {
  color: #000;
  font-weight: 700;
  background: #d2d2d2;
  border-bottom: 1px solid #796f6e;
}

.filter-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.filter-price .fp-input {
  width: 50%;
  position: relative;
}

.filter-price .fp-input input {
  background: #fff;
  width: 100%;
  box-shadow: none;
  border: 1px solid #dddbdb;
  box-sizing: border-box;
  margin: 0;
}

.filter-price .fp-input input::-webkit-outer-spin-button,
.filter-price .fp-input input::-webkit-inner-spin-button,
.lease-calc input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter-price .fp-input input[type="number"],
.lease-calc input::-webkit-inner-spin-button,
.lc-i input[type="number"] {
  -moz-appearance: textfield;
}

.filter-price .fp-input:before {
  position: absolute;
  content: "€";
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

.filter-price input::placeholder {
  color: #585858;
}

.filterModel {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 22px;
}

.filterModel input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100% !important;
  margin: 0 !important;
  width: 90% !important;
}

.tooltiptext {
  background-color: var(--primary);
  visibility: hidden;
  min-width: 100px;
  max-width: 200px;
  font-size: 14px;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  margin-left: -40px;
}

.tooltipColor:hover .tooltiptext {
  visibility: visible;
}

.fm-checkmark {
  position: absolute;
  height: 16px;
  width: 16px;
  border: 1px solid rgba(221, 219, 219, 1);
  background-color: #fff;

  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
}

.fm-checkmark-border:after {
  background: url("/img/fm-checkmark-border.svg") no-repeat center !important;
}

.filterModel:hover input ~ .fm-checkmark {
  background-color: rgba(221, 219, 219, 1);
}

.filterModel input:checked ~ .fm-checkmark {
  background-color: rgba(30, 140, 34, 1);
  border-color: rgba(30, 140, 34, 1);
}

.fm-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.filterModel input:checked ~ .fm-checkmark:after {
  display: block;
  opacity: 1;
  transform: scale(1.2);
}

.filterModel .fm-checkmark:after {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  position: absolute;
  transform: scale(0);
  background-size: 50%;
  background: url("/img/fm-checkmark.svg") no-repeat center;
}

.filterModel .fm-count {
  color: #969696;
}

.sidebar-cat {
  border-bottom: 1px solid #dddbdb;
}

.fm-container b {
  margin-bottom: 10px;
}

.fm-container {
  transition: all 0.25s cubic-bezier(1, 0, 0, 1);
  opacity: 1;
  padding-bottom: 10px;
  max-height: 4000px;
}

.fm-close {
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
}

.sidebar-collapse {
  cursor: pointer;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-collapse b {
  color: #000;
}

.sidebar-collapse:after {
  content: "";
  background-image: url("/img/fm-arrow.svg");
  background-size: 14px 8px;
  width: 14px;
  height: 8px;
  float: right;
  margin-left: 5px;
  transform: rotate(0);
  transition: transform 0.2s linear;
}

.fm-anim:after {
  content: "";
  background-image: url("/img/fm-arrow.svg");
  transform: rotate(180deg);
  transition: transform 0.2s linear;
  background-size: 14px 8px;
  width: 14px;
  height: 8px;
  float: right;
  margin-left: 5px;
}

.shop-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}

.shop-heading .shop-btns {
  display: flex;
  flex-direction: row-reverse;
}

.shop-heading .shop-btns button:first-child {
  margin-left: 10px;
}

.shop-heading h2 {
  margin: 0;
}


.shop-container {
  display: flex;
  width: 100%;
}

.shop-container h3 {
  margin: 0 0 20px 0;
}
.techdata-container {
  flex: 2;
}

.heading-models {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.heading-models h2 {
  margin: 0;
}

.heading-btns {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.view-switcher {
  margin: 0 20px;
}

#list-switch {
  margin-right: 4px;
}

#list-switch:hover svg,
#grid-switch:hover svg {
  fill: #796f6e;
}

#list-switch.active svg,
#grid-switch.active svg {
  fill: #796f6e;
}

#price-sorting {
  border: 1px solid #dddbdb;
  height: 38px;
  box-sizing: border-box;
  padding: 0 5px;
  line-height: 18px;
  font-size: 14px;
  font-family: var(--text-font-family);
  color: #585858;
}

.lease-container {
  margin-left: 50px;
  flex: 1;
}

.lc-inner {
  border: 1px solid #dddbdb;
  padding: 20px;
}

.lease-calc {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 14px 12px;
  grid-auto-flow: row;
  grid-template-areas:
      "input1 input1 input1"
      "input2 input2 input4"
      "input3 input3 input5"
      "input6 input6 input8"
      "input7 input7 .";
}

.lease-calc.nofilter{
  grid-template-areas:
  "input1 input1 input1"
  "input2 input2 input4"
  "input3 input3 input5"
  "input6 input6 ."
  "input7 input7 .";
}

.calc-container .inputwide {
  background-color: white !important;
  height: 32px;
  width: 100%;
  border: 0.5px solid #989898;
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
  padding: 0 5px;
  line-height: 18px;
  font-size: 14px;
  font-family: var(--text-font-family);
  color: #585858;
  -moz-appearance: textfield;
}

.filterInput {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.filterInput input {
  width: 100%;
  background-color: white !important;
  height: 32px;
  border: 0.5px solid #989898;
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
  padding: 0 5px;
  line-height: 18px;
  font-size: 14px;
  font-family: var(--text-font-family);
  color: #585858;
  -moz-appearance: textfield;
}

.filterInput input::-webkit-inner-spin-button,
.filterInput input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

.filterInput input:before {
  position: absolute;
  content: "€";
  float: right;
  transform: translateY(-50%);
  font-weight: 700;
}

.lc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.lc-result .redtext {
  font-weight: normal;
  font-family: var(--headings-font-family);
  color: #9d0605;
  font-size: 21px;
}

#second .pictures .shopimage {
  float: left;
  margin: 0 0 10px 0;
  height: 100%;
  overflow: hidden;
}

#second .pictures .shopimage a {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pictures .responsive {
  margin-top: 0;
}

.pictures .responsive .slick-arrow {
  font-size: 0;
  border-radius:50%;
}

.pictures .responsive .slick-prev,
.pictures .responsive .slick-next {
  top: 50%;
}

.pictures .responsive .slick-prev {
  left: 0;
}

.pictures .responsive .slick-next {
  right: 0;
}

.shop-dots {
  display: flex;
  justify-content: center;
}

.shop-dots li {
  padding: 0 !important;
  background: none !important;
}

.shop-dots ul {
  margin: 10px;
}
.shop-dots li button {
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  color: #fff;
  padding: 0;
  height: 10px;
  width: 10px;
  margin: 7.5px;
  -moz-border-radius: 85px;
  -webkit-border-radius: 85px;
  border-radius: 85px;
  border: 3px solid #c4c4c4 !important;
  background: #c4c4c4;
}

.shop-dots li button:hover {
  background: var(--primary);
  border: 3px solid var(--primary) !important;
}

.shop-dots .slick-active button {
  background: var(--primary);
  border: 3px solid var(--primary) !important;
}

.pricetable .headrow img,
.maintable .headrow img,
.contenttable .headrow img {
  width: 9px !important;
  height: 12px !important;
}

.auto24-iframe .def,
.auto24-iframe .asc,
.auto24-iframe .desc {
  background-size: 9px 12px;
}

.ui-widget-overlay {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  filter: Alpha(Opacity=100);
}

.ui-widget-header .ui-datepicker-next .ui-icon, .ui-widget-header .ui-datepicker-prev .ui-icon{
  filter:invert(1)
}

#slides2 .theimage {
  background-repeat: no-repeat !important;
}

.ui-state-default .ui-icon {
  position: relative;
  background: transparent !important;
}

.ui-icon-closethick {
  display: block;
  left: 11px !important;
  top: 11px !important;
  padding: 0 0 0 0 !important;
  width: 12px;
  opacity: 0.6;
  height: 12px;
  transition: transform 0.25s ease-in-out;
}

.ui-button:hover .ui-icon-closethick {
  opacity: 1;
}

.ui-icon-closethick:before {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  height: 0;
  border-top: 3px solid rgba(0, 0, 0, 1);
  transform: rotate(45deg);
  transform-origin: center;
}

.ui-icon-closethick:after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  height: 0;
  border-top: 3px solid rgba(0, 0, 0, 1);
  transform: rotate(-45deg);
  transform-origin: center;
}

.vahe {
  padding-left: 25px !important;
}

.vahe b {
  font-weight: normal;
}

.eqPrice {
  text-align: center !important;
  white-space: nowrap;
}

.fiveimages {
  width: 100%;
  height: 76px;
  margin: -16px 0 30px 0;
}

.onlyfive .theimage {
  float: left;
  margin: 0 5px;
  width: 137px;
  height: 76px;
  overflow: hidden;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

.onlyfive .theimage a {
  display: block;
  margin: 0;
  width: 137px;
  height: 76px;
  overflow: hidden;
}

.pricetable tr {
  cursor: pointer;
}

.pricetable .headrow {
  cursor: initial !important;
}

.onlyifportrait,
#onlyifportraittxt {
  display: none;
}

.newsletter{
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#mobdesk #desk,
#mobdesk #mobile {
  float: left;
  font-size: 16px;
  margin-right: 30px;
  font-family: var(--headings-font-family);
  padding: 17px 5px 17px 22px;
  opacity: 0.5;
  text-decoration: none;
}

#mobdesk #ios,
#mobdesk #android {
  float: left;
  font-size: 16px;
  margin-right: 10px;
  font-family: var(--headings-font-family);
  padding: 17px 5px 17px 22px;
  text-decoration: none;
}

#mobdesk #ios {
  background-image: url(../img/ios.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

#mobdesk #android {
  background-image: url(../img/android.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

#mobdesk #desk {
  background-image: url(../img/mobile.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

#mobdesk #mobile {
  background-image: url(../img/desktop.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

#mobdesk #vlogo {
  float: right;
  margin-right: 470px;
}


img[src="/img/arwr_w.png"], img[src="https://www.citroen.lv/img/arwr_w.png"], img[src="https://www.citroen.lt/img/arwr_w.png"], img[src="https://www.citroen.ee/img/arwr_w.png"], img[src="https://citroen.lv/img/arwr_w.png"], img[src="https://citroen.lt/img/arwr_w.png"], img[src="https://citroen.ee/img/arwr_w.png"], img[src="http://citroen.ee/img/arwr_w.png"]
{
  width: 7px;
  height: 11px;
}

img[src="/img/close-btn.svg"] {
  width: 18px;
  vertical-align: middle;
  filter: invert(1);
}

img[src="/img/arwr_w.png"] {
  width: 10px;
  height: 16px;
  vertical-align: middle;
  transition: 0.2s ease-in-out;
}

img[src="/img/arwr_w.png"].rot {
  transform: rotate(90deg);
  margin: 0 0 3px 6px;
}

img[src="/img/arwr_b.png"],
.secondheader img {
  width: 10px;
  height: 18px;
}

.secondheader:has(b) a::after{
  content:'\E96C';
  font-family: 'Opel Icons';
  padding-left:4px;
}

.secondheader #header-arrow{
  display:none
}

img[src="/img/togglebox.png"] {
  width: 16px;
  height: 8px;
}

#showright {
  display: none;
}

#slides2 {
  min-width: 100%;
  width: 100%;
  height: 76px;
  position: relative;
}

#slides2 .slidesjs-control {
  width: auto !important;
  height: 76px !important;
  width: 100% !important;
}

#slides2 .slidesjs-container {
  width: auto !important;
  height: 76px !important;
  float: left;
  padding-left: 5px;
  width: -moz-calc(100% - 130px) !important;
  width: -webkit-calc(100% - 130px) !important;
  width: calc(100% - 130px) !important;
}

#slides2 .slidesjs-previous {
  position: relative;
  z-index: 900;
  margin: 0;
  padding: 0;
  width: 62px;
  height: 76px;
  background-image: url(../img/arwl2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 29px;
}

#slides2 .slidesjs-next {
  right: 0;
  position: relative;
  z-index: 900;
  margin: 0;
  padding: 0;
  width: 62px;
  height: 76px;
  background-image: url(../img/arwr2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 29px;
}

#slides2 .slidesjs-previous,
#slides2 .slidesjs-next {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background-color: #796f6e;
  border: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  float: left;
}

#slides2 .slidesjs-previous:hover,
#slides2 .slidesjs-next:hover {
  background-color: #3f3f3f;
}

.vehicles_list tr:nth-child(2n + 1) {
  background: #f1f0f0 none repeat scroll 0 0;
}

#mobile {
  display: none;
}

#desk {
  display: block;
}

#slides {
  display: none;
  z-index: 1;
  margin: 10px auto 0 auto;
  padding: 0;
  width: 960px;
  height: 390px;
  min-width: 960px;
  overflow: hidden;
}

#slides img {
  cursor: pointer;
}

#slides .slidesjs-previous {
  position: absolute;
  z-index: 900;
  top: 280px;
  margin: 0 0 0 -10px;
  padding: 0;
  width: 50px;
  height: 50px;
  background: url(../img/arwl.png) no-repeat center;
  background-size: 17px 21px;
}

#slides .slidesjs-next {
  position: absolute;
  z-index: 900;
  top: 280px;
  margin: 0 0 0 920px;
  padding: 0;
  width: 50px;
  height: 50px;
  background: url(../img/arwr.png) no-repeat center;
  background-size: 17px 21px;
}

#slides .slidesjs-previous,
#slides .slidesjs-next {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background-color: #ffffff;
  border: 0;
}

#slides .slidesjs-previous:hover,
#slides .slidesjs-next:hover {
  opacity: 0.8;
}

#slides .slidesjs-pagination {
  list-style: none;
  position: absolute;
  z-index: 900;
  padding: 25px 0 0 0;
  margin: 0;
  width: auto;
  color: transparent;
  font-size: 0;
  left: -moz-calc(50% - 75px);
  left: -webkit-calc(50% - 75px);
  left: calc(50% - 75px);
}

#slides .slidesjs-pagination li {
  float: left;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 10px;
}

#slides .slidesjs-pagination a {
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 0;
  height: 10px;
  width: 10px;
  border: 0;
  margin: 0 10px;
  -moz-border-radius: 85px;
  -webkit-border-radius: 85px;
  border-radius: 85px;
  background: #e0e0e1;
}

#slides .slidesjs-pagination a:hover {
  background: #796f6e;
}

#slides .slidesjs-pagination li a.active,
#slides .slidesjs-pagination li a:hover.active {
  background: #796f6e;
  height: 20px;
  width: 20px;
  padding: 0;
  margin: -5px 5px 0 5px;
}

.pricetable .red {
  white-space: nowrap;
}

.onlyconsumer {
  width: 806px;
  padding: 0px;
}

.rightmenu .onlyconsumer{
  padding:30px;
}

.soContent a {
  color: #585858;
}

.submit input {
  background-size: 8px auto;
  background-position: right 5px center;
}

.vehicles_list img {
  width: 74px !important;
  height: auto !important;
}

.vehicles_list img {
  width: 100% !important;
  height: auto !important;
}

.auto24-iframe th.photo {
  width: 220px;
}

.special-offers div.soData,
.special-offers div.dummy {
  width: 23% !important;
  margin-bottom: 2vw;
  float: left;
  min-width: auto !important;
}

.special-offers div.separator {
  width: 2% !important;
}

.auto24-iframe input,
.auto24-iframe select {
  box-sizing: border-box;
  width: 10vw !important;
  max-width: 180px !important;
}

.auto24-iframe .tdYear_select select {
  max-width: 80px !important;
  width: 6vw !important;
}

.submit input {
  box-sizing: border-box;
  width: 15.6vw !important;
  max-width: 218px !important;
}

.vehicle_details {
  line-height: 21px;
}

#special-offers-veho_citroen_front img,
#special-offers-veho_citroen_latvia_front img,
#special-offers-veho_citroen_lithuania_front img {
  height: 9vw !important;
  max-height: 250px !important;
  width: 100% !important;
  object-fit: cover;
}

.mobhdr {
  display: none !important;
}

.responsive .slick-slide {
  width: auto;
  transform: scale(0.8);
  transition: transform 0.5s ease-in-out;
  min-height: auto !important;
}

.responsive .slick-slide img {
  max-height: 340px;
  max-width: calc(100vw - 40px);
  margin: 0;
}

.responsive .slick-center {
  transform: scale(1);
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  margin: 0 0 0 5px;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

article {
  -moz-column-width: 270px;
  -webkit-column-width: 270px;
  -moz-column-gap: 10px;
  -webkit-column-gap: 10px;
}

article section {
  display: inline-block;
  margin: 0 0 15px 0;
  padding: 20px;
  width: 270px;
  background: #f1f0f0;
}

article section p {
  margin: 0;
}

article section h2 {
  margin: 0 0 10px 0;
}

.vehicles_list .a24icondesk {
  width: 40px !important;
}

.vehicles_list .a24iconmob {
  display: none !important;
}

#cookies {
  position: fixed;
  bottom: 0;
}

#header {
  height: auto !important;
}

.front_inner {
  padding: 40px 0;
}

.secondheader {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0;
}

.colorpics img {
  width: 100%;
  height: auto;
}

#second .content_inner {
  padding-top: 40px;
  min-height: 400px;
}

.storefront .content_inner,
.modelsview .content_inner {
  max-width: 1920px;
}

#second .right {
  margin: 0 0 0 40px;
  width: calc(100% - 18% - 40px);
}

#second:not(.storefront, .modelsview) .right {
  margin: 0;
  padding: 0;
  width: 100%;
}

.thirdwidest .allmodels:not(.allmodels.build),
.thirdwidest .onlyextramodels {
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
}

.widecontent {
  width: 100%;
}

#second .right .middle {
  width: calc(100% - 286px);
}

.right input[value="VIN kood"],
.spvin {
  width: calc(100% - 155px) !important;
}

​ .right input[value="VIN"] {
  width: calc(100% - 505px) !important;
}

​ .right select[name="dealer"] {
  width: calc(100% - 155px) !important;
}

.models,
.extramodels,
.teenindusmenu,
.models2 {
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1920px;
}

.leftmenu {
  width: calc(100% - 60px);
  padding: 20px 30px;
  background: #f9f9f9;
}

.allmodels {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  grid-template-rows: auto;
  grid-gap: 24px 12px;
  margin-bottom: 8px;
}

#settings {
  width: 100px;
  height: 40px;
  background: transparent;
  position: absolute;
  z-index: 99999;
  top: 80px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  right: 8vw;
}

.moveup {
  top: 90px !important;
}

#playpause,
#volumemute {
  width: 40px;
  height: 40px;
  background: transparent;
  position: relative;
  float: left;
  margin-left: 10px;
}

#playpause a,
#volumemute a {
  border: 0;
  background: transparent;
}

#playpause .svg,
#volumemute .svg {
  width: 12px;
  margin: 12px;
  height: 12px;
  fill: #fff;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

#playpause:hover .svg,
#volumemute:hover .svg {
  fill: #007bcd;
}

#playpause #playbtn,
#playpause #pausebtn,
#volumemute #mutemebtn,
#volumemute #volumebtn {
  position: absolute;
  visibility: visible;
  opacity: 1;
  top: 0;
  width: 40px;
  height: 40px;
  left: 0;
  transition: opacity 0.2s, visibility 0.2s;
}

.hidebtn,
.hidebtn2 {
  visibility: hidden !important;
  opacity: 0 !important;
}

.thesliderthingy {
  width: 100%;
  height: auto;
  position: relative;
}

.gallery {
  width: 100%;
  margin: 0 0 20px 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: auto !important;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.gallery img {
  width: 100%;
}

.gallery {
  position: relative !important;
  height: auto !important;
}

.gallery .slick-track {
  height: auto !important;
}

.gallery .slick-slide {
  height: auto !important;
  margin: 0;
  width: 100%;
  width: 100%;
}

.table {
  display: table;
  height: 100%;
  width: 100%;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

#player {
  width: 100%;
  height: 100%;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.zero {
  height: 0;
  min-height: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

.leftgray .closeme {
  display: none;
}

.video-background {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  z-index: -90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}


.newsletter input {
  float: left;
  border: 0;
  padding: 20px 15px;
  min-height: auto;
  background: transparent;
  line-height: 18px;
  font-size: 18px;
  font-family: var(--text-font-family);
  color: var(--primary);
  width: calc(100% - 215px);
  border: 3px solid var(--primary);
}

.newsletter .red {
  width: 215px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.red,
.secondary,
.prettybutton,
.prettybutton2 {
  float: right;
  border: 0;
  padding: 14px 20px;
  margin: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 16px;
  font-family: var(--headings-font-family);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  height: auto;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  border-radius: 30px
}

.prettybutton,
.prettybutton2 {
  position: relative;
  float: none;
  text-decoration: none;
  display: inline-block;
  margin: 10px 10px 10px 0;
  color: #fff;
  height: auto;
  border: 0;
  vertical-align: middle;
}

.red:hover,
.prettybutton:hover,
.prettybutton2:hover {
  color: #fff;
  background:#950809;
  text-decoration: none;
}

.prettybutton,
.sendbtn {
    color: #fff !important;
    background: var(--primaryBtn);
}

#front .left {
  margin: 0;
  padding: 40px 20px 40px 0;
}

.frontwidenews .left {
  width: 100% !important;
  padding: 40px 0 40px 0 !important;
}

#frontslideh {
  width: 100%;
  height: calc(100% - 148px);
  float: left;
  margin: 0;
  position: relative;
  padding: 0;
  min-height: 600px;
  width: 1px;
  opacity: 0;
}

.gallery h2 {
  padding-right: 0;
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 46px !important;
  font-family: var(--headings-font-family);
  font-weight: 300;
}

#onlyfrontpagefix .slick-slider .table button{
  padding: .875rem 2.9375rem;
}

.slick-slider button:hover::before {
  color:#000
}

.gallery p {
  padding-right: 0;
  font-size: 14px;
  line-height: 24px;
  margin: 10px 0 20px 0;
}

.right p,
.thirdwidest p {
  line-height: 24px;
}

.upwards {
  top: 80px;
}

#mobdesk #vlogo {
  float: right;
  margin-right: calc(50% - 7px);
}

.teenindusmenu {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 0 0 40px;
}

.teenindusmenu div,
.teenindusmenup div {
  width: 100%;
}
#second .red,
#second .gray,
#dialogmedium .red {
  height: auto;
}

.teenindusmenu .box,
.teenindusmenup .box {
  float: left;
  width: 33.33%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0 40px 40px 0;
}

.teenindusmenu .box img,
.teenindusmenup .box img {
  width: 100%;
  margin: 5px 0;
}

.maintable {
  width: 100% !important;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.widecontent,
.right {
  position: relative;
}

.widecontent .slideTogglebox,
.widecontent .slideTogglebox2,
.slideTogglebox6,
.slideTogglebox7 {
  margin: 0;
  right: 0;
  top: 46px;
}

.slideTogglebox6.compare{
  top:initial;
  right:10px;
}

.widecontent .slideTogglebox6,
.widecontent .slideTogglebox7 {
  right: 200px;
}

.right .slideTogglebox6 {
  margin: 0 !important;
}

.slideTogglebox6 span{
  font-size:16px;
  line-height:16px;
}

h2 {
  margin: 0 0 30px 0;
  font-size: 32px;
  line-height: 32px;
}

#header h1 {
  font-size: 18px;
  line-height: 24px;
}

.right img[src="/files/upload/image/eesti_kaart.png"] {
  width: 100% !important;
  height: auto !important;
}

.videos {
  width: 50%;
}

b,
strong {
  font-family: var(--text-font-family);
  font-weight: 700;
}

.noborder a img {
  width: 80% !important;
  margin: 0 10%;
  height: auto !important;
}

.noborder h2 {
  margin: 0 0 10px 0;
}

.brand,
.dealerlogo {
  display: inline !important;
}

.red,
.newsletter input {
  min-height: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-widget button{
  font-family: var(--headings-font-family);
}

.ui-widget button img{
  display:none
}

.tehnilisedadnmedpilt {
  width: 100% !important;
  height: auto !important;
}

@media screen and (max-width: 1440px) {

  .contentimage {
    width: 100% !important;
    height: auto !important;
  }
}

@media screen and (max-width: 1340px) {
  .ui-dialog {
    width: 100% !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 1020px) {
  .slider .slick-list {
    height: 100% !important;
    width: 100%;
  }

  .complect .maintable b {
    vertical-align: middle;
  }
  .headroom {
    will-change: transform;
    transition: transform 200ms linear;
  }

  .headroom--pinned {
    transform: translateY(0%);
  }
  .headroom--unpinned {
    transform: translateY(-101%);
  }
}

.gallery p {
  line-height: 24px;
  font-style: italic;
}

@media screen and (max-width: 1020px) {
  .pricetable td .smallcolor .data-wrap {
    flex-wrap: wrap;
  }

  .gallery p {
    font-size: 14px;
    line-height: 24px;
  }

  #mobdesk {
    background-color: #fff;
    padding-bottom: 50px;
  }

  .slider {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
  }

  #front .box {
    padding: 20px 0 20px 10px;
  }

  #front .left {
    margin: 0;
    padding: 20px 10px 20px 0;
  }

  .frontwidenews .left {
    width: 100% !important;
    padding: 20px 0 20px 0 !important;
  }

  #header {
    margin: 0 !important;
  }

  .slider .table {
    display: initial;
  }

  .fixedimg .table-cell {
    padding-bottom: 20px !important;
  }

  .complecting.slick-initialized .slick-slide {
    display: block !important;
  }

  #frontslideh {
    display: none;
  }

  #header {
    height: auto;
    margin: 0 0 0 0;
    background: #f1f0f0;
  }

  #settings {
    top: 20px;
    right: 20px;
  }

  .newsletter input {
    height: 30px;
    padding: 5px 10px;
  }
}

@media screen and (max-width: 980px) {
  .prettybutton,
  .prettybutton2 {
    height: auto;
    min-height: 40px;
    padding: 13px 20px;
    min-height: auto !important;
  }

  #second .content_inner {
    padding-top: 20px;
    background: #fff;
    min-height: 0;
  }

  #second {
    background: transparent !important;
  }

  .vehicles_list .a24iconmob {
    width: 26px !important;
    display: inline-block !important;
    margin: -7px 0;
  }

}

@media screen and (max-width: 480px) {
  .newsletter .red,
  .newsletter input,
  .prettybutton,
  .prettybutton2 {
    text-align: center;
  }

  .prettybutton,
  .prettybutton2 {
    margin: 0 0 10px 0;
  }

  .shop-heading h2 {
    margin-bottom: 10px;
  }

  .shop-heading .shop-btns {
    flex-direction: column-reverse;
    width: 100%;
  }
  .vehicles_list .a24iconmob {
    margin: -2px 0;
    display: block !important;
    margin-left: -moz-calc(50% - 13px);
    margin-left: -webkit-calc(50% - 13px);
    margin-left: calc(50% - 13px);
  }

  .vehicles_list .onlyls {
    display: inline-block !important;
    margin: -7px 0;
  }
}

#privacry {
  clear: left;
  font-size: 12px;
}

#privacry a {
  padding: 3px 0;
}

#cookies {
  float: left;
  width: 100%;
  height: auto;
  background: linear-gradient(#f1f1f1, #fff);
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  border-top: 1px solid #d9d9d6;
  z-index: 999999998;
}

#cookies .inner2 {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


#cookies a,
#cookies h2 {
  margin: 0 0 10px 0;
  color: #000;
}

#cookies img {
  float: left;
  width: 50px;
  margin: 6px 0 0 20px;
  height: 50px;
}

#cookies #left {
  float: left;
  width: -moz-calc(100% - 250px);
  width: -webkit-calc(100% - 250px);
  width: calc(100% - 250px);
}

#cookies button {
  float: right;
  border: 0;
  border-radius: 100px;
  padding: 14px 20px;
  margin: 10px 0 0 0;
  width: 160px;
  background: #c00;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  font-family: var(--headings-font-family);
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}

#cookies button:hover {
  background: #950809;
  color: #fff;
}

#cookies h2 {
  font-size: 32px;
  line-height: 32px;
}

@media screen and (max-width: 1020px) {
  .colorpics,
  .colorpics img {
    float: left;
  }

  #cookies .inner2 {
    padding: 20px;
  }
}

@media screen and (max-width: 680px) {
  #cookies h2 {
    font-size: 21px !important;
    line-height: 21px !important;
  }

  .mobiletable td,
  .maintable td,
  .rtable td {
      padding: 5px !important;
      font-size:14px;
  }

  .mobiletable .specialprice,
  .mobiletable .price,
  .maintable .price,
  .maintable .specialprice,
  .rtable .price,
  .rtable .specialprice {
      font-size: 14px !important;
  }

  .slider .table-cell h2,
  .slider .table-cell p {
    padding: 0;
    width: 100%;
  }

  .newsletter .red {
    margin: 0 !important;
  }

  #front .box {
    padding: 20px 0 20px 0;
  }

  #front .left {
    margin: 0;
    padding: 20px 0 0 0;
  }

  .frontwidenews .left {
    padding: 20px 0 0 0 !important;
  }

  #cookies h2 {
    font-size: 28px;
    line-height: 28px;
  }

  #cookies img {
    width: 50px;
    height: 50px;
  }

  #cookies #left {
    width: -moz-calc(100% - 70px);
    width: -webkit-calc(100% - 70px);
    width: calc(100% - 70px);
  }

  #cookies button {
    margin: 0 0 20px 0;
    width: 100%;
  }

  #cookies button:hover {
    color: #fff;
  }
  #filtertoggle {
    position: fixed;
    bottom: 70px;
    right: 0;
    margin: 0 !important;
    z-index: 9999;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 84px !important;
    color:#fff;
    background:rgba(0,0,0,.5);
  }

  #filtertoggle:hover{
    background:rgba(0,0,0,.8) !important
  }
}

.pricetable .price,
.pricetable .specialprice {
  white-space: nowrap;
}

.options {
  position: relative;
  float: left;
  margin-bottom: 30px;
  width: 100%;
  vertical-align: top;
}

.options .option {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: calc(20% - 13px);
  text-align: center;
  padding: 15px 10px 10px 10px;
  box-sizing: border-box;
  cursor: pointer;
  min-height: 80px;
  margin: 0 10px 10px 0;
}

.colours .option {
  padding: 10px 50px 10px 15px;
}

.options .option p {
  margin: 0;
  font-size: 12px;
  line-height: 12px;
  color: #000;
}

.options .option:hover {
  transition: border 0.2s linear;
}

.options .selected,
.options .selected:hover {
  cursor: initial;
  color: #fff;
}

.options .unactive,
.options .unactive:hover {
  opacity: 1;
  padding: 15px 10px 10px 10px;
}

.options .unactive:hover {
  border: 2px solid #919191 !important;
}

.options .unactive h3,
.options .unactive p {
  opacity: 0.4;
}

.options.colours h3 {
  margin: 0;
  text-align: left;
  padding-top: 0;
}

.options .empty h3 {
  margin: 0;
  text-align: right;
  padding-top: 0;
}

.options .option.empty {
  background-color: #fff;
  text-align: right;
  cursor: initial;
  min-height: 80px;
  border-bottom: 5px solid #fff;
  margin-bottom: 15px;
}

.options .option.empty h2 {
  margin: 0;
}

.options.colours svg {
  position: absolute;
  top: 24px;
  right: 10px;
  width: 30px;
  height: 30px;
}

.comparerow {
  cursor: pointer;
}

.showmorecnt {
  float: left;
}

.defaultnoshow {
  display: none;
}

.showmorerows {
  display: table-row;
}

.showmorecnt {
  width: 16px;
  margin-bottom: -2px;
  height: 16px;
  margin-right: 5px;
}

.showlesscnt .svg {
  fill: #fff;
  width: 16px;
  margin-bottom: -2px;
  height: 16px;
  transform: rotate(180deg);
  margin-right: 5px;
}

.complect .headrow td {
  padding: 20px 10px;
}

.complect h3 img {
  width: 30px;
  margin: -8px 3px -8px 0;
  height: 30px;
}

.complect h2 button,
.complect .colouurs button,
.complect .colouurs .activated,
.fixedinfo button {
  float: right;
  border: 0;
  padding: 20px;
  margin: 0 0 0 10px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 16px;
  font-family: var(--headings-font-family);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  height: auto;

}

.fixedinfo .unactiveb {
  opacity: 0.4;
  cursor: not-allowed;
}

.gallerybtn {
  padding-right: 40px;
  box-sizing: border-box;
  float: left !important;
  width: 20% !important;
}

.gallerybtn span {
  padding-bottom: 20px;
  display: block;
}

.gallerybtn button {
  width: 100%;
  margin: 0 0 10px 0 !important;
  color: #fff;
}

.complect h2 {
  float: left;
  width: 100%;
  margin: 20px 0 10px 0;
}

.complect .highlighted {
  background-color: rgb(247 255 20 / 10%);
  border-left: 2px solid #dddbdb;
  border-right: 3px solid #dddbdb;
}

.complect .headrow .highlighted {
  background-color: var(--secondary);
}

.complect .peida {
  display: none;
}

.complect .kuva {
  display: inline;
}

.complect .tahan .kuva {
  display: none;
}

.complect .tahan .peida {
  display: inline;
}

.fixedinfo {
  z-index: 999;
  position: fixed;
  bottom: 0;
  color: #000;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 30px 40px;
}

.fixedinfo .thewidth {
  max-width: 1360px;
  margin: 0 auto;
}

.roundpic {
  cursor: pointer;
  float: left;
  width: 115px;
  height: 60px;
  margin: 7px 30px 0 0;
  background-color: #fff;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 160%;
  -webkit-border-top-right-radius: 40px;
  -moz-border-radius-topright: 40px;
  border-top-right-radius: 40px;
  background-size: contain;
}

.roundpic .enlarge {
  cursor: pointer;
  width: 125px;
  height: 70px;
  background-color: transparent;
  position: absolute;
  z-index: 500;
  left: -5px;
  bottom: -5px;
  -webkit-border-top-right-radius: 40px;
  -moz-border-radius-topright: 40px;
  border-top-right-radius: 40px;
}

.roundpic .enlarge .openarw {
  position: absolute;
  left: 7px;
  top: 7px;
}

.roundpic .enlarge .closearw {
  transform: rotate(180deg);
}

.roundpic .enlarge .inner .arrowClose {
  position: absolute;
  padding: 15px;
  right: 0;
  top: 0;
  z-index: 60;
  transition: all 0.2s linear;
}

.roundpic .enlarge .inner img:hover {
  opacity: 0.6;
}

.roundpic .enlarge .inner .arrowLeft {
  position: absolute;
  padding: 185px 272px 15px 15px;
  left: 0;
  z-index: 50;
  bottom: 0;
  transition: all 0.2s linear;
}

.roundpic .enlarge .inner .arrowRight {
  position: absolute;
  padding: 185px 15px 15px 272px;
  right: 0;
  z-index: 50;
  bottom: 0;
  transition: all 0.2s linear;
}

.roundpic .enlarge .inner {
  opacity: 0;
  transition: all 0.2s linear;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: 102px;
  width: 632px;
  height: 230px;
  z-index: 600;
  margin: 0;
  background-color: #fff;
  background-image: url(../img/5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-border-top-right-radius: 40px;
  -moz-border-radius-topright: 40px;
  border-top-right-radius: 40px;
}

.roundpic .enlarge .inner_active {
  opacity: 1;
  visibility: visible;
}

.fixedinfo h2,
.fixedinfo h3 {
  margin: 0;
  width: 80%;
  color: #000 !important;
}

.fixedinfo h2 span {
  font-size: 21px;
  font-family: var(--headings-font-family);
  line-height: 21px;
  margin: 0;
}

.secondview .roundpic {
  margin: -32px 40px 0 0;
}

.fixedinfo p {
  margin: 0;
  width: 80%;
  font-size: 18px;
  line-height: 21px;
  opacity: 0.7;
}

.fixedinfo .wtxt {
  opacity: 1 !important;
}

.fixedinfo .wtxt span {
  font-size: 12px;
  padding-left: 10px;
}

.fixedinfo button {
  float: right;
}

#steps {
  margin-left: -40px;
  float: left;
  width: 100%;
}

#steps li {
  float: left;
}

#steps li span {
  float: left;
  width: 22px;
  margin-right: 5px;
  margin-top: -2px;
  margin-bottom: -3px;
  padding-top: 0;
  box-sizing: border-box;
  height: 22px;
  color: #fff;
  text-align: center;
  border-radius: 100%;
  font-family: var(--headings-font-family);
  font-weight: 700;
}

#steps li a {
  display: inline-block;
  padding: 25px 40px 20px 40px;
  text-decoration: none;
}

#steps .actt a {
  font-family: var(--text-font-family);
  font-weight: 700;
}

#steps .staragain {
  float: right;
  margin-right: -80px;
}

#steps .staragain a {
  font-family: var(--text-font-family);
  font-weight: 700;
  color: #fff;
  transition: background 0.2s linear;
}

.colouurs {
  float: left;
  width: 100%;
  margin: 0 0 40px 0;
}

.colouurs .options button {
  float: left;
  width: 100%;
  margin: 0 0 10px 0 !important;
}

.colouurs img {
  width: 100%;
}

.colours .table {
  display: table;
  height: 100%;
  width: 100%;
}

.colours .table-cell {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  width: 100%;
}

.complecftr {
  padding-bottom: 115px !important;
}

.complecting {
  float: right;
  width: calc(80% - 26px);
  margin-left: 26px;
  height: auto;
  overflow: hidden;
}

.complecting img,
.complecting .slick-slide {
  -webkit-border-top-right-radius: 35px;
  -moz-border-radius-topright: 35px;
  border-top-right-radius: 35px;
}

.complecting div {
  width: 100%;
  height: 26vw;
}

.complecting div img {
  width: auto;
  height: 100%;
  margin: 0;
}

.eFilter {
  text-align: center;
}

@media screen and (min-width: 1340px) {
  .complecting div {
    height: 350px;
  }

  .complecting div img {
    width: auto;
    height: 100%;
    margin: 0;
  }
}

.complecting .slick-dots li.slick-active button {
  height: 25px;
  width: 25px;
  padding: 0;
  margin: 0;
}

.complecting .slick-dots {
  top: auto !important;
  bottom: -8px;
  left: 0;
  z-index: 500;
  width: 100%;
}

.complecting .slick-prev,
.complecting .slick-next,
.complecting .slick-prev:hover,
.complecting .slick-next:hover {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 40%;
  display: block;
  z-index: 100;
  width: 20px;
  height: 20px;
  padding: 0;
  opacity: 1;
  transform: none;
  cursor: pointer;
  border: none;
  outline: none;
  width: 48px;
  height: 48px;
  display: block;
  text-align: center;
  margin-right: 0;
  color: #19388a;
  border: 0;
  border-radius: 50%;
}

.complecting .slick-prev {
  left: 0px !important;
}

.complecting .slick-next {
  right: 0px !important;
}

.gallery .slick-prev {
  left: 0;
}

.gallery .slick-next {
  right: 0;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}

.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  width: 100%;
  height: auto;
  display: block;
  float: left;
}

.styled-checkbox + label:before {
  content: "";
  margin-right: 5px;
  float: left;
  width: 20px;
  height: 20px;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.styled-checkbox:disabled + label {
  cursor: auto;
}

.styled-checkbox:disabled + label b {
  opacity: 0.4;
}

.styled-checkbox:checked + label b {
  opacity: 1;
}

.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #9d9d9d;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  opacity: 0.4;
}

.styled-checkbox:checked + label:before {
  opacity: 1;
}

.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white,
    4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.complect .pricetable .modimg img {
  width: 150px;
}

.complect .pricetable .color-name .color-name-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.complect .pricetable .color-name p {
  flex: 1;
  margin: 0;
}

.complect .pricetable .color-name img {
  margin: -5px 0 -3px 0px;
}

.complect .maintable b {
  display: inline-block;
  width: calc(100% - 30px);
}

.complect .vahe b {
  padding-left: 25px;
}

.vahe b {
  font-family: var(--text-font-family);
  font-weight: normal;
}

.complect .green {
  color: #4bb100;
  text-align: center;
}

.complect .greenbck {
  background: #4bb100;
  padding: 3px;
  color: #fff;
  border-radius: 3px;
}

.complect .orangebck {
  background: #ebaa05;
  padding: 3px;
  color: #fff;
  border-radius: 3px;
}

.complect .tinytxt {
  font-size: 10px;
}

.complect .red {
  color: #796f6e;
  text-align: center;
}

.complect .yes,
.complect .no {
  width: 20px !important;
  height: 20px;
  margin: -3px 0 -3px 5px;
}

.ui-widget .yes,
.ui-widget .no {
  width: 20px !important;
  height: 20px;
  margin: -3px 0 -3px 5px;
}

.pricetable .red {
  min-height: auto;
}


.complect .pricetable td {
  padding: 10px;
}

.dialogleft,
.dialogright {
  float: left;
  width: 40%;
  box-sizing: border-box;
  padding: 20px;
}

.fiftyfifty {
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding: 0;
  padding-right: 10px;
}

.fiftyfifty2 {
  padding-left: 10px;
}

.dialogright {
  width: 60%;
}

.dialogright .complecting {
  width: 100%;
}

.dialogright .complecting div {
  max-height: 320px;
  height: 250px;
}

#dialogwide input,
#dialogwide select,
#dialogwide textarea {
  border: 0;
  background: #f1f0f0;
  -moz-box-shadow: inset 0 0 5px #e8e8e8;
  -webkit-box-shadow: inset 0 0 5px #e8e8e8;
  box-shadow: inset 0 0 5px #e8e8e8;
  height: 38px;
  box-sizing: border-box;
  width: 100%;
  padding: 0 5px;
  margin-bottom: 5px;
  line-height: 21px;
  font-size: 15px;
  font-family: "Arial", Tahoma, Sans Serif;
  color: #585858;
}

#dialogwide textarea {
  height: 150px;
}

#dialogwide .dialogleft button {
  width: 100%;
}

#blackbackground {
  z-index: 999999 !important;
}

.ui-dialog {
  z-index: 999999999;
}

img[src="./img/arwr_w.png"] {
  width: 7px !important;
  height: 11px !important;
}

.pricetable .red img {
  width: 5px !important;
  height: 9px !important;
  display:none
}

#juhend {
  border: 0 !important;
}

#juhend li {
  margin-left: 15px !important;
  list-style-type: disc;
  padding: 0 0 10px 0;
  border: 0 !important;
}

#return-to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  text-decoration: none;
  opacity: 1;
  padding: 0;
  display: none;
  border: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

#return-to-top::before{
  font-family: "Glyphs14";
  content: "\E009";
  font-size:1.5rem;
  line-height:40px;
  color:#fff;
}

.chat-bubble {
  right: 80px !important;
}
.modera-chat .chat-frame {
  right: 80px;
  z-index: 999999999999999;
}

.specialbottom {
  position: absolute !important;
  bottom: auto !important;
  top: -100px !important;
  right: 40px !important;
}

#return-to-top .svg {
  fill: #fff !important;
  width: 20px !important;
  height: 20px !important;
  margin: 20px 0 0 0 !important;
  transform: rotate(180deg) !important;
}

@media screen and (max-width: 1020px) {
  .soContent {
    float: left;
    width: 24% !important;
    margin: 0;
    padding: 0;
  }

  .gallery h2 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 36px !important;
  }

  .right .count {
    height: 40px;
    font-size: 21px;
    padding-right: 50px;
    padding-top: 10px;
    margin-bottom: 0 !important;
  }

  .gallery .slick-prev,
  .gallery .slick-next,
  .gallery .slick-prev:hover,
  .gallery .slick-next:hover {
    width: 40px;
    height: 40px;
    border: 0;
  }

  .gallery .slick-prev,
  .gallery .slick-next {
    top: -20px;
  }
  .styled-checkbox + label:before {
    width: 14px;
    height: 14px;
  }

  .styled-checkbox:focus + label:before {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
  }

  .styled-checkbox:disabled + label:before {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
  }

  .styled-checkbox:checked + label:after {
    left: 2px;
    top: 6px;
  }

  .complect .maintable b {
    width: calc(100% - 22px);
  }

  #return-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    opacity: 1;
    padding: 0;
  }

  #return-to-top .svg {
    width: 12px !important;
    height: 12px !important;
    margin: 16px 0 0 0 !important;
  }
}

.onlyextramodels {
  float: right;
  width: calc(100% - 190px);
  padding: 20px 0 20px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #eeeeee;
  margin-left: 190px;
}

.wideextramodels {
  width: calc(100% - 190px);
  padding: 20px 0 20px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #eeeeee;
}

@media screen and (max-width: 1400px) {
  .chat-bubble {
    right: 20px !important;
    bottom: 70px !important;
  }

  .modera-chat .chat-frame {
    right: 20px;
  }

  .modera-chat .chat-frame.open {
    right: 20px;
    bottom: 50px;
  }

  #mobdesk {
    background-color: #fff;
    padding-bottom: 50px;
  }
}

.newsletter .red,
.newsletter input {
  height: 62px;
  overflow: hidden;
}

.newsletter input {
  border-radius: 0;
  -webkit-appearance: none;
}

.gallery {
  position: relative !important;
  height: auto !important;
}

.gallery .slick-track {
  height: auto !important;
}

.gallery .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  padding: 0 !important;
}

.gallery .slick-slide {
  height: auto !important;
  width: 100%;
}

.gallery img {
  margin: 0;
}

.right .count {
  height: 60px;
  padding-right: 80px;
  padding-top: 18px;
  box-sizing: border-box;
  text-align: right;
  font-weight: bold;
  font-size: 24px;
}

@media screen and (max-width: 1020px) {
  .noborder a img {
    margin: 0 !important;
  }

  .complect .vahe b {
    padding-left: 10px !important;
  }

  #front .box ul li a {
    padding: 8px !important;
  }

  .models,
  .extramodels,
  .teenindusmenu,
  .models2 {
    top: 0px;
  }

  .specialbottom {
    position: absolute !important;
    bottom: auto !important;
    top: -60px !important;
    right: 20px !important;
  }

  .options .option {
    width: calc(33.3% - 12px);
    min-height: 80px;
    margin: 0 10px 10px 0;
  }

  #steps {
    margin-left: 0;
  }

  #steps li a {
    padding: 10px;
  }

  #steps .staragain {
    float: right;
    margin-right: 0;
  }

  .gallerybtn button {
    width: auto;
    margin: 0 0 10px 5px !important;
  }

  .gallerybtn {
    padding-right: 0;
    width: 100% !important;
  }

  .complecting {
    width: 100%;
  }

  .complect h2 button,
  .complect .colouurs button,
  .complect .colouurs .activated,
  .fixedinfo button {
    padding: 10px;
    margin: 0 0 0 10px;
    font-size: 16px;
    line-height: 16px;
  }

  .fixedinfo {
    padding: 20px;
  }

  .fixedinfo p {
    width: 80%;
    font-size: 14px;
    line-height: 18px;
  }

  .complecting div {
    height: 33vw;
  }

  .complecting div img {
    width: auto;
    height: 100%;
    margin: 0;
  }

  .standard {
    width: 14px !important;
  }

  .roundpic {
    width: 95px;
    height: 50px;
    margin: 10px 20px 15px 0;
  }

  .roundpic .enlarge {
    width: 95px;
    height: 50px;
  }

  .roundpic .enlarge .inner {
    bottom: 75px;
    width: 616px;
    height: 230px;
  }

  .complecftr {
    padding-bottom: 105px !important;
  }

  .fixedinfo h2 span {
    width: auto !important;
  }

  .fixedinfo h2,
  .fixedinfo h3 {
    width: 100%;
  }

  .fixedinfo h2 {
    font-size: 26px;
    line-height: 26px;
  }

  .gallerybtn span {
    padding-bottom: 0;
    display: initial;
    width: auto;
  }

  .complect h2 {
    margin: 0 0 10px 0;
  }

  #onlyfrontpagefix {
    display: flex;
    flex-direction: column;
    position: static;
    z-index: auto;
    width: auto;
    height: auto;
    margin: auto;
    top: auto;
  }

  #onlyfrontpagefix .slider {
    order: 2;
  }

  #onlyfrontpagefix #header {
    order: 1;
  }

  .right .count {
    height: 40px;
    font-size: 21px;
    padding-right: 80px;
    padding-top: 10px;
    margin-bottom: 0 !important;
  }

}

#mobdesk.content {
  background-color: #fff;
}

#mobdesk .content_inner{
  padding: 20px;
}

@media screen and (max-height: 680px) and (max-width: 1020px) and (orientation: landscape) {
  .modera-chat .chat-frame {
    right: 0;
    height: calc(100% - 50px);
  }
  .modera-chat .chat-frame.open {
    right: 0;
    bottom: 50px;
  }
}

@media screen and (max-height: 680px) and (max-width: 1400px) and (orientation: landscape) {
  .modera-chat .chat-frame {
    right: 0;
    height: calc(100% - 50px);
  }
  .modera-chat .chat-frame.open {
    right: 0;
    bottom: 50px;
  }
}

@media screen and (max-height: 680px) and (min-width: 1400px) and (orientation: landscape) {
  .modera-chat .chat-frame {
    right: 60px;
    width: calc(100% - 60px);
  }
}

@media screen and (max-width: 680px) {
  .modera-chat .chat-frame {
    right: 0;
    height: calc(100% - 50px);
  }

  .modera-chat .chat-frame.open {
    right: 0;
    bottom: 50px;
  }

  .complecting div {
    height: calc(33vw - 10px);
  }

  #front .box.left {
    display: flex;
    flex-direction: column;
  }

  #front .box.left button {
    order: 3;
  }

  #front .box.left h2 {
    order: 1;
  }

  #front .box.left ul {
    order: 2;
  }


  .complecting {
    -webkit-border-top-right-radius: 25px;
    -moz-border-radius-topright: 25px;
    border-top-right-radius: 25px;
  }

  .complecting img,
  .complecting .slick-slide {
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-topright: 20px;
    border-top-right-radius: 20px;
  }

  #steps .staragain a {
    text-align: center;
  }

  .gallery h2 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 36px !important;
  }

  .dialogright .complecting div {
    height: 32vw;
  }

  .complecftr {
    padding-bottom: 145px !important;
  }

  .complecting .slick-prev,
  .complecting .slick-next,
  .complecting .slick-prev:hover,
  .complecting .slick-next:hover {
    width: 40px;
    height: 40px;
  }

  .complecting .slick-arrow:before{
    font-size:18px;
    line-height:40px;
  }
  .complecting .slick-prev {
    left: 0 !important;
  }

  .complecting .slick-next {
    right: 0 !important;
  }

  .dialogleft,
  .dialogright {
    width: 100%;
    padding: 20px;
  }

  .fixedinfo p {
    width: 100%;
    float: left;
  }

  #steps {
    margin-left: 0;
  }

  #steps li {
    float: left;
    width: 100%;
  }

  #steps li a {
    padding: 10px;
    width: 100%;
  }

  #steps .staragain {
    float: right;
    margin-right: auto;
  }

  .options .option {
    width: calc(50% - 12px);
    min-height: 50px;
    padding: 4px 10px !important;
  }

  .option h3 {
    margin: 0 0 3px 0 !important;
  }

  .options.colours h3 {
    padding-top: 10px;
  }

  .options.colours svg {
    position: absolute;
    top: 7px;
    right: 0;
    width: 30px;
    height: 30px;
  }

  .complect h2 button,
  .complect .colouurs button,
  .complect .colouurs .activated,
  .fixedinfo button {
    width: 100%;
    margin: 10px 0 0 0 !important;
  }

  .roundpic {
    display: none;
  }

  .fixedinfo button {
    margin: 0 0 10px 0 !important;
  }

  .fixedinfo h2,
  .fixedinfo h3 {
    margin: 0;
  }

}

@media screen and (max-width: 480px) {
  .video-foreground,
  .video-background iframe {
    height: 56vw;
  }

  .fixedinfo h2 span {
    font-size: 17px;
    line-height: 17px;
  }

  .fixedinfo h2 {
    font-size: 24px;
    line-height: 24px;
  }

  .fiftyfifty2 {
    padding-left: 0;
  }

  .fiftyfifty {
    width: 100%;
    padding-right: 0;
  }
}

@media screen and (max-width: 420px) {
  .options .option {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

h2 img,
h1 img {
  margin: 0 5px 0 5px;
}

@supports (-webkit-overflow-scrolling: touch) {
  .slider {
    position: absolute;
  }
}

#front .box .red {
  min-height: auto;
  padding: 8px 16px;
}

.complect .differenceishere {
  background: rgba(0, 170, 210, 0.2) !important;
}

.complect .differenceishere:hover {
  background: rgba(25, 56, 138, 0.13) !important;
}

.onlyextramodels .onemodel .modelname,
.wideextramodels .onemodel .modelname {
  font-family: var(--text-font-family);
  font-weight: 700;
}

.teenindusmenu ul li a,
.teenindusmenup ul li a {
  padding: 4px 0;
}

.mbackground {
  margin: 0;
  width: 100%;
  overflow-y: hidden;
}

.lazy3 .slick-slide img {
  width: 100% !important;
  height: auto !important;
}

.gallery .slick-slide img {
  width: 100% !important;
  height: auto !important;
}

.calcinputa {
  width: calc(100% - 550px) !important;
}

.calcinputb {
  width: calc(100% - 155px) !important;
}

.service_calc .red {
  min-height: 38px;
  height: 38px;
  padding: 0 20px;
}

@media screen and (min-width: 1020px) {

  body {
    background: transparent;
    position: absolute;
    z-index: -2;
  }
}

.cantuse h3 {
  float: left;
  margin-top: 30px !important;
  text-align: left;
  margin-left: 30px !important;
  width: calc(100% - 30px) !important;
}

.cantuse h3 img {
  width: 20px;
  height: 20px;
  margin: -3px 0;
}

.cantusetab {
  margin-top: 30px 30px !important;
  float: left 30px !important;
  margin-left: 30px !important;
  width: calc(100% - 60px) !important;
}

.cantusetab td {
  text-align: left !important;
  padding: 5px 0 !important;
}

.cantuse .cantusetab tr td {
  background-color: transparent;
}

.cantuse button {
  float: right;
}

.cantuse .cantusetab td {
  background-color: transparent;
}

.cantuse button {
  margin: 10px 0 20px 10px;
  padding: 15px;
  min-height: 20px;
}

.greentxt {
  color: #0bab4b !important;
}

.cantuse .onlyhere {
  margin-right: 30px;
  background-color: var(--secondary);
}

.cantuse .onlyhere:hover {
  background-color: var(--secondary-hover);
}

.cantusetab b {
  width: auto !important;
}

.cantusetab .redtxt {
  width: 100% !important;
  color: #9d0605 !important;
}

.cantuse .cantusetab td {
  background-color: transparent !important;
}

.complect .headrow .highlighted {
  background-color: var(--secondary) !important;
  color: #fff;
  border: none;
}

.complect .redrow td {
  background-color: rgba(0, 170, 210, 0.2) !important;
}

.complect .greenrow td {
  background-color: rgba(50, 174, 82, 0.25) !important;
}

.unactiverow {
  opacity: 0.2;
}

@media screen and (max-width: 1020px) {
  .cantuse h3 {
    margin-top: 10px !important;
    margin-left: 0 !important;
    width: 100% !important;
  }

  .cantuse button {
    margin: 10px 0 0 5px;
  }

  .cantuse .onlyhere {
    margin-right: 0;
  }
}

h2.customh2com {
  float: none !important;
  margin-bottom: 30px !important;
}

.complect .slideTogglebox6 {
  margin-top: 0;
  right: 0;
}

.orange {
  background: var(--secondary) !important;
  color: #fff !important;
}

.orange:hover {
  background: var(--secondary-hover) !important;
}

@media screen and (max-width: 1020px) {
  h2.customh2com #leasingcalculator2 {
    margin: -10px 0 10px 0 !important;
  }
}

@media screen and (max-width: 980px) {
  h2.customh2com {
    margin-bottom: 20px !important;
  }

  h2.customh2com #leasingcalculator2 {
    margin: 0 0 10px 0 !important;
  }
}

@media screen and (max-width: 680px) {
  .complect .slideTogglebox6 {
    margin: 26px 0 0 0;
  }
}

#askOfferForm table td {
  vertical-align: middle;
}

#askOfferForm table i {
  font-size:16px;
  line-height: 16px
}

#second .pictures .theimage {
  background-position: center;
}

.modimg img {
  width: 160px;
}

@media screen and (max-width: 1020px) {
  .modimg img {
    width: 100px;
  }
}

.allmodels a,
.allmodels p {
  transition: color 0.25s ease-in-out;
  color: var(--primary) !important;
  text-decoration: none;
}

.allmodels a:hover p {
  transition: color 0.25s ease-in-out;
  color: var(--secondary) !important;
}

/* online state - color sinine - #eb6428 */
.modera-chat .chat-bubble .bubble {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 97 114' enable-background='new 0 0 97 114' xml:space='preserve'%3E%3Cg%3E%3Cg opacity='0.6'%3E%3Cpath d='M94.2,64.5L94.2,64.5c1.7-4.9,2.7-10.1,2.7-15.7C96.8,22.4,75.4,2,49,2S1.2,22.4,1.2,48.8c0,23.9,17.5,42.9,40.4,46.3 L38,114c0,0,31.5-11.1,49.2-36.8C90.1,73.4,92.5,69.2,94.2,64.5C94.1,64.6,94.1,64.5,94.2,64.5'/%3E%3C/g%3E%3Cg%3E%3Cpath fill='%23eb6428' d='M93.2,62.5L93.2,62.5c1.7-4.9,2.7-10.1,2.7-15.7C95.8,20.4,74.4,0,48,0S0.2,20.4,0.2,46.8 c0,23.9,17.5,42.9,40.4,46.3L37,112c0,0,31.5-11.1,49.2-36.8C89.1,71.4,91.5,67.2,93.2,62.5C93.1,62.6,93.1,62.5,93.2,62.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
}

/* unread state - color roheline - #198a31 */
.modera-chat .chat-bubble.status-new .bubble {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 97 114' enable-background='new 0 0 97 114' xml:space='preserve'%3E%3Cg%3E%3Cg opacity='0.6'%3E%3Cpath d='M94.2,64.5L94.2,64.5c1.7-4.9,2.7-10.1,2.7-15.7C96.8,22.4,75.4,2,49,2S1.2,22.4,1.2,48.8c0,23.9,17.5,42.9,40.4,46.3 L38,114c0,0,31.5-11.1,49.2-36.8C90.1,73.4,92.5,69.2,94.2,64.5C94.1,64.6,94.1,64.5,94.2,64.5'/%3E%3C/g%3E%3Cg%3E%3Cpath fill='%23198a31' d='M93.2,62.5L93.2,62.5c1.7-4.9,2.7-10.1,2.7-15.7C95.8,20.4,74.4,0,48,0S0.2,20.4,0.2,46.8 c0,23.9,17.5,42.9,40.4,46.3L37,112c0,0,31.5-11.1,49.2-36.8C89.1,71.4,91.5,67.2,93.2,62.5C93.1,62.6,93.1,62.5,93.2,62.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
}

/* offline state - color punane - #9d0605 */
.modera-chat .chat-bubble.status-wait .bubble {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 97 114' enable-background='new 0 0 97 114' xml:space='preserve'%3E%3Cg%3E%3Cg opacity='0.6'%3E%3Cpath d='M94.2,64.5L94.2,64.5c1.7-4.9,2.7-10.1,2.7-15.7C96.8,22.4,75.4,2,49,2S1.2,22.4,1.2,48.8c0,23.9,17.5,42.9,40.4,46.3 L38,114c0,0,31.5-11.1,49.2-36.8C90.1,73.4,92.5,69.2,94.2,64.5C94.1,64.6,94.1,64.5,94.2,64.5'/%3E%3C/g%3E%3Cg%3E%3Cpath fill='%239d0605' d='M93.2,62.5L93.2,62.5c1.7-4.9,2.7-10.1,2.7-15.7C95.8,20.4,74.4,0,48,0S0.2,20.4,0.2,46.8 c0,23.9,17.5,42.9,40.4,46.3L37,112c0,0,31.5-11.1,49.2-36.8C89.1,71.4,91.5,67.2,93.2,62.5C93.1,62.6,93.1,62.5,93.2,62.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
}

.slick-slide {
  cursor: pointer;
}

.nocursor {
  cursor: initial !important;
}

.fixedimg.slick-slide {
  background-size: cover !important;
  background-repeat: no-repeat;
}

.fixedimg .table-cell {
  vertical-align: bottom;
  padding-bottom: 80px;
}

.onlymobb {
  display: none;
}

@media screen and (max-width: 680px) {
  .fixedimg.slick-slide {
    background: transparent !important;
  }

  .onlymobb {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    display: initial;
  }

  .slider .fixedimg .table-cell {
    padding: 0;
    margin: 0;
    padding-bottom: 30px;
  }

  .fixedimg button {
    margin-top: 15px;
    width: calc(100% - 40px) !important;
  }
}

.grid-element {
  padding: 10px;
}

.grid-element p {
  margin: 0;
}

.grid-element.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-element.border {
  border: 1px solid #dddbdb;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  grid-template-rows: auto;
  grid-gap: 12px;
  margin-bottom: 10px;
}

.content-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  grid-template-rows: auto;
  grid-gap: 24px;
  margin-bottom: 10px;
}

.columns-2 {
  grid-template-columns: 1fr 1fr;
}

.columns-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.columns-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 480px) {
  .content-grid {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 980px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 980px) and (max-width: 1280px) {
  .content-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .content-grid.columns-2,
  .content-grid.columns-4 {
    grid-template-columns: 1fr 1fr;
  }
}

.shop_title{
  display:flex;
  flex-direction: column;
  margin: 12px 0;
}

#header .shop_title h1{
  margin:0;
  font-weight: 700;
}

.shop_title h4{
  color:#000;
}

.shop_title .secondheader{
  padding:0;
}

.counter p{
  display:flex;
  align-items:center;
  gap:2px;
}

.counter p:before{
  content: '';
  background-image: url( '/img/timer.svg' );
  background-size: 18px 18px;
  height: 18px;
  width: 18px;
}

.submenu .counter p:before{
  background-image: url( '/img/timer-b.svg' );
}

.submenu .counter p{
  color:#000;
}

.submenu .counter{
  display:flex;
  align-items:center;
  justify-content:center;
}

.popup h2:not(#shop-loading h2){
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 4px;
}

.popup .green_noti::before{
  content: '';
  background-image: url( '/img/success.svg' );
  background-size: 32px 32px;
  height: 32px;
  width: 32px;
}

.popup .yellow_noti::before{
  content: '';
  background-image: url( '/img/info2.svg' );
  background-size: 32px 32px;
  height: 32px;
  width: 32px;
}

.popup .red_noti::before{
  content: '';
  background-image: url( '/img/info.svg' );
  background-size: 32px 32px;
  height: 32px;
  width: 32px;
}

.bootstrap-tabs {
  margin-bottom: 20px;
}

.fuelefficiency br {
  display: block !important;
}

.fuelefficiency {
  line-height: 15px !important;
  text-align: left !important;
}

.content_box_div {
  height: 140px;
  overflow: hidden;
  position: relative;
  margin: 40px 0;
}

.content_box_div.open {
  height: auto;
}

.content_box_toggle {
  bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: auto;
  padding-bottom: 10px;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.content_box_toggle.open {
  position: relative;
}

.content_box_toggle img {
  height: 22px;
}

.content_box_toggle.open img {
  transform: rotate(180deg);
}

.content_box_toggle:not(.content_box_toggle.open):after {
  background: linear-gradient(0deg, #fff 25%, hsla(0, 0%, 100%, 0));
  bottom: inherit;
  content: "";
  cursor: inherit;
  display: block;
  height: 110px;
  position: inherit;
  width: inherit;
  z-index: -1;
}

.front-special-a {
  text-decoration: none;
  background: transparent !important;
  content: "" !important;
  padding: 0px !important;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

.news-grid.campaign {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 0px;
  margin: 0 -10px;
}

.news-grid.campaign .news-block {
  width: calc(50% - 20px);
  margin: 0 10px;
}

.news-grid .mainpic_wrapper {
  height: 200px;
  overflow: hidden;
  width: 100%;
}

.news-block .mainpic {
  transition: all 0.25s ease-in-out;
}

.news-block:hover .mainpic {
  transform: scale(1.05);
}

.news-grid.campaign .news-img {
  height: 320px;
}

.news-block a:hover {
  color: #000;
  text-decoration: none;
}

.news-block .news-bottom {
  padding: 32px 24px;
}

.news-block .news-bottom_inner {
  display: flex;
  position: relative;
  font-size: 24px;
  line-height:24px;
  font-weight: 700;
  padding: 0 0 24px;
  margin: 0 0 24px;
}

.news-block.campaign .news-bottom_inner {
  padding: 0;
  margin: 0 0 20px;
}

.news-block.campaign .news-bottom .link {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
}

.front-cta {
  font-weight: 500;
  text-decoration: none;
  position: relative;
  color: #000;
  display: flex;
  gap: 4px;
}

.front-cta .arrow {
  display: flex;
  align-items: center;
  position: relative;
  color:#c00;
  margin-right: 10px;
  width: 28px;
  min-width: 28px;
  transition: min-width .2s ease-in-out,width .2s ease-in-out;
}

.front-cta .arrow:before {
  position: absolute;
  border-top: 2px solid;
  content: "";
  display: block;
  width: 28px;
  min-width: 28px;
  left: 0;
  -webkit-transition: min-width .2s ease-in-out,width .2s ease-in-out;
  -o-transition: min-width .2s ease-in-out,width .2s ease-in-out;
  transition: min-width .2s ease-in-out,width .2s ease-in-out;
}

.front-cta .arrow:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 1px;
  transform: rotate(-45deg);
  border: solid #c00;
  border-width: 0 2px 2px 0;
  display: inline-block;
}

.news-block.campaign:hover .arrow {
  width: 32px;
  min-width: 32px;
}

.news-block.campaign:hover .arrow:before {
  width: 32px;
}

.news-block:not(.news-block.campaign) span.news-bottom_inner::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primaryBtn);
}

.news-block .news-img {
  background-size: cover;
  background-position: center;
  height: 220px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.category-tabs li a {
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 0;
  margin: 0 16px;
}

.category-tabs li a:hover {
  
}

.category-tabs .menuactive {
  background: none;
  color: var(--secondary) !important;
  font-weight: 700;
}

#front_specials{
  background:#fff
}

#front_specials .price-grid{
  grid-gap: 32px
}

#front_specials .content_inner{
  padding-top: 40px;
  min-height: 200px;
}

#front_specials h2{
  text-align:center;
  margin:0
}

#front_specials .box_container{
  display:flex;
  margin-bottom:60px;
  gap: 20px;
}

#front_specials .box{
  background: #ececec;
  width:33.3%;
  display:flex;
  flex-direction: column;
}

#front_specials .box_heading{
  display: inline-flex;
  width:100%;
  align-items: center;
  justify-content: center;
  flex: .5;
  margin: 0 0 20px 0;
}

#front_specials .box h2{
  font-size: 24px;
}

#front_specials .box .box_inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

#front_specials .box a{
  background: #fff;
  padding: 10px;
  text-decoration: none;
}

#front_specials .box a:hover{
  background: var(--primary);
  color: #fff;
  transition: all .2s linear;
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
}

#front_specials .box select{
  border: 1px solid #DDDBDB;
  height: 38px;
  box-sizing: border-box;
  padding: 0 5px;
  line-height: 18px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #585858;
  width:100%;
  margin-bottom:10px;
}

#front_specials .box:nth-child(2){
  background:#fff
}

#front_specials .red{
  padding: 19px 24px;
   background: #000;
  color: #fff;
}

#front_specials .red:hover{
  background:#4d4d4d;
}

#second.modelpage .sticky-menu .model-btns{
  display:flex;
  gap:6px;
}

#second.modelpage .sticky-menu .model-btns .red{
  margin:0 !important
}

#second:not(.modelpage) .sticky-menu .model-btns{
  display:flex;
  gap:6px;
}

#second:not(.modelpage)  .sticky-menu .model-btns .red{
  margin:0 !important
}


#second .sticky-title{
  margin-right: 8px !important;
  display:inline-flex;
  align-items: center;
}

#second .sticky-title .model-sel{
  display:inline-flex !important;
  padding: 0 0 2px 0 !important;
}


#second .sticky-title .model-sel::before{
  content: "\e00b";
  font-family: "glyphs14";
  font-size: 26px;
  color:var(--primaryBtn)
}

#second .sticky-title b{
  color:#3b3b3b;
  display: inline-block;
  font-size: 20px;
  line-height:22px;
  font-family: "ProximaNovaExCn";
  font-weight: 700;
  line-height: 24px;
  text-wrap: nowrap;
}
.sticky-anchor a {
  width: auto !important;
  color: #000 !important;
  background: transparent !important;
  margin: 0;
  padding: 8px 12px;
  margin: 8px 6px;
}


.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 999999;
  padding: 20px;
  box-sizing: border-box;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}
.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
.blocker.behind {
  background-color: transparent;
}
.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 9999999;
  max-width: 1440px;
  box-sizing: border-box;
  width: 95%;
  background: #fff;
  padding: 60px 40px;
  -webkit-box-shadow: 0 0 4px #000;
  -moz-box-shadow: 0 0 4px #000;
  -o-box-shadow: 0 0 4px #000;
  -ms-box-shadow: 0 0 4px #000;
  box-shadow: 0 0 4px #000;
  text-align: left;
  overflow-y: auto;
  height: auto;
  max-height:100%;
}
.modal a.close-modal {
  position: absolute;
  top: 20px;
  right: 16px;
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("/img/close-btn.svg");
}


.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}
.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
      -webkit-transform: scaleY(0.5);
  }
  20% {
      -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
      transform: scaleY(0.5);
      -webkit-transform: scaleY(0.5);
  }
  20% {
      transform: scaleY(1);
      -webkit-transform: scaleY(1);
  }
}

.image-grid{
  display: grid;
  grid-template-columns: .6fr .4fr;
  grid-template-areas:
        'a a'
        'b c';
  gap:10px;
  margin-bottom:20px
}

.image-grid .image-wrap:first-child, .image-grid .image-wrap:nth-child(1){
  grid-area: a;
}

.image-grid .image-wrap:nth-child(2){
  grid-area: b;
}
.image-grid .image-wrap:nth-child(3){
  grid-area: c;
}

.image-wrap{
  display:flex;
  position:relative
}

.image-wrap img{
  object-fit: cover;
  height:100%;
  width:100%;
}

.overlay-text {
  position: absolute;
  background-color: rgba(0,0,0,.5);
  top:0;
  left:0;
  align-items:center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align:left;
  color:white;
  display:none;
  font-size: 3em;
}

@media screen and (min-width: 680px) {
  .container {
    display: flex;
    margin: 10px 0;
  }

  .sticky-anchor {
    transition: 0.3s ease-in-out;
    top: -50px;
    z-index: 10;
  }

  .container .lazy2 {
    margin: 0;
  }
  .sticky-anchor.fixed {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    background: #fff;
    width: 100%;
    left: 0;
    z-index: 600;
    transform: translateY(-100%);
    padding-top:20px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid #d9d9d6;
  }

  .sticky-anchor.fixed.show {
    transform: translateY(-20px);
    top: 56px;
  }

  .sticky-anchor a {
    padding: 12px 14px;
  }

  .sticky-anchor a {
    color: #000 !important;
    background: transparent !important;
    margin: 0;
    padding: 8px 12px;
    margin: 8px 6px;
  }

  .sticky-anchor.fixed a.active {
    font-weight: 700;
  }

  .sticky-anchor a:hover {
  }


  .left .sticky-menu,
  #second:not(.storefront, .modelsview) .left #mobmenfix {
    position: sticky;
    transition: 0.5s ease-in-out;
  }

  #second .left .sticky-menu #mobmenfix {
    position: static;
  }

  #slideTogglebox8 {
    display: none;
    top: 0px;
    position: absolute;
    z-index: 990;
    background: rgb(255, 255, 255);
    line-height: 16px;
    left: 0;
    margin: -5px 0 0 0;
    right: 0;
    padding-bottom: 100px;
    height: 100%;
  }

  .slideTogglebox .closeslide {
    margin: 0 0 -30px 0;
    min-height: auto;
    padding: 0 5px;
    font-size: 12px !important;
    line-height: 12px !important;
    height: 20px !important;
  }

  .filters {
    display: block !important;
  }

  #filtertoggle {
    display: none;
}
.filters .closeslide {
  display: none;
}

  #second:not(.storefront, .modelsview) #mobmen ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 10px !important;
    overflow-y: hidden;
    -ms-overflow-style: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  #second:not(.storefront, .modelsview) .left .sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    background: #fff;
    border-bottom: 1px solid #d9d9d6;
    padding: 0 10px;
    overflow-y: hidden;
    -ms-overflow-style: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    height: 4rem;
  }

  #second:not(.storefront, .modelsview) .left .sticky-menu::-webkit-scrollbar {
    height: 6px;
  }

  #second:not(.storefront, .modelsview)
    .left
    .sticky-menu::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

  #second:not(.storefront, .modelsview)
    .left
    .sticky-menu::-webkit-scrollbar-thumb {
    background-color: #cdcdcd;
  }

  #second:not(.storefront, .modelsview) .left {
    position: sticky;
    top: -1px;
    z-index: 2003;
    width: 100%;
    background: #fff;
    transition: 0.5s ease-in-out;
  }

  #second.modelpage .sticky-menu .model-btns .red {
    height: 40px;
    width: auto;
    padding: 0 10px;
    margin: 0 !important;
    padding: 10px 15px;
  }

  #second .left .sticky-menu,
  #second .left #mobmenfix {
    display: flex;
    position: sticky !important;
    transition: 0.5s ease-in-out;
    justify-content: space-between;
    align-items: center;
  }
}

.transform-text-lowercase{ 
  text-transform: lowercase; 
}

.campaign_text{
  opacity:0;
  visibility: hidden;
  background-color: #ffffff;
  color: #000000;
  border-radius: 3px;
  min-width: 150px;
  position: absolute;
  bottom: 40px;
  left: 0;
  box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 15%);
  padding: 12px;
    transition: ease-in-out 0.2s;
}

.campaign_text_div:hover .campaign_text, .campaign_text_div:active .campaign_text{
  opacity:1;
  visibility: visible;
}
.campaign_text_hide{
  z-index: 9999;
}

.campaign_text_div svg path{
  stroke:#fff
}

.pricetable .campaign_text{
  bottom: 30px;
}

.narrow1.leasekuudSlider{
  width: calc(100% - 32px) !important;
  margin: 10px 0 !important
}

.slider_container{
  display:flex;
  align-items: center;
  justify-content: center;
  float:left;
  width:100%
}


.slider_container .leasekuudSlider{
  margin: 20px 0 20px 0 !important;
}

.product_viewer_container{
  position: relative
}

.product-viewer {
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  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;
  cursor: -webkit-grab;
  cursor: grab;
}

.product-viewer__image {
  max-width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
}

.product-viewer--js-press-active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.product_viewer_container .info-sign{
    display:none;
    position: absolute;
    top: 20px;
    right: 20px;
    height: 28px;
    opacity: 0.3;
    pointer-events: none;
}

.product_viewer_container:has(.pv-loader--js-visible){
  min-height:360px;
}

.drag-notice{
  display: none;
    position: absolute;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
    z-index: 1;
    background: rgba(0, 0, 0, .4);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    text-decoration: none;
    pointer-events:none;
}

.drag-notice-inner{
  display:flex;
  align-items: center;
  justify-content:center;
  height: 100%;
}

.drag-notice img{
  width: 60px;
  height: 60px;
  animation: bob 3s infinite ease-in-out;
  filter:invert(1)
}

@keyframes bob {
  0%, 50%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(20px);
  }
  75% {
    transform: translateX(-20px);
  }
}

.pv-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease-in-out all;
  display:flex;
  align-items: center;
  justify-content: center;
}
.pv-loader--js-visible {
  visibility: visible;
  opacity: 1;
}

@keyframes spin {
  0% { transform: translate(-50%,-50%) rotate(0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg); }
}

.pv-loader-inner div {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  transform: translate(-50%, -50%) rotate(0deg);
  will-change: transform;
}

.pv-loader-inner div {
  animation: spin 1s linear infinite;
  top: 50%;
  left: 50%;
}

.pv-loader-inner {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, .5);
  border-radius: 50%;
}

