/* CSS file for image transition */
/* BASE */

/* IMAGEZOOM */

.imagezoom {
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #FF0000;
}

.imagezoom img {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.imagezoom img:hover {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

/* #### */

/* #### */