/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.wud_form_wrapper {
    display: flex;
    width: 100%;
}

.wud_form_field {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.wud_row_1 {
    width: 100%;
    display: flex;
}

#search_by_name {
    width: 100%;
}

.wud_row_2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.wud_row_2 input {
    width: 100%;
}

.wud_form_field input {
    margin: 10px;
}

#wud_search {
    padding: 15px;
    background-color: var(--ast-global-color-8);
}

.wud_clear_btn {
    color: var(--ast-global-color-8);
    cursor: pointer;
}

.wud-error-message {
    color: #ff0000;
}

.wud_title_wrapper {
    margin-top: 4em;
    border-bottom: 2px solid #000;
    margin-bottom: 1em;
}

.wud_filter_wrapper {
    text-align: right;
}

.wud_filter_wrapper select {
    margin-left: 15px;
    padding: 10px 16px;
}

.wud_filter_wrapper {
    margin-bottom: 3em;
}

.wud_content_wrp {
    height: 150px;
    width: calc(33% - 10px);
    margin: 5px;
    float: left;
    clear: right;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    border: 1px solid #cecece;
    color: inherit;
    background-color: #fff;
    border-radius: 10px;
}

.wud_result_count_wrp {
    margin: auto;
    width: fit-content;
}

.wud_user_details {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 10px;
}

.wud_name,
.wud_address,
.wud_role {
    margin-bottom: 5px !important;
    line-height: 21px;
    font-size: 16px;
    font-weight: 400 !important;
    text-transform: capitalize;
}

p.wud_role {
    margin: 0 !important;
}

.wud_row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.profile-left-container {
    background: #E9ECEF;
}

.deep-blue {
    color: #181954 !important;
}

.profile-name {
    font-size: 40px;
    margin-top: 10px;
    color: #181954;
    overflow-wrap: break-word;
}

.roundedCornerImg {
    border-radius: 4px;
}

.rank-container {
    display: inline-flex;
    align-items: center;
}

.rank-icon {
    width: 1.5rem;
    margin-right: 0.2rem;
}

.underlineHeader {
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: solid 1px lightgray;
}

.tag-cloud2 ul {
    list-style-type: none;
}

.tag-cloud2 li:first-child {
    margin-left: 0;
}

.tag-cloud2 li {
    float: left;
    padding: 0;
}

.bigBadge {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.rank-container {
    display: inline-flex;
    align-items: center;
}

.wud-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.wud-col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.wud-col-12 {
    flex: 0 0 100%;
    max-width: 100%;

}

.wud-col-3,
.wud-col-12,
.wud-col-9,
.wud-col-8 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.wud-lg-block {
    display: block;
}

/* .wud_result_wrapper {
    display: none;
} */

.wud-mt-3 {
    margin-top: 1rem !important;
}

.wud-mt-4 {
    margin-top: 1.5rem !important;
}

.wud-mb-1 {
    margin-bottom: 0.25rem !important;
}
.wud-mb-2 {
    margin-bottom: 0.5rem !important;
}
.wud-user-left-content p span {
    display: block;
}

.profile-right-container {
    background-color: #fff;
    padding: 40px 20px;
}

.wud-user-role-wrp {
    margin-top: 5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #eee;
    padding-bottom: 0.5rem;
}

.wud-list-round-border {
    list-style-type: none;
    margin: 0;
}

.wud-list-round-border li {
    display: inline-block;
    border: 2px solid var(--ast-global-color-8);
    border-radius: 10px;
    margin: 5px;
}

.wud-list-round-border li a {
    padding: 5px;
}

.wud-research-interest .wud-list-round-border li {
    padding: 5px;
    color: var(--ast-global-color-8);
}

#wud_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
}

.wud_loader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wud_loader-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 1s infinite ease-in-out;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#wud_search_form input[name=search_by_name],
#wud_search_form input[name=wud_location],
#wud_search_form input[name=wud_radius] {
    background-color: #fff;
}

.wud_filter_wrapper select {
    background-color: #fff;
}

.wud_img_wrp img {
    width: 75px;
    object-fit: cover;
    border-radius: 100% !important;
}

.wud_img_wrp {
    margin-top: 10px;
    margin-left:10px;
    width: 75px;
    height: 50px;
    min-width: 50px;
}

.wud_active_filter,
.wud_active_filter:focus,
.wud_active_filter:visited,
.wud_active_filter:visited {
    border-color: var(--ast-global-color-8);
    border-width: 2px;
}

.wud_active_filter option:checked {
    color: var(--ast-global-color-8);
}
.profile-name {
    text-transform: capitalize;
}

button#load_more_button {
    clear: both;
    display: none;
    margin: auto;
    background-color: var(--ast-global-color-8);
}

.wud_form_field input::placeholder {
    color: #999;
}

.wud_load_more_wrp {
    text-align: center;
    padding-top: 20px;
    display: block;
    clear: both;
}

/* This CSS will apply only for mobile devices with a maximum width of 767px */
@media (max-width: 767px) {
    .wud_content_wrp {
        width: calc(100% - 10px);
    }

    .wud_filter_wrapper {
        display: flex;
        flex-direction: column;
    }
}
