@charset "UTF-8";
/* ------ CUSTOM STYLES */
.gallery {
	margin-top: 30px;
}

.imagebox {
    padding: 0px;
    position: relative;
    text-align: center;
    width: 100%;
}
    .imagebox img {
        opacity: 1;
        transition: 0.5s opacity;
    }

    .imagebox .imagebox-desc {
        background-color: rgba(0, 0, 0, 0.6);
        bottom: 0px;
        margin-bottom: 0px;
        color: white;
        font-size: 1.2em;
        left: 0px;
        padding: 10px 15px;
        position: absolute;
        transition: 0.5s padding;
        text-align: center;
        width: 100%;
    }

    .imagebox:hover img {
        opacity: 0.7;
    }

    .imagebox:hover .imagebox-desc {
        padding-bottom: 10%;
    }

/* ------ PRODUCT LIST */
.product-list-basic {
    list-style:none;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 0;
}
    .product-list-basic li{
        box-sizing:border-box;
        display: inline-block;

        text-align:left;
        font:normal 12px sans-serif;

        background-color:#ffffff;
        border:1px solid #dbe3e7;
        border-radius: 3px;
        box-shadow: 1px 3px 1px rgba(0, 0, 0, 0.08);

        margin: 0 12px 14px 0;
        padding: 25px;
    }

    /* --- product name */
    .product-list-basic h2 {
        display: block;
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow:ellipsis;
        max-width: 200px;
        margin:0;
    }
    .product-list-basic h2 a {
        text-decoration: none;
        color: #2b2b2b;
    }

    .product-list-basic p {
        display: block;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow:ellipsis;
        max-width: 275px;
        margin:0;
    }

    /* --- product image */
    .product-list-basic .product-photo {
        display: block;
        text-align: center;

        width: 275px;
        margin-bottom: 25px;
        padding: 20px 0;
        box-sizing: border-box;
    }

    /* --- product description */
    .product-list-basic .product-description {
        margin-top: 20px;

        color: #5d5d5d;
        font-size: 14px;
        line-height: 1.45;
        white-space: normal;

        max-width: 260px;
        margin-bottom: 20px;
    }

    /* --- product price */
    .product-list-basic .product-price {
        float: left;

        color:  #4e4e4e;
        font-weight: bold;
        font-size: 14px;

        padding-top: 6px;
        margin: 0;
        min-height: 20px;
    }

    /* -- product responsive */
    @media (max-width: 800px) {
        .product-list-basic .product-photo {
            width: 225px;
        }
        .product-list-basic .product-description {
            max-width: 225px;
        }
    }

/* ------ ARTICLE LIST */
.article-list-large {
    list-style:none;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    padding: 0;
}

    .article-list-large li {
        position: relative;
        display: inline-block;
        box-sizing:border-box;
        border-radius: 2px;
        box-shadow: 1px 3px 1px rgba(0, 0, 0, 0.08);
        border:1px solid #cfcfcf;
        background-color: #fff;

        font: bold 14px sans-serif;
        text-align: left;

        margin: 12px;
        max-width: 500px;
        padding: 30px;
    }

    .article-list-large li > a {
        display: block;
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .article-list-large li img {
        width: 100%;
    }


    .article-list-large li h2 {
        display: block;

        font-size: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;

        max-width: 400px;
        margin: 30px 0;

        color: #4a5054;
        font-weight: bold;
    }

    .article-list-large li p {
        line-height: 1.45;
        color: #6b7277;
        font-weight: normal;
        margin: 0;
    }

    .article-list-large li span {
        display: block;

        font-size: 16px;
        font-weight: bold;
        color: #5b5e60;

        margin: 30px 0 10px 0;
    }

    .article-list-large li div {
        position: absolute;
        background-color: #7ba0c0;
        box-shadow: 1px 3px 1px rgba(0, 0, 0, 0.15);

        color: #ffffff;
        font-size: 16px;

        top: 17px;
        right: 20px;
        padding: 7px 13px;
    }

    .article-list-large li div:after {
        position: absolute;
        content: '';
        border: 8px solid transparent;
        border-top-color: #7ba0c0;
        bottom: -14px;
        left: 9px;
    }

    @media (max-width: 600px) {
        .article-list-large li {
            max-width: 325px;
            padding: 20px 15px;
        }

        .article-list-large li h2 {
            font-size: 16px;
            margin: 24px 0 18px;
        }

        .article-list-large li p {
            font-size:13px;
        }

        .article-list-large li span {
            margin: 14px 0 0;
        }

        .article-list-large li div {
            top: 8px;
            right: 8px;
            padding: 5px 10px;
        }

}