#vehicle-lookup-app input,
#vehicle-lookup-app textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

#vehicle-lookup-app button {
    padding: 10px 15px;
    margin-right: 5px;
    cursor: pointer;
}

.step {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}




.vehicle-info {
    font-family: "Poppins", Sans-serif;
    max-width: 100%;
    color: #222;
    padding: 12px 0px;
    box-sizing: border-box;
}
.vehicle-info * {
	color: white;
    font-family: "Poppins", Sans-serif;	
}
.vehicle-badge {
    display: inline-block;
    background: #fed500;
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 15px;
    border-radius: 4px;
    margin-bottom: 8px;
    user-select: none;
}
.vehicle-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 6px 0 8px 0;
    line-height: 1.2;
}
.vehicle-subinfo {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.vehicle-subinfo span {
    position: relative;
    padding-right: 15px;
}
.vehicle-subinfo span:not(:last-child)::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    position: absolute;
    right: 2px;
    top: 7px;
    background: currentColor;
}
.vehicle-wrong-link a{
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: underline !important;
    text-decoration-color: #ffffff;
    cursor: pointer;
    user-select: none;
    max-width: fit-content;
}
.vehicle-wrong-link a:hover{
	color: #ffffff;
}

.lookup-controls {
	margin-top: 15px;
	display: flex;
	gap: 15px;
}

.lookup-controls button {
	font-family: "Poppins", sans-serif;
	background-color: black;
    color: white;
    font-weight: 600;
    border: none;
    padding: 10px 50px;
    width: 50%;
}

.lookup-controls button a {
	color: inherit;
}

.lookup-controls button:hover ,
.lookup-controls button:focus {
	background-color: white;
    color: black;
}

.milage-output {
	display: flex !important;
	flex-direction: column;
	gap: 10px;	
}

.estimation-form {
	display: flex;
	flex-direction: column;
	gap: 15px
}

.lookup-controls button.next-lookup span.last,
.lookup-controls[currentStep="3"] button.next-lookup span.first {
	display: none;
}
.lookup-controls[currentStep="3"] button.next-lookup span.last {
	display: inline;
}
.lookup-heading {
	font-family: "Poppins", Sans-serif;
  	font-size: 32px;
  	font-weight: 600;
  	color: #FFFFFF;
}

.estimation-form .message {
    color: white;
    font-weight: 600;
}

.mmbb-35 {
	margin-bottom: 35px;
}

.valuation_price_output {
	font-family: "Anton", Sans-serif;
	font-size: 56px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 70px;
	color: black;
}

@media ( max-width: 786px ) {
	.lookup-controls {
		flex-direction: column-reverse;
	}
	.lookup-controls button {
		width: 100%;
	}
	.lookup-heading {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
    .vehicle-name {
        font-size: 1rem;
    }
    .vehicle-subinfo {
        font-size: 0.85rem;
    }
    .vehicle-wrong-link {
        font-size: 0.9rem;
    }
}