.networkwide-search {
    font-family: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.networkwide-search-site {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 50px;
}

.networkwide-search-site-select {
    cursor: pointer;
    display: block;
    width: 100%;
    height: auto;
    padding: 13px 25px;
    background-color: var(--e-global-color-40cf936);
    border-radius: 50px;
}

.networkwide-search-site-select-text {
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
}

.networkwide-search-site-select-dropdown {
    cursor: pointer;
    display: none;
    list-style-type: none;
}

.networkwide-search-site-select-dropdown.show {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
    position: absolute;
    background-color: transparent;
    border: none;
    border-radius: 10px;
    padding: 0;
    margin: 10px 0 0 0;
    width: 100%;
    z-index: 2;
}

.networkwide-search-site-select-dropdown-item {
    cursor: pointer;
    width: 100%;
    display: block;
    background-color: var(--e-global-color-40cf936);
    padding: 10px 25px;
    transition: 0.3s;
}

.networkwide-search-site-select-dropdown-item:hover {
    color: var(--e-global-color-74e93c4);
    background-color: var(--e-global-color-accent);
    transition: 0.3s;
}

.networkwide-search-site-select-dropdown-item.selected {
    color: var(--e-global-color-74e93c4);
    background-color: var(--e-global-color-accent);
}

.networkwide-search-site-select-dropdown-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.networkwide-search-site-select-dropdown-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.networkwide-search-query {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
    background-color: var(--e-global-color-40cf936);
    border-radius: 50px;
    width: 100%;
    min-width: 200px;
    height: auto;
}

input.networkwide-search-query-input {
    border: none !important;
    outline: none !important;
    background: transparent;
    padding: 13px 25px !important;
    border-radius: 50px !important;
    box-shadow: none !important;
}

input.networkwide-search-query-input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.networkwide-search-query-input {
    border: none !important;
    outline: none !important;
    background: transparent;
    padding: 13px 25px !important;
}

.networkwide-search-alert {
    cursor: pointer;
    display: none;
    font-size: 12px !important;
    color: var(--e-global-color-1299f2e);
    padding: 0 25px 0 25px !important;
    text-align: center !important;
}