body {
	background: #fff !important;
}

.body-doc {
    padding: 0px;
    padding-left: 70px;
    padding-top: 57px;
}

.glyphicon-refresh-animate {
	-animation: spin .7s infinite linear;
	-ms-animation: spin .7s infinite linear;
	-webkit-animation: spinw .7s infinite linear;
	-moz-animation: spinm .7s infinite linear;
}

.placeholder {
	float: left;
	display: block
}

.notificacao {
	position: absolute;
	bottom: 0;
	z-index: 100000;
}

div[id^='listagem']>div {
	background: #fff;
}

@keyframes spin {
	from {
		transform: scale(1) rotate(0deg);
	}

	to {
		transform: scale(1) rotate(360deg);
	}
}

@-webkit-keyframes spinw {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes spinm {
	from {
		-moz-transform: rotate(0deg);
	}

	to {
		-moz-transform: rotate(360deg);
	}
}

.material-switch>input[type="checkbox"] {
	display: none;
}

.material-switch>label {
	cursor: pointer;
	height: 0px;
	position: relative;
	width: 40px;
}

.material-switch>label::before {
	background: rgb(0, 0, 0);
	box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	content: '';
	height: 16px;
	margin-top: -8px;
	position: absolute;
	opacity: 0.3;
	transition: all 0.4s ease-in-out;
	width: 40px;
}

.material-switch>label::after {
	background: rgb(255, 255, 255);
	border-radius: 16px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	content: '';
	height: 24px;
	left: -4px;
	margin-top: -8px;
	position: absolute;
	top: -4px;
	transition: all 0.3s ease-in-out;
	width: 24px;
}

.material-switch>input[type="checkbox"]:checked+label::before {
	background: inherit;
	opacity: 0.5;
}

.material-switch>input[type="checkbox"]:checked+label::after {
	background: inherit;
	left: 20px;
}

input[type="file"] {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

div[id^="listagem_"]>div[id^="div_"]:nth-child(3n+1) {
	clear: both;
}

div[id^="listagem_"]>div[id^="div_"] {
	border-bottom: #ccc solid 1px;
	padding: 15px;
}


.solucao-oculta {
	display: none;
}

.solucao-oculta iframe {
	width: 100%;
	height: 500px;
}

#abrir-solucao {
	cursor: pointer;
}

/* SIDEBAR */

.sidebar {
	position: fixed;
	overflow: hidden;
	min-height: 100vh;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	width: 70px;
	z-index: 1;
	-webkit-transition: width 0.3s linear;
	transition: width 0.3s linear;
	-webkit-transform: translateZ(0) scale(1, 1);
	transform: translateZ(0) scale(1, 1);
	margin-top: 57px;
}

.sidebar>ul {
	margin: 5px 0;
}

.sidebar li {
	position: relative;
	display: block;
	width: 250px;
}

.sidebar li>a {
	position: relative;
	width: 255px;
	color: #8a8a8a;
	display: table;
	font-size: 16px;
	text-decoration: none;
	-webkit-transform: translateZ(0) scale(1, 1);
	transform: translateZ(0) scale(1, 1);
	-webkit-transition: all 0.15s linear;
	transition: all 0.15s linear;
}

.sidebar .span-sidebar {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	width: 180px;
}

.lista {
	text-transform: capitalize;
}

.sidebar li:hover a,
nav.sidebar li.active>a {
	color: #fff;
	background-color: #282828;
}

nav {
	-webkit-user-select: none;
	user-select: none;
	box-shadow: 0 0 10px #282828;
}

.sidebar .fa,
.sidebar .fas,
.sidebar .fab {
	position: relative;
	width: 60px;
	height: 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.collapse-ul .fa,
.collapse-ul .fas,
.collapse-ul .fab {
	width: 60px;
	height: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sidebar:hover,
nav.sidebar.expanded {
	width: 250px;
	overflow: hidden;
	position: fixed;
}

/* CKEditor adaptação altura*/

.ck.ck-content {
	min-height: 30vh;
	max-height: 60vh;
	overflow-y: auto;
}

/* Banner - Preview */

#image-preview {
	width: 100%;
	height: 400px;
	background: #ebebeb;
	border: 2px dashed #c8c8c8;
}

/* Banner - Listagem*/

.img_banner_listagem {
	height: 50px;
	max-width: 80%;
}

/* MOBILE */
@media screen and (min-width:250px) and (max-width:575px) {
	.body-doc {
		padding: 89px 0px 0px 0px;
	}
}