:root {
	--max-width: 800px;
}

/* body {
	height: auto !important;
} */

.max-width-page {
	max-width: var(--max-width);
}

.main-app-content{
	min-height: 80vh;
}

/* Bar action on Form Contact */

.group-form-status {
	display: flex;
	justify-content: flex-end;
}

.group-form-status form{ 
	margin-right: 1rem;
}
.group-form-status form:last-child{ 
	margin-right: 0;
}

/* Old */

#wpcontent {
	background-color: #f0f0f0;
}

.page-title-pg-admin {
	padding: 1rem 2rem;
	background-color: #fff;
	margin-left: -36px;
	display: flex;
	justify-content: space-between;
}

.page-title-pg-admin .links span {
	color: #000;
	font-weight: bold;
}

.page-title-pg-admin .links span::after {
	content: '/';
	font-weight: 300;
	margin: 0 0.2rem;
}

.page-title-pg-admin .links span:last-child {
	color: #009879;
}

.page-title-pg-admin .links span:last-child::after {
	display: none;
}

.wrap-page-atd {
	padding-top: 1rem;
}

.msg {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 1rem;
	color: #009879;
	border: 1px solid #009879;
	background-color: #bffaee;
	max-width: calc(var(--max-width) - 2rem);
	border-radius: 1rem;
}

.msg .cls {
	cursor: pointer;
}

/* Formulario */
.atd-table {
	border-collapse: collapse;
	margin: 25px 0;
	font-size: 0.9em;
	font-family: sans-serif;
	min-width: 400px;
	max-width: var(--max-width);
	width: 100%;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.atd-table thead tr {
	background-color: #009879;
	color: #ffffff;
	text-align: left;
}

.atd-table th,
.atd-table td {
	padding: 12px 15px;
}

.atd-table thead th {
	color: #fff;
}

.th-vendedor {
	width: 20%;
}


.atd-table tbody tr {
	border-bottom: 1px solid #dddddd;
	background-color: #fff;
}


.atd-table tbody tr:last-of-type {
	border-bottom: 2px solid #009879;
}

.atd-table tbody tr.active-row {
	font-weight: bold;
	color: #009879;
}

.atd-table tbody .center {
	text-align: center;
}

/* Formulario */

.atd-form {
	font: 95% Arial, Helvetica, sans-serif;
	padding: 16px 0;
	max-width: var(--max-width);
}

.atd-form .two-col {
	display: flex;
}

.atd-form .two-col input {
	margin-right: 1rem;
}

.atd-form .two-col input:last-child {
	margin-right: 0;
}

.align-to-right {
	display: flex;
	justify-content: flex-end;
}

.align-center {
	text-align: center !important;
}

.align-right {
	text-align: right !important;
}

.atd-form input[type="text"],
.atd-form input[type="date"],
.atd-form input[type="datetime"],
.atd-form input[type="email"],
.atd-form input[type="number"],
.atd-form input[type="search"],
.atd-form input[type="time"],
.atd-form input[type="url"],
.atd-form textarea,
.atd-form select {
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	background: #fff;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	padding: 10px;
	color: #555;
	font: 95% Arial, Helvetica, sans-serif;
}

.atd-form input[type="text"]:focus,
.atd-form input[type="date"]:focus,
.atd-form input[type="datetime"]:focus,
.atd-form input[type="email"]:focus,
.atd-form input[type="number"]:focus,
.atd-form input[type="search"]:focus,
.atd-form input[type="time"]:focus,
.atd-form input[type="url"]:focus,
.atd-form textarea:focus,
.atd-form select:focus {
	box-shadow: 0 0 5px #43D1AF;
	border: 1px solid #43D1AF;
}

.atd-form input[type="submit"],
.atd-form input[type="button"] {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 5px 15px;
	background: #43D1AF;
	border-bottom: 2px solid #30C29E;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	color: #fff;
}

.atd-form input[type="submit"]:hover,
.atd-form input[type="button"]:hover {
	background: #2EBC99;
}

.atd-form input[type="submit"].blue,
.atd-form input[type="button"].blue {
	background: #4381d1;
	border-bottom: 2px solid #3057c2;
}

.btn-req-questions {
	cursor: pointer;
}

.pagination-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-top: 1rem;
	gap: 1rem 0.2rem;
}

.pagination-buttons a {
	padding: 0.5rem 0.7rem;
	margin: 0 0.2rem;
	background-color: #fff;
	box-shadow: 1px 1px #c2c2c2;
	border-radius: 3px;
	text-decoration: none;
}

.pagination-buttons a.active {
	background-color: #43d1af;
	color: #fff;
}

/* Modal */

.modal-side{
	height: 0;
	z-index: 9999;
	transition: all .1s;
}

.modal-side.actived {
	background-color: rgba(0,0,0,0.3);
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	height: auto;
}

.content-modal {
	background-color: #fff;
	bottom: 0;
	max-width: 600px;
	overflow: scroll;
	padding: 5rem 1rem;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: 1s all;
}

.content-modal .fechar {
	cursor: pointer;
	display: block;
	text-align: right;
	text-decoration: underline;
	font-style: italic;
	width: 98%;
}

.modal-side.actived .content-modal {
	transform: translateX(0);
}

.content-modal .questao-modal {
	padding: 1rem;
}

.content-modal .questao-modal .questao {
	font-weight: bold;
	padding: 0;
	margin: 0;
}

.content-modal .questao-modal .questao::before{
	content: '- ';
}

.content-modal .questao-modal .respos{
	padding: 0;
	margin: 10px 0 0 0;
}

/* Lala */

.wp-admin .select::after{
	display: none !important;
}

.observacoes{
	overflow-y: auto;
	max-height: 510px;
	height: 100%;
}

.historico-contato{
	overflow-y: auto;
	max-height: 260px;
	height: 100%;
}

#wpfooter{
	display: none;
}

.update-nag{
	display: none;
}

.status-content{
	overflow-x: auto;
}