.modal-backdrop {
	/*backdrop-filter: blur(10px);*/
	background-color: rgba(0,0,0,0.8)
}


	#truck-type {
	  display: flex;
	  justify-content: space-between; /* sorkizárt elrendezés */
	  align-items: center; /* középre igazítás függőlegesen */
	  gap: 15px;
	}

	#truck-type div {
		cursor: pointer;
		flex: 1;
		border: 2px solid #e4e6fc;
		border-radius: 6px;
		background: transparent;
		text-align: center;

		background-color: #fdfdff;
		border-color: #e4e6fc;

		margin: 0;
		font-family: inherit;
		font-size: inherit;
		line-height: inherit;
		padding: 10px 0;

	}

	#truck-type div {
		opacity: 0.2;
	}

	[data-truck-selected="0"] #truck-type div, #truck-type div.active {
		opacity: 1;
	} 

	#truck-type div.active {
		/*border-color: #00529c;
		background: #00529c;
		color: #fff;*/
		border-color: #00B4FF;
/*		color: #00B4FF;*/
		opacity: 1 !important;
		box-shadow: 0px 0px 5px #eee;
	}

/*	#truck-type div.active path {
		fill: #00B4FF;
		
	}
*/

	#truck-type div svg {
		width: 50%;

	}

	#truck-type div span {
		display: block;
		font-weight: bold;
	}

	#truck-type [data-truck-type="1"] path {
		fill: #47c363;
	}

	#truck-type [data-truck-type="2"] path {
		fill: #ffa426;
	}

	#truck-type [data-truck-type="3"] path {
		fill: #EC1C2D;
	}


	h3[data-type="1"] {
			color: #47c363 !important;
	}

	h3[data-type="2"] {
			color: #ffa426 !important;
	}

	h3[data-type="3"] {
			color: #EC1C2D !important;
	}

[data-show] {
	display: none;
	float: right;
	opacity: 0.8;
}

[data-truck-selected="1"] [data-show="1"] {
	display: inherit;
}

[data-truck-selected="2"] [data-show="2"] {
	display: inherit;
}

[data-truck-selected="3"] [data-show="3"] {
	display: inherit;
}


#otp-container {
  position: relative;
  margin: auto;
  background-color: #f7f9f9;
  padding: 5px 20px;
  border-radius: 5px;
}

#otp-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 50px;
  z-index: 2;
  caret-color: transparent;
  pointer-events: none;
}

#otp-boxes {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;

}

.otp-box {
  width: 30px;
  height: 50px;
  border: 1px solid #e4e6fc;
  border-bottom: 3px solid #eee;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  font-weight: bold;
   background-color: #fff;
}

.otp-box:focus {
/*	border-color: #f00;*/
}

[data-truck-selected="2"] #otp-boxes [data-index="5"] {
	display: none !important;
}

[data-truck-selected="3"] #otp-boxes {
	display: none;
}

[data-truck-selected="3"] #otp-input  {
	opacity: 1;
	 pointer-events: inherit;
	 position: relative;
	 margin: 10px 0;
}

#car-data b {
    display: inline-block;
    width: 150px;
    line-height: 30px;
}

.line .btn {
	display: inline-block;
}


.screen-1 .line {
	background-color: rgba(255,255,255,1);
	padding: 3px 10px;
}

.screen-1 .line:nth-child(2n) {
	background-color: rgba(240,240,240,0.7);
}