@import url("fontes.css");
:root {
	--cor1: #7aa9ff;
	--cor1-h: #5c95ff;
	--cor2: #3c71ad;
	--cor2-h: #3065a1;
	--cor3: #ebf3fc;
}
* {
	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);
}
#alerta {
	z-index: 11;
}
#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 #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;
}
#tr {
	width: 100%;
	float: left;
	display: flex;
	align-items: flex-end;
}
#pagina #box #corpo #formsPagina {
	width: 100%;
	padding: 0 5px 10px;
	float: left;
	display: block;
}
#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;
}
#tr #td #anexos {
	width: 100%;
	margin: 10px 0 10px;
	padding: 0 10px;
	float: left;
	display: block;
	clear: both;
	font: 500 16px/18px 'Montserrat', Sans-serif;
	text-align: justify;
	color: #333333;
}
#tr #td #anexos #anexo {
	width: 100%;
	margin: 5px 0 0;
	padding: 0;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	clear: both;
	border: 1px solid #dddddd;
	background-color: #eeeeee;
	cursor: pointer;
	-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;
}
#tr #td #anexos #anexo:hover {
	opacity: 0.9;
}
#tr #td #anexos #anexo i {
	width: calc(100% - 180px);
	height: 100%;
	margin: 0;
	padding: 0 10px;
	float: left;
	display: block;
	font: 500 13px/13px 'Montserrat', Sans-serif;
	text-align: left;
	text-overflow: ellipsis;
	color: #333333;
}
#tr #td #anexos #anexo span {
	width: 180px;
	height: 100%;
	margin: 0;
	padding: 12px 0;
	float: right;
	display: block;
	font: 500 13px/13px 'Montserrat', Sans-serif;
	text-align: center;
	color: #ffffff;
	background-color: #3065a1;
}
#site {
	width: 100%;
	height: 100%;
	float: left;
	position: relative;
	display: block;
}
#topo {
	width: 100%;
	height: 80px;
	margin: 0;
	padding: 0;
	top: 0;
	float: left;
	display: block;
	position: sticky;
	clear: both;
	border-bottom: 3px solid #28498C;
	background-color: #dddddd;
	background-image: url(../imagens/template/logo.svg);
	background-position: center;
	background-size: auto 80%;
	background-repeat: no-repeat;
}
#corpo {
	width: 100%;
	height: calc(100% - 160px);
	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;
	display: block;
	border-radius: 5px;
	background-color: #ffffff;
}
#corpo #conteudo img {
	width: calc(100% + 20px);
	height: auto;
	margin: -10px -10px 0;
	float: left;
	clear: both;
}
#corpo #conteudo .sobre {
	width: 100%;
	padding: 20px 20px 0;
	float: left;
	display: block;
	font: 400 18px/22px 'Montserrat', Sans-serif;
	text-align: justify;
	color: #333333;
}
#corpo #conteudo .sobre span {
	width: 100%;
	margin: 0 0 5px;
	float: left;
	display: block;
	font: 600 26px/26px 'Montserrat', Sans-serif;
	color: #333333;
}
#corpo #conteudo .data {
	width: 100%;
	padding: 25px 20px 0;
	float: left;
	display: block;
	font: 600 16px/16px 'Montserrat', Sans-serif;
	text-align: center;
	color: #333333;
}
#corpo #conteudo .botoes {
	width: 100%;
	margin: 30px 0 0;
	padding: 0;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
}
#corpo #conteudo .botoes button {
	margin: 0 20px 0 0;
	padding: 20px 30px 20px 60px;
	cursor: pointer;
	font: 400 20px/20px 'Montserrat', Sans-serif;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	outline: none;
	background-color: #7aa9ff;
	background-position: center left 20px;
	background-repeat: no-repeat;
	background-size: auto 24px;
	-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;
}
#corpo #conteudo .botoes button:last-child {
	margin: 0;
}
#corpo #conteudo .botoes button:hover {
	opacity: 0.9;
	scale: 1.05;
}
#corpo #conteudo .botoes button#inscricao {
	background-image: url(../imagens/template/icon_editar.svg);
}
#corpo #conteudo .botoes button#consulta {
	background-image: url(../imagens/template/icon_pesquisa.svg);
}
#corpo #coluna {
	width: 350px;
	height: calc(100% - 20px);
	margin: 10px 10px 10px 0;
	padding: 0;
	float: left;
	display: block;
	overflow: hidden;
	border-radius: 5px;
	background-color: #ffffff;
}
#corpo #coluna .titulo {
	width: 100%;
	height: 40px;
	margin: 0;
	padding: 10px 20px;
	float: left;
	display: flex;
	align-items: center;
	justify-content: start;
	clear: both;
	font: 600 15px/15px 'Montserrat', Sans-serif;
	color: #333333;
	border-bottom: 1px solid #cccccc;
}
#corpo #coluna .lista {
	width: 100%;
	height: calc(100% - 40px);
	margin: 0;
	padding: 10px;
	float: left;
	display: block;
	overflow-y: auto;
	clear: both;
}
#corpo #coluna .lista .link {
	width: 100%;
	margin: 0 0 10px;
	padding: 8px 5px 8px 40px;
	float: left;
	display: block;
	border: 1px solid #EBEBEB;
	border-radius: 3px;
	font: 500 13px/13px 'Montserrat', Sans-serif;
	text-transform: uppercase;
	color: #333333;
	cursor: pointer;
	background-color: #F8F8F8;
	background-image: url(../imagens/template/icon_pdf.svg);
	background-position: center left 10px;
	background-size: auto 24px;
	background-repeat: no-repeat;
	-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;
}
#corpo #coluna .lista .link:last-child {
	margin-bottom: 0;
}
#corpo #coluna .lista .link:hover {
	border-color: #7aa9ff;
	scale: 1.02;
	background-color: #ffffff;
}
#corpo #coluna .lista .link span {
	width: 100%;
	margin: 3px 0 0;
	float: left;
	display: block;
	font: 400 11px/11px 'Montserrat', Sans-serif;
	text-transform: none;
	color: #a4a4a4;
}
#rodape {
	width: 100%;
	height: 80px;
	margin: 0;
	padding: 0;
	float: left;
	display: flex;
	align-items: end;
	justify-content: center;
	clear: both;
	background-image: url(../imagens/template/logo_pmi.svg);
	background-position: top center;
	background-size: auto calc(100% - 20px);
	background-repeat: no-repeat;
}
#rodape .listra {
	width: 100%;
	height: 10px;
	margin: 0;
	padding: 0;
	float: left;
	display: block;
	clear: both;
	background-color: #dddddd;
	background-image: url(../imagens/template/listra.svg);
	background-position: bottom center;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
@media (min-width: 768px) and (max-width: 1024px) {
	body, #site {
		height: auto;
		min-height: 100%;
	}
	#site #corpo {
		margin: 0 0 80px;
		flex-direction: column;
		align-items: center;
	}
	#corpo #conteudo, #corpo #coluna {
		width: calc(100% - 20px);
		max-width: 900px;
		height: auto;
		margin: 10px;
	}
	#corpo #conteudo .botoes {
		margin: 30px 0;
	}
	#rodape {
		bottom: 0;
		position: absolute;
	}
}
@media (pointer:coarse) and (max-width: 768px), (max-width: 768px) {
	body, #site {
		height: auto;
		min-height: 100%;
	}
	#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 #corpo {

	}
	#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;
	}
}