﻿
#poiList {
    font-family: 'SourceSansPro', Arial, sans-serif;
    font-weight:normal;
    font-size: 18px;
    line-height:18px;
}

    #poiList > div {
        display: grid;
        grid-column-gap: 30px;
        grid-template-columns: repeat(auto-fit, 280px);
        padding-bottom:10px;
    }



.item_poi {
    display:inline-block;
    position: relative;
    /*width: 590px;*/
    width: 280px;
    height: 215px;
    color: #FFFFFF;
    background-color: #CD4335;
    margin-bottom: 30px;
    margin-right:30px;
}

.item_poi > a {
    color: #000000;
}

.item_poi > a:hover {
    color: #FFFFFF;
}

.item_poi > a:link {
    color: #000000;
}

.item_poi_thumb {
    left: 0px;
    top: 5px;
    width: 280px;
    margin: 0px;
    height: 210px;
    position: absolute;
    overflow:hidden;
}

    .item_poi_thumb > img {
        width: 100%;
        height: 100%;
        -moz-transition: 0.5s all ease;
        -webkit-transition: 0.5s all ease;
        -o-transition: 0.5s all ease;
        transition: 0.5s all ease;
    }

.item_poi_title {
    z-index: 100;
    left: 0px;
    right: 0px;
    top: 165px;
    margin: 0 auto;
    height: 50px;
    position: absolute;
    text-align: center;
    background-color: rgba(221,210,204,0.8);
    padding-left: 5px;
    padding-right: 5px;
}



    .item_poi_title > div {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.item_poi_icn_info {
    z-index: 200;
    background-image: url("../img/btn_info_reposo.png");
    background-size: 70px 70px;
    position: absolute;
    left: 105px;
    top: 50px;
    width: 70px;
    height: 70px;
}




.item_poi > a:hover .item_poi_title {
    background-color: #CD4335;
    color: #FFFFFF;
}

.item_poi > a:hover .item_poi_icn_info {
    background-image: url("../img/btn_info_select.png");
}

.item_poi > a:hover .item_poi_thumb > img {
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

@media screen and (max-width: 1300px) {

    #poiList {
        font-size: 18px;
        line-height:19px;
    }

        #poiList > div {
            display: grid;
            grid-column-gap: 30px;
            grid-template-columns: repeat(auto-fit, 264px);
        }

    .item_poi {
        width:264px;
        height: 203px;
    }

    .item_poi_thumb {
        width: 264px;
        height: 198px;
    }

    .item_poi_title {
        top: 153px;
        height: 50px;
    }

    .item_poi_icn_info {
        background-size: 70px 70px;
        left: 97px;
        top: 44px;
        width: 70px;
        height: 70px;
    }
}

@media screen and (max-width: 480px) {

    #poiList > div {
        display: block;
    }

    .item_poi {
        display: block;
    }


    .item_poi {
        margin-left:auto;
        margin-right:auto;
        left: 0px;
        right: 0px;
    }
}


