#wpbdp-page-main_page {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 40px;
}

#wpbdp-main-box {
    display: none !important;
}

#selForm {
    display: flex;
}

#selForm>select {
    border: 1px solid #e0e0e0;
    border-radius: 22px;
    padding: 10px 20px;
    min-height: 48px;
    background-color: #fff;
    color: #3f4b5b;
    font-size: 17px;
    font-weight: 300;
}

.county-select-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}

#countySelect {
    opacity: 0.3;
    pointer-events: none;
    transition: all 0.3s ease;
}

#stateSelect {
    margin-right: 30px;
}

#countySelect.vsbl {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (max-width: 540px) {
    #selForm {
        display: block !important;
    }

    #selForm>select,
    #stateSelect {
        width: auto;
        margin-bottom: 8px;
        margin-right: auto;
    }
}