@media only screen and (min-width: 750px) {

	.janelas::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}

	.janelas::-webkit-scrollbar-thumb {
		background-color: #CCCCCC;
		border-radius: 5px;
	}

	.janelas::-webkit-scrollbar-track {
		background-color: #FAFAFA;
	}

	.janelas::-webkit-scrollbar-button {
		display: none;
	}

}

.janelas {
	width: 100%;
	height: 100%;
	max-height: 100%;
	margin: 0px;
	padding: 25px;

	background-color: rgba(0,0,0,0.50);

	display: none;
	flex-direction: column;
	align-items: center;

	overflow-y: auto;
	position: fixed;
	z-index: 99994;
	top: 0px;
	left: 0px;
}

.janela {
	width: auto;
	max-width: 100%;
	height: auto;
	margin: auto;
	padding: 15px;

	background-color: #FAFAFA;
	box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.10);
	border-radius: 5px;

	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 15px;

	position: relative;
}

.janela > span {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 7.5px 15px;

	background-color: #333333;
	border-radius: 5px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.janela > span > h1 {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;

	display: flex;
	align-items: center;
	gap: 10px;

	text-align: start;
	font-weight: 700;
	font-size: 12px;
	color: #FAFAFA;
}

.janela > span > h1 > svg {
	font-size: 16px;
}

.janela > span > button {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px 7.5px;

	background-color: #333333;
	border: none;
	border-radius: 5px;

	font-size: 18px;
	color: #FAFAFA;

	z-index: 99995;
}

.janela > div {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;

	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.janela .carregando {
	width: 100%;
	max-width: 100%;
	height: 100%;
	margin: 0px;
	padding: 150px 25px;

	background-color: #FAFAFA;
	border-radius: 5px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.janela .carregando > h1 {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	font-size: 36px;
	color: #333333;
}

.janela .carregando > p {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	text-align: center;
	font-weight: 700;
	font-size: 12px;
	color: #333333;
}