/*****************************
 * file uploader for magicCms
 * @author BROTTIER Erwan - erwan@addictive-web.com - http://www.addictive-web.com 
 * @version 1.1
 * @date October 10, 2016
 * @category framework
 * @copyright (c) 2011-2015 contact@addictive-web.com (www.addictive-web.com)
 * @license CC Attribution-Share Alike 3.0 - http://creativecommons.org/licenses/by-sa/3.0/
 */
.drop-zone {
}
.drop-zone .widget {
    border: 2px dashed rgba(0,0,0,.3);
    margin-left: -2px;
    margin-top: -2px;    
    border-radius: 20px;
    font-family: Arial;
    text-align: center;
    position: relative;
	height: 100%;
	width: 100%;
    font-size: 20px;
    color: rgba(0,0,0,.3);
}
.drop-zone input {
    position: absolute;
    cursor: pointer;
    left: 0px;
    top: 0px;
    z-index:10;
    opacity:0 !important;
}
.drop-zone.mouse-over .widget {
    border: 2px solid rgba(0,0,0,.5);
    color: rgba(0,0,0,.5);
}
.drop-zone .description{
    color: #000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.drop-zone .clickHere {
    position: absolute;
    cursor: pointer;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: 20px;
    line-height: 26px;
    color: white;
    font-size: 12px;
    width: 100px;
    height: 26px;
    border-radius: 4px;
    background-color: #3b85c3;
}
.drop-zone .clickHere:hover {
    background-color: #4499DD;
}
