input[type=text], input[type=password], input[type=datetime-local], input[type=date], 
input[type=list],input[type=email], input[type=file], select, textarea { 
  border: none;
  outline: 0;
  padding: 8px;
  margin: 0px;
  font-size: 10pt;
  font-family: Arial, Helvetica, sans-serif;
}

.inpAlap select {
  border: none; /* eltávolítja a keretet */
  outline: none; /* eltávolítja a fókusz keretet */
  background-color: transparent; /* átlátszó háttér */
  -webkit-appearance: none; /* eltávolítja a böngésző általi alapértelmezett stílust */
  -moz-appearance: none;
  appearance: none;
  padding: 8px;
}
.slider-container {
  position: relative;
  height: 40px; /* Teljes magasság limitálása */
}

.slider {
  -webkit-appearance: none; /* Eltávolítja az alapértelmezett stílust */
  appearance: none;
  width: 70%; /* Teljes szélesség */
  height: 1px; /* Csúszka magassága */
  background: black; /* Csúszka színe */
  outline: none;
  opacity: 1;
  position: absolute;
  top: 12px; /* Pozícionálás a konténer tetejétől */
  left: 10%;
  z-index: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px; /* Foggantyú szélessége */
  height: 10px; /* Foggantyú magassága */
  background: black; /* Foggantyú színe */
  border-radius: 50%; /* Kör alak */
  cursor: pointer;
  position: relative;
  top: 6px;
  transform: translateY(-50%);
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: black;
  border-radius: 50%;
  cursor: pointer;
}
.value-label {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 18px; /* Az érték pozícionálása a csúszka alatt */
  font-size: 10px;
}
.inpAlap .inpAlapBox, .inpAlapGomb {
	background-color: white;
	clip-path: polygon(0% 0%, 81% 0%, 100% 100%, 19% 100%);
	height: 40px;
	/* width: 203px; */
	width: 19.2%;
	float: left;
	margin-left: -28px;
	text-align: center;
}
.inpAlap .inpAlapGomb {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 19% 100%);
  border: none;
  cursor: pointer;
}
.inpAlap .inpAlapGomb:hover {
	background-color: var(--main-szin1);
  color: white;
  transition: 800ms;
}
.urlap-alap {
  margin-top: 120px;
  display: table;
  width: 100%;
  margin-bottom: -100px;
}
.urlap-alap #szoveg{
  float: right;
  width: 40%;
}
.urlap-alap #szoveg li{
  float: left; margin: 0px 20px;
}
.ajanlatkeres {
  background-color: var(--main-szin3);
  float: left;
  background: linear-gradient(45deg, var(--main-szin3) 65%, #ffffff 65%);
  width: 60%;
  height: 380px;
}
.ajanlatkeres span{
  display: none;
}
.ajanlatkeres div{
  margin: 8px;
  width: 50%;
}
.ajanlatkeres h1{
  margin: 8px 18px;
}
.ajanlatkeres input, .ajanlatkeres textarea{
  width: 100%;
}
.ajanlatkeres textarea{
  width: 100%;
  height: 80px;
}
.ajanlatkeres input[type=checkbox] {
  width: 20px;
}
.ajanlatkeres button{
  width: 104%;
  border: none;
  outline: 0;
  padding: 12px;
  font-size: 10pt;
  cursor: pointer;
  box-sizing: border-box;
}
.ajanlatkeres button:hover{
  background: var(--main-szin2);
  color: white;
}
.keresesFinomit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Elemek középre igazítása */
  gap: 10px; /* Kisebb térköz az elemek között */
}
.feher-block {
  background-color: #fff;
  padding: 8px;
  margin-bottom: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  flex: 1 1 180px; /* Flex elemek alkalmazkodnak, de minimum 180px szélesek */
  max-width: calc(50% - 20px); /* Max szélesség két elem esetén, figyelembe véve a térközt */
  box-sizing: border-box;
}
.feher-block label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: bold; /* Teszi a szöveget vastagabbá */
  font-size: 1.1em; /* Nagyítja a szöveget */
  background-color: #f2f2f2; /* Háttérszín hozzáadása */
  padding: 5px; /* Kis térköz a szöveg körül */
  border-radius: 5px; /* Lekerekített sarkok */
}
.submit-button {
  width: 100%; /* Biztosítja, hogy a gomb szélessége megegyezzen a formával */
  display: flex;
  justify-content: center; /* Középre igazítja a gombot */
  padding: 20px; /* Hozzáad egy kis térközt az űrlap végéhez */
}
.submit-button button {
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}
.submit-button button:hover {
  background-color: var(--main-szin2);
}

@media screen and (max-width: 1024px) {
  .inpAlap .inpAlapBox, .inpAlapGomb {
    clip-path: polygon(0% 0%, 73% 0%, 100% 100%, 27% 100%);
    width: 20.5%;
  }
  .inpAlap .inpAlapGomb {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 27% 100%);
  }
  .urlap-alap {
    margin-top: 60px;
  }
  .ajanlatkeres{
    margin-left: 1%;
    width: 59%;
  }
  .ajanlatkeres div{
    margin: 8px;
    width: 80%;
  }
  .ajanlatkeres input[type=text], .ajanlatkeres input[type=email], .ajanlatkeres textarea {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .inpAlap .inpAlapBox, .inpAlapGomb {
    clip-path: polygon(0% 0%, 78% 0%, 100% 100%, 22% 100%);
    width: 39%;
  }
  .inpAlap .inpAlapGomb {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 22% 100%);
  }
  .urlap-alap {
    margin-top: 0px;
  }
  .ajanlatkeres, .urlap-alap #szoveg{
    float: none;
    width: 90%;
    margin: 5%;
  }
}
@media screen and (max-width: 480px) {
  .inpAlap .inpAlapGomb {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 24% 100%);
    width: 100%;
  }
  .inpAlap .inpAlapBox, .inpAlapGomb {
    width: 100%;
  }
  .ajanlatkeres {
    float: none;
    background: var(--main-szin3);
    width: 90%;
    margin: 0px 5% 50px 5%;
    height: auto;
    padding: 8px 8px;
    box-sizing: border-box;
  }
  .ajanlatkeres div{
    margin: 3%;
    width: 90%;
    box-sizing: border-box;
  }
  .ajanlatkeres input[type=text], .ajanlatkeres input[type=email], .ajanlatkeres textarea {
    width: 100%;
  }
  #checkboxlabel {
    display: block;
    float: right;
    width: 90%;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 400px) {
  h1 {
    font-size: 12pt;
  }
  .inpAlap .inpAlapGomb {
    width: 100px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    position: absolute;
    right: 0px;
    top: 64px;
    font-size: 20px;
    background-color: transparent;
  }
  .inpAlap .inpAlapGomb:hover {
    background-color: transparent;
  }
}
@media screen and (max-width: 360px) {
  #checkboxlabel {
    width: 80%;
  }
}