#city {
    display: none;
}

canvas {
    display: block;
    vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #42A703;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -99999;
}

.step-container {
    background-color: #276300;
    color: white;
    border-radius: 4px;
    padding: 20px;
    text-align: left;
}

label {
    display: none;
}

.step-line {
    height: 10px;
    /*background: linear-gradient(90deg, #9198e5 10% , grey 10%);*/
    background: rgba(0, 0, 0, 30%);
    margin-bottom: 10px;
    border-radius: 4px;
}

.step-2 .step-line {
    background: linear-gradient(90deg, #FA7500 33.3333% , rgba(0, 0, 0, 30%) 33.3333%);
}

.step-3 .step-line {
    background: linear-gradient(90deg, #FA7500 66.6666666% , rgba(0, 0, 0, 30%) 66.6666666%);
}

.step-4 .step-line {
    background: linear-gradient(90deg, #FA7500 100% , rgba(0, 0, 0, 30%) 100%);
}

button {
    background: #FA7500;
    color: white;
    border: 1px solid #FA7500;
    font-size: 22px;
    padding: 5px 25px;
    margin-top: 10px;
    transition: 200ms;
    align-self: flex-end;
}

button:hover {
    background: white;
    color: #FA7500;
    border: 1px solid #FA7500;
}

select {
    border: none;
    background: none;
    color: white;
    border-bottom: 1px solid white;
    font-size: 22px;
    padding-right: 10px;
    max-width: 100%;
    width: auto;
    display: inline-block;
}

select option {
    background: #FA7500;
}

.radio label {
    display: block;
}

.buttons {
    text-align: right;
}

.step {
    text-align: right;
}

input {
    background: transparent;
    border: none;
    color: white;
    border-bottom: 1px solid white;
    font-size: 22px;
    border-radius: 0!important;
}

input::-webkit-input-placeholder {
    color: white;
}

input:focus-visible,
select:focus-visible {
    outline: none;
}

h6 {
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 20px;
}

.form-check-input:checked {
    background-color: #FA7500;
    border-color: #FA7500;
}

.form-check {
    padding-left: 2.1em;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-check-input {
    margin-top: 0.1em;
}

.error {
    background: rgba(255, 0, 0, 0.6);
    padding: 5px 10px;
    border: 1px solid red;
    border-radius: 4px;
    display: none;
    margin-bottom: 10px;
}

.radio {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input[type=email] {
    border: 0;
    border-bottom: 1px solid white;
    width: auto!important;
}