.photogallery_list_item {
    position: relative;
    /*display: inline-block;*/
    display: none;
    width: 15.18%; 
    height: auto; 
    min-height: 90px;
    vertical-align: top;
    /*overflow: hidden;*/
    border-radius: 4px;
    margin: 0 8px 20px 8px;
    /*border: 1px solid grey;*/
    font-size: 0;

}

@media (max-width:1900px) { 
    .photogallery_list_item {
        max-width: 240px;
    }
}

@media (max-width:1404px) { 
    .photogallery_list_item {
        width: 18.18%;
    }
}

@media (max-width:1127px) { 
    .photogallery_list_item {
        width: 22.64%;
    }
}

@media (max-width:850px) { 
    .photogallery_list_item {
        width: 30%;
    }
}

@media (max-width:550px) { 
    .photogallery_list_item {
        width: 42.6%;
    }
}

.photogallery_list_item > .photogallery_list_item_img_cont {
    position: relative;
    display: block;
    left: 0; top: 0;
    width: 100%; 
    height: 100%;
    overflow: hidden;
    text-align: center;
    z-index: 3;
    background: #8cb1ce;
    border-radius: 4px;
}

.photogallery_list_item > .photogallery_list_item_img_cont > .spacer {
    width: 100%; height: auto;
}

.photogallery_list_item > .photogallery_list_item_img_cont > .thumb {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: auto;
}

.photogallery_list_item > .photogallery_list_item_black_grad {
    position: absolute;
    display: block;
    left: 0; bottom: 0; width: 100%; height: 60%;
    background: url(img/black_gradient.png) no-repeat;
    background-size: 100% 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    opacity: 1;
    z-index: 4;

    transition: opacity 0.3s;
}

.photogallery_list_item:hover > .photogallery_list_item_black_grad {
    opacity: 0;
    z-index: 5;
}

.photogallery_list_item > .photogallery_list_item_title {
    position: absolute;
    display: block;
    left: 0; bottom: 0; width: 100%;
    padding: 20px 10px;
    box-sizing: border-box;
    background: rgba(108, 214, 70, 0.0);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;

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

    text-align: center;
    z-index: 6;

    transition: background 0.3s;
}

@media (max-width:550px) { 
    .photogallery_list_item > .photogallery_list_item_title {
        font-size: 13px;
        line-height: 16px;
        padding: 20px 6px;
    }
}


.photogallery_list_item:hover > .photogallery_list_item_title {
    background: rgba(108, 214, 70, 0.6);
}

.photogallery_list_item_frame1 {
    position: absolute;
    left: 3px; top: 3px; right: -2px; bottom: -2px;
    border-radius: 4px;
    /*border: 1px solid rgba(0,0,0,0.3);*/
    border-right: 1px solid rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(0,0,0,0.3);
    background: #FFFFFF;
    box-sizing: border-box;
    z-index: 1;
}

.photogallery_list_item_frame2 {
    position: absolute;
    left: 7px; top: 7px; right: -4px; bottom: -4px;
    border-radius: 4px;
    /*border: 1px solid rgba(0,0,0,0.3);*/
    border-right: 1px solid rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(0,0,0,0.3);
    background: #FFFFFF;
    box-sizing: border-box;
    z-index: 0;
}

.photogallery_list_item > .photogallery_list_item_count {
    position: absolute;
    right: 6px; top: 6px;
    z-index: 999;
    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;
}


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

