.wizard-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background-color: #fff;
    padding: 2rem;
}
.skip {
    display: flex;
    justify-content: flex-end;
}
.skip-btn {
    cursor: pointer;
}
.wizard-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.wizard-steps .step {
    border: 1px solid #ccc;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
}
.wizard-steps .step.current-step {
    background-color: #e50d3f;
    border-color: #e50d3f;
    color: #fff;
}
.wizard-step {
    display: none;
}
.wizard-step.current-step {
    display: block;
}
.wizard-content {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 35px;
    padding: 3rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.wizard-content h1 {
    margin-top: 0;
}

.wizard-content button {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button.select-view-btn {
    margin-top: 15px;
}

.view-container {
    position: relative;
}

select#view-selector {
    min-width: 100%;
}

/* Loading */
.is-loading::after {
    content: url(/wp-admin/images/loading.gif);
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    text-align: center;
    top: 0;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: #ffffffc7;
}

#contact-email {
    width: 100%;
}

p.form-row {
    position: relative;
}

p.form-row label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

p.form-row select,
p.form-row .industry-container {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    position: relative;
    display: block;
}