/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 22/05/2020, 10:43:27
    Author     : T.I
*/

.andes-card {
    margin-bottom: 80px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    /*width: 165px;*/
    height: 175px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 10px 16px 0 rgba(0,0,0,.1);
    box-shadow: 0 10px 16px 0 rgba(0,0,0,.1);
}
.andes-card .brand-container {
    text-decoration: none;
    width: 100%;
    color: #000000;
    font-size: 1.1em;
    font-weight: 400;
}
.andes-card .brand-container .image-brand-container {
    width: 100%;
}
.andes-card .brand-container .image-brand-container img {
    width: 90%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}
.andes-card .brand-container .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    line-height: 18px;
}
.andes-card .brand-container .name span {
    width: 90%;
}


/* Lazy Load Styles */
        .card-img {
/*            border-radius: 6px 6px 0 0;
            display: block;
            background: #fff center center no-repeat;
            background-size: cover;*/
            filter: blur(3px); /* blur the lowres image */
            display: block;
        }

        .card-img > img {
            width: 100%;
/*            height: 140px;
            min-height: 80px;
            max-height: 140px;*/
            object-fit: contain;
            display: block;
            opacity: 0; /* visually hide the img element */
        }

        .card-img.is-loaded {
            filter: none; /* remove the blur on fullres image */
            transition: filter 1s;
        }

        .zoom {
            font-size: 1.5rem;
            box-shadow: 0 0 3rem -1rem rgba(0,0,0,0.5);
            transition: transform 0.1s ease-in-out, box-shadow 0.1s;
        }
        .zoom:hover {
            transform: translateY(-0.5rem) scale(1.0125);
            box-shadow: 0 0.5em 3rem -1rem rgba(0,0,0,0.5);
        }

