.winVelo {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}
.mainWin {
	position: fixed;
	width: 100%;
	height: 100%;
	
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
	background: rgba(0, 0, 0, 0.7);
}
.visor {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.visor img {
	cursor: pointer;
	max-width: 96%;
	max-height: 96%;
	border: 6px solid #ECE966;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
	background: #ccc;
}
.win {
	display: flex;
	width: 94%;
	height: 90%;
	max-height: 90%;
	background: #fff;
	
	overflow: hidden;
	flex-direction: column;
	justify-content: space-between;
}
.win {
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.7);
}
.mainWin h2 {
	margin: 0;
	text-align: left;
	padding: 7px 5px;
	background: #252525;
	color: #fff;
	font-size: 0.9em;
}
.mainWin h2 i.fa-times {
	float: right;
	color: #999;
	font-size: 24px;
}
.mainWin h2 i.fa-times:hover {
	color: #f00;
	cursor: pointer;
}
.mainWin ul {
	text-align: left;
}
.winContent {
	padding: 15px;
	overflow-y: auto;
	height: 100%;
	box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.win .sup {
	margin: 0;
	padding: 5px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	background: #ddd;
}
.win .sup nav {
	margin: 0;
	flex-grow: 2;
	padding: 0;
}
.win .sup nav .breadcrumb {
	margin: 0;
	padding: 3px 5px;
	border-radius: 0;
	background: none;
}
.win .sup .winContent {
	flex-grow: 2;
}

.win .inf {
	padding: 5px 10px;
	text-align: center;
	background: #ddd;
	display: flex;
	justify-content: space-between;
}
.win .infLeft, .win .infLeft .minim {
	display: flex;
	align-items: center;
}
.win .infLeft button {
	margin-right: 5px;
}
.btn-upload {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	user-select: none;
}
input.upload {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
	filter: alpha(opacity=0);
    cursor: inherit;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    outline: none;
}

.miniWin {
	display: flex;

	width: 90%;
	max-width: 600px;

	background: #fff;
	overflow: hidden;
	flex-direction: column;
	justify-content: space-between;
}
.miniContent {
	padding: 15px;
}


/* WAIT */
.winWait {
	display: block;
	width: 70px;
	background: #fff;
	color: #666;
	text-align: center;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.7);
	border-radius: 20px;
	padding: 15px 0;
	font-size: 30px;
	line-height: 30px;
}
.waitCancelar {
	display: none;
	font-size: 10px;
	line-height: 12px;
	text-transform: uppercase;
	color: #428bca;
	cursor: pointer;
}
/* /WAIT */

@media (max-width: 991.98px) {
	.miniContent {
		padding: 5px;
	}
}