.photo_list_item {
    position: relative;
    display: block;
    width: 100%; height: auto;
    box-sizing: border-box;
    padding: 10px 0px 0px 0px;
    margin: 0;
    vertical-align: top;
    overflow: hidden;

    background: rgba(108, 214, 70, 0.0);
    
    border-radius: 4px;
    border: 4px solid rgba(108, 214, 70, 0.0);

    font-family: Arial;
    letter-spacing: normal !important;
    color: #333;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    text-decoration: none;

    transition: background 0.4s;

}

.photo_list_item:hover {
    background: rgba(108, 214, 70, 0.15);
}

.photo_list_item_icon {
    position: absolute;
    left: 10px; top: 20px;
    width: 50px; height: 50px;
    background: url(https://www.airpano.com/css/img/icon_360.png) no-repeat;
    background-size: 100% 100%;
    z-index: 100;
}

.photo_list_item > .photo_list_item_img_cont {
    display: inline-block;
    position: relative;
    width: 50%; max-width: 523px; height: auto; 
    /*min-height: 150px;*/
    margin-right: 20px;
    margin-bottom: 10px;
    float: left; 
    font-size: 0;
    line-height: 0;
    background: #8cb1ce;
}

.photo_list_item > .photo_list_item_img_cont > img {
    border: 0;
    max-width: 100%; 
    height: auto; 
    min-height: 120px;
    opacity: 0;
}

.photo_list_item > .photo_list_item_text {
    display: inline-block;
    float: right;
    width: 50%; height: 100%;
    padding-left: 20px;
    text-overflow: ellipsis;
}

.photo_list_item > .photo_list_item_title {
    /*display: block;*/
    left: 0; bottom: 0; width: 100%;
    padding: 0px;
    margin: 0px 0px 16px 0px;
    box-sizing: border-box;
    

    font-family: Arial;
    letter-spacing: normal !important;
    color: #51b72d;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;

    z-index: 2;

    
}

.photo_list_item:hover > .photo_list_item_title {
    text-decoration: underline;
}

.photo_list_item_img_cont {
    min-height: 120px;
}

.photo_list_item_img_cont > .photo_list_item_views_count {
    position: absolute;
    right: 10px; top: 10px;
    background: rgba(0,0,0,0.5);
    border-radius: 3px;
    padding: 0 8px;

    font-family: Arial;
    letter-spacing: normal !important;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 300;
    line-height: 22px;
}


.photo_list_item_views_count > span {
    /*color: #51b72d !important;*/
    color: rgba(108, 214, 70, 1) !important;
}
