.sec-orcamento {
    position: fixed;
    left: -100vw;
    top: 0;
    bottom: 0;
    background-color: #FFF;
    width: 100vw;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    transition: all 1s cubic-bezier(.68,-0.55,.27,1.55) 0s;
	box-shadow: 15px 0 20px rgba(118, 118, 118, 0.2);
    max-height: 100%;
    overflow-y: auto;
}
.sec-orcamento .topo {
	position: sticky;
	top: 0;
	background-color: #FFF;
	z-index: 999;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.sec-orcamento-container {
    position: fixed;
    z-index: 999999;
    display: none;
}
.sec-orcamento.sec-orcamento-visivel {
    left: 0;
}

.sec-orcamento-box {
	display: flex;
	flex: 1;
}
.sec-orcamento-l,
.sec-orcamento-r {
	width: 50%;
}
.sec-orcamento-r {
	padding: 30px;
	font-size: 18px;
	display: flex;
	flex-direction: column;
}
.sec-orcamento-topo-btn {
	width: 300px;
	text-align: right;
}
.sec-orcamento-checkboxes {
	display: flex;
	flex-wrap: wrap;
}
.sec-orcamento-sucesso {
	text-align: center;
	margin: auto;
}

/*
** Icones
** ================================================== */
.topo-btn .btn:hover .ico:before {
	background-image: url('../../../imagens/icones/seta-l-b.svg');
}

@media (max-width: 980px) {
	.sec-orcamento-l {
		display: none;
	}
	.sec-orcamento-l,
	.sec-orcamento-r {
		width: 100%;
	}
}