

.doctors_list_container {
    max-width: 100%;
    padding: 0 20px;
    background-color: #0E0F0F;

    .doctors_wrapper {
        display: flex;
        gap: 20px;
        flex-direction: row;
        width: 100%;

        .doctors_container {
            width: 100%;

            .all_doctors {
                position: relative;
                min-height: 100vh;
                width: 100%;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                column-gap: 20px;
                row-gap: 20px;
                align-content: start;

                .user_card_wrapper {
                    overflow: hidden;
                    height: 100%;
                    padding: 10px 10px 20px 10px;
                    border-radius: 20px;
                    background: #1E1E1E;
                }
            }
        }
    }
}

.user_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    height: 100%;

    .user_avatar {
        width: 100%;
        margin: 0 0 10px;
        image-orientation: revert;
        object-fit: cover;

        .avatar {
            object-position: 10% 10%;
            object-fit: cover;
            position: relative;
            width: 100%;
            aspect-ratio: 1.6/1;
            border-radius: 14px;
        }
    }
}

.subscribers_wrapper{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.buttons_wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 9px;
}

.user_info_btn_container {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.doc_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 9px;
    width: 100%;
    justify-content: space-between;

    .user_additional_info {
        font-size: 16px;
        color: #aeaeae;
        text-align: left;
        display: flex;
        gap: 5px;
        flex-direction: column;
    }

    .user_additional_info p {
        line-height: 18px;
    }
}

.settings_icon_wrapper {
    display: none;
}

.user_name {
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    margin-top: -2%;
    width: 100%;
    height: 55px;
    float: left;
    text-align: left;
}

.doctor_name {
    color: white;
}

a {
    text-decoration: none;
    color: white;
}

.user_name p {
    line-height: 20px
}

.pagination_container {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.pagination_button {
    color: #717171;
    cursor: pointer;
    padding: 21px;
}

.pagination_button:hover {
    color: var(--blue);
}

.pagination_dots {
    color: #717171;
}

.material-icons {
    color: #717171;
    padding: 12px;
}

.material-icons:hover {
    cursor: pointer;
    color: var(--blue);
}

.pagination_button.active {
    color: var(--blue);
}

.banner_new_doctor{
    width: 100%;
}

.user_info_btn {
    cursor: pointer;
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid var(--blue);
    background: var(--blue);
    transition: background-color 0.5s ease;
}

.user_info_btn:hover {
    background: var(--dark-blue);
}

#statistics_wrapper{
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    gap: 6px;
    color: #FFFFFF;
    font-weight: 500;
    line-height: 28px;
    font-size: 19px;

    .statistic_wrap{
        display: flex;
        align-items: center;

        .statistic_text{
            .colon{
                display: inline-block;
            }
        }
    }

    .statistics{
        display: none;
        flex-wrap: wrap;
        gap: 6px;
        align-items: center;
        >:first-child{
            margin-right: 40px;
        }

        img{
            display: none;
        }

        &.show{
            display: flex;
        }
    }

    .statistics_badge{
        font-weight: 800;
        background-color: #01284B;
        padding: 4px 10px;
        border-radius: 100px;
        text-wrap: nowrap;
        margin-left: 6px;
    }

}

#filter-section-wrapper{
    .statistics_loader{
        height: 22.4px;
        margin: 0 20px;
        width: calc(100% - 40px);
    }
}


.statistics_loader{
    position: relative;
    width: 100%;
    height: 32px;
    background: #333;
    background: linear-gradient(
        110deg,
        #2a2a2a 8%,
        #3a3a3a 18%,
        #2a2a2a 33%
    );
    border-radius: 5px;
    background-size: 300% 100%;
    animation: 2.5s shine linear infinite;
    z-index: 10;

    &.hidden {
        display: none;
    }
}

@keyframes shine {
    to {
        background-position-x: -300%;
    }
}