@import url("fontes.css");
:root {
	--cor1: #2B60A6;
	--cor1-h: #275590;
	--cor2: #7aa9ff;
	--cor2-h: #5c95ff;
	--cor3: #3FB040;
	--cor3-h: #338c35;
	--cor3-h2: #4bcf4d;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', 'Sans-serif';
	outline-color: var(--cor1);
}
html, body {
	width: 100%;
	height: 100%;
	background-color: #eeeeee;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
a, input {
	text-transform: none;
	text-decoration: none;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button, 
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}
::placeholder {
	color: #c0c0c0;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #c0c0c0;
}
::-ms-input-placeholder {
	color: #c0c0c0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover {
	-webkit-text-fill-color: #666666;
	-webkit-box-shadow: 0 0 0 30px white inset, 0 0 0 1px var(--cor1) !important;
	box-shadow: 0 0 0 30px white inset !important;
}
input:-webkit-autofill:focus, input:-webkit-autofill:active {
	-webkit-text-fill-color: #333333;
	-webkit-box-shadow: 0 0 0 30px white inset, 0 0 0 1px var(--cor1) !important;
	box-shadow: 0 0 0 30px white inset, 0 0 0 1px var(--cor1) !important;
}
#carregando {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: none;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 11;
	backdrop-filter: blur(3px);
	background-color: rgba(0,0,0,0.5);
}
#carregando::before {
	content: '';
	width: 80px;
	height: 80px;
	margin: 0;
	padding: 0;
	position: fixed;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
	box-sizing: border-box;
	border: 10px solid #dddddd;
	border-top-color: var(--cor1);
	border-radius: 50%;
	animation: spin 1s infinite linear;
}
@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}
#pagina, #alerta {
	width: 100%;
	height: 100%;
	padding: 20px;
	top: 0;
	left: 0;
	position: fixed;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	backdrop-filter: blur(3px);
	background-color: rgba(0,0,0,0.5);
}
#pagina #box {
	width: 100%;
	max-width: 1366px;
	max-height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
#pagina.popup #box {
	width: auto;
}
#pagina #box #titulo {
	width: 100%;
	height: 50px;
	padding: 0 10px;
	min-height: 50px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-bottom: 1px solid #e4e4e4;
	font: 600 18px/18px 'Montserrat', Sans-serif;
	color: #333333;
	border-radius: 5px 5px 0 0;
	background-color: #eeeeee;
}
#pagina #box #titulo .fechar {
	width: 50px;
	height: 100%;
	top: 0;
	right: 0;
	position: absolute;
	border-left: 1px solid #e4e4e4;
	cursor: pointer;
	background-position: center;
	background-size: auto 16px;
	background-repeat: no-repeat;
	background-image: url(../imagens/template/icon_fechar.svg);
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
#pagina #box #titulo .fechar:hover {
	background-color: #f5f5f5;
}
#pagina #box #corpo {
	width: 100%;
	height: calc(100% - 100px);
	min-height: calc(100% - 100px);
	position: relative;
	display: block;
	overflow: hidden;
	overflow-y: auto;
	background-color: #ffffff;
}
#pagina #box #corpo #formsPagina {
	width: 100%;
	padding: 0 5px 10px;
	float: left;
	display: block;
}
#pagina #box #acoes {
	width: 100%;
	height: 50px;
	min-height: 50px;
	position: relative;
	display: flex;
	align-items: space-around;
	justify-content: center;
	overflow: hidden;
	border-radius: 0 0 5px 5px;
}
#pagina #box #acoes button {
	flex:1;
	height: 100%;
	margin: 0;
	padding: 0;
	float: left;
	display: block;
	border: 0;
	border-left: 1px solid var(--cor1-h);
	cursor: pointer;
	font: 500 16px/16px 'Montserrat', Sans-serif;
	color: #ffffff;
	background-color: var(--cor2);
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
#pagina #box #acoes button:first-child {
	border: 0;
}
#pagina #box #acoes button:hover {
	background-color: var(--cor2-h);
}
#pagina #box #acoes button.ok {
	border-color: #57CFA1;
	background-color: #4DC798;
}
#pagina #box #acoes button.ok:hover {
	background-color: #57CFA1;
}
#pagina #box #acoes button.cancelar {
	border-color: #F77575;
	background-color: #f55f5f;
}
#pagina #box #acoes button.cancelar:hover {
	background-color: #F77575;
}
#alerta {
	z-index: 11;
	overflow: hidden;
	overflow-y: auto;
}
#alerta #box {
	width: 400px;
	max-width: 100%;
	padding: 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
	background-color: #ffffff;
}
#alerta #box #icone {
	width: 80px;
	height: 80px;
	position: relative;
	display: block;
	border: 3px solid #9FC8EC;
	border-radius: 50%;
}
#alerta #box #icone::before {
	content: '';
	height: 4px;
	width: 4px;
	top: 20px;
	left: calc(50% - 2px);
	position: absolute;
	background-color: #3186D6;
}
#alerta #box #icone::after {
	content: '';
	height: 26px;
	width: 4px;
	bottom: 20px;
	left: calc(50% - 2px);
	position: absolute;
	background-color: #3186D6;
}
#alerta #box #icone.aviso {
	border-color: #FFDA77;
}
#alerta #box #icone.aviso::before {
	top: auto;
	bottom: 20px;
	background-color: #ffbb00;
}
#alerta #box #icone.aviso::after {
	top: 20px;
	bottom: auto;
	background-color: #ffbb00;
}
#alerta #box #icone.sucesso {
	border-color: #A8E3CD;
}
#alerta #box #icone.sucesso::before {
	height: 20px;
	top: auto;
	left: 24px;
	bottom: 18px;
	border-radius: 2px;
	transform: rotate(315deg);
	background-color: #4DC798;
}
#alerta #box #icone.sucesso::after {
	height: 40px;
	top: auto;
	left: 43px;
	bottom: 16px;
	border-radius: 2px;
	transform: rotate(45deg);
	background-color: #4DC798;
}
#alerta #box #icone.erro {
	border-color: #FBBDBD;
}
#alerta #box #icone.erro::before {
	height: 36px;
	top: auto;
	left: calc(50% - 2px);
	bottom: calc(50% - 18px);
	border-radius: 2px;
	transform: rotate(315deg);
	background-color: #f55f5f;
}
#alerta #box #icone.erro::after {
	height: 36px;
	top: auto;
	left: auto;
	right: calc(50% - 2px);
	bottom: calc(50% - 18px);
	border-radius: 2px;
	transform: rotate(45deg);
	background-color: #f55f5f;
}
#alerta #box #icone.conteudo {
	width: 0;
	height: 0;
	display: none;
}
#alerta #box #titulo {
	width: 100%;
	margin: 16px 0 0;
	font: 600 24px/30px 'Montserrat', Sans-serif;
	text-align: center;
	color: #444444;
}
#alerta #box .fechar {
	width: 30px;
	height: 30px;
	top: 10px;
	right: 10px;
	position: absolute;
	border-radius: 50%;
	cursor: pointer;
	background-size: 14px auto;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../imagens/template/icon_fechar.svg);
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
#alerta #box .fechar:hover {
	background-color: #f8f8f8;
}
#alerta #box #corpo {
	width: 100%;
	margin: 14px 0 0;
	font: 400 16px/20px 'Montserrat', Sans-serif;
	text-align: center;
	color: #444444;
}
#alerta #box #acoes {
	width: 100%;
	margin: 20px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#alerta #box #acoes button {
	height: 40px;
	min-width: 100px;
	margin: 0 0 0 10px;
	padding: 0 16px;
	font: 400 14px/14px 'Montserrat', Sans-serif;
	color: #ffffff;
	border: 0;
	border-radius: 3px;
	cursor: pointer;
	background-color: #3186D6;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
#alerta #box #acoes button:first-child {
	margin: 0;
}
#alerta #box #acoes button:hover {
	background-color: #589EDE;
}
#alerta #box #acoes button.neutro {
	color: #444444;
	background-color: #eeeeee;
}
#alerta #box #acoes button.neutro:hover {
	background-color: #f2f2f2;
}
#alerta #box #acoes button.cancelar {
	background-color: #f55f5f;
}
#alerta #box #acoes button.cancelar:hover {
	background-color: #F77575;
}
.tooltip {
	width: 0px;
	height: 0px;
	margin: 0;
	padding: 0;
	display: none;
	opacity: 0;
	position: absolute;
	z-index: 9999;
}
[tooltip-data]::before, [tooltip-data]::after {
	left: 50%;
	bottom: calc(100% + 3px);
	position: absolute;
	pointer-events: none;
	transition: 0.2s;
	will-change: transform;
}
[tooltip-data]::after {
	left: calc(50% - 5px);
}
[tooltip-data]::before {
	content: attr(tooltip-data);
	width: max-content;
	width: -moz-max-content;
	min-width: 50px;
	max-width: 300px;
	padding: 8px 10px;
	border-radius: 3px;
	font: 500 13px/18px 'Montserrat', sans-serif;
	color: #666666;
	text-align: center;
	white-space: pre-wrap;
	transform: translate(-50%, -5px) scale(1);
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,0.4);
	-moz-box-shadow: 0 0 6px 0 rgba(0,0,0,0.4);
	box-shadow: 0 0 6px 0 rgba(0,0,0,0.4);
}
[tooltip-data]::after {
	content: '';
	border-style: solid;
	border-width: 5px 5px 0px 5px;
	border-color: #FFFFFF transparent transparent transparent;
}
[tooltip-position="left"]::before {
	left: auto;
	right: calc(100% + 3px);
	bottom: 50%;
	transform: translate(-5px, 50%) scale(1);
}
[tooltip-position="left"]::after {
	left: auto;
	right: calc(100% + 3px);
	bottom: 50%;
	border-width: 5px 0px 5px 5px;
	border-color: transparent transparent transparent #ffffff;
	transform: translateY(50%) scaleX(1);
}
[tooltip-position="right"]::before {
	left: calc(100% + 3px);
	bottom: 50%;
	transform: translate(5px, 50%) scale(1);
}
[tooltip-position="right"]::after {
	left: calc(100% + 3px);
	bottom: 50%;
	border-width: 5px 5px 5px 0px;
	border-color: transparent #ffffff transparent transparent;
	transform: translateY(50%) scaleX(1);
}
[tooltip-position="bottom"]::before {
	top: calc(100% + 13px);
	bottom: auto;
}
[tooltip-position="bottom"]::after {
	top: calc(100% + 3px);
	bottom: auto;
	border-width: 0px 5px 5px 5px;
	border-color: transparent transparent #ffffff transparent;
}
#checkbox {
	margin: 5px 10px 5px 0;
	padding: 0;
	display: flex;
	float: left;
	align-items: center;
	position: relative;
	font: 500 15px/15px 'Montserrat', sans-serif;
	z-index: 1;
}
#checkbox label {
	margin: 1px 0 0;
}
#checkbox input {
	display: none;
}
#checkbox input + label {
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	margin: 0 5px 0 0;
	padding: 0;
	display: block;
	float: left;
	position: relative;
	border: 1px solid #bbbbbb;
	box-sizing: border-box;
	cursor: pointer;
	border-radius: 50%;
	background-color: #ffffff;
	transform: translate3d(0, 0, 0);
	transform: scale(1);
	transition: all 0.2s ease;
}
#checkbox input + label svg {
	width: 12px;
	height: 9px;
	margin: 0;
	padding: 0;
	top: 5px;
	left: 3px;
	position: absolute;
	z-index: 1;
	fill: none;
	stroke: #ffffff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 16px;
	stroke-dashoffset: 16px;
	transition: all 0.3s ease;
	transition-delay: 0.1s;
	transform: translate3d(0, 0, 0);
}
#checkbox input + label svg polyline {
	points: polyline("1 5 4 8 11 1");
}
#checkbox input + label::before {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	transform: scale(1);
	opacity: 1;
	border-radius: 50%;
	transition-delay: 0.2s;
}
#checkbox input + label::after {
	content: '';
	height: 1px;
	width: 100%;
	top: 8px;
	left: 0;
	position: absolute;
	background-color: #B9B8C3;
	transform-origin: 0 0;
	transform: scaleX(0);
}
#checkbox input + label:hover {
	border-color: var(--cor1);
}
#checkbox input:checked + label {
	border-color: var(--cor1);
	background-color: var(--cor1);
	animation: check 0.4s ease;
}
#checkbox input:checked + label svg {
	stroke-dashoffset: 0;
}
#checkbox input:checked + label::before {
	transform: scale(2.2);
	opacity: 0;
	visibility: hidden;
	background-color: var(--cor1);
	transition: all 0.3s ease-in-out, background-color 0s;
}
#checkbox input:disabled + label {
	border-color: #cccccc;
	cursor: default;
	background-color: #dddddd;
}
@keyframes check {
	50% {
		transform: scale(1.2);
	}
}
#tr {
	width: 100%;
	float: left;
	display: flex;
	align-items: flex-end;
}
#tr #td {
	width: 100%;
}
#tr #td #th {
	width: 100%;
	padding: 10px 5px;
	float: left;
	display: block;
	border-bottom: 1px solid #eeeeee;
	font: 500 18px/18px 'Montserrat', Sans-serif;
	color: var(--cor2-h);
}
#tr #td.col-1 {width: 5%;min-width: 5%;max-width: 5%;}
#tr #td.col-2 {width: 10%;min-width: 10%;max-width: 10%;}
#tr #td.col-3 {width: 15%;min-width: 15%;max-width: 15%;}
#tr #td.col-4 {width: 20%;min-width: 20%;max-width: 20%;}
#tr #td.col-5 {width: 25%;min-width: 25%;max-width: 25%;}
#tr #td.col-6 {width: 30%;min-width: 30%;max-width: 30%;}
#tr #td.col-7 {width: 35%;min-width: 35%;max-width: 35%;}
#tr #td.col-8 {width: 40%;min-width: 40%;max-width: 40%;}
#tr #td.col-9 {width: 45%;min-width: 45%;max-width: 45%;}
#tr #td.col-10 {width: 50%;min-width: 50%;max-width: 50%;}
#tr #td.col-11 {width: 55%;min-width: 55%;max-width: 55%;}
#tr #td.col-12 {width: 60%;min-width: 60%;max-width: 60%;}
#tr #td.col-13 {width: 65%;min-width: 65%;max-width: 65%;}
#tr #td.col-14 {width: 70%;min-width: 70%;max-width: 70%;}
#tr #td.col-15 {width: 75%;min-width: 75%;max-width: 75%;}
#tr #td.col-16 {width: 80%;min-width: 80%;max-width: 80%;}
#tr #td.col-17 {width: 85%;min-width: 85%;max-width: 85%;}
#tr #td.col-18 {width: 90%;min-width: 90%;max-width: 90%;}
#tr #td.col-19 {width: 95%;min-width: 95%;max-width: 95%;}
#tr #td.col-20 {width: 100%;min-width: 100%;max-width: 100%;}
#tr #td #input, #tr #td #tr #td #input {
	width:100%;
	margin:10px 0 0;
	padding:0 10px 0 0;
	position:relative;
	display:flex;
	flex-flow:column-reverse;
}
#tr #td:first-child #input, #tr #td #tr #td:first-child #input {
	padding:0 10px;
}
#tr #td #input input, #tr #td #input select, #tr #td #input textarea {
	width: 100%;
	height: 54px;
	padding: 24px 10px 8px;
	position: relative;
	font: 600 16px/16px 'Montserrat', Sans-serif;
	color: #787878;
	border: 1px solid #E5E2E2;
	outline: 0;
	border-radius: 3px;
	z-index: 2;
	background-color: transparent;
	-webkit-appearance: none;
	transition: all 0.15s;
	touch-action: manipulation;
}
#tr #td #input textarea {
	width:100%;
	height:auto;
}
#tr #td #input select {
	padding:24px 20px 8px 10px;
	background-size:auto 11px;
	background-position:center right 6px;
	background-repeat:no-repeat;
	background-image:url(../imagens/template/icon_select.svg);
}
#tr #td #input input:hover, #tr #td #input select:hover {
	color:#666666;
	border-color:#999999;
}
#tr #td #input input:focus, #tr #td #input select:focus {
	color:#444444;
	border-color:#4A90E2;
}
#tr #td #input select:focus {
	background-image:url(../imagens/template/icon_select_h.svg);
}
#tr #td #input label {
	margin:8px 0 -19px 10px;
	max-width:66%;
	font:500 11px/11px 'Montserrat', Sans-serif;
	text-transform:uppercase;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	transform-origin:left bottom;
	cursor:text;
	z-index:1;
	transition:all 0.15s;
	touch-action:manipulation;
}
#tr #td #input input:placeholder-shown + label {
	color:#999999;
	transform:translate(0, 16px) scale(1.33);
}
#tr #td #input input::-webkit-input-placeholder {
	opacity:0;
	font:400 16px/16px 'Montserrat', Sans-serif;
	transition:inherit;
}
#tr #td #input input:focus::-webkit-input-placeholder {
	opacity:1;
}
#tr #td #input input:not(:placeholder-shown) + label, #tr #td #input input:focus + label {
	color:#A3A3A3;
	transform:translate(0, 0) scale(1);
}
#tr #td #input input:focus + label {
	color:#4A90E2;
}
#tr #td #input select:invalid + label {
	color:#999999;
	transform:translate(0, 16px) scale(1.33);
}
#tr #td #input select:valid + label {
	color:#A3A3A3;
	transform:translate(0, 0) scale(1);
}
#tr #td #input select:focus + label {
	color:#4A90E2;
}
#tr #td #input select + label:hover {
	cursor:default;
}
#site {
	width: 100%;
	height: 100%;
	float: left;
	position: relative;
	display: block;
}
#topo {
	width: 100%;
	height: 60px;
	margin: 0;
	padding: 0;
	top: 0;
	float: left;
	display: block;
	position: sticky;
	clear: both;
	background-color: rgba(0,0,0,0.6);
	background-image: url(../imagens/template/logo_color_branco.svg);
	background-position: center left 10px;
	background-size: auto 70%;
	background-repeat: no-repeat;
}
#topo #menu_topo {
	width: 100%;
	height: 100%;
	float: right;
	display: block;
}
#topo #menu_topo .submenu {
	height: 100%;
	float: right;
	display: block;
	position: relative;
}
#topo #menu_topo .submenu a {
	height: 60px;
	margin: 0;
	padding: 22px 10px 0;
	float: left;
	display: block;
	position: relative;
	font: 500 14px/14px 'Montserrat', Sans-serif;
	color: #dfdfdf;
	background-color: transparent;
}
#topo #menu_topo .submenu a:hover {
	color: #ffffff;
	box-shadow: inset 0 -4px 0 0 var(--cor1), 0 4px 0 0 var(--cor1);
}
#topo #menu_topo .submenu a:last-child {
	margin-right: 30px;
}
#topo #menu_topo .submenu button, #topo #menu_topo .submenu a.login {
	height: 35px;
	margin: 10.5px 10px 0 0;
	padding: 0 15px;
	float: right;
	display: flex;
	align-items: center;
	justify-content: center;
	font: 400 13px/13px 'Montserrat', Sans-serif;
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 20px;
	background-color: transparent;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#topo #menu_topo .submenu button.orcamento {
	border-color: var(--cor3);
	background-color: var(--cor3);
}
#topo #menu_topo .submenu button.orcamento:hover {
	border-color: var(--cor3-h2);
	background-color: var(--cor3-h2);
}
#topo #menu_topo .submenu a.login:hover {
	border-color: var(--cor1);
	background-color: var(--cor1);
	box-shadow: none;
}
#site.login {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
}
#site #login {
	width: 100%;
	max-width: 360px;
	padding: 20px;
	border-radius: 3px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
	background-color: #ffffff;
}
#site #login .logo {
	width: calc(100% + 40px);
	height: 100px;
	margin: 0 -20px 20px;
	padding: 10px 0 30px;
	float: left;
	display: block;
	position: relative;
	border-bottom: 1px solid #dddddd;
}
#site #login .logo .inicio {
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 0;
	bottom: -20px;
	left: calc(50% - 20px);
	display: block;
	position: absolute;
	border: 1px solid #dddddd;
	border-radius: 50%;
	background-color: #ffffff;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.15);
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#site #login .logo .inicio:hover {
	scale: 1.1;
}
#site #login .logo .inicio::before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	background-color: var(--cor1);
	-webkit-mask-position: center;
	-webkit-mask-size: 20px auto;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-image: url(../imagens/template/icon_inicio.svg);
	mask-position: center;
	mask-size: 20px auto;
	mask-repeat: no-repeat;
	mask-image: url(../imagens/template/icon_inicio.svg);
}
#site #login .logo::before {
	content: "";
	width: 100%;
	height: 100%;
	float: left;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../imagens/template/logo.svg);
}
#login #input {
	width: 100%;
	margin: 0 0 10px;
	float: left;
	display: block;
	position: relative;
}
#login #input label {
	width: 100%;
	margin: 0 0 5px;
	padding: 0;
	float: left;
	display: block;
	clear: both;
	font: 500 16px/16px 'Montserrat', Sans-serif;
	color: #333333;
}
#login #input input[type="text"], #login #input input[type="email"], #login #input input[type="password"] {
	width: 100%;
	height: 42px;
	margin: 0;
	padding: 10px;
	float: left;
	display: block;
	clear: both;
	font: 400 16px/16px 'Montserrat', Sans-serif;
	color: #666666;
	border: 1px solid #bbbbbb;
	outline: none;
	box-shadow: 0 0 0 0 #7aa9ff;
	background-color: #ffffff;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#login #input input[type="text"]:hover, #login #input input[type="email"]:hover, #login #input input[type="password"]:hover {
	border-color: #999999;
}
#login #input input[type="text"]:focus, #login #input input[type="email"]:focus, #login #input input[type="password"]:focus {
	color: #333333;
	border-color: var(--cor1);
	box-shadow: 0 0 0 1px var(--cor1);
}
#login #input #versenha {
	width: 41px;
	height: 40px;
	margin: 0;
	padding: 0;
	right: 1px;
	bottom: 1px;
	display: block;
	position: absolute;
	z-index: 1;
	border-left: 1px solid #dddddd;
	cursor: pointer;
	background-color: #f8f8f8;
}
#login #input #versenha::before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	background-color: #999999;
	-webkit-mask-position: center;
	-webkit-mask-size: 20px auto;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-image: url(../imagens/template/icon_versenha.svg);
	mask-position: center;
	mask-size: 20px auto;
	mask-repeat: no-repeat;
	mask-image: url(../imagens/template/icon_versenha.svg);
}
#login #input #versenha.ativo::before {
	background-color: var(--cor1);
	-webkit-mask-image: url(../imagens/template/icon_versenha_h.svg);
	mask-image: url(../imagens/template/icon_versenha_h.svg);
}
#login #input #versenha:hover {
	background-color: #ffffff;
}
#acao {
	width: 100%;
	margin: 0;
	padding: 14px 10px;
	border: 0;
	font: 400 16px/16px 'Montserrat', Sans-serif;
	color: #ffffff;
	cursor: pointer;
	border-radius: 3px;
	background-color: var(--cor1);
}
#acao:hover {
	background-color: var(--cor1-h);
}
#corpo {
	width: 100%;
	height: calc(100% - 60px);
	margin: 0;
	padding: 0;
	float: left;
	display: flex;
	align-items: start;
	justify-content: center;
}
#corpo #conteudo {
	width: calc(100% - 20px);
	max-width: 900px;
	height: calc(100% - 20px);
	margin: 10px;
	padding: 10px;
	overflow: hidden;
	overflow-y: auto;
	float: left;
	border-radius: 5px;
}
@media (min-width: 768px) and (max-width: 1024px) {

}
@media (pointer:coarse) and (max-width: 1024px), (max-width: 1024px) {
	body, #site {
		height: auto;
		min-height: 100%;
	}
	#topo {
		height: 50px;
		background-position: center;
		background-size: auto 70%;
	}
	#topo #menu_topo {
		width: 50px;
		height: 50px;
		top: 0;
		left: 0;
		position: fixed;
		z-index: 3;
		overflow: visible;
		border-right: 1px solid rgba(255,255,255,0.1);
	}
	#topo #menu_topo .menu_mobile {
		width: 100%;
		height: 100%;
		float: left;
		display: block;
		position: relative;
		-moz-transition: all 0.1s ease-in-out;
		-webkit-transition: all 0.1s ease-in-out;
		-ms-transition: all 0.1s ease-in-out;
		-o-transition: all 0.1s ease-in-out;
		transition: all 0.1s ease-in-out;
	}
	#topo #menu_topo .menu_mobile::before {
		content: '';
		width: 100%;
		height: calc(100% - 50px);
		top: 50px;
		left: 0;
		position: fixed;
		display: block;
		visibility: hidden;
		opacity: 0;
		z-index: 2;
		background-color: rgba(0,0,0,0.5);
		-moz-transition: all 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	#topo #menu_topo .menu_mobile::after {
		content: '';
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		position: absolute;
		display: block;
		background-color: #ffffff;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-size: auto 18px;
		-webkit-mask-image: url(../imagens/template/icon_menu.svg);
		mask-repeat: no-repeat;
		mask-position: center;
		mask-size: auto 18px;
		mask-image: url(../imagens/template/icon_menu.svg);
	}
	#topo #menu_topo .submenu {
		width: 80%;
		max-width: 250px;
		height: calc(100% - 50px);
		top: 50px;
		left: -100%;
		position: fixed;
		display: block;
		visibility: hidden;
		opacity: 0;
		overflow: hidden;
		overflow-y: auto;
		z-index: 3;
		background-color: rgba(0,0,0,0.6);
		-moz-transition: all 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	#topo #menu_topo #menu_mobile:checked + .menu_mobile {
		background-color: rgba(0,0,0,0.5);
	}
	#topo #menu_topo #menu_mobile:checked + .menu_mobile::before {
		visibility: visible;
		opacity: 1;
	}
	#topo #menu_topo #menu_mobile:checked ~ .submenu {
		left: 0;
		visibility: visible;
		opacity: 1;
	}
	#topo #menu_topo .submenu a {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 15px 10px;
		float: left;
		display: block;
		clear: both;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	#topo #menu_topo .submenu a:hover {
		box-shadow: inset -4px 0 0 0 var(--cor1);
	}
	#topo #menu_topo .submenu a.login, #topo #menu_topo .submenu button.orcamento {
		width: calc(100% - 20px);
		margin: 10px 0 0 10px;
		float: left;
	}
	#topo #menu_topo .submenu button.orcamento {
		margin: 10px 0 30px 10px;
	}
	#notificacao {
		width: calc(100% - 20px);
		max-width: auto;
		font: 400 14px/18px 'Montserrat', Sans-serif;
		text-align: center;
	}
	#pagina {
		padding: 0;
	}
	#pagina #box {
		width: 100%;
		height: 100%;
		min-width: 100%;
		min-height: 100%;
		max-width: 100%;
		max-height: 100%;
		overflow: hidden;
		overflow-y: auto;
		display: block;
		border-radius: 0;
	}
	#pagina #box #titulo {
		top: 0;
		position: sticky;
		font: 600 16px/16px 'Montserrat', Sans-serif;
		border-radius: 0;
		z-index: 3;
	}
	#pagina #box #acoes {
		flex:1;
		max-height: 50px;
		border-radius: 0;
		z-index: 2;
	}
	#tr {
		width: 100%;
		float: left;
		display: block;
	}
	#tr #td.col-1, #tr #td.col-2, #tr #td.col-3, #tr #td.col-4, 
	#tr #td.col-5, #tr #td.col-6, #tr #td.col-7, #tr #td.col-8, 
	#tr #td.col-9, #tr #td.col-10, #tr #td.col-11, #tr #td.col-12, 
	#tr #td.col-13, #tr #td.col-14, #tr #td.col-15, #tr #td.col-16, 
	#tr #td.col-17, #tr #td.col-18, #tr #td.col-19, #tr #td.col-20 {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}
	#tr #td #input, #tr #td #tr #td #input, #tr #td:first-child #input, #tr #td #tr #td:first-child #input {
		padding:0 5px;
	}
	#tr #td #anexos #anexo i {
		width: calc(100% - 150px);
		font: 500 12px/12px 'Montserrat', Sans-serif;
	}
	#tr #td #anexos #anexo span {
		width: 150px;
		font: 500 11px/11px 'Montserrat', Sans-serif;
	}
	#site #corpo {
		margin: 0 0 80px;
		display: block;
	}
	#corpo #conteudo, #corpo #coluna {
		width: calc(100% - 20px);
		height: auto;
		margin: 10px;
	}
	#corpo #conteudo .botoes {
		margin: 30px 0 0;
		display: block;
	}
	#corpo #conteudo .botoes button {
		width: 100%;
		float: left;
		clear: both;
		margin: 0 0 10px;
		font: 400 18px/18px 'Montserrat', Sans-serif;
		text-align: left;
	}
	#corpo #conteudo .botoes button:last-child {
		margin: 0;
	}
	#rodape {
		bottom: 0;
		position: absolute;
	}
}