*{
	font-family: Roboto;
	font-size: 14px;
	-webkit-print-color-adjust: exact !important;
	color-adjust: exact !important;
	print-color-adjust: exact !important;
}
html,body{
	margin:0;
	background: #efefef;
}
h1{
	font-size: 22px;
}
a{
	text-decoration: none;
	color: var(--global-color-2-hex);
}
	a:hover{
		text-decoration: underline;
	}

	a.card-link, a.card-link:hover{
		color:#000;
		text-decoration:none;
	}
a[rel=facebox] {
    color: #d6d6d6;
}
.header{
	margin-bottom: 50px;
}
.footer{
	min-width: 640px;
	max-width: 100%;
	margin: 0 auto 100px;
	padding: 40px;
	margin-left: 290px;
	margin-right: 40px;
	text-align: center;
	font-size: small;
}
	.footer a{
		font-size: small;
		margin: 0 5px;
		color: #767676;
	}
.footer.search-mode, .footer.print-mode{
	display: none;
}
.hr{
	border-bottom:1px #e1e1e1 solid;
}
.strong{
	font-weight: 600;
}
.row{
	padding: 5px;
	cursor: default;
}
	.row.center{
		text-align: center;
	}
	.row.table:not(.no-hover):hover{
		background: color-mix(in srgb, var(--global-color-1-hex) 3%, white);
		font-weight: 600;
	}
	.row.table:hover .badge{
		font-weight: 500;
	}
	.row-header{
		background:#f7f7f7;
		font-weight:600;
		padding: 10px 10px 0 5px;
	}
	.row.record-count{
		font-size: 11px;
		padding: 5px 10px;
	}
	.row.info{
		line-height: 150%; 
		color: #666;
		border-top:1px #e1e1e1 solid;
		border-bottom:1px #e1e1e1 solid;
	}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
	.row.toolbar{
		margin-bottom: 20px;
	}
		.row.toolbar button.command {
			border-radius: 3px;
			border: 1px solid #d7d7d7;
			background: #fff;
			color: #767676;
			padding: 3px 10px 3px 2px;
			margin: 4px 4px 0 0;
			font-size: 12px;
			cursor: pointer;
			min-width: 140px;
		}
		.row.toolbar button.command i.fa-solid {
			font-size: 12px;
			padding: 5px;
		}
.column, .column-0, .column-20, .column-25, .column-33, .column-66, .column-100 {
  float: left;
  min-height: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 10px;
}
.column-0 {
  margin-right: initial;
}
.column {
  width: calc(50% - 10px);
}
.column-25 {
  width: calc(25% - 10px);
}
.column-20 {
  width: calc(20% - 10px);
}
.column-33 {
  width: calc(33% - 20px);
}
.column-66 {
  width: calc(66% - 30px);
}
.column-100 {
  width: calc(100% - 10px);
}
.column p, .column-0 p, .column-20 p, .column-25 p, .column-100 p{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.text-wrap{
	overflow: initial;
    white-space: initial;
}
.toolbar-nav{
	max-width: 100%;
	margin: 10px auto 0;
	padding: 10px 20px;
	margin-left: 290px;
	margin-right: 40px;
	display: flex;
}
	.toolbar-nav ul {
		list-style: none;
		display: flex;
		gap: 10px; /* Espaçamento entre botões */
		margin: 0;
		padding: 0;
		margin-left: auto;
	}
		.toolbar-nav ul li {
			display: flex;
			align-items: center;
			justify-content: center;
			color: var(--global-color-1-hex);
			opacity: 0.3;
			padding: 10px 15px; /* Tamanho do botão */
			border-radius: 5px; /* Bordas arredondadas */
			cursor: pointer;
		}
			.toolbar-nav ul li i {
				font-size: 18px; /* Tamanho do ícone */
			}
				.toolbar-nav ul li:hover {
					background-color: var(--global-color-1-hex);
					opacity: 0.2;
					color: #fff;
				}


.float-llm-assistent-button {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: var(--global-color-1-hex);
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

	.float-llm-assistent-button:hover {
	  transform: scale(1.1);
	}
		.float-llm-assistent-button.before-onboarding-popup{
		  bottom: 90px;
		  right: 40px;
		}

	.float-llm-assistent-button img {
	  width: 30px;
	  height: 30px;
	  filter: brightness(0) invert(1); 
	}


.float-notifications, .float-llm-assistent{
	display: none;
    background: color-mix(in srgb, var(--global-color-1-hex) 3%, white);
    border-radius: 10px;
	z-index: 999;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
	padding: 10px;
	margin-top: -5px;
	min-height: 188px;
	max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
}
	.float-llm-assistent{
		right: 300px;
		top: 70px;
		position: fixed;
		width: 460px;
		max-width: calc(100% - 60px);
	    height: 500px;
		max-height: 500px;
		cursor: move;
		overflow-y: hidden;
		overflow-x: hidden;
	}
		.float-llm-assistent, .float-llm-assistent .row{
			cursor: move;
		}
		.float-llm-assistent h1 {
			font-size: 18px;
			margin-bottom: 20px;
			border-bottom: 1px solid #ddd;
			padding-bottom: 10px;
		}
		.float-llm-assistent .loading{
			display: none;
		}
			.float-llm-assistent .loading .column-0 {
				border: 1px solid #e1e1e1;
				border-radius: 10px;
				padding: 10px 15px 0;
				font-size: 13px;
				margin: 0 0 20px;
				background: color-mix(in srgb, var(--global-color-1-hex) 5%, white);
				color: color-mix(in srgb, var(--global-color-1-hex) 80%, white);
				width: calc(100% - 35px);
				cursor: default;
			}
			.float-llm-assistent .loading img{
				filter: invert(100%);
				width: 48px;
				height: 48px;
			}
		.float-llm-assistent .responses{
		    height: 355px;
			overflow-y: auto;
		}
			.float-llm-assistent .responses .tools a{
				color: unset;
				cursor: pointer;
			}
			.float-llm-assistent .responses .tools a:hover {
				text-decoration: none;
			}
			
			.float-llm-assistent .responses .tools a.llm-copy,
			.float-llm-assistent .responses .tools a.llm-speech{
				opacity: 0.4;
				margin-left: 5px;
			}
				.float-llm-assistent .responses .tools a:hover.llm-copy,
				.float-llm-assistent .responses .tools a:hover.llm-speech{
					opacity: 1;
				}
				
				
				.float-llm-assistent .responses .column {
					width: calc(50% - 35px);
				}
				.float-llm-assistent .responses .checkboxes label {
					padding-right: 0;
				}
			
		.float-llm-assistent .chat {
			border: 1px solid #e1e1e1;
			border-radius: 10px;
			padding: 10px 15px;
			font-size: 13px;
			margin: 20px 0;
			background: color-mix(in srgb, var(--global-color-1-hex) 5%, white);
			color: color-mix(in srgb, var(--global-color-1-hex) 80%, white);
			width: calc(100% - 35px);
			cursor: default;
		}
			.float-llm-assistent .chat.user {
				width: 50%;
				float: right;
				padding: 5px 10px;
				background: color-mix(in srgb, var(--global-color-1-hex) 10%, white);
				margin: 0;
			}
			.float-llm-assistent .chat.system {
				margin: 20px 0 0 0;
			}
			.float-llm-assistent .tools {
				    margin-right: 10px;
			}
			.float-llm-assistent .chat *{
				overflow: initial;
				white-space: initial;
				text-overflow: initial;
				line-height: 135%;
			}
				.float-llm-assistent .chat ul {
					padding-left: 30px;
				}
		.float-llm-assistent .buttons button.disabled{
			cursor: not-allowed !important;
			opacity: 0.2;
		}
			.float-llm-assistent .buttons button.submit, 
			.float-llm-assistent .buttons button.cancel {
				margin-left: 5px;
			}
			.float-llm-assistent .buttons button.cancel {
				margin: 0 5px;
			}
		.float-llm-assistent .chat-input {
			flex: 1;
			border: none;
			outline: none;
			font-size: 14px;
			color: #d7d7d7;
			padding: 15px 45px 15px 10px;
			background: #343a40;
			border-radius: 5px;
			margin: 0 5px;
			width: calc(100% - 70px);
		}

		.float-llm-assistent .chat-submit {
			position: absolute;
			right: 5px;
			margin: 10px 25px;
			width: 30px;
			height: 30px;
			border-radius: 50%;
			background-color: rgba(255, 255, 255, 0.1);
			color: #fff;
			display: flex;
			align-items: center;
			justify-content: center;
			border: none;
			cursor: pointer;
			transition: background-color 0.3s;
			font-size: 12px;
		}

		.float-llm-assistent .chat-submit:hover {
			background-color: rgba(255, 255, 255, 0.2);
		}

		.float-llm-assistent .chat-submit i {
			font-size: 16px;
		}
		
		.float-llm-assistent .llm-close {
			position: absolute;
			right: 5px;
			margin: 15px 25px;
			width: 30px;
			height: 30px;
			border-radius: 50%;
			border: 1px solid rgba(70, 80, 90, 0.08);
			color: rgba(70, 80, 90, 0.8);
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			transition: background-color 0.3s;
			font-size: 12px;
			text-decoration: none;
		}
			.float-llm-assistent .llm-close:hover{
				text-decoration: none;
			}
		
	.float-notifications{
		right: 10px;
		position: absolute;
		width: 250px;
	}
	.float-notifications::-webkit-scrollbar{
		width: 4px;		
	}
	.float-llm-assistent .responses::-webkit-scrollbar	{
		width: 8px;
	}
	.float-notifications::-webkit-scrollbar-track,
	.float-llm-assistent .responses::-webkit-scrollbar-track{
	  background: #f0f0f0;
	  border-radius: 10px;
	}
	.float-notifications::-webkit-scrollbar-thumb,
	.float-llm-assistent .responses::-webkit-scrollbar-thumb	{
	  background-color: #d1d1d1;
	  border-radius: 10px;
	}
	.float-notifications::-webkit-scrollbar-thumb:hover,
	.float-llm-assistent .responses::-webkit-scrollbar-thumb:hover	{
	  background-color: #a8a8a8;
	}
	.float-notifications ul {
		list-style: none;
		gap: 10px; /* Espaçamento entre botões */
		margin: 10px 0;
		padding: 0;
	}
		.float-notifications ul li {
			color: var(--global-color-1-hex);
			padding: 10px 15px; /* Tamanho do botão */
			cursor: default;
			margin-bottom: 10px;
			border-radius: 8px;
			box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.10);
			background: #fff;
		}
			.float-notifications ul li:hover {
				background: color-mix(in srgb, var(--global-color-1-hex) 5%, white);
			}
			.float-notifications ul li a {
				text-decoration: none;
				color: initial;
				font-size: 13px;
				max-height: 32px;
				overflow: hidden;
				display: block;
			}
				.float-notifications ul li a[href="#"] {
					cursor: default;
				}
				.float-notifications ul li a strong {
					font-size: 13px;
				}
			.float-notifications .datetime {
				margin-top: 5px;
				font-size: 12px;
				color: #626f86;
			}
			.float-notifications ul li .user-name {
				width: 170px;
				display: inline-block;
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
			}
			.float-notifications ul li .checkboxes label .photo-wrapper {
				vertical-align: baseline;
			}
	.notifications-button .counter {
		display: none;
		background: red;
		position: absolute;
		padding: 3px 6px;
		border-radius: 5px;
		color: #fff;
		font-size: 10px;
		margin: -25px 0px 0 32px;
	}
.wrapper{
	min-width: 640px;
	max-width: 100%;
	margin: 0 auto 60px;
	background: #fff;
	border-radius: 5px;
	padding: 40px;
	margin-left: 290px;
	margin-right: 40px;
	transition: margin-left 0.3s ease;
}
	.wrapper.dashboard{
		background: none;
		padding: 0 0 40px 0;
	}
	.wrapper.search-mode{
		margin: 20px;
		min-width: initial;
		padding: 40px 30px;
	}
	.wrapper.print-mode{
		margin: 0;
		padding: 40px;
	}
.wrapper.empty-state{
	display: none;
	min-height:500px;
}
	.wrapper.empty-state .post {
		max-width: 600px;
		margin: 0 auto;
	}
		.wrapper.empty-state .post img{
			width: 100%;
			max-width: 400px;
		}
.onboarding-popup{
	position: fixed;
	z-index: 1;
	overflow-x: hidden;
	bottom: 0;
	right: 40px;
	background: #fff;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	width: 330px;
	box-shadow: 0 10px 30px rgba(0,0,0,.20);
}
	.onboarding-popup .close-onboarding-popup-wrapper{
		position: fixed;
		margin-top: -25px;
	}
		.onboarding-popup .close-onboarding-popup-wrapper a{
			color: #000;
			cursor: pointer;
		}
			.onboarding-popup .close-onboarding-popup-wrapper a i{
				font-size: 22px;
			}
		.onboarding-popup .close-onboarding-popup-wrapper .close-onboarding-popup{
			display: none;
		}
	.onboarding-popup .header{
		padding: 20px 30px 20px 30px;
		background: var(--global-color-1-hex);
		color: #fff;
		margin: 0;	
		font-size: 16px;
		cursor: pointer;
	}
	.onboarding-popup .body{
		padding: 20px;
		height: 350px;
		display: none;
	}
		.onboarding-popup .body .gauge{
			border: 1px solid var(--global-color-2-hex);
			cursor: default;
			border-radius: 40px;
			text-align: center;
			margin: 10px 0 30px;
			padding: 3px;
			background-repeat: no-repeat;
			background-image: linear-gradient(to right, var(--global-color-2-hex), var(--global-color-2-hex));
		}
		.onboarding-popup .body a {
			padding: 5px;
			text-decoration: none;
			display: block;
			overflow: hidden;
			white-space: nowrap;
			text-overflow: ellipsis;
			color: #000;
		}
				.onboarding-popup .body a[data-pending="1"] i{
					color: #bec2cb;
				}
				.onboarding-popup .body a[data-pending="1"] span{
					color: #000;
				}
				.onboarding-popup .body a[data-pending="0"] i{
					color: var(--global-color-2-hex);
				}
				.onboarding-popup .body a[data-pending="0"] span{
					color: #bec2cb;
					text-decoration: line-through;
				}
			.onboarding-popup .body a i{
				margin-right: 10px;
				font-size: 20px;
				vertical-align: middle;
				font-size: 26px;
			}
			.onboarding-popup .body a span{
				vertical-align: middle;
				font-size: 16px;
			}
.show-more{
	margin: 20px auto;
	padding: 8px 20px;
	display: table;
	border-radius: 8px;
	background: #f7f7f7;
	border: 1px #efefef solid;
	font-size: 12px;
}
	a.show-more{
		color: color-mix(in srgb, var(--global-color-1-hex) 60%, white);
		text-decoration: none;
	}
.right{
	text-align: right;
}
.negative{
	color: #ff00009e;
}
.positive {
    color: #6c63ff;
}
.topnav-mobile, .close-sidenav-wrapper{
	display:none;
}
	.topnav-mobile .show-sidenav,
	.sidenav .close-sidenav,
	.sidenav .min-sidenav{
		cursor: pointer;
	}
	.sidenav .min-sidenav{
		opacity: 30%;
	}
.sidenav {
	height: 100%;
	width: 240px;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	background-color: #343a40;
	overflow-y: auto;
	padding-top: 30px;
	transition: all 0.4s;
	-webkit-transition: -webkit-transform 0.4s;
	-webkit-transition: transform 0.4s;
	box-shadow: 0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)!important;
	transition: width 0.3s ease, font-size 0.3s ease;

}
	.sidenav::-webkit-scrollbar	{
		width: 4px;
	}
	.sidenav::-webkit-scrollbar-track{
	  background: #818181;
	  border-radius: 10px;
	}

	.sidenav a {
	  padding: 9px 32px 9px 32px;
	  text-decoration: none;
	  color: #818181;
	  display: block;
	  overflow: hidden;
	  white-space: nowrap;
	  text-overflow: ellipsis;
	}
		.sidenav a:hover {
		  color: #f1f1f1;
		}
		.sidenav a.on {
		  color: #fff;
		}
	.sidenav .user {
	  padding: 8px 15px 8px 32px;
	  text-decoration: none;
	  color: #fff;
	  display: block;
	  overflow: hidden;
	  white-space: nowrap;
	  text-overflow: ellipsis;
	  font-size: 12px;
	  cursor: default;
	}
		.sidenav .user .name {
			padding-bottom: 0;
		}
	.sidenav .photo{
		display: block;
		position: absolute;
		background: url(/img/user-photo.jpg);
		width: 45px;
		height: 45px;
		border-radius: 50%;
		background-size: contain;
		background-position: top;
		transform: translateX(-50%);
		margin-top: 5px;
		border: 1px #fff solid;
	}
	.sidenav .spacer{
		border-bottom: 1px #47515a solid;
		margin: 10px 30px;
	}
	.sidenav .logo{
		font-size: 18px;
		color: #fff;
		font-weight: 500;
		text-shadow: 0 0 black;
		overflow: hidden;
		height: 15px;
		cursor: default;
	}
	.sidenav #logoff{
		padding-bottom: 70px;
	}
	
	
/* not mobile view */
@media only screen and (min-device-width: 481px) and (orientation: landscape) {

	.sidenav.min {
		width: 75px;
	}
		.sidenav.min .logo {
			display: none;
		}
	.sidenav.min .user{
		padding: 8px 15px 60px 36px;
	}
		.sidenav.min .user .user{
			display:none;
		}
		.sidenav.min .user .name{
			padding: 8px 15px 8px 36px;
		}
		.sidenav.min .spacer{
			margin: 10px 20px;
		}
		.sidenav.min a {
		  color: transparent;
		  text-shadow: none;
		  font-size: 0;
		  padding: 9px 32px 14px 28px;
		}

		.sidenav.min a i {
		  font-size: 18px;
		  color: #818181;
		}
	.wrapper.min:not(.search-mode),
	.footer.min:not(.search-mode){
		margin-left: 125px;
	}
}

.badge{
	padding: 5px 8px;
	display: inline-block;
	border-radius: 4px;
	font-size: 13px;
	color: #fff;
}
.good{
	background: #61bf61;
}
.bad{
	background: #e99191;
}
.attention{
	background: var(--global-color-1-hex);
}
.avg{
	background: #ffff6c;
	color: #000;
}
.printing-only{
	display: none;
}
.post *{
	font-size: 1.03em;
}
	.post h1{
		font-size: 24px !important;
	}
	.post h2{
		font-size: 18px !important;
		margin: 40px 0 15px;
	}
	.post h3{
		font-size: 16px !important;
	}

@media print {
	@page{
		margin: 0;
	}
	*{
		font-size: 11px;
	}
	.footer{
		display: none;
	}
	body {
		margin: 1.6cm;
	}
	html,body{
		background: #fff;
	}
	.wrapper{
		margin: 0 auto !important;
		padding:0;
	}
	.skip-printing{
		display: none !important;
	}
	.printing-only{
		display: initial !important;
	}
}
.search input[type="text"]{
	width: 190px;
}
.search button.submit {
	padding: 10px;
	min-width: 40px;
    margin: 10px 20px 15px 5px;
}
	.search button.submit:disabled, button:disabled {
	    cursor: not-allowed !important;
		opacity: 0.2;
	}
.search button.addnew{
	float: right;
}
input[type="text"], input[type="password"], input[type="month"], input[type="date"], input[type="number"], select, textarea {
	border: 1px solid #eaeaea;
	border-radius: 5px;
	padding: 10px;
	background: color-mix(in srgb, var(--global-color-1-hex) 3%, white);
	color: #666;
	width: calc(100% - 30px);
}
input[type="text"], input[type="password"], input[type="month"], input[type="date"], input[type="number"] {
	height: 20px;
}
input[type="month"],input[type="date"]{
	width: 130px;
}
input[type="text"]:disabled, input[type="password"]:disabled, 
input[type="month"]:disabled, input[type="date"]:disabled, 
input[type="number"]:disabled, select:disabled, textarea:disabled {
	color: #b9b9b9;
	-webkit-text-fill-color: #b9b9b9;
	opacity: 1; /* required on iOS */
	cursor: not-allowed;
	background: rgb(234 234 234 / 30%);
}
input[type="checkbox"]{
	width: 20px;
	height: 20px;
}
select{
	height: 42px;
	/*
	width: 270px;
	max-width: calc(100% - 10px);
	*/
	width: calc(100% - 5px);
}
input[type="submit"], button.submit, button.cancel, button.addnew {
	border-radius: 5px;
	border: 1px solid var(--global-color-1-hex);
	background: var(--global-color-1-hex);
	color: #fff;
	padding: 10px 30px;
	margin: 0 0 30px;
	font-size: 13px;
	cursor: pointer;
	height: 40px;
	min-width: 90px;
}
button.cancel{
	background: #fff;
    color: color-mix(in srgb, var(--global-color-1-hex) 60%, white);
}
label {
	display: block;
	font-size: 13px;
	margin: 10px 0 5px;
	font-weight: 600;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
	label .required{
		color: var(--global-color-1-hex);
	}
.error, .completed, .not-found, .not-authorized{
	color: #343A40;
    margin: 20px 0;
    padding: 10px;
    font-weight: 600;
    border-radius: 5px;
    background-image: url(/img/illustrations/undraw_Cancel_re_pkdm.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center -20px;
    text-align: center;
    padding-top: 199px;
}
.error.left{
    background-position: left -20px;
    text-align: left;
}
.error.invalid-form{
    background-image: url(/img/illustrations/undraw_access_denied_re_awnf.png);
}
.error.chart{
	background-image: url(/img/illustrations/undraw_Metrics_re_6g90.png);
}
#facebox .error.billing{
	margin-top: 50px;
}
.error.billing{
	background-image: url(/img/illustrations/undraw_online-payments_p97e.png);
}
.error-single{
	color: #f70505;
    margin: 20px 0;
    background: #ffdede8a;
    padding: 10px;
    border: 1px solid #ff737326;
    border-radius: 5px;
}
	.error a, .error-single a{
		color: #f70505;
		text-decoration: underline;
	}
.completed{
    background-image: url(/img/illustrations/undraw_Winners_re_wr1l.png);
}
.not-found{
    background-image: url(/img/illustrations/undraw_Taken_re_yn20.png);
}
.not-authorized{
    background-image: url(/img/illustrations/undraw_security_0ubl.png);
}
.empty{
    background-image: url(/img/illustrations/undraw_no-data_ig65.png);
}
.confirmation{
	margin: 20px 0;
    background: color-mix(in srgb, var(--global-color-1-hex) 5%, white);
	border-left: 3px solid var(--global-color-1-hex);
    padding: 10px;
    color: color-mix(in srgb, var(--global-color-1-hex) 80%, white);
    border-radius: 5px;
	line-height: 20px;
}
	.confirmation a{
		color: #888973;
		text-decoration: underline;
	}
.error-alert{
    margin: 20px 0;
    background: color-mix(in srgb, #e99191 5%, white);
    border-left: 3px solid #e99191;
    padding: 10px;
    color: color-mix(in srgb, var(--global-color-1-hex) 80%, white);
    border-radius: 5px;
    line-height: 20px;
}
.blank{
	margin: 20px 0;
}
.card{
	box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
	padding: 20px;
	min-height: 100px;
	margin: 5px 20px 20px 2px;
	min-width: 150px;
}

	.card.action{
		cursor: pointer;
		line-height: 20px;
	}
		.card.action:hover{
			background: #fbfbfb;
		}
i[data-help="score"]{
	cursor: pointer;
}
.modal{
    color: #6c6c6c;
    line-height: 1.3em;
}
.dropbtn {
	padding: 12px 22px;
	text-decoration: none;
    color: #666;
	border: 1px solid #eaeaea;
	cursor: pointer;
	border-radius: 4px;
	background: #fff;
	margin-bottom: 5px;
	margin-right: 15px;
}
	.dropbtn.dark{
		background: #f3f3f3;
	}
	.dropbtn i{
		margin-left: 6px;
	}
.dropdown {
	position: relative;
	display: inline-block;
}
.dropdown-content {
	display: none;
	margin-left: 0;
	position: absolute;
	background-color: #fff;
	min-width: 260px;
	box-shadow: 0px 6px 6px 1px rgba(0,0,0,0.2);
	border: 1px solid #f1f1f1;
	z-index: 1;
}
	.dropdown.on .dropbtn.on {
		background-color: #f0f0f0;
	}
	.dropdown-content a {
		color: black;
		padding: 12px 16px;
		margin: 4px 0;
		text-decoration: none;
		display: block;
	}
		.dropdown-content a:not(.disabled):not([data-action="none"]):hover {
			background-color: #f1f1f1;
		}
		
		.dropdown-content a .shortcut {
			opacity: 0.6;
			float: right;
		}
		
	.dropdown-content a.disabled, .dropdown-content label.disabled{
		cursor: default;
		  opacity: 0.5;

	}
	.dropdown-content .dropdown-option {
		padding: 12px 16px;
		margin: 4px 0;
		display: block;
	}
		.dropdown-content .dropdown-option .v-scroll{
			height: 203px;
			overflow-y: scroll;
			overflow-x: hidden;
		}
	.dropdown-content .dropdown-option button{
		padding: 10px;
		min-width: 80px;
		margin: 10px 0 0 0;
	}

.checkboxes label {
	display: inline-block;
	padding-right: 10px;
	white-space: nowrap;
	margin: 0;
	font-weight: unset;
}
.checkboxes input {
	vertical-align: middle;
}
.checkboxes label span {
	vertical-align: middle;
}

.checkboxes label .photo-wrapper {
	display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    padding: 5px;
}
	.checkboxes label .photo-wrapper .photo {
		width: 100%;
		height: 100%;
		border-radius: 50%;
		background-size: contain !important;
		background-position: top;
		background: url(/img/user-photo.jpg);
		border: 1px solid #efefef;
	}

/* mobile view */
@media only screen and (max-device-width: 480px),
only screen and (orientation: portrait) {
	.topnav-mobile{
		display:initial;
		width: 100%;
		position: fixed;
		z-index: 2;
		top: 0;
		left: 0;
		background-color: #343a40;
		overflow-y: hidden;
		padding: 15px 35px;
		transition: all 0.4s;
		-webkit-transition: -webkit-transform 0.4s;
		-webkit-transition: transform 0.4s;
		box-shadow: 0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)!important;
	}
		.topnav-mobile img{
			filter: brightness(0) invert(1);
			max-height:30px
		}
	.sidenav {
		display:none;
		padding-top: 8px;
	}
	.close-sidenav-wrapper{
		display: initial;
		/*text-align:right;*/
	}
	.min-sidenav-wrapper{
		display: none;
	}
		.close-sidenav-wrapper .close-sidenav{
			color: #fff;
		}
	.wrapper, .footer{
		margin-left: 0px;
		margin-right: 0px;
		min-width: initial;
		padding: 40px 30px;
	}
	.wrapper.dashboard{
		padding: 0 20px 40px 20px;
	}
	.footer{
		padding: 40px 80px;
	}
	.onboarding-popup{
		right: 20px;
	}
	.no-mobile{
		display: none;
	}
	.column select, .column-25 select{
		min-width:140px;
		max-width: calc(100% - 5px);
	}
	.search button.addnew{
		float: initial;
	}
	.modal{
		margin-top: 50px;
	}
	.toolbar-nav{
		margin: 50px auto 0;
		margin-left: 40px;
	}
}
.fixed {
	position: fixed;
	top: 0;
	z-index: 0;
}
.help-text{
	display: none;
}

	.help-content li{
		padding-bottom: 5px;
	}
.page-break {
	break-before: page; /* break-after: page; */
	page-break-before: always; /* Ou page-break-after: always; */
}
/* screenshot setup */
html[data-render-ready="true"] .sidenav{
	display: none;
}
html[data-render-ready="true"] .wrapper.min{
	margin-left: 40px;
	margin-top: 40px;
}
html[data-render-ready="true"] .toolbar-nav{
	display: none;
}
html[data-render-ready="true"] .footer{
	display:none;
}