.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  color: #000;
  padding: 8px 16px;
  font-weight: bold;
  z-index: 1000;
}
.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.image-container {
    max-width: 100%; /* Maximális szélesség 100% */
    overflow: hidden; /* Elrejti a túlnyúló részt */
}

.responsive-image {
    width: 100%; /* Kép szélessége 100% */
    height: auto; /* Magasság automatikusan beállítva, hogy megőrizzük az arányt */
    display: block; /* Kép megjelenítése blokk szinten */
}
.specification-icon svg{
	margin:0 auto;
}
.collection-item {
    width: 280px;
    display: flex;
	background-color:#555;
    background-image: url(../images/sixtplus_carpic_sample_grey_background_500x862px.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
    color: #fff;
}
/*language selector*/
.language-selector {
	position: relative;
	display: inline-block;
	padding-right: 20px;
}
#languageList li {
    list-style-image: none; /* Eltávolítja a pipát */
    margin: 0 10px; /* Igazítsd a margókat, ha szükséges */
}
.selected-lang {
	cursor: pointer;
	padding: 30px 20px 10px 20px;
	border-radius: 5px;
}

.lang-icon {
	vertical-align: middle;
	margin-right: 10px;
}

.lang-menu {
	display: none;
	position: absolute;
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 5px;
	list-style-type: none;
	padding: 10px;
	margin-top: 5px;
	width: 120px;
}

.lang-menu li {
	cursor: pointer;
	padding: 10px;
}

.lang-menu li:hover {
	background-color: #f0f0f0;
}

.lang-menu.show {
	display: block;
}

.selected-lang[role="button"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 30px 20px 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  vertical-align: middle;
}

.language-selector-con {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.language-selector {
  position: relative;
  display: inline-block;
}

/* Gombként működő nyelvválasztó elemek */
.lang-btn {
  background: none;
  border: none;
  padding: 6px 10px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Ne legyen szürke háttér vagy extra keret fókusznál */
.selected-lang:focus,
.lang-btn:focus {
  outline: 2px solid #FF5F00; /* Vagy valamilyen jól látható fókuszkeret */
  outline-offset: 2px;
  background: transparent;
}

/* Menü lista */
.lang-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* Slider teljes szélességben */
.slider-2 {
    width: 100%;
    max-height: 640px;
    background-color: #fff; /* Lehet átlátszó, hogy ne látszódjon a fehér háttér */
    position: relative;
    opacity: 0; /* Kezdő opacity */
    transition: opacity 0.5s ease; /* Lassan tűnik fel */
}
    /* Slide-okat körülölelő maszk */

    /* A slideok teljes szélessége és magassága */
.single-slide {
    background-size: cover;
    background-position: center;
    height: 100%;
    position: relative;
}
.slider-2.slick-initialized {
    opacity: 1; /* Amikor a slider betöltődött, 1-re állítjuk az opacity-t */
}
	.single-slide {
		background-color: rgba(255, 255, 255, 0.8); /* Vagy egyéb szín */
		transition: background-image 0.5s ease; /* Az áttűnés lassítása */
	}

/* Nyilak formázása */
.single-arrow-holder {
    color: #ff5f00;
    border: 2px solid #ff5f00;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    display: flex;
}

.single-slider-left-arrow {
	left: 20px;
}

.single-slider-right-arrow {
	right: 20px;
}
/* A navigációs pöttyök megfelelő igazítása */
.slick-dots {
	position: absolute;
	bottom: 65px;
	left: 50%;
	transform: translateX(-50%);
}

.slick-dots li button::before {
	font-size: 12px;
	color: #fff;
}

.slick-dots li.slick-active button::before {
	color: #FF5F00; /* Aktív pötty színe */
}
.slick-dotted.slick-slider {
	margin-bottom:0;
}
.single-specificationss {
  background-color: #000; /* fallback a sötét képhez */
}

.single-specifications-cont {
	display: flex;
	justify-content: center;
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}

/*.specification-item {
	margin: 0 20px;
	color: white;
}*/

.specification-description {
	font-size: 12px;
	line-height: 16px;
	display: inline;
}
.specification-description.static {
	color: #ccc;
	margin-right: 5px;
	display: inline;
}
/* A sorrend választó tároló jobb felső sarokban */
.order-form-container {
    display: flex;
    justify-content: flex-end; /* Jobb oldalra helyezés */
    align-items: center; /* Soron belüli elemek igazítása */
    margin-bottom: 20px; /* Alsó margó az elválasztáshoz */
}

/* Label és select egymás mellett */
#order-form {
    display: flex; /* Flexbox használata a label és select egy sorba helyezéséhez */
    align-items: center; /* Középre igazítja a label és select vertikálisan */
    margin-right: 15px;
}

#order-form label {
    margin-right: 10px; /* Hely a label és a select között */
    font-size: 14px; /* Kisebb betűméret */
    font-weight: bold; /* Félkövér stílus */
}

/* Select mező stílusai */
#order-by {
    padding: 3px 5px; /* Beljebb húzás a szöveg körül */
    font-size: 14px; /* Betűméret */
    color: #333; /* Szöveg színe */
    cursor: pointer; /* Kéz kurzor a hover állapothoz */
	border:#ccc 1px solid;
}
#order-by option{
    padding: 3px 5px; /* Beljebb húzás a szöveg körül */
}
/* Select mező opció hover állapota */
#order-by option:hover {
    color: #ff5f00; /* Szöveg színe hover állapotban */
}
#order-by option:checked {
    background-color: #fff;
    color: #ff5f00;
}
.advantage-item-txt {
    text-align: left; /* Szöveg balra igazítása */
}
.car-card:focus,
.car-card-url:focus {
  outline: 3px solid #ff5f00; /* vagy bármilyen jól látható szín */
  outline-offset: 2px;
}
.selected-lang:focus,
.lang-btn:focus {
  outline: none; /* Alapból nincs fókuszkeret */
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Mobil nézet */
@media (max-width: 991px) {
    /* Nyilak formázása */
    .single-arrow-holder {
        width: 40px; /* Kisebb méret */
        height: 40px; /* Kisebb méret */
    }

    .single-slider-left-arrow {
        left: 10px;
        position: absolute; /* Pozicionálás */
        top: 50%; /* Középre helyezés */
        transform: translateY(-40%); /* Függőleges középre igazítás */
    }

    .single-slider-right-arrow {
        right: 10px;
        position: absolute; /* Pozicionálás */
        top: 50%; /* Középre helyezés */
        transform: translateY(-40%); /* Függőleges középre igazítás */
    }

    /* A navigációs pöttyök megfelelő igazítása */
    .slick-dots {
        position: absolute;
        bottom: 20px; /* Lejjebb helyezés */
    }

    .slick-dots li button::before {
        font-size: 8px; /* Kisebb méret */
    }
}

/*noui-slider*/
.noui-slider {
	height: 4px;
}

.noUi-target {
	background: #33191919;
	border-radius: 0;
	border: 0;
	box-shadow: none;
	margin: 0 auto;
	width: 90%;
}

.noUi-connect {
	background: #FF5F00;
}

.noUi-handle {
	height: 24px !important;
	width: 24px !important;
	top: -9px !important;
	right: -12px !important;
	border-radius: 100%;
	box-shadow: none;
}

.noUi-handle:after, .noUi-handle:before {
	display: none;
}

.noUi-marker-large, .noUi-marker-sub {
	background: transparent;
}

.noUi-value-sub {
	color: inherit;
	font-size: unset;
}

.noUi-tooltip {
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	background: transparent;
	border: 0;
}

.noUi-pips {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #595959;
}

.landing-hero-img {
	object-fit: cover;
	object-position: center;
}

.landing-large-image img {
	object-fit: cover;
}

.car-image-holder {
	background-size: cover; 
}

.input-field-error {
	border-bottom-color: red !important; 
}
.iti {
  --iti-path-flags-1x: url('../images/flags.png');
  --iti-path-flags-2x: url('../images/flags.png');
}
.iti__country {
    font-family: Roboto, sans-serif;
}
.iti__selected-dial-code {
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: 700;
}
li { 
list-style-image: url(../images/check_box_symbol.svg); 
margin: 0 10px 0 0;
} 

.tax-block span {
	color: #ff5f00;
  font-weight: 700;
}

input[type="radio"] {
    accent-color: #000000;
}
.specification-block .block-head{
	font-size:21px;
	margin-right: 5px;
	margin-top: 0;
    margin-bottom: 0;
}