.coleta-bbro {
	display: flex;
	justify-content: center;
}

.coleta-bbro-open {
	background: #00acb3;
	color: #fff;
	border: 0;
	padding: 10px 18px;
	border-radius: 4px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 160ms ease-in-out;
}

.coleta-bbro-open:hover,
.coleta-bbro-open:focus {
	background: #013c4c;
}

body.coleta-bbro-lock {
	overflow: hidden;
}

.coleta-bbro-modal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 2147483647;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.coleta-bbro-modal.is-open {
	display: flex;
}

.coleta-bbro-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.coleta-bbro-dialog {
	position: relative;
	z-index: 1;
	width: min(720px, 100%);
	background: #fff;
	border-radius: 12px;
	padding: 18px;
	max-height: 85vh;
	overflow: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.coleta-bbro-close {
	position: absolute;
	right: 12px;
	top: 10px;
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.coleta-bbro-title {
	margin: 0 30px 12px 0;
	font-size: 20px;
}

.coleta-bbro-field {
	display: block;
	margin-bottom: 10px;
}

.coleta-bbro-field > span {
	display: block;
	font-size: 13px;
	margin-bottom: 4px;
}

.coleta-bbro-field input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
}

.coleta-bbro-submit {
	width: 100%;
	background: #00acb3;
	color: #fff;
	border: 0;
	padding: 10px 16px;
	border-radius: 4px;
	cursor: pointer;
	margin-top: 6px;
	transition: background-color 160ms ease-in-out;
}

.coleta-bbro-submit:hover,
.coleta-bbro-submit:focus {
	background: #013c4c;
}

.coleta-bbro-message {
	margin-top: 10px;
	font-size: 14px;
}

.coleta-bbro-message.is-error {
	color: #b32d2e;
}

.coleta-bbro-message.is-success {
	color: #1d7a1d;
}

.coleta-bbro-after {
	margin-top: 12px;
}

.coleta-bbro-download {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	background: #013c4c;
	color: #fff;
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 4px;
}

.coleta-bbro-preview iframe {
	width: 100%;
	border: 0;
	margin-top: 12px;
	border-radius: 8px;
}

