@font-face {
	font-family: roboto;
	src: url(../fontes/roboto.ttf);
}

* {
	font-family: roboto;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
}

body, html {
	width: 100vw;
	height: 100vh;
	overflow-x: hidden;
}
body {
	font-family: roboto;
	font-size: 14px;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.flex {
	display: flex;
}

#site {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

/* cabeçalho menu */
.cabecalho {
	display: flex;
	align-items: center;
	padding: 15px;
}
.cabecalho .detalhe-menu_edicao {
	display: none;
}
.cabecalho .titulo {
	color: #214151;
	font-size: 16px;
	margin-left: 10px;
}
.cabecalho .bt_fechar {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	color: #214151;
	margin-left: auto;
	cursor: pointer;
}
.cabecalho .bt_fechar .detalhe {
	width: 15px;
	height: 2px;
	background-color: #214151;
	transform: rotate(45deg);
	margin-left: 5px;
}
.cabecalho .bt_fechar .detalhe::after {
	display: flex;
	content: '';
	width: 15px;
	height: 2px;
	background-color: #214151;
	transform: rotate(90deg);
}
@media screen and (min-width: 1200px) {
	.cabecalho .detalhe-menu_edicao {
		display: block;
		background-image: url(../img/icones/detalhe-menu.webp);
		width: 85px;
		height: 40px;
		margin: 0 5px;
	}
	.cabecalho .bt_fechar {
		display: none;
	}
	.cabecalho .titulo {
		font-size: 18px;
		margin: 0;
	}
}

/* sub menu */
.sub-menu_edicao {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	margin: 0 5px;
}
.sub-menu_edicao .opcao_edicao {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	height: 30px;
	text-align: center;
	transform: skewX(-25deg);
	border-top: 2px solid #C7CFD3;
	border-right: 3px solid #C7CFD3;
	box-sizing: border-box;
	cursor: pointer;
}
.sub-menu_edicao .opcao_edicao:last-child {
	border-right: unset;
}
.sub-menu_edicao .opcao_edicao:first-child:before, .sub-menu_edicao .opcao_edicao:last-child:before {
	position: absolute;
	content: '';
	width: 25px;
	height: 30px;
	top: -1px;
	left: -1px;
	background-color: transparent;
	transform: skewX(25deg);
}
.sub-menu_edicao .opcao_edicao:last-child::before {
	right: 0;
	left: unset;
}
.sub-menu_edicao .opcao_edicao.ativo {
	color: #fff;
	border-top: 1px solid var(--cor-principal);
	border-left: 1px solid var(--cor-principal);
	background-color: var(--cor-principal);
}
.sub-menu_edicao .opcao_edicao.ativo::before {
	background-color: var(--cor-principal);
}
.sub-menu_edicao .opcao_edicao span {
	transform: skewX(25deg);
}

/* box cores */
.box_cores .lista_camadas {
	position: relative;
	display: flex;
	padding: 0px 10px 30px;
	margin: 20px 0;
	align-items: center;
}
.box_cores .lista_camadas .cor_camada {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 5px;
	cursor: pointer;
}
.box_cores .lista_camadas .cor_camada .cor_atual {
	width: 35px;
	height: 35px;
	border: 2px solid #fff;
	border-radius: 10%;
	box-shadow: 2px 2px 4px #00000047;
}
.box_cores .lista_camadas .cor_camada .cor_atual[rel='desenho_colorido'] {
	background-image: url(../img/icones/picture.svg);
	background-size: contain;
	border-radius: 0px;
	background-color: transparent;
	border: none;
	cursor: default;
}
.box_cores .lista_camadas .cor_camada .cor_atual[data-cor="sem_cor"] {
	background-image: url(../img/icones/indisponivel.webp);
	background-size: contain;
}
.box_cores .lista_camadas .cor_camada .numero_camada {
	position: absolute;
	top: unset;
	bottom: 5px;
	height: 14px;
	font-size: 12px;
	text-align: center;
	color: #5C5C5C;
	padding-top: 3px;
	border-top: 1px solid #C6C6C6;
}
.box_cores .lista_camadas .paleta_cores {
	position: absolute;
	top: 55px;
	display: none;
	flex-wrap: wrap;
	width: 251px;
	background-color: #FFF;
	box-shadow: 2px 2px 4px #00000047;
	align-items: center;
	padding: 15px 10px 11px;
	box-sizing: border-box;
}
.box_cores .lista_camadas .paleta_cores.ativo {
	display: flex;
	z-index: 100;
}
.box_cores .lista_camadas .paleta_cores .lista {
	display: flex;
	flex-wrap: wrap;
}
.box_cores .lista_camadas .paleta_cores .cor {
	position: relative;
	width: 24px;
	height: 24px;
	border-radius: 20%;
	margin: 0 4px 4px 0;
	cursor: pointer;
}
.box_cores .lista_camadas .paleta_cores .cor.ativo::before {
	position: absolute;
	content: '';
	width: 26px;
	height: 26px;
	border: 1px solid;
	border-radius: 20%;
	left: -2px;
	top: -2px;
}
.box_cores .lista_camadas .paleta_cores .cor[alt^='branco'] {
	border: 1px solid #d7d7d7;
	box-sizing: border-box;
}
.box_cores .lista_camadas .paleta_cores .indisponivel {
	background-image: url(../img/icones/indisponivel.webp);
	background-size: contain;
	border: 1px solid #d7d7d7;
	box-sizing: border-box;
	list-style: none;
}

main {
	position: relative;
	flex: 1;

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
main > #aguarde {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	color: #FFF;
	cursor: wait;
	z-index: 95;
}

main > section {
	position: relative;
	width: 100%;

	opacity: 0;
}
main > section > #menu-edicao {
	display: none;
	width: 100%;
	max-height: 40%;
	overflow-y: scroll;
	background-color: #EFEFEF;

	position: fixed;
	z-index: 5;
}
main > section > #box_produto {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 1 33%;
	overflow: hidden;
	height: 100%;

	margin: 0 auto 90px;
}
main > section > #menu-aux {
	display: flex;
	flex-direction: column;
	z-index: 6;

	position: absolute;
	width: 100%;
	right: 0;
	top: 30px;
}

.edicao_produtos .produtos {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 10px;
	max-height: 440px;
	overflow-y: auto;
	margin: 0 5px 15px;
}
.edicao_produtos .produtos li {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 30%;
	text-align: center;
	justify-content: end;
}
.edicao_produtos .produtos li img {
	max-height: 100px;
	max-width: 95%;
	width: fit-content;
	margin: auto 0;
	cursor: pointer;
}
.edicao_produtos .produtos li .nome_prod {
	display: flex;
	align-items: center;
	padding-top: 5px;
	height: 40px;
	font-size: 9px;
}
/* BARRA DE ROLAGEM */
.produtos::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 16px;
	padding: 0;
	margin: 0;
}
.produtos::-webkit-scrollbar-thumb {
	padding: 0;
	margin: 0;
	width: 16px;
	height: 118px;
	background-color: var(--cor-destaque); 
	background-image: url(../img/icones/barra_rolagem.webp);
	background-repeat: no-repeat; 
	background-position: center;
	border-radius: 15px;
	cursor: pointer;
}
.produtos::-webkit-scrollbar-track {
	background: transparent;
}
.produtos::-webkit-scrollbar-button:start, .produtos::-webkit-scrollbar-button:end {
	display: none;
}

.edicao_texto .conteudo_edicao[rel=ferramenta_texto] {
	margin: 0 5px;
}
.edicao_texto #add-texto {
	width: fit-content;
	width: -moz-fit-content;
	font-size: 13px;
	color: #fff;
	background-color: var(--cor-destaque);
	border-radius: 6px;
	padding: 8px;
	margin: 5px 0 20px 0;
	cursor: pointer;
}
.edicao_texto .ipt-texto[rel="texto_drag"] {
	text-transform: inherit;
	font-size: 13px;
	margin-right: 5px;
}
.edicao_texto #box_alinhamento {
	position: relative;
	display: flex;
	width: 100px;
	height: 25px;
	justify-content: space-between;
	margin-left: auto;
	align-items: center;
}
.edicao_texto #box_alinhamento::before {
	content: 'Alinhamento';
	position: absolute;
	top: -16px;
	left: 3px;
	font-size: 12px;
	color: #8F8F8F;
}
.edicao_texto #box_alinhamento .bt_alinhamento {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 31px;
	height: 100%;
	background-color: #DFDFDD;
	cursor: pointer;
}
.edicao_texto #box_alinhamento .bt_alinhamento.ativo {
	background-color: #b7b7b4;
}
.edicao_texto #bt_confirma.mobile {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	background-color: green;
	margin-left: 5px;
	cursor: pointer;
}
.edicao_texto .ipt-texto, .edicao_texto .tamNum, .edicao_texto .lista-fontes {
	height: 25px;
	background-color: #DFDFDD;
	border: 1px solid #ADADAD;
	padding: 5px;
	box-sizing: border-box;
	outline: none;
	font-size: 13px;
}
.edicao_texto .lista-fontes {
	position: relative;
	flex: 1;
	max-width: 150px;
	padding: 0;
	cursor: pointer;
	margin: 0 5px 0 0;
}
.edicao_texto .fontes {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}
.edicao_texto .fonte_ativa {
	padding-left: 8px;
}
.edicao_texto .fonte_ativa:after {
	position: absolute;
	content: '';
	right: 8px;
	top: 8px;
	width: unset;
	height: unset;
	background: unset;
	border-top: 5px solid transparent;
	border-left: 6px solid #000;
	border-bottom: 5px solid transparent;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
.edicao_texto .menu_fontes {
	display: none;
	position: absolute;
	width: 100%;
	max-height: 100px;
	top: 25px;
	list-style: none;
	background-color: #fff;
	padding: 8px 0;
	box-sizing: border-box;
	z-index: 1;
	overflow-y: auto;
}
.edicao_texto .menu_fontes li {
	display: flex;
	min-height: 20px;
	align-items: center;
	padding: 0 8px;
	cursor: pointer;
}
.edicao_texto .menu_fontes li:hover, .edicao_texto .menu_fontes li.ativo {
	background-color: #DFDFDD;	
}
.edicao_texto .menu_fontes li span {
	margin-left: auto;
	padding-left: 5px;
}
.edicao_texto .ipt-texto {
	width: 150px;
	text-transform: uppercase;
	font-size: 11px;
}
.edicao_texto .tamNum {
	display: flex;
	width: 65px;
}
.edicao_texto .ipt-tamNum {
	width: 40px;
	flex: 1;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0;
	outline: none;
	-moz-appearance: textfield;
}
.edicao_texto .ipt-tamNum::-webkit-outer-spin-button, .edicao_texto .ipt-tamNum::-webkit-inner-spin-button, 
.edicao_texto .ipt-texto::-webkit-outer-spin-button, .edicao_texto .ipt-texto::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.edicao_texto .bt_tamNum {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}
.edicao_texto .bt_tamNum .bt_mais {
	width: unset;
	height: unset;
	background: unset;
	border-top: 5px solid transparent;
	border-right: 6px solid #000;
	border-bottom: 5px solid transparent;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	cursor: pointer;
}
.edicao_texto .bt_tamNum .bt_menos {
	width: unset;
	height: unset;
	background: unset;
	border-top: 5px solid transparent;
	border-left: 6px solid #000;
	border-bottom: 5px solid transparent;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	cursor: pointer;
}
.edicao_texto .lista_textos {
	max-height: 147px;
	overflow-y: scroll;
	padding: 0;
	margin-bottom: 20px;
}
.edicao_texto .lista_textos li {
	display: flex;
	align-items: center;
	height: 33px;
	font-size: 15px;
	border: 1px solid #DFDFDD;
	padding: 5px;
	margin: 3px 0;
	cursor: pointer;
	box-sizing: border-box;
}
.edicao_texto .lista_textos li .bt_selecionar {
	display: flex;
	width: 70px;
	height: 100%;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	padding: 0 2px;
	margin-right: 5px;
	color: var(--cor-destaque);
	border: 1px solid var(--cor-destaque);
	box-sizing: border-box;
}
.edicao_texto .lista_textos li .bt_selecionar.ativo {
	color: #fff;
	background-color: var(--cor-destaque);
}
.edicao_texto .lista_textos li .texto {
	font-size: 13px;
	max-width: 145px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-right: 5px;
}
.edicao_texto .lista_textos li .remover {
	display: flex;
	width: 20px;
	height: 100%;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	padding: 0 2px;
	margin-left: auto;
	color: red;
	border: 1px solid red;
	box-sizing: border-box;
}
.edicao_texto .lista_textos li .remover:hover, .edicao_texto .lista_textos li .remover.ativo {
	color: #fff;
	background-color: red;
}
/* BARRA DE ROLAGEM */
.lista_textos::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 16px;
	padding: 0;
	margin: 0;
}
.lista_textos::-webkit-scrollbar-thumb {
	padding: 0;
	margin: 0;
	width: 16px;
	height: 118px;
	background-color: var(--cor-destaque); background-image: url(../img/icones/barra_rolagem.webp);
	background-repeat: no-repeat; background-position: center;
	border-radius: 15px;
	cursor: pointer;
}
.lista_textos::-webkit-scrollbar-track {
	background: transparent;
}
.lista_textos::-webkit-scrollbar-button:start {
	display: none;
}
.lista_textos::-webkit-scrollbar-button:end {
	display: none;
}

.edicao_upload .sub-menu_edicao {
	margin-bottom: 10px;
}
.edicao_upload #temas {
	position: relative;
	margin: 0 5px 10px;
}
.edicao_upload #select_temas {
	width: fit-content;
	width: -moz-fit-content;
	min-width: 110px;
	height: 26px;
	padding: 0 20px 0 5px;
	color: #fff;
	background-color: var(--cor-destaque);
	border: none;
	border-radius: 3px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance:    none;
	appearance:         none;
	outline: none;
}
.edicao_upload #temas::after {
	position: absolute;
	content: '';
	right: 8px;
	top: 8px;
	width: unset;
	height: unset;
	background: unset;
	border-top: 5px solid transparent;
	border-left: 6px solid #fff;
	border-bottom: 5px solid transparent;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
.edicao_upload #select_temas option {
	background-color: #FFF;
	color: #000;
}
.edicao_upload .frase {
	width: 100%;
	background: var(--cor-destaque);
	padding: 30px;
	box-sizing: border-box;
	color: #fff;
	font-size: 14px;
	text-align: justify;
}
.edicao_upload .add-arquivo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 30px;
}
.edicao_upload .add-arquivo .texto {
	color: #878C8F;
	margin-bottom: 3px;
}
.edicao_upload .bt-upload {
	color: #fff;
	background-color: var(--cor-destaque);
	padding: 5px;
	cursor: pointer;
}
.edicao_upload #box-imagens {
	position: relative;
	margin: 10px auto;
	width: 95%;
	height: 400px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	overflow-y: auto;
	background-color: #f6f6f6;
}
.edicao_upload #box-imagens .image-gallery {
	width: 110px;
	height: 110px;
	margin: 5px;
}
.edicao_upload #box-imagens .image-gallery img {
	cursor: pointer;
}
.edicao_upload .carregando-img {
	height: 100%;
	background: url(../img/icones/carregando.gif) no-repeat center center;
}
.edicao_upload .image-gallery img[src=''] {
	background: url(../img/icones/carregando.gif) no-repeat center center;
	content: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
}
/* BARRA DE ROLAGEM */
#box-imagens::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 16px;
	padding: 0;
	margin: 0;
}
#box-imagens::-webkit-scrollbar-thumb {
	padding: 0;
	margin: 0;
	width: 16px;
	height: 118px;
	background-color: var(--cor-destaque); background-image: url(../img/icones/barra_rolagem.webp);
	background-repeat: no-repeat; background-position: center;
	border-radius: 15px;
	cursor: pointer;
}
#box-imagens::-webkit-scrollbar-track {
	background: transparent;
}
#box-imagens::-webkit-scrollbar-button:start {
	display: none;
}
#box-imagens::-webkit-scrollbar-button:end {
	display: none;
}


#bt_orcamento {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 330px;
	height: 95px;
	background-image: linear-gradient(to right, #AE2014, #EF6A28);
	border: 5px solid #fff;
	border-radius: 20px;
	box-sizing: border-box;
	cursor: pointer;
	margin-top: -148px;
	margin-bottom: 53px;

	display: none;
}
#bt_orcamento .texto {
	color: #fff;
	font-size: 25px;
}
#bt_orcamento .seta {
	position: relative;
	height: 3px;
	width: 30px;
	background: #fff;
	margin-left: 35px;
	margin-top: 3.5px;
}
#bt_orcamento .seta::before, #bt_orcamento .seta::after {
	position: absolute;
	content: '';
	background-color: #fff;
	right: -2px;
	width: 17px;
	height: 3px;
}
#bt_orcamento .seta::before {
	transform: rotate(50deg);
	top: -7px;
}
#bt_orcamento .seta::after {
	transform: rotate(-50deg);
	top: 7px;
}

#menu-aux.inativo {
	display: none;
}
#menu-aux::after {
	position: absolute;
	content: '';
	width: 30px;
	right: 0px;
	height: 60px;
	background-color: #EFEFEF;
}
#menu-cores {
	width: 90%;
	max-width: 375px;
	background-color: #EFEFEF;
	border-radius: 15px;
	border-top-right-radius: 0;
	padding-bottom: 10px;
	margin-right: 15px;
	margin-left: auto;
}
#menu-cores.inativo {
	position: relative;
	z-index: 1;

	width: 60px;
	height: 60px;
	padding-bottom: 0;
}
#menu-cores.inativo .cabecalho .titulo {
	display: none;
}
#menu-cores.inativo .bt_fechar {
	display: none;
}
#menu-cores.inativo .edicao_cores .conteudo_edicao {
	display: none;
}
#menu-cores.inativo .edicao_cores .cabecalho {
	padding: 10px;
}

.edicao_cores .box_cores {
	border-top: 1px solid #C6C6C6;
}
.edicao_cores .box_cores .titulo {
	color: #5C5C5C;
	padding: 10px 15px;
}
.edicao_cores .produtos {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 10px;
	max-height: 450px;
	overflow-y: auto;
	margin: 0 5px 15px;
}
.edicao_cores .produtos li {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 30%;
	text-align: center;
	justify-content: end;
}
.edicao_cores .produtos li img {
	max-height: 100px;
	max-width: 95%;
	width: fit-content;
	margin: auto 0;
	cursor: pointer;
}
.edicao_cores .produtos li span, .edicao_cores .produtos li .nome_prod {
	display: flex;
	align-items: center;
	padding-top: 5px;
	height: 40px;
	font-size: 11px;
}

#menu-descricao {
	width: 90%;
	max-width: 375px;
	background-color: #EFEFEF;
	border-radius: 15px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	padding-bottom: 10px;
	margin-right: 15px;
	margin-left: auto;
	margin-top: 15px;
}
#menu-descricao.inativo {
	position: relative;
	z-index: 1;

	width: 60px;
	height: 60px;
	padding-bottom: 0;
}
#menu-descricao.inativo .cabecalho .titulo {
	display: none;
}
#menu-descricao.inativo .bt_fechar {
	display: none;
}
#menu-descricao.inativo .edicao_descricao .conteudo_edicao {
	display: none;
}
#menu-descricao.inativo .edicao_descricao .cabecalho {
	padding: 10px;
}
#menu-descricao.inativo::after, #menu-descricao::after {
	position: absolute;
	content: '';
	top: 0;
	right: -15px;
	width: 15px;
	height: 60px;
	background-color: #EFEFEF;
}
#menu-descricao::after {
	position: absolute;
	content: '';
	top: 75px;
	right: 0;
	width: 15px;
	height: 60px;
	background-color: #EFEFEF;
}
#menu-descricao.selecionado::after {
	display: none;
}

.conteudo_descricao {
	display: none;
	margin: 5px 15px 20px;
	padding: 0 5px;
	text-align: justify;
	overflow: auto;
}
/* BARRA DE ROLAGEM */
.conteudo_descricao::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 16px;
	padding: 0;
	margin: 0;
}
.conteudo_descricao::-webkit-scrollbar-thumb {
	padding: 0;
	margin: 0;
	width: 16px;
	height: 90px;
	background-color: var(--cor-destaque); 
	background-image: url(../img/icones/barra_rolagem.webp);
	background-repeat: no-repeat; 
	background-position: center;
	border-radius: 15px;
	cursor: pointer;
}
.conteudo_descricao::-webkit-scrollbar-track {
	background: transparent;
}
.conteudo_descricao::-webkit-scrollbar-button:start, .conteudo_descricao::-webkit-scrollbar-button:end {
	display: none;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
	main > section > #menu-aux {
		top: 0;
		max-width: 375px;
	}

	#menu-edicao #conteudo_edicao {
		width: 100%;
	}
	main > section > #menu-edicao {
		position: absolute;

		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		height: 550px;
		width: 90%;
		max-width: 375px;
		margin-left: 15px;
		border-radius: 15px;

		max-height: unset;
		overflow: unset;
	}
	#menu-edicao::before {
		position: absolute;
		content: '';
		width: 35px;
		left: -20px;
		height: 60px;
		background-color: #EFEFEF;
	}
}
@media screen and (min-width: 1200px) {
	main > section {
		height: unset;

		display: flex;
		justify-content: space-around;
		padding: 0 20px 50px 20px;
	}
	main > section > #menu-edicao {
		position: relative;
		width: unset;
		max-height: unset;
		overflow: unset;
		background: unset;
		z-index: unset;

		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		flex: 0 1 33%;
		height: 600px;
	}
	main > section > #box_produto {
		height: unset;
	}
	main > section > #menu-aux {
		position: relative;
		width: unset;
		right: unset;
		top: unset;
		z-index: unset;

		display: flex;
		flex-wrap: wrap;
		flex-direction: unset;
		justify-content: center;
		flex: 0 1 33%;
		height: 550px;
	}

	#conteudo_edicao {
		width: 375px;
		background-color: #EFEFEF;
		border: 2px solid var(--cor-destaque);
		border-radius: 15px;
	}

	#menu-aux::after {
		display: none;
	}
	#bt_orcamento {
		display: flex;
	}
	#bt_orcamento.sem_cor {
		margin-top: 0;
	}
	#menu-cores {
		margin: unset;
		padding-bottom: unset;
		max-width: unset;

		width: 375px;
		min-height: 550px;
		background-color: #EFEFEF;
		border: 2px solid var(--cor-destaque);
		border-radius: 15px;
	}
	#menu-cores.sem_cor {
		display: none;
	}
	#menu-descricao {
		margin: unset;
		padding-bottom: unset;
		max-width: unset;

		width: 375px;
		height: fit-content;
		background-color: #EFEFEF;
		border: 2px solid var(--cor-destaque);
		border-radius: 15px;
	}
	#menu-descricao.sem_cor {
		display: none;
	}
	#menu-descricao.inativo::after, #menu-descricao::after {
		display: none;
	}
	.conteudo_descricao {
		display: block;
	}
}

#box_produto .lista_lados, #box_produto .lista_lados-temp {
	display: flex;
	flex-direction: column;
}
#box_produto div[class^='produto'] {
	position: relative;
	display: none;
}
#box_produto div[class^='produto'].ativo {
	display: block;
}
#box_produto div[class^='produto'] div[class^='camada_'] {
	position: absolute;
	width: 100%;
}
#box_produto div[class^='produto'] div[class^='camada_'] svg {
	width: 100%;
	height: 100%;
}
#box_produto div[class^='produto'] .textura {
	position: relative;
}
#box_produto #girar-produto {
	display: none;
	width: fit-content;
	width: -moz-fit-content;
	height: 20px;
	border-radius: 15px;
	background-color: #1c4354;
	margin: 0 auto 20px auto;
	user-select: none;
}
#box_produto #girar-produto.rotacionar {
	height: unset;
	padding: 5px 10px;
	color: rgb(255, 255, 255);
	cursor: pointer;
}
#box_produto #girar-produto.ativo {
	display: flex;
}
#box_produto #girar-produto span {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 25px;
	border-radius: 15px;
	color: #fff;
	cursor: pointer;
}
#box_produto #girar-produto span.ativo {
	background-color: var(--cor-destaque);
}
@media screen and (min-width: 1200px) {
	#box_produto {
		margin: 30px 0 0 0;
	}
}

#menu-central_mobile {
	position: fixed;
	bottom: 0;

	width: 100%;
	background-color: #fff;
	z-index: 5;

	opacity: 0;
}
#menu-central_mobile > #lista_edicao {
	display: flex;
	justify-content: center;
	list-style: none;
}
#menu-central_mobile > #lista_edicao > li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 20%;
	height: 90px;
	margin: 0;
	padding: 0 20px;
	border-right: 1px solid #C6C6C6;
}
#menu-central_mobile > #lista_edicao > li:last-child {
	border-right: none;
}
#menu-central_mobile > #lista_edicao > li > span {
	display: none;
}

#menu-central {
	position: relative;
	display: none;
	align-items: center;
	justify-content: space-around;
	padding: 30px 0;
	opacity: 0;
}
#menu-central > #lista_edicao {
	display: flex;
	justify-content: center;
	list-style: none;
}
#menu-central > #lista_edicao > li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
}
#menu-central > #lista_edicao > li > .ico-lista_edicao {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	background-color: #fff;
	border-radius: 10px;
	border: 2px solid var(--cor-destaque);
	cursor: pointer;
}
#menu-central > #lista_edicao > li > span {
	max-width: 100%;
	color: #fff;
	font-size: 12.5px;
	text-align: center;
	margin-top: 2px;
	background-color: var(--cor-principal);
	padding: 2px 5px;
	box-sizing: border-box;
	border-radius: 10px;
	cursor: pointer;
}

@media screen and (min-width: 768px) {
	#menu-central_mobile {
		display: none;
	}
	#menu-central {
		display: flex;
	}
}

/* visualização */
#box_visualizar {
	display: flex;
	flex-direction: column;
	align-items: center;
	top: 0;
	bottom: 0;
	width: 100%;
	background-color: #E6E6E5;
	padding-bottom: 60px;
	z-index: 150;
	min-height: 600px;
}
#box_visualizar .bt_fechar-visualizar {
	position: absolute;
	top: 15px;
	right: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	color: #fff;
	font-weight: bold;
	border-radius: 100%;
	background-color: var(--cor-destaque);
	cursor: pointer;
}
#box_visualizar .logo {
	margin: 50px 0;
}
#box_visualizar .conteudo {
	display: flex;
	position: relative;
}
#box_visualizar .conteudo .simulacao { 
	display: flex;
	position: relative;
	flex-direction: column;
}
#box_visualizar .conteudo .simulacao img {
	height: fit-content;
	height: -moz-fit-content;
}
#box_visualizar .frente_verso, #box_visualizar .lateral {
	display: flex;
	justify-content: center;
}
#box_visualizar .lateral img:nth-child(2), #box_visualizar .frente_verso img:nth-child(2)  {
	margin-left: 50px;
}
#box_visualizar .box_compartilhar {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	right: -330px;
	top: 0;
	bottom: 0;
}
#box_visualizar .atendimento {
	margin: 0;
}
#box_visualizar .salvar {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
	width: -moz-fit-content;
	margin-top: auto;
	margin-bottom: 50px;
	cursor: pointer;
}
#box_visualizar .salvar p {
	font-size: 16px;
	margin-top: 10px;
}

/* configurações */
.swal-content {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
.swal-content span, .swal-content label {
	font-size: 14px;
	text-align: left;
}
.swal-modal-width {
	min-width: min-content;
}

.opcoes {
	display: flex;
}
.opcao_lado, .opcao_pers {
	display: flex;
	width: 100px;
	justify-content: center;
	padding: 10px 0;
	background-color: var(--cor-destaque);
	color: #fff;
	margin: 0 7px 30px;
	cursor: pointer;
}

div.selecionado:after {
	content:'';
	position:absolute;
	left:-5px;
	top:-5px;
	width:99%;
	height:99%;
	padding:5px;
	border:2px dashed #FF0000;
	cursor:move;
	background: rgba(100,0,0,0.4);
	z-index: -1;
}
div[id^=item_drag][class*=_drag]:hover {
	cursor:move;
}
.ferramentas_edicao {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
}
.ferramentas_edicao.ativo {
	display: block;
	z-index: 100;
}
.ferramentas_edicao .acima, .ferramentas_edicao .abaixo {
	display: none;
	position: absolute;
	left: 15px;
	top: -30px;
	width: 25px;
	height: 25px;
	background-image: url(../../img/icones/2d/up.webp);
	cursor: pointer;
}
.ferramentas_edicao .abaixo {
	top: -30px;
	left: -8px;
	background-image: url(../../img/icones/2d/down.webp);
}
.ferramentas_edicao .saturacao, .ferramentas_edicao .saturacao_inverter {
	display: block;
	position: absolute;
	right: -8px;
	bottom: -30px;
	width: 20px;
	height: 20px;
	background-image: url(../../img/icones/saturacao.webp);
	cursor: pointer;
}
.ferramentas_edicao .saturacao_inverter {
	right: 10px;
	filter: invert(1);
}
.ferramentas_edicao .remover_saturacao {
	display: none;
	position: absolute;
	right: 30px;
	bottom: -30px;
	width: 20px;
	height: 20px;
	background-image: url(../../img/icones/sem_saturacao.webp);
	cursor: pointer;
}
.ferramentas_edicao .rotate-handle {
	height: 21px;
	width: 17px;
	background-image: url(../../img/icones/rotate.png);
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: -30px;
	right: -17px;
	transform: translateX(-50%);
	cursor: grab;
	touch-action: none;
	z-index: 10;
}
.ferramentas_edicao .resize-handle {
	width:15px;
	height:15px;
	background:red; 
	position:absolute; 
	bottom:-14px; 
	right:-12px; 
	cursor:se-resize;
}
.ferramentas_edicao .remover-drag {
	width: 19px;
	height: 19px;
	background-image: url(../../img/icones/icones.webp);
	background-position: -4px -374px;
	position: absolute;
	left: -20px;
	bottom: -23px;
	cursor:pointer;
}

.texto_drag {
	width: 150px;
	height: 30px;
}
.texto_drag span {
	white-space: nowrap;
}

.imagem_drag {
	position: absolute!important;
}
.imagem_produto {
	position: absolute;
	left: 0px;
	top: 0px;
	width:100%;
	height:100%;
	-moz-user-select: none;
	z-index: 105;
	margin: 0 auto;
}