#tireForm .tire-service-container {
	max-width: 640px;
    width: 100%;
	margin: 0 auto;
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
}
		
#tireForm .vehicle-tabs {
	display: flex;
	justify-content: center;
    gap: 20px;
	margin-bottom: 20px;
}
		
#tireForm .tab-button {
	padding: 12px 20px;
    border-radius: 32px;
	border: none;
	background: var( --e-global-color-472b1a0 );
    font-weight: 600;
    border: 1px solid #000;
	cursor: pointer;
	font-size: 16px;
    text-align: center;
	transition: all 0.3s ease;
	outline: none;
	user-select: none;
}
		
#tireForm .tab-button.active {
    border: 1px solid var( --e-global-color-accent );
	background: var( --e-global-color-accent );
	color: var( --e-global-color-472b1a0 );
}
		
#tireForm .tab-button:hover:not(.active) {
	background: #e9ecef;
}
		
#tireForm .vehicle-content {
    display: none;
}
		
#tireForm .vehicle-content.active {
	display: block;
}
		
#tireForm .additional-options {
	display: flex;
    column-gap: 32px;
    flex-direction: row;
    justify-content: center;
	padding-bottom: 36px;
}

#tireForm .service-type-selection {
    display: flex;
    column-gap: 32px;
    flex-direction: row;
    justify-content: center;
    padding-top: 18px;
}

#tireForm .additional-options .checkbox-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

#tireForm .additional-options .checkbox-option input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#tireForm .additional-options .checkbox-option span {
  margin-left: 8px;
  vertical-align: middle;
  user-select: none;
}

#tireForm .elementor-field-group-invoiceToCompany {
	margin-top: 18px;
	margin-bottom: 22px;
}
		
#tireForm .service-type-selection h3,
#tireForm .additional-options h3,
#tireForm .license-plate h3,
#tireForm .tire-selection h3 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #333;
}
		
#tireForm .radio-option,
#tireForm .checkbox-option {
	display: flex;
    align-items: center;
	margin-bottom: 10px;
	cursor: pointer;
	font-size: 16px;
}
		
#tireForm .radio-option input,
#tireForm .checkbox-option input {
	margin-right: 8px;
}

#tireForm .license-plate,
#tireForm .tire-selection {
	width: 420px;
	margin-left: 50%;
    display: block;
    transform: translateX(-50%);
}

#tireForm .license-plate {
	margin-bottom: 16px;
}

#tireForm .tire-selection {
	margin-bottom: 38px;
}

#tireForm .license-plate LABEL,
#tireForm .tire-selection LABEL {
	width: 100%;
	max-width: 420px;
	font-size: 14px;
	padding-bottom: 6px;
}

#tireForm .license-plate input,
#tireForm .tire-diameter-select {
	width: 100%;
	max-width: 420px;
	padding: 16px 24px;
	font-size: 16px;
	border: 1px solid #000;
	border-radius: 32px;
}

#tireForm .tire-diameter-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.2925 0L5.5 4.32659L9.7075 0L11 1.33198L5.5 7L0 1.33198L1.2925 0Z' fill='black'/%3E%3C/svg%3E%0A");
    background-position: center right 18px;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}

#tireForm .tire-diameter-select LABEL {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
}
		
#tireForm .selected-price {
	margin-top: 15px;
	padding: 15px;
	background: #e8f5e8;
	border: 1px solid #4caf50;
	border-radius: 4px;
}
		
#tireForm .main-service-price h4 {
	margin: 0 0 10px 0;
	color: #2e7d32;
	font-size: 18px;
}
		
#tireForm .additional-services {
	border-top: 1px solid #4caf50;
	padding-top: 10px;
	margin-top: 10px;
}
		
#tireForm .storage-service h5 {
	margin: 0 0 5px 0;
	color: #1976d2;
	font-size: 16px;
	font-weight: normal;
}
		
#tireForm .total-price {
	border-top: 2px solid #2e7d32;
	padding-top: 10px;
	margin-top: 10px;
	text-align: center;
}
		
#tireForm .total-price h3 {
	margin: 0;
	color: #1b5e20;
	font-size: 20px;
	font-weight: bold;
}
		
#tireForm .price-amount,
#tireForm .storage-price,
#tireForm .total-amount {
	font-weight: bold;
}

