
/*# sourceMappingURL=custom.min.css.map */


.zoom {      
    -webkit-transition: all 0.35s ease-in-out;    
    -moz-transition: all 0.35s ease-in-out;    
    transition: all 0.35s ease-in-out;     
    cursor: -webkit-zoom-in;      
    cursor: -moz-zoom-in;      
    cursor: zoom-in;  
    }     
    
    .zoom:hover,  
    .zoom:active,   
    .zoom:focus {
    /**adjust scale to desired size, 
    add browser prefixes**/
    -ms-transform: scale(5.5);    
    -moz-transform: scale(5.5);  
    -webkit-transform: scale(5.5);  
    -o-transform: scale(5.5);  
    transform: scale(5.5);    
    position:relative;      
    z-index:100;  
    }
    