﻿#organizatons_list {
    width: 100%;
    padding: 0.777rem 0.555rem;
    margin: 0;
}

    #organizatons_list .item {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: flex-start;
        list-style: none;
        margin: 3px 0;
        height: 60px;
        overflow: hidden;
        cursor: pointer;
        background: #f7f7f7;
    }

        #organizatons_list .item:hover {
            background: #ddd;
        }

        #organizatons_list .item .org-logo {
        }

            #organizatons_list .item .org-logo img {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                margin: 5px;
            }

        #organizatons_list .item .org-about {
            width: 100%;
        }

        #organizatons_list .item .org-data {
            text-align: left;
            font-size: 0.8rem;
            font-style: normal;
            color: #333;
        }

            #organizatons_list .item .org-data span {
                margin: 0 3px;
            }

        #organizatons_list .item .org-about .org-desc {
            text-align: justify;
            font-style: italic;
            font-size: 0.7rem;
            color: #777;
            text-overflow: ellipsis;
        }

/*#organizatons_list .item .org-about .org-desc:before {
                content: '';
                width: 100%;
                height: 100%;
                position: relative;
                left: 0;
                top: 0;
                background: linear-gradient(transparent 40px, white);
            }*/

#query_location_suggestions {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 777;
    background: #fff;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
}

    #query_location_suggestions li {
        display: block;
        list-style: none;
        padding: 1px 0.777rem;
        border-bottom: 1px solid #ddd;
        cursor: pointer;
    }

        #query_location_suggestions li:last-child {
            border-bottom: none;
        }