
.step {
    display: none;
}

.step.active {
    display: block;
}

.navigation-buttons {
    /*margin-top: 20px;*/
}

.invalid {
    color: red;
}

.steps-progress-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.car-finder-title {
    font-size: calc(1rem + .6vw) !important;
    text-align: center;
    text-shadow: 0px 0px 3px rgb(100 100 100 / 50%);
    color: black;
    margin: 0;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 3px #cdcdcd solid;
    color: #585858;
    text-align: center;
    line-height: 35px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.progress-step.active {
    background-color: #ee9d4a;
    border: 3px #ee9d4a solid;
    color: white;
}

.progress-step.completed {
    background-color: white;
    color: #ee9d4a;
    border: 3px #ee9d4a solid;
}

.progress-line {
    flex-grow: 1;
    height: 5px;
    background-color: #b6b6b629;
    margin: 0 5px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.progress-line.active {
    background-color: #b66d2129;
}

.progress-line.completed {
    background-color: #ee9d4a29;
}

.progress-step.active + .progress-line,
.progress-step.completed + .progress-line {
    background-color: #b66d2129;
}

.progress-step.completed + .progress-line {
    background-color: #ee9d4a29;
}

span.select2,
textarea,
input {
    box-shadow: rgba(0, 0, 0, 0.10) 0px 3px 8px;
}

label {
    text-shadow: rgba(0, 0, 0, 0.10) 0px 3px 8px;
}

.btn.btn-dark-orange {
    box-shadow: rgba(0, 0, 0, 0.10) 0px 3px 8px !important;
}

.btn.btn-white-color {
    color: black !important;
    background-color: white;
    padding: 0.2rem 1rem;
    box-shadow: rgba(0, 0, 0, 0.10) 0px 3px 8px !important;
    transition: background-color 0.2s ease;
}

.btn.btn-white-color:hover {
    background-color: ghostwhite;
}

.btn.btn-white {
    background-color: #ffffff !important;
    box-shadow: rgba(0, 0, 0, 0.10) 0px 3px 8px !important;
}

.steps-header-content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    z-index: 10000;
}

.features-title {
    color: black !important;
}

.payment-card-option.selected,
.own-card-option.selected,
.card-option.selected {
    background-color: white;
}

.car-finder-section-bg-img {
    position: relative;
    background-image: url(/css/themes/assets/car-finder-background.webp);
    background-color: black;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.car-finder-header-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.car-finder-header {
    text-align: center;
    text-shadow: 0px 0px 3px rgb(100 100 100 / 50%);
}

.step-number-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 40px;
    min-width: 40px;
    max-height: 40px;
    min-height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    background: radial-gradient(at 20% 50%, #ffffff -169%, #ee9d4a 100%);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.step-number {
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    text-shadow: 0px 0px 0.1rem rgb(100 100 100 / 75%);
}

.step-title {
    color: black;
    font-size: 1rem;
    text-shadow: 0px 0px 3px rgb(100 100 100 / 50%);
}

.steps-container {
    background-color: #f5f5f5;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 2px;
}

.step-section-title {
    font-size: calc(1rem + .4vw);
    text-shadow: 0px 0px 3px rgb(100 100 100 / 50%);
}

.bodytypes-container {
    /*width: 40rem;*/
}

.card-type-container {
    position: relative; /* Ensure the pseudo-element is positioned relative to the card */
    background: white;
    /*width: 300px;
    height: 150px;*/
    box-shadow: rgba(0, 0, 0, 0.10) 0px 3px 8px;
    border-radius: 20px;
    padding: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}

.card-type-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(238, 157, 74, 0.5);
    transition: left 0.3s ease;
}

.card-type-container:hover::after {
    left: 100%;
    transition: left 0.3s ease;
}

.card-type-container:hover {
    background: #EE9D4A;
}

.card-type-container .bodytype-title {
    transition: color 0.3s ease; /* Transition for text color */
}

.card-type-container:hover .bodytype-title {
    color: white;
}

.card-type-container.active {
    background: #EE9D4A;
}

.card-type-container.active:hover {
    background: white;
}

.card-type-container.active .bodytype-title {
    color: white;
}

.card-type-container.active:hover .bodytype-title {
    color: black;
}

.bodytype-img img {
    /* Add styles for the image if needed */
}

.bodytype-title {
    text-shadow: 0px 0px 3px rgb(100 100 100 / 50%);
}

.payment-card-option,
.own-card-option,
.card-option {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 6px 25px;
    margin: 5px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.10) 0px 3px 8px;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}

/*.own-card-option::after,
.card-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(238, 157, 74, 0.5);
    transition: left 0.3s ease;
}*/

/*.own-card-option:hover::after,
.card-option:hover::after {
    left: 100%;
    transition: left 0.3s ease;
}*/

.payment-card-option:hover,
.own-card-option:hover,
.card-option:hover {
    background-color: ghostwhite;
}

/*.own-card-option:hover .option-text,
.card-option:hover .option-text {
    color: white;
}*/

.payment-card-option.selected,
.own-card-option.selected,
.card-option.selected {
    background: #EE9D4A;
}

/*.own-card-option.selected:hover,
.card-option.selected:hover {
    background: white;
}*/

.payment-card-option.selected .option-text,
.own-card-option.selected .option-text,
.card-option.selected .option-text {
    color: white;
}

/*.own-card-option.selected:hover .option-text,
.card-option.selected:hover .option-text {
    color: white;
}*/

.payment-card-option .option-text,
.own-card-option .option-text,
.card-option .option-text {
    transition: color 0.3s ease;
}

.option-text {
    text-shadow: 0px 0px 3px rgb(100 100 100 / 50%);
}


@media(max-width:1000px) {
    .steps-header-content {
        flex-direction: column;
    }
}