@charset "UTF-8";
/*
 * jQuery File Upload Plugin CSS Example 8.0
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */

body {
  padding-top: 60px;
}

.ng-cloak {
  display: none;
}

#dropzone {
    text-align: center;
    font-weight: bold;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
#dropzone.in {
    /*** WHEN DRAG IN BROWSER ***/
	cursor: no-drop;
}
#dropzone.hover {
	/*** WHEN DRAG IN DROPZONE ***/
    background-color: #5bb75b;
}
	#dropzone.hover h3 {
		color: #FFFFFF;	
	}