@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700|Work+Sans:400,700&display=swap');
@import './variables.css';

html, body{
	font-family: 'Source Sans Pro', Arial, Verdana;
	padding-bottom: 0;
}

li {
	list-style-type: none;
}
.loader {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;  
	top: 0;
	left: 0;
	background: #fff;
	z-index: 100000;
}
.loader--circle {
	width: 120px;
	height: 120px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -60px 0 0 -60px;
	font-size: 10px;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-right: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	border-left: 1px solid var(--primary);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: spinner 700ms infinite linear;
	-moz-animation: spinner 700ms infinite linear;
	-ms-animation: spinner 700ms infinite linear;
	-o-animation: spinner 700ms infinite linear;
	animation: spinner 700ms infinite linear;
	z-index: 100001;
	@include media-breakpoint-down(xs) {
		width: 50px;
		height: 50px;
		margin: -25px 0 0 -25px;
	}
}
.loader--circle img {
	display: block;
	margin: 0 auto;
}
@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
    }
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-moz-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-o-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

#topnav .topbar-main {
    background-color: var(--primary-variant);
}
#topnav .topbar-main .container-fluid .row{
	padding: 10px 0;
	justify-content: space-between;
	width: 100vw;
}
.container__logo--text{
	display: flex;
	align-items: center;
	position: relative;
}
.container__logo--text .logo-image{
	padding-right: 24px;
	max-width: 166px;
	max-height: 38px;
	position: relative;
}
.container__logo--text .logo-image::before{
	content: '';
	position: absolute;
	height: 69px;
	right: 0;
	top: -18px;
	border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.container__logo--text .logo-image img{
	width: 100%;
	height: 100%;
}
#topnav .navbar-custom {
	background-color: #ffffff;
}

.has-submenu img{
	margin-right: 3px;
}
#topnav .has-submenu.active a, 
#topnav .has-submenu.active a i, 
#topnav .navigation-menu > li:hover a, 
#topnav .navigation-menu > li:hover a i  {
	color: var(--primary-accent);
}
.has-submenu a{
	padding: 0;
}
#topnav .navigation-menu .menu-item {
	position: relative;
}
#topnav .navigation-menu .menu-item.has-submenu:before {
	content: '';
    width: 6px;
    height: 6px;
    border-bottom: solid 2px #616672;
    border-left: solid 2px #616672;
    position: absolute;
    transform: rotate(-45deg);
    right: 10px;
    top: 28px;
}
#topnav .navigation-menu > li .submenu > li.has-submenu > a:after {
	content: '';
    width: 6px;
    height: 6px;
    border-bottom: solid 2px #616672;
    border-left: solid 2px #616672;
    position: absolute;
    transform: rotate(-135deg);
    right: 15px;
    top: calc(50% - 3px);
}
#topnav .navigation-menu > li .submenu .submenu a {
	font-size: 14px;
    line-height: 18px;
}
#topnav .navigation-menu > li .submenu li.has-submenu:hover > .submenu {
	visibility: visible;
    opacity: 1;
	margin: 0;
}

#topnav .navbar-toggle .lines{
	position: relative;
	top: 5px;
}
.navigation-menu .menu-button a {
	color: #fff;
	font-size: 14px;
	margin-top: 12px;
	margin-right: 20px;
	background-color: var(--primary-main);
	padding: 9px 14px !important;
	border-radius: 3px;
}

.logo-text p{
	font-family: 'Work Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 21px;
	text-transform: uppercase;
	color: #FFFFFF;
	position: relative;
	padding-top: 12px;
	margin-left: 24px;
}
.navigation-menu .dropdown .btn{
	background-color: var(--primary-main);
	color: #ffffff;
	position: relative;
	left: 4px;
	margin-right: 12px;
}
.navigation-menu .dropdown .btn:hover{
	background-color: #ffffff;
	color: var(--primary-main);
}
.dropdown p{
	color: #343A40;
}
.perfil__menu .dropdown .nav-link{
	min-height: 48px;
}
.dropdown .nav-link p{
	font-family: 'Work Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
	color: #FFFFFF;
	margin-left: 7px;
}

.dropdown .mdi-chevron-down{
	color: #ffffff;
	position: relative;
	top: 2px;
	left: 5px;
}
.select__compartilhar{
	border: none;
}
.select__compartilhar select:focus-visible {
	outline: none;
}
.label__compartilhar a{
	margin-left: 3px;
}

.compartilhar__content .texto__compartilhar1 , .texto__compartilhar2{
	position: relative;
	padding-left: 58px;
	font-family: 'Work Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #6E768E;
	bottom: 10px;
}

.compartilhar__content p{
	font-family: 'Work Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #6E768E;
}

.compartilhar__content span{
	font-weight: 600;
}
.texto__compartilhar2{
	display:none;
}

.select__compartilhar{
	display: flex;
}
.select__compartilhar img{
	position: relative;
	top: 10px;
	margin-right: 10px;
}
.select__compartilhar select{
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	display: flex;
	align-items: center;
	color: #343A40;
	border: none; 
	cursor: pointer;
}
.select__compartilhar select:focus-visible {
	outline: none;
}  
.custom-file-label::after {
    content: "Buscar";
}

.page-title-box .page-title {
    color: var(--primary-main);
    text-transform: uppercase;
    position: relative;
    padding-left: 35px;
}

.page-title-box .page-title:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #f09e00;
    position: absolute;
    top: 30%;
    left: 0;
    transform: translateY(-50%);
}

.page-title-box {
    padding-top: 50px;
    padding-bottom: 35px;
	display: flex;
	justify-content: space-between;
}
.page-title-box .btn-shareButton{
	width: 128px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.img-responsive {
	width: 100%;
}

.dropdown-toggle::after {
	display: none;

}

.perfil__menu{
	font-size: 16px;
	line-height: 16px;
	color: #fff;
	position: relative;
}

.perfil__menu a{
	color: #000;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	font-size: 18px;
	line-height: 16px;
}

.perfil__menu p{
	color: #fff;
	margin: 0;
}

.helpers{
	display: flex;
	position: relative;
	top: 8px;
}

.helpers .perfil__menu img{
	border-radius: 50%;
	height: 35px;
	width: 35px;
	position: relative;
}

.helpers .perfil__menu li .dropdown-menu-right a span svg{
	margin-right: 9.33px;
}

.configuracao__menu{
	justify-content: right;
}

.configuracao__menu p{
	margin: 0;
}
.dropdown span .fa-gear{
	color: #fff;
	font-size: 16px;
	position: relative;
	right: 30px;
	position: relative;
	bottom: 6px;
	margin-left: 30px;
}

#topnav .topbar-main .logo {
    font-weight: 500;
}

.footer {
	position: relative;
	padding: 16px 0 20px 0;
	color: #6e768e;
	font-size: 14px;
	background-color: #fff;
	font-family: 'Nunito', sans-serif;
	box-shadow: 0 0 1px rgba(50, 58, 70, 0.1);
}
.footer .footer-links a {
	color: var(--primary-dark-variant);
	margin-right: 22px;
}
.footer .footer-links a:hover {
	color: #323a46; }
.footer .footer-links a:first-of-type {
	margin-left: 0; }
.footer p {
	font-size: 15px;
	line-height: 20px;
	color: #6E768E;
	margin-bottom: 0;
}
.footer hr {
	margin: 16px 0 20px 0;
	border-color: rgba(110, 118, 142, 0.12);
}
.footer-social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--primary-dark-variant);
	border-radius: 50%;
	margin-left: 8px;
	color: var(--primary-dark-variant);
}

.form-control[type="file"] {
    font-size: 13px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(0, 0, 0, 0.3)!important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.3)!important;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: rgba(0, 0, 0, 0.3)!important;
}

.form-control{
	text-transform: uppercase;
}
.btn {
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	padding: 10px 13px;
}
.btn-primary {
    background-color: var(--primary-main);
    border-color: var(--primary-main);
}
.btn-green {
	background-color: #10654D;
    color: #ffffff;
}
.btn-green:hover, .btn-green:focus {
	background-color: #6eaf51;
    color: #ffffff;
}
.btn-pink:hover, .btn-pink:focus, .btn-pink {
	background-color: #F64F69;
    color: #ffffff;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open > .dropdown-toggle.btn-primary, .btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    background-color: var(--primary-hover-btn);
    border-color: var(--primary-hover-btn);
    color: #fff;
}
.btn-white {
	color: #4C5667;
	font-family: "Source Sans Pro";
	font-size: 14px;
	line-height: 18px;
}
.btn-grey {
    background-color: #94A4B5;
	background-color: #94A4B5;
	color: #ffffff;
	position: relative;
}
.btn-grey .notification {
	width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: #3bafda;
    position: absolute;
    top: -4px;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 10px;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus, .page-item.active .page-link{
	background-color: #ccc;
	border-color: #ccc;
	color: #000;
	box-shadow: none;
}
.modal-lg{
	width: 1140px;
	max-width: calc(100% - 30px);
}
.modal-md{
	width: 720px;
	max-width: calc(100% - 30px);
}
.modal-detalhe-pendencia p {
	color: #6E768E;
	font-size: 14px;
	line-height: 22px;
}
.modal-detalhe__title {
	color: #343A40;
    font-size: 20px;
    font-weight: 600;
	line-height: 25px;
	margin-bottom: 8px;
}
.form-group.no-margin{
	margin-bottom: 0;
}
.modal-detalhe__infos {
    padding: 0;
    margin: 0 0 24px 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
	justify-content: space-between;
	border-radius: 4px;
	border: 1px solid #CED4DA;
}
.modal-detalhe__infos li {
	padding: 13px 15px;
	width: 25%;
}
.modal-detalhe__infos li:not(:last-child) {
	border-right: solid 1px #CED4DA;
}
.modal-detalhe__infos--hat {
    color: #94A4B5;
    font-size: 13px;
    line-height: 17px;
	margin-bottom: 12px;
}
.modal-detalhe__infos--main {
	color: #343A40;
    font-size: 16px;
    line-height: 20px;
	margin-bottom: 12px;
}
.modal-detalhe__infos--by {
	color: #6E768E;
	font-size: 12px;
	font-weight: 600;
	line-height: 15px;
	margin-bottom: 0;
}
.modal-detalhe__subtitle {
    color: #343A40;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 10px;
}
.modal-detalhe-pendencia .table {
	border-radius: 4px;
	border: 1px solid #CED4DA;
}
.modal-detalhe-pendencia .table td, .modal-detalhe-pendencia .table th {
	border: none;
}
.modal-detalhe-pendencia .chat-conversation .conversation-list {
	border: 1px solid #CED4DA;
	padding: 20px;
    overflow: auto;
}
.modal-detalhe-pendencia .conversation-list .ctext-wrap {
	background: var(--primary-main);
}
.modal-detalhe-pendencia .conversation-list .ctext-wrap i {
	font-size: 13px;
	line-height: 18px;
	color: #ffffff;
}
.modal-detalhe-pendencia .conversation-list .ctext-wrap p {
	color: #FFFFFF;
	font-size: 13px;
	line-height: 18px;
}
.modal-detalhe-pendencia .conversation-list .clearfix:not(.odd) .ctext-wrap:after {
	right: calc(100% - 14px);
    top: 0;
    border: 14px solid rgba(213, 242, 239, 0);
    border-right-color: var(--primary-main);
    margin-top: 0;
    transform: rotate(-90deg);
}
.modal-detalhe-pendencia .conversation-list .odd .ctext-wrap {
    background: #E3F0DD !important;
}
.modal-detalhe-pendencia .conversation-list .odd .ctext-wrap i, .modal-detalhe-pendencia .conversation-list .odd p {
	color: #4C5667;
}
.modal-detalhe-pendencia .conversation-list .odd .ctext-wrap:after {
    border-left-color: #e3f0dd !important;
    left: calc(100% - 14px) !important;
    top: 0!important;
    right: calc(100% - 14px);
    border: 14px solid rgba(213, 242, 239, 0);
    margin-top: 0;
    transform: rotate(90deg);
}
.modal-detalhe-pendencia .modal__buttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.modal-product-image {
	width: 130px;
	height: 130px;
	object-fit: cover;
}
.modal-subtitle {
	color: #6E768E;
	font-size: 15px;
	line-height: 19px;
	margin-bottom: 20px;
}
.modal-form label {
	color: #6E768E;
    font-family: "Source Sans Pro";
    font-size: 14px;
    letter-spacing: 0;
    line-height: 23px;
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}
.modal-form input.form-control {
	border: 1px solid #CFCFCF;
  	border-radius: 3px;
}
.modal-image {
	text-align: center;
	width: initial;
    max-width: 800px;
}
.modal-image img {
	max-width: 100%;
}
.modal-image p {
	margin: 10px 0 0 0;
	font-size: 14px;
}
.custom-control-input[type="radio"]~.custom-control-label::before {
	background-color: #ffffff;
	border: #555555 solid 2px;
}
.form-row .custom-radio {
	margin-right: 15px;
}
.custom-radio .custom-control-input:checked~.custom-control-label::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2310654d'/%3e%3c/svg%3e");
}
.custom-control-input[type="radio"]:checked~.custom-control-label::before {
	color: var(--primary);
	border-color: var(--primary);
	background-color: #ffffff;
}
.custom-control-label {
	color: #555;
	cursor: pointer;
	padding-left: 22px;
    margin-right: 18px;
}
.ribbon-box {
	position: relative;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	/* Ribbon two */ 
}
.ribbon-box .ribbon {
	position: absolute;
	clear: both;
	padding: 5px 12px;
	margin-bottom: 15px;
	-webkit-box-shadow: 2px 5px 10px rgba(50, 58, 70, 0.15);
	box-shadow: 2px 5px 10px rgba(50, 58, 70, 0.15);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	left: initial;
    top: initial;
    overflow: initial;
    width: auto;
    height: auto; }
.ribbon-box .ribbon:before {
	content: " ";
	border-style: solid;
	border-width: 4px;
	display: block;
	position: absolute;
	bottom: 6px;
	left: inherit;
	right: 2px!important;
	margin-bottom: -10px;
	z-index: 2;
	width: 5px;
	transform: rotate(135deg);
}
.ribbon-box .ribbon.float-left {
	margin-left: -30px;
	border-radius: 0 3px 3px 0; }
.ribbon-box .ribbon.float-right {
	margin-right: 0;
	border-radius: 3px 0 0 3px;
	right: -7px; }
.ribbon-box .ribbon.float-right:before {
	right: 0; }
.ribbon-box .ribbon.float-right.shape {
	-webkit-clip-path: polygon(2% 0, 100% 1%, 100% 100%, 0 100%, 15% 50%);
	clip-path: polygon(2% 0, 100% 1%, 100% 100%, 0 100%, 15% 50%);
	padding-left: 25px;
	margin-right: -24px; }
.ribbon-box .ribbon.float-center span {
	margin: 0 auto 20px auto; }
.ribbon-box .ribbon-content {
	clear: both; }
.ribbon-box .ribbon-primary {
	background: #1abc9c; }
.ribbon-box .ribbon-primary:before {
	border-color: #148f77 transparent transparent; }
.ribbon-box .ribbon-secondary {
	background: #6c757d; }
.ribbon-box .ribbon-secondary:before {
	border-color: #545b62 transparent transparent; }
.ribbon-box .ribbon-success {
	background: #3bafda; }
.ribbon-box .ribbon-success:before {
	border-color: #2494be transparent transparent; }
.ribbon-box .ribbon-info {
	background: #37cde6; }
.ribbon-box .ribbon-info:before {
	border-color: #1ab6d0 transparent transparent; }
.ribbon-box .ribbon-warning {
	background: #f7b84b; }
.ribbon-box .ribbon-warning:before {
	border-color: #f5a51a transparent transparent; }
.ribbon-box .ribbon-danger {
	background: #f1556c; }
.ribbon-box .ribbon-danger:before {
	border-color: #ed2643 transparent transparent; }
.ribbon-box .ribbon-light {
	background: #f1f5f7; }
.ribbon-box .ribbon-light:before {
	border-color: #d1dee4 transparent transparent; }
.ribbon-box .ribbon-dark {
	background: #323a46; }
.ribbon-box .ribbon-dark:before {
	border-color: #1d2128 transparent transparent; }
.ribbon-box .ribbon-pink {
	background: #f672a7; }
.ribbon-box .ribbon-pink:before {
	border-color: #f34289 transparent transparent; }
.ribbon-box .ribbon-purple {
	background: #6559cc; }
.ribbon-box .ribbon-purple:before {
	border-color: #4639b9 transparent transparent; }
.ribbon-box .ribbon-two {
	position: absolute;
	left: -5px;
	top: -5px;
	z-index: 1;
	overflow: hidden;
	width: 75px;
	height: 75px;
	text-align: right; }
.ribbon-box .ribbon-two span {
	font-size: 13px;
	color: #fff;
	text-align: center;
	line-height: 20px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	width: 100px;
	display: block;
	-webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
	position: absolute;
	top: 19px;
	left: -21px;
	font-weight: 600; }
.ribbon-box .ribbon-two span:before {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	z-index: -1;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent; }
.ribbon-box .ribbon-two span:after {
	content: "";
	position: absolute;
	right: 0;
	top: 100%;
	z-index: -1;
	border-left: 3px solid transparent;
	border-bottom: 3px solid transparent; }
.ribbon-box .ribbon-two-primary span {
	background: #1abc9c; }
.ribbon-box .ribbon-two-primary span:before {
	border-left: 3px solid #117964;
	border-top: 3px solid #117964; }
.ribbon-box .ribbon-two-primary span:after {
	border-right: 3px solid #117964;
	border-top: 3px solid #117964; }
.ribbon-box .ribbon-two-secondary span {
	background: #6c757d; }
.ribbon-box .ribbon-two-secondary span:before {
	border-left: 3px solid #494f54;
	border-top: 3px solid #494f54; }
.ribbon-box .ribbon-two-secondary span:after {
	border-right: 3px solid #494f54;
	border-top: 3px solid #494f54; }
.ribbon-box .ribbon-two-success span {
	background: #3bafda; }
.ribbon-box .ribbon-two-success span:before {
	border-left: 3px solid #2084a9;
	border-top: 3px solid #2084a9; }
.ribbon-box .ribbon-two-success span:after {
	border-right: 3px solid #2084a9;
	border-top: 3px solid #2084a9; }
.ribbon-box .ribbon-two-info span {
	background: #37cde6; }
.ribbon-box .ribbon-two-info span:before {
	border-left: 3px solid #17a2b9;
	border-top: 3px solid #17a2b9; }
.ribbon-box .ribbon-two-info span:after {
	border-right: 3px solid #17a2b9;
	border-top: 3px solid #17a2b9; }
.ribbon-box .ribbon-two-warning span {
	background: #f7b84b; }
.ribbon-box .ribbon-two-warning span:before {
	border-left: 3px solid #eb990a;
	border-top: 3px solid #eb990a; }
.ribbon-box .ribbon-two-warning span:after {
	border-right: 3px solid #eb990a;
	border-top: 3px solid #eb990a; }
.ribbon-box .ribbon-two-danger span {
	background: #f1556c; }
.ribbon-box .ribbon-two-danger span:before {
	border-left: 3px solid #e71332;
	border-top: 3px solid #e71332; }
.ribbon-box .ribbon-two-danger span:after {
	border-right: 3px solid #e71332;
	border-top: 3px solid #e71332; }
.ribbon-box .ribbon-two-light span {
	background: #f1f5f7; }
.ribbon-box .ribbon-two-light span:before {
	border-left: 3px solid #c0d2db;
	border-top: 3px solid #c0d2db; }
.ribbon-box .ribbon-two-light span:after {
	border-right: 3px solid #c0d2db;
	border-top: 3px solid #c0d2db; }
.ribbon-box .ribbon-two-dark span {
	background: #323a46; }
.ribbon-box .ribbon-two-dark span:before {
	border-left: 3px solid #121519;
	border-top: 3px solid #121519; }
.ribbon-box .ribbon-two-dark span:after {
	border-right: 3px solid #121519;
	border-top: 3px solid #121519; }
.ribbon-box .ribbon-two-pink span {
	background: #f672a7; }
.ribbon-box .ribbon-two-pink span:before {
	border-left: 3px solid #f12a7a;
	border-top: 3px solid #f12a7a; }
.ribbon-box .ribbon-two-pink span:after {
	border-right: 3px solid #f12a7a;
	border-top: 3px solid #f12a7a; }
.ribbon-box .ribbon-two-purple span {
	background: #6559cc; }
.ribbon-box .ribbon-two-purple span:before {
	border-left: 3px solid #3f33a6;
	border-top: 3px solid #3f33a6; }
.ribbon-box .ribbon-two-purple span:after {
	border-right: 3px solid #3f33a6;
	border-top: 3px solid #3f33a6; }
.ribbon-box .badge {
	font-size: 12px;
	font-family: 'Nunito', sans-serif;
	line-height: normal;
	font-weight: normal;
}
.ribbon-box .badge.badge-light-primary {
	color: #6eaf51 !important;
	border: solid 1px rgba(110, 175, 81, 0.16);
	background-color: rgba(110, 175, 81, 0.08);
}
.ribbon-box .badge.badge-light-danger {
	color: #d0021b !important;
	border: solid 1px rgba(246, 79, 105, 0.16);
	background-color: rgba(246, 79, 105, 0.08);
}
.ribbon-box .ribbon-box-title {
	margin-bottom: 8px;
	width: calc(100% - 110px);
}
.ribbon-box .ribbon-content-box {
	margin-bottom: 16px;
}
.ribbon-box .ribbon-content a:not(.btn),
.ribbon-file a p {
	color: var(--primary);
	text-decoration: none;
}
.ribbon-box .ribbon-content a:not(.btn):hover,
.ribbon-file a:hover p {
	text-decoration: underline;
}
.ribbon-box .ribbon-content p {
	margin-bottom: 0;
}
.ribbon-box .ribbon-content .card-box-gray {
	padding: 17px 12px;
	border: solid 1px rgba(148, 164, 181, 0.2);
	background-color: rgba(206, 212, 218, 0.12);
}
.ribbon-file a {
	display: flex;
	margin-top: 4px;
	flex-wrap: wrap;
}
.ribbon-file .mdi.mdi-attachment {
	width: 20px;
	height: 20px;
	padding: 3px;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	line-height: 12px;
	border: solid 1px #cfcfcf;
	background-color: #f1f5f7;
	font-size: 12px;
	transform: rotate(-90deg);
	margin-right: 4px;
}
.ribbon-box .text-muted {
	color: #6E768E !important;
	font-family: "Source Sans Pro";
}
.ribbon-box .ribbon-content .ribbon-content-price {
	color: #343A40;
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	margin-bottom: 16px;
}
.ribbon-content-title {
	color: #6E768E;
	text-transform: uppercase;
}
.ribbon-box .ribbon-content-box a {
	color: var(--primary);
	font-size: 15px;
	line-height: 19px;
	text-decoration: underline !important;
}
.ribbon-box .ribbon-content-box hr {
	margin: 13px 0;
}
.ribbon-box .btn .mdi {
	font-size: 20px;
}
.slimScrollDiv {
    height: auto !important;
}
.conversation-list {
	border: solid 1px rgba(206, 212, 218, 0.3);
	margin: 4px 0 24px 0;
	list-style: none;
	height: 332px;
	padding: 10px;
	min-height: 378px; }
.conversation-list li {
	margin-bottom: 24px; }
.conversation-list .chat-avatar {
	float: left;
	text-align: center;
	width: 44px; }
.conversation-list .chat-avatar img {
	border-radius: 100%;
	width: 100%; }
.conversation-list .chat-avatar i {
	font-size: 12px;
	font-style: normal; }
.conversation-list .ctext-wrap {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #f7f7f7;
	border-radius: 3px;
	display: inline-block;
	padding: 13px;
	position: relative;
	font-family: 'Nunito', sans-serif;
    border-top-left-radius: 0; }
.conversation-list .ctext-wrap i {
	display: block;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	position: relative; }
.conversation-list .ctext-wrap p {
	margin: 0;
	padding-top: 3px; }
.conversation-list .ctext-wrap:after {
	right: 100%;
	top: 0;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-top-color: #f7f7f7;
	border-width: 8px;
	margin-left: -1px;
	margin-top: 0;
	border-right-color: #f7f7f7; }
.conversation-list .conversation-text {
	float: left;
	font-size: 12px;
	margin-left: 12px;
	width: 70%; }
.conversation-list .odd .chat-avatar {
	float: right !important; }
.conversation-list .odd .conversation-text {
	float: right !important;
	margin-right: 12px;
	text-align: right;
	width: 70% !important; }
.conversation-list .odd .ctext-wrap {
	background-color: #dbfaf4; }
.conversation-list .odd .ctext-wrap:after {
	border-color: transparent;
	border-left-color: #dbfaf4;
	border-top-color: #dbfaf4;
	left: 99% !important;
    top: 0 !important; }
.chat-conversation-intern .conversation-list .ctext-wrap {
	background: #1e5359;
	width: 100%;
}
.chat-conversation-intern .conversation-list .clearfix:not(.odd) .ctext-wrap:after {
	border-top-color: #1e5359;
	border-right-color: #1e5359;
}
.chat-conversation-intern .conversation-list .ctext-wrap i,
.chat-conversation-intern .conversation-list .ctext-wrap p {
	color: #ffffff;
}
.chat-conversation-intern .conversation-list .clearfix.odd .ctext-wrap a {
	color: var(--primary);
}
.chat-conversation-intern .conversation-list .clearfix:not(.odd) .ctext-wrap a {
	color: #86fddb;
}
.chat-conversation-intern .conversation-list .odd .ctext-wrap {
	background: #e3f0dd !important;
}
.chat-conversation-intern .conversation-list .odd .ctext-wrap:after {
	border-top-color: #e3f0dd !important;
	border-left-color: #e3f0dd !important;
}
.chat-conversation-intern .conversation-list .odd .ctext-wrap i,
.chat-conversation-intern .conversation-list .odd .ctext-wrap p {
	color: #4c5667;
}
.chat-conversation-extern .conversation-list {
	background-color: #1e5359;
}
.chat-conversation-extern .conversation-list .ctext-wrap {
	background: #f1f5f7;
	width: 100%;
}
.chat-conversation-extern .conversation-list .clearfix:not(.odd) .ctext-wrap:after {
	border-top-color: #f1f5f7;
	border-right-color: #f1f5f7;
}
.chat-conversation-extern .conversation-list .ctext-wrap i,
.chat-conversation-extern .conversation-list .ctext-wrap p {
	color: #4c5667;
}
.chat-conversation-extern .conversation-list .odd .ctext-wrap {
	background: #e3f0dd;
}
.chat-conversation-extern .conversation-list .odd .ctext-wrap:after {
	border-top-color: #e3f0dd;
	border-left-color: #e3f0dd;
}
.chat-conversation-extern .conversation-list .odd .ctext-wrap i,
.chat-conversation-extern .conversation-list .odd .ctext-wrap p {
	color: #4c5667;
}
.chat-conversation-extern .conversation-list .chat-avatar i {
	color: #d3d4d5;
}
.conversation-list .chat-avatar i {
	font-size: 11px;
	font-family: 'Nunito', sans-serif;
	line-height: 15px;
	color: #4C5667;
}
.chat-conversation .col-sm-7 {
	padding-right: 0;
}
.device-image__wrapper {
    position: relative;
}
.device-image__buttons {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
	display: none;
}
.device-image__buttons a {
    height: 40px;
    width: 40px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    font-size: 14px;
    color: var(--primary);
}
.device-image__wrapper:hover .device-image__buttons {
	display: flex;
}
.device-image-subtitle {
	position: absolute;
    bottom: 0;
    margin: 0;
    background-color: #e6e9ec;
    width: 100%;
    color: #4C5667;
    padding: 2px 5px;
    text-align: center;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 12px;
}
.modal .dropzone {
	border: 2px dashed rgba(50, 58, 70, 0.3);
	background: #fff;
	border-radius: 6px;
	width: 100%;
	position: relative;
	cursor: pointer; }
.modal .dropzone .fallback {
	display: none;
}
.alert-success {
    color: #155724;
    background-color: #d4edda !important;
    border-color: #c3e6cb !important;
}
.alert-danger {
    color: #D0021B;
    border: 1px solid rgba(246,79,105,0.16) !important;
    border-radius: 4px;
    background-color: rgba(246,79,105,0.08) !important;
}
.banner {
	background: url('../images/banner.jpg') center center;
	background-size: cover;
	padding: 80px 0;
}

.carousel-caption {
    left: 50%;
    right: inherit;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.4);
    padding: 30px;
    max-width: 550px;
    min-height: auto;
    height: auto;
}

.carousel-caption h3 {
    font-size: 32px;
    color: rgb(76, 86, 103)!important;
    margin-bottom: 20px;
}

.carousel-caption p {
    color: rgba(76, 86, 103, 0.8);
    font-size: 18px;
    margin-bottom: 0!important;
}

.banner .banner-text {
	display: table;
	max-width: 500px;
	padding: 30px 50px;
	background: rgba(255, 255, 255, .5);
	text-align: center;
	margin: 0 auto;
}

#login .wrapper {
	height: 100%;
	padding-top: 77px;
}

.login {
	background: url('../images/banner.jpg') center center;
	background-size: cover;
	width: 100%;
	height: 100%;
	min-height: 100%;
	display: block;
}

.login .login-field {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 570px;
	padding: 30px 50px;
	text-align: center;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}

.login-field h1, .login-field label, .login-field a, .login-field span { color: var(--primary-dark); }
.login-field a { text-decoration: underline; }
.login-field span { display: block; }
.login-field .cadastre-se {
	display: block;
	text-transform: uppercase;
	font-size: 25px;
	color: #FF9E00;
}

.table .btn {
    background: #ccc!important;
    border-color: #ccc!important;
    color: #5f5f5f;
    padding: 3px 10px;
    width: auto;
}

.carousel-item {
    height: 400px;
    overflow: hidden;
}

.carousel-item > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.form-control {
    text-align: left!important;
    text-transform: none;
}

@media (max-width: 429px) {
	.page-title {
		white-space: pre-wrap;
	}
	.page-title-box .page-title:before {
		top: 20%;
	}
	.page-title-box .btn-shareButton{
		width: 88px;
		height: 30px;
		font-size: 10px;
	}
}

@media (max-width: 1120px) {
	.form-horizontal .text-right{
		text-align: left!important;
	}
	.topbar-main .logo-image, .topbar-main .helpers{
		width: auto;
	}
	.btn-mobile-block {
		display: block;
		width: 100%;
		margin: 10px auto;
	}
	#topnav .topbar-main .logo {
	    font-size: 14px;
	}
	#topnav .navigation-menu {
		text-align: left;
	}
	#topnav .navigation-menu > li a{
		font-size: 12px;
	}
	#topnav .navigation-menu > li .submenu li a {
		padding: 7px 60px 7px 20px;
	}
	#topnav .navigation-menu > li .submenu > li.has-submenu > a:after {
		transform: rotate(-45deg);
	}
	#topnav .navigation-menu .menu-item.has-submenu:before {
		top: 22px;
	}
	.topbar-main .logo-image {
	    display: block;
	    width: 110px;
	}

	#topnav .navbar-toggle .lines {
	    margin-right: 0;
		padding: 0;
		margin: 50% auto;
		position: relative;
		right: 50px;
	}
	#topnav .navbar-toggle.open span:first-child,
	#topnav .navbar-toggle.open span:last-child {
		top: 8px;
	}
	.row{
		min-width: auto!important;
	}
	.logo-text p{
		position: relative;
	}
	.navigation-menu .dropdown .btn{
		margin-left: 11px;
		margin-top: 0px;
	}
	.topbar-main .logo-image, .topbar-main .helpers .mdi-chevron-down{
		color: #1e535900;
	}
	.topbar-main .logo-image, .topbar-main .helpers{
		position: relative;
		right: 30px;
	}
	.topbar-main .logo-image, .topbar-main .helpers .configuracao__menu li a i{
		margin: 0;
	  }}

.status__steps .status__bar .progress-bar {
	visibility: hidden;
}
.status-01{
	color: #808080;
	background: #808080!important;
}
.status-02{
	color: #000!important;
	background: #ddebf6!important;
}
.status-03{
	color: #000!important;
	background: #aad9ec!important;
}
.status-04{
	color: #000!important;
	background: #31cdcb!important;
}
.status-05{
	color: #fff!important;
	background: #accf8f!important;
}
.status-06{
	color: #fff!important;
	background: #65c56a!important;
}
.status-07{
	color: #fff!important;
	background: #629b3c!important;
}
.status-08{
	color: #fff!important;
	background: #007135!important;
}

.section--fixed {
    max-width: 100%;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

.section--fixed.is-open{
	opacity: 1;
	visibility: visible;
    transform: translateY(0%);
}

.section--fixed .col-12 {
    margin: 0!important;
}

.section--fixed .col-12 .card-box {
    margin: 0!important;
    border: none;
}

#topnav{
	max-height: 140px;
}

.box__buttons--content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	padding: 0 20px;
}

.card-box.box__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
	flex-wrap: wrap;
	padding: 20px;
}

.box__buttons--title {
    font-size: 16px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 8px;
}
.box__buttons--group {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.box__buttons--group .btn {
	margin: 0 1px;
	display: inline-block;
    width: auto;
}
.badge {
	font-family: 'Source Code Pro', monospace;
	font-size: 12px;
	line-height: normal;
	font-weight: normal;
}
.badge__error {
	border: solid 1px #f496a5;
	background-color: rgba(246,79,105,0.56);
	color: #870515;
}
.badge__new {
	border: solid 1px #a4c893;
	background-color: rgba(110, 175, 81, 0.56);
	color: #1e5359;
}
.badge__reman {
	border: solid 1px #f3c56c;
  	background-color:rgba(240, 158, 0, 0.56);
	color: #875e0e;
}
.badge__location {
	border: solid 1px #2ea0c7;
	background-color: rgba(0, 143, 191, 0.8);
	color: #ffffff;
}
.badge__separation {
	background-color: #accf8f;
	border: solid 1px #accf8f;
	color: #343a40;
}
.badge__draft {
	background-color: #808080;
	border: solid 1px #808080;
	color: #ffffff;
}
.badge__solicitation {
	background-color: #ddebf6;
	border: solid 1px #ddebf6;
	color: #343a40;
}
.badge__production {
	background-color: #31cdcb;
	border: solid 1px #31cdcb;
	color: #343a40;
}
.badge__efetivation {
	background-color: #aad9ec;
	border: solid 1px #aad9ec;
	color: #343a40;
}
.badge__dispatch {
	background-color: #65c56a;
	border: solid 1px #65c56a;
	color: #ffffff;
}
.badge__transportation {
	background-color: #629b3c;
	border: solid 1px #629b3c;
	color: #ffffff;
}
.badge__delivered {
	background-color: #007135;
	border: solid 1px #007135;
	color: #ffffff;
}
.table-border-out {
	border: 1px solid #dee2e6 !important;
}
table.dataTable.table-reman {
	width: 100% !important;
	border-collapse: collapse !important;
	margin-bottom: 20px !important
}
.table.table-reman td, .table.table-reman th,
.table-border-out td, .table-border-out th {
	border: none;
}
.table__buttons--group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 120px;
}
.table__buttons--group .btn {
    width: 36px;
    padding: 0;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px 4px 0;
	margin-right: 4px;
	position: relative;
}
.table__buttons--group .btn span.notification {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: #3bafda;
    position: absolute;
    top: -4px;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 10px;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
}
.table__buttons--group .btn span:not(.notification) {
	display: none;
}
.table__buttons--group .dropdown-menu {
	padding: 14px 0;
}
.table__buttons--group .dropdown-menu .btn {
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
	border: 0;
	font-size: 0.9rem;
	display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent !important;
}
.table__buttons--group .dropdown-menu .btn:active {
	color: #212529;
}
.table__buttons--group .dropdown-menu .btn:hover {
	background-color: #f8f9fa  !important;
}
.table__buttons--group .dropdown-menu .btn span {
	display: block;
	margin-left: 8px;
}
.dropdown .dropdown-menu-right span{
	display: flex;
}
.dropdown .dropdown-menu-right span img{
	width: 13px;
	height: 13px;
	position: relative;
	left: -10px;
}
.dropdown .dropdown-menu-right p{
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	display: flex;
	align-items: center;
	color: #343A40;
	margin: 0;
}
.dropdown .dropdown-menu-right p:hover{
	color: var(--primary-accent);
}
.carousel__small {
	margin: 171px 0 32px 0;
}
.carousel__small .carousel-item {
	height: auto;
}
.carousel__small .carousel-control-next, .carousel__small .carousel-control-prev {
	width: 8%;
}
.carousel__small .carousel-indicators {
	margin-bottom: 0;
}
.carousel__small .banner__small--image {
	height: auto;
	width: 100%;
}
.status__item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 12.3%;
}

.status__item p{
	font-size: 12px;
}

.status {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.status__bar {
    display: block;
    width: 100%;
    margin-top: 10px;
}

.status__bar .progress {
    background: rgba(0,0,0,0.1);
	height: 35px;
	background: rgba(252,252,252,1);
	background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(235,235,235,1) 41%, rgba(235,235,235,1) 60%, rgba(252,252,252,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(252,252,252,1)), color-stop(41%, rgba(235,235,235,1)), color-stop(60%, rgba(235,235,235,1)), color-stop(100%, rgba(252,252,252,1)));
	background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(235,235,235,1) 41%, rgba(235,235,235,1) 60%, rgba(252,252,252,1) 100%);
	background: -o-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(235,235,235,1) 41%, rgba(235,235,235,1) 60%, rgba(252,252,252,1) 100%);
	background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(235,235,235,1) 41%, rgba(235,235,235,1) 60%, rgba(252,252,252,1) 100%);
	background: linear-gradient(to bottom, rgba(252,252,252,1) 0%, rgba(235,235,235,1) 41%, rgba(235,235,235,1) 60%, rgba(252,252,252,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#fcfcfc', GradientType=0 );
}

.status__bar .progress-bar {
	font-size: 14px;
	background: rgba(252,252,252,1);
	background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(235,235,235,1) 41%, rgba(235,235,235,1) 60%, rgba(252,252,252,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(252,252,252,1)), color-stop(41%, rgba(235,235,235,1)), color-stop(60%, rgba(235,235,235,1)), color-stop(100%, rgba(252,252,252,1)));
	background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(235,235,235,1) 41%, rgba(235,235,235,1) 60%, rgba(252,252,252,1) 100%);
	background: -o-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(235,235,235,1) 41%, rgba(235,235,235,1) 60%, rgba(252,252,252,1) 100%);
	background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(235,235,235,1) 41%, rgba(235,235,235,1) 60%, rgba(252,252,252,1) 100%);
	background: linear-gradient(to bottom, rgba(252,252,252,1) 0%, rgba(235,235,235,1) 41%, rgba(235,235,235,1) 60%, rgba(252,252,252,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#fcfcfc', GradientType=0 );
}
.cards__farol {
	display: flex;
	margin: 0 -14px 10px -14px;
	font-family: 'Open Sans', sans-serif;
	overflow: auto;
}
.cards__farol--box {
	border: 1px solid rgba(54, 64, 74, 0.08);
	border-radius: 5px;
	background-color: #ffffff;
	margin: 0px 14px 28px 14px;
	min-width: 230px;
	width: 230px;
}
.cards__farol--top {
	padding: 16px 0 10px 0;
	margin: 0 16px;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid rgba(235, 239, 241, 0.5);
}
.cards__farol--top h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    margin-bottom: 0;
    color: #343A40;
}
.cards__farol--top p {
	font-size: 11px;
	font-weight: 600;
	line-height: 15px;
	color: #6E768E;
	margin-bottom: 0;
}
.cards__farol--number {
    height: 34px;
    width: 34px;
    border-radius: 8px;
    background-color: #EBEFF1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    margin-left: 5px;
}
.cards__farol--history {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 0;
	margin: 0 16px;
	border-bottom: 1px solid rgba(235, 239, 241, 0.5);
}
.cards__farol--history h5 {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 17px;
	color: #94A4B5;
	font-family: 'Source Sans Pro', Arial, Verdana;
	margin-bottom: 0;
}
.cards__farol--statistic p {
	color: #94A4B5;
	font-family: "Source Sans Pro";
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 17px;
	margin-bottom: 0;
}
.cards__farol--statistic span {
	color: #4C5667;
	margin: 0 2px 0 4px;
	display: inline-block;
	font-size: 14px;
}
.cards__farol--list {
    padding: 0 16px 16px 16px;
    list-style: none;
    margin: 0;
}
.cards__farol--list li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
    padding: 10px 0 7px 0;
}
.cards__farol--list li:not(:last-child) {
	border-bottom: 1px solid rgba(235, 239, 241, 0.5);
}
.cards__farol--list-text h5 {
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
	color: #6E768E;
	margin-bottom: 0;
}
.cards__farol--list-text p {
	font-size: 11px;
	line-height: 15px;
	color: #6E768E;
	margin-bottom: 0;
}
.cards__farol--list-quantity .badge, .farol__records .badge {
	border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 14px;
    color: #870515;
    height: 16px;
	min-width: 19px;
    padding: 1px 3px;
    margin-left: 3px;
}
.cards__farol--list-quantity .badge.badge-error,
.farol__records .badge.badge-error {
	background-color: rgba(246, 79, 105, 0.56);
}
.cards__farol--list-quantity .badge.badge-warning,
.farol__records .badge.badge-warning {
	background-color: rgba(240, 158, 0, 0.56);
}
.cards__farol--list-quantity .badge.badge__new,
.farol__records .badge.badge__new {
	background-color: rgba(110, 175, 81, 0.8);
	color: #1E5359;
}
.farol__form, .reman__form {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 16px;
	width: calc(100% + 8px);
    margin-left: -4px;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
}
.farol__form .select2-container, .farol__form .input-group {
	width: calc(15% - 8px) !important;
	margin: 0 4px 8px 4px;
}
.farol__form .input-group.input-group-button {
	width: calc(10% - 8px) !important;
}
.farol__records p {
	margin-bottom: 22px;
	font-size: 12px;
	line-height: 17px;
	color: #343A40;
	font-family: 'Open Sans', sans-serif;
}
.farol__records .badge {
	padding: 0 5px;
}
.reman__form .select2-container, .reman__form .input-group {
	width: calc(20% - 8px) !important;
	margin: 0 4px 8px 4px;
}
.reman__form .select2-container .select2-selection {
	background-image: url('../images/select-arrows.svg');
	background-size: 8px;
	background-position: right 10px center;
	background-repeat: no-repeat;
}
.reman__form input.form-control {
	background-image: url('../images/search-solid.svg');
	background-size: 13px;
	background-position: right 10px center;
	background-repeat: no-repeat;
	font-size: 14px;
	color: #4C5667;
}
.table__mobile {
	display: none;
}
.text-default {
	color: #6E768E;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 18px;
	display: block;
}
.device-details-header-title {
	color: #343A40;
	font-size: 21px;
	letter-spacing: 0;
	line-height: 27px;
	margin-bottom: 4px;
}
.device-image {
	width: 232px;
    height: 195px;
    padding: 22px 3px;
    border: 1px solid #CED4DA;
    border-radius: 2px;
    object-fit: contain;
}
.device-details-stat-title {
	text-transform: uppercase;
	font-size: 11px;
	color: #94a4b5;
	line-height: 16px;
	font-weight: bold;
	letter-spacing: 0.7px;
	font-family: 'Nunito', sans-serif;
	display: flex;
	align-items: center;
}
.device-details-stat-title i {
	font-size: 16px;
	margin-right: 4px;
}
.device-details-stat-img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	margin-right: 4px;
}
.maps-pin {
	height: 43px;
	width: 30px;
	object-fit: contain;
	display: block;
}
.device-details-row .col-auto {
	margin-bottom: 0;
}
.device-details-stat-text {
	margin-bottom: 0;
	color: #343A40;
	font-size: 14px;
	line-height: 19px;
}
.device-image {
	height: 175px;
	width: 175px;
	object-fit: contain;
	border: 1px solid rgb(206, 212, 218, 0.5);
	border-radius: 4px;
}
.device-details-stat-subtext {
	font-size: 10px;
	color: rgb(148, 164, 181);
	margin-bottom: 0;
} 
.device-details-stat-subtitle {
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 0;
}
.device-details-map-card {
	padding: 11px;
}
.device-details-map-card-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.device-details-map-card-row .maps-pin {
	margin-right: 12px;
}
.device-details-stat-link {
	font-size: 12px;
	text-decoration: underline;
}
.device-details-price {
	display: flex;
    align-items: center;
}
.device-details-price .device-details-price-item {
	width: 25%;
    border: 1px solid #CED4DA;
    background-color: #F1F5F7;
    height: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	position: relative;
	border-right: 0;
}
.device-details-price .device-details-price-item:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.device-details-price .device-details-price-item:first-child:before {
	content: '+';
	position: absolute;
    right: -16px;
    top: 27px;
    height: 32px;
    width: 32px;
    background-color: #fff;
    border: 1px solid #CED4DA;
    color: #6E768E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 50%;
	z-index: 1;
}
.device-details-price .device-details-price-item:nth-child(2):before {
	content: '=';
	position: absolute;
    right: -16px;
    top: 27px;
    height: 32px;
    width: 32px;
    background-color: #fff;
    border: 1px solid #CED4DA;
    color: #6E768E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 50%;
	z-index: 1;
}
.device-details-price .device-details-price-item:last-child {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
    border-right: 1px solid #CED4DA;
	border-top: solid 4px var(--primary);
}
.device-details-price-title {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
    color: #6E768E;
    margin-bottom: 2px;
}
.device-details-price-value {
    color: #343A40;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 0;
}
.device-details-price-subtitle {
    color: #6E768E;
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 0;
    display: block;
}
.badge.badge-light-danger {
	background-color: rgba(246, 79, 105, 0.35);
	color: #d0021b !important;
}
.badge-light-warning {
	background-color: rgba(247, 147, 35, 0.35);
	color: #804C12 !important;
}
.badge-light-yellow {
	background-color: rgba(255, 229, 152, 0.35);
	border: 1px solid rgba(255, 229, 152, 0.35);
	color: #6E4C01 !important;
}
.badge-light-success {
	background-color: rgba(7, 108, 182, 0.56);
	color: #03385E !important;
}
.badge-light-blue {
	background-color: rgba(41, 91, 167, 0.35);
	color: #093e8e !important;
}
.badge-light-primary {
	background-color: rgba(110, 175, 81, 0.35);
	color: #1e5359 !important;
}
.badge-light-dark {
	background-color: rgba(148, 164, 181, 0.35);
	color: #4c5667 !important;
}
.badge-light-grey {
	background-color: #c4c4c4;
	color: #4C5667;
}
.device-details-map-card {
	border: 1px solid #ced4da;
	padding: 17px;
}
.device-details-map-card h4 {
	color: #4C5667;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: solid 1px #CED4DA;
}
.device-details-map-title {
	color: #94A4B5;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 0.6px;
	line-height: 14px;
	text-transform: uppercase;
	margin-bottom: 12px;
	display: block;
}
.device-details-map-text {
	color: #6E768E;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 15px;
	margin-bottom: 0;
	margin-top: 4px;
}
.device-details-map-subtext {
	color: #6E768E;
	font-size: 12px;
	line-height: 15px;
	margin-bottom: 0;
}
.device-details-location-smallcard {
	display: flex;
	flex-direction: column;
	background: rgb(241, 245, 247);
	border: none;
	padding: 5px;
	text-align: center;
	margin-bottom: 0;
	min-height: auto !important;
	width: 100px;
}
.device-details-location-smallcard-title {
	font-weight: bold;
	font-size: 10px;
	text-transform: uppercase;
	padding:0
}
.device-details-location-smallcard-subtitle {
	margin: 3px;
	padding: 0;
	font-weight: bold;
}
.device-details-map-card-text {
	width: calc(100% - 142px);
	padding-right: 15px;
}
.title-default {
	font-family: 'Work Sans', sans-serif;
	margin: 10px 0;
    font-weight: 500;
	color: #343a40;
	font-size: 18px;
}
.text-muted {
	font-family: 'Work Sans', sans-serif;
}
.nav-bordered .nav-item .nav-link {
	text-transform: none;
	font-weight: bold;
	color: #94a4b5;
	font-size: 14px;
	font-family: 'Nunito', sans-serif;
	border: none;
}
.nav-bordered.nav-tabs .nav-item.show .nav-link, .nav-bordered.nav-tabs .nav-link.active, .nav-bordered.nav-tabs .nav-link:focus, .nav-bordered.nav-tabs .nav-link:hover {
	color: #4c5667;
	background-color: transparent;
	border-color: transparent;
	border-bottom: solid 2px var(--primary) !important;
}
.modal-reman-mobile .modal-title {
	line-height: 19px;
	font-size: 15px;
}
.modal-reman-mobile .modal-dialog .modal-content .modal-body {
    padding: 15px;
}
.modal-reman-mobile .table__item--top {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.modal-reman-mobile .table__item--image img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	border: solid 1px rgba(206, 212, 218, 0.64);
	margin-right: 12px;
}
.modal-reman-mobile .table__list li {
	margin-bottom: 9px;
	align-items: flex-start;
}
.activities {
	display: flex;
	align-items: center;
	color: #343A40;
	justify-content: space-between;
}
.activities-item {
    width: calc(12.5% - 5px);
	min-height: 57px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    padding: 10px;
	position: relative;
	text-align: center;
    border-radius: 4px;
    border: solid 1px;
}
.activities-item:last-child {
    margin: 0;
}
.activities-item:not(:last-child):before {
	content: '';
	background-image: url('../images/chevron-right.svg');
	background-size: 10px 9px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 14px;
	right: -18px;
	color: #94A4B5;
	font-size: 10px;
	line-height: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	width: 28px;
	border: 1px solid #CED4DA;
	background-color: #FFFFFF;
	border-radius: 50%;
	z-index: 1;
}
.activities-item p {
	margin-bottom: 4px;
	font-size: 14px;
	line-height: 18px;
}
.activities-item > span {
	font-size: 13px;
	line-height: 17px;
}
.activities-item span.badge {
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	font-family: 'Work Sans', sans-serif;
	border-radius: 8px;
    padding: 0px 5px;
}
.activities-item:first-child {
	border: 1px solid #FFE598;
	background-color: rgba(254,242,203,0.32);
	color: #6E4C01;
}
.activities-item:nth-child(2) {
	border: 1px solid rgba(255,229,152,0.4);
	background-color: rgba(255,229,152,0.32);
	color: #7D311F;
}
.activities-item:nth-child(3) {
	border: 1px solid rgba(226,239,217,0.4);
	background-color: rgba(226,239,217,0.32);
	color: #22492E;
}
.activities-item:nth-child(4) {
	border: 1px solid rgba(168,208,141,0.4);
  	background-color: rgba(168,208,141,0.32);
	color: #22492E;
}
.activities-item:nth-child(5) {
	border: 1px solid rgba(158,211,174,0.4);
  	background-color: rgba(158,211,174,0.32);
	color: #22492E;
}
.activities-item:nth-child(6) {
	border: 1px solid rgba(226,239,217,0.4);
	background-color: rgba(226,239,217,0.32);
	color: #22492E;
}
.activities-item:nth-child(7) {
	border: 1px solid rgba(156,194,229,0.4);
	background-color: rgba(156,194,229,0.32);
	color: #263675;
}
.activities-item:nth-child(8) {
	border: 1px solid rgba(19,138,244,0.4);
  	background-color: rgba(19,138,244,0.32);
	color: #263675;
}
.activities-item.activities-item__undone {
	border: 1px solid #CED4DA;
	background-color: #F1F5F7;
	color: #6E768E;
}
.activities-item.activities-item__undone p {
	margin-bottom: 0;
}
.activities-list {
	margin-left: 28px;
    padding-left: 32px;
    border-left: solid 1px #CED4DA;
    list-style: none;
}
.activities-list-top {
	display: flex;
	align-items: center;
	margin-left: -60px;
	margin-bottom: 8px;
}
.activities-list-initial {
	color: #ffffff;
	height: 56px;
	width: 56px;
	border: 4px solid #FFFFFF;
	background-color: #295BA7;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	border-radius: 50%;
	margin-right: 8px;
}
.activities-list-perfil__menu {
	display: flex;
	align-items: center;
	margin-bottom: 6px;
}
.activities-list-perfil__menu p {
	margin: 0 0 0 8px;
    color: #6E768E;
    font-size: 14px;
    line-height: 18px;
}
.activities-list-perfil__menu strong {
	color: #343A40;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}
.activities-list-status {
	color: #343A40;
    font-size: 15px;
}
.activities-list-wrapper {
	border: 1px solid #CED4DA;
	border-radius: 10px;
	padding: 16px;
}
.activities-list-wrapper p {
	font-size: 15px;
	line-height: 19px;
	margin-bottom: 12px;
}
.activities-list-wrapper p strong {
	font-weight: 600;
}
.activities-list-item:not(:first-child) {
	padding-top: 40px;
}
.activities-list-wrapper .ribbon-box {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	margin: 0;
	min-height: 100%;
	box-shadow: none;
	border: 1px solid #CED4DA;
}
.activities-list-wrapper .card-gray {
	border: none;
}
.activities-list-wrapper > *:last-child {
	margin-bottom: 0;
}
.activities-item:hover .activities-item-list {
	display: block;
}
.activities-item-list {
	display: none;
    position: absolute;
    background-color: #fff;
    top: calc(100% + 15px);
    padding: 20px;
    margin: 0;
    list-style: none;
    width: 250px;
	color: #343A40;
    border: 1px solid #CED4DA;
    border-radius: 4px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    z-index: 1;
}
.activities-item-list:before {
	content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: calc(50% - 5px);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ced4da;
}
.activities-item-list:after {
	content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: -9px;
    left: calc(50% - 5px);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}
.activities-item-list li:not(:last-child) {
    border-bottom: 1px solid #CED4DA;
    margin-bottom: 8px;
    padding-bottom: 8px;
}
.activities-item-list .text-muted {
	font-family: 'Source Sans Pro', Arial, Verdana;
}
.card-gray {
	border-radius: 8px;
  	background-color: #F4F5F6;
	margin-bottom: 16px;
}
.card-gray .card-body {
	padding: 12px;
}
.card-gray p {
	margin-bottom: 0;
}
.text-grey {
	color: #6E768E;
}
.text-grey i {
	margin-right: 6px;
}
.document {
	border: 1px solid #CED4DA;
    border-radius: 2px;
    background-color: #FFFFFF;
    min-width: 280px;
    display: flex;
    align-items: center;
    padding: 10px 13px;
	margin: 0 8px 8px 0;
}
.document-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
.document i {
	color: var(--primary);
	font-size: 24px;
    margin-right: 12px;
}
.document .document-info-title {
	color: #343A40;
	font-size: 15px;
	line-height: 19px;
	margin-bottom: 0;
}
.document .document-info-size {
	color: #6E768E;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 0;
}
.activities-gallery.carousel {
    display: flex;
    align-items: flex-start;
}
.activities-gallery .carousel-item {
	height: 418px;
}
.activities-gallery .carousel-item__video {
	position: relative;
}
.activities-gallery .carousel-item__video:before {
	content: '';
	width: 80px;
	height: 80px;
	background-image: url('../images/botao-play.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
	z-index: 1;
    filter: invert(100%) drop-shadow(3px 3px 3px #000);
}
.activities-gallery .carousel-wrapper {
    width: calc(100% - 100px);
    border: 1px solid #CED4DA;
    border-radius: 2px;
    background-color: #F4F5F6;
	position: relative;
}
.activities-gallery .carousel-indicators {
    position: relative;
    margin: 0;
    flex-direction: column;
    bottom: initial;
    height: 418px;
    width: 84px !important;
    margin-left: 16px;
	justify-content: flex-start;
    overflow-y: auto;
}
.activities-gallery .carousel-indicators li {
    width: 100%;
    text-indent: 0;
    height: 54px;
    object-fit: contain;
    background-color: #CED4DA;
    margin-bottom: 7px;
    border: 1px solid #CED4DA;
    border-radius: 2px;
	margin: 0 0 7px 0;
}
.carousel-indicators li:before, .carousel-indicators li:after {
	display: none;
}
.activities-gallery .carousel-indicators li.active {
	border-color: var(--primary);
}
.activities-gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
	background-image: none;
	height: 40px;
    width: 40px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3);
    border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-control-next-icon i, .carousel-control-prev-icon i {
	color: var(--primary);
	font-size: 28px;
}
.carousel-control-next {
    justify-content: flex-end;
    padding-right: 10px;
}
.carousel-control-prev {
	justify-content: flex-start;
    padding-left: 10px;
}
.font-13 {
	font-size: 13px !important;
}
.widget-simple .text-number.counter {
    color: #343A40;
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 20px;
    text-align: center;
    margin-bottom: 16px;
}
.widget-simple p.text-muted.mb-0.text-uppercase {
    font-family: "Source Sans Pro";
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 19px;
    text-align: center;
}
table.dataTable {
	border-collapse: collapse !important;
    margin-bottom: 15px !important;
}
.dataTables_wrapper.container-fluid {
    overflow-x: auto;
    padding-bottom: 20px;
    margin-top: 16px;
}
.custom-control {
	padding-left: 1.7rem;
}
table .custom-control-label {
	width: 16px;
	height: 20px;
    top: 0;
	padding: 0;
	margin: 0;
}
.custom-checkbox .custom-control-label:before {
	left: 0;
	border: solid 2px #555555;
    border-radius: 3px;
    background-color: transparent;
}
.custom-checkbox .custom-control-label:after {
	left: 0;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
	background-color: var(--primary);
	border-color: var(--primary);
}
table .btn-gray-square {
	height: 32px;
  	width: 36px;
}
table #customCheckTodos ~ label {
	margin-right: 10px;
}
table #customCheckTodos:checked ~ label:after {
	background: none;
    width: 10px;
    height: 2px;
    background-color: #fff;
    top: 11px;
    left: 3px;
}
.custom-select + .select2-container .select2-selection--multiple {
	padding: 0 1.75rem 0 0;
	background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
	background-size: 8px 10px;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}
.input-daterange input {
	background: #fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABQCAYAAAC+neOMAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAABQ1JREFUeJztnF9sFFUYxc+5s6VoqymgIiVFrKWgIP928U9iUk2AdgXxwTfsbpFEniRB45O+KBLFxEQFo+EFY0siiSH+AV3fpNEHwa6mJLYx1NhoAtGSKEZILcx8PrBdtuwsfHcGssXe39P09t5zzz3dmcx8eztERFLt2Q0gdoG443L9BDIswNbvcz2Hos51eR9PLhTj7SHQdoWuZwTyev3ZX1/r7e09bzuPF8lcR/Z5GOwF0XClvgQbCG6c07Ls75ND/d9Gma8Sq9ozD4oxvQQWKrpPI/jIuUTDyoYVrQdGBgZ8m7msg0q1ZzfAYK/tOBLtc+5a3nfy5/7jtmPDWLF6cyMS8jWBGXZG0Frzb2LGiaFjOZthxqZzMrmlBsRuK2MTZpPdbW1ticjjS6US53YQmBVpMPlMMr3pXqv5rPRvG10NYp6dq5LxwJ1nps97OOr4cZau6awjsTGOBiXYZNPfKiiB3B/ejv0+5R7fDxb4frDAiL9YRA6E9iVCNWyoNVwKsDbEx0/C4IFxH54xrRB5NlwlfC2VsDoNKJgFlrcHlO0/fNEzWNq2oiO73QOeKBfhLTZzhuEbzAr9Cwv25HP7jlzS+lYynXmOYNNEH3anreUniiExATgv58qEA46Fi0i4xtWAKPNxoRllXiqupQJWQU1lXFBKyq5RS9d01tUmODfwTVmIhNjds4TCmcm1XYtiSYg0hV0rLUVqK/qYNnYqf+jDU6VNxaBS6zqXIOBOEXYI4NGTuE5CIZGBJ5lrIm7jA5wPTwZDf+nXIJnO9gPBS/ncvk+AwqmXSmfTEvA7gOvIaI81/zcILCPMx6l0dgcAJFLrnmpG4H9EcHq1zU1SXlzV0TVoEPgvAKirtpvJjEBeNQAerbaRSQ8xzwCYU20f1wPuPkqJC0rJVQmqxsi0S9s8+GVP99eech8AICGVBluYSmdj31mKyIEA3D7+IOzBrw2MeRnE43G1LRkKAn8zJTECAJ45b3x4j5HYGVf4qgQ1FXDXKCUuKCUuKCUuKCUuKCUuKCUVvoWRz/tyPetthFIdmW0g3wQAAbbmc93v2JpZmc6sN+BBABCRt/Nf9myz1Uiu7VrEYkEu3jpKcZ8oJS4oJS4oJS4oJS4oJS4oJS4oJS4oJS4oJS4oJS4oJaHPegLWW+84ocwuHgK3R9qxMmGXSsRdLyZoRkEk7jomNLuauQ536impVGYZAXDUSknYDOJuABBggJBfbM2IcDaJ1AUNGSbwo7UGWH/x3z3iraOUSruCj0aq46BYx3mvL9cTqR7FQj0Kgk/7ItajSjaIxV1HEXfqKXFBKXFBKXFBKXFBKXFBKXFBKXFBKXFBKXFBKXFBKXFBKXFBKXGFOyXuE6UkvB4lclbI32yECJkJ8NbCj38I8Ke1G5F6knMLx38J+bu1BqSW4PyCRtx1FAkPivgqn+uOsAEL4xvJXom6kYzAwYLGB/lcd7zCXcx1lOJOPSUuKCUuKCUuKCUuKCUuKCUuKCUuKCUuKCUuKCUuKCXhG8mEs1emM1bPSBAsHj8kZIn1eABGeF9xIxnZHEUDIk0XD+OtoxQm09nTBG62NjTFMAS+qbaJ64B/jBBvVNvFZEdEdnknj/cPN7Ys88ArvpR4iiKHT6PhaQ8ATgz1H25sWX4CwEMgbqiys0mBCHxC3k3cNLrp2Gfvj054pV5y/ZYb6Y+2iWA+pugr3IhASDNivLHeIwf3F0vR/wH8FYdMeRmuGwAAAABJRU5ErkJggg==") no-repeat right .75rem center;
	background-size: 12px 13.7px;
	filter: grayscale(1);
}
.input-search-icon {
	background: #fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABQCAYAAAC+neOMAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAACXJJREFUeJztnH1wVNUZxp/n7CaAEQhGx9ZWmbY4LRQVB6S22slAFlFbFPI1qKMt01G0aiUbLbWl3caOoyDJBrF1Yqv2Y2hxk01wbEcr2UA6rR2tVKlWHUvbadF+jHwFgpBk9zz9YwNFJeGeu3fXYPj9uft+3WfOnnvvOe9Z4AQnOMEJTnDcw3wnWBnZcEYImVmUzgU5BcBHCJQBKgEQEpim1AviLQlvAHidRltFPV//dO2ufNfnlcCFStQkQm/sCZXDYhGAS0FM8RtL0osknwRse11n9RaCCrBUJwITqml+8sPK6CYKXwF5RlBxDyO8BuChfmYe+UZnbU/g8Y9BzkLdN6dtsjFYAfJLBIqCKGp4tE/g94vF1bemKnfmP18W30Kt/NyG8eGTMisoLANRHGRRHumB0FCyZ8cDS7csHch3Ml9CxSNt8yX8EOSZQRfkjLTVQktuT9W8kM80TkLFahLFE3eZlSCX5asgPwgYoLC8LlXZnK8J37NQay5NnJZJm3aAF+ejkGDQ+p6BfUsaupccDDqyJ6Hum9M2OWTYmcutvnDotxwILajrXrQnyKjHFKqpou3jADaPiPnIIxKeN2kzL0ixzHBfripPfAhg5/EkEgCQmKWizBONFybGBRUzPNQXsfJHx4aLzOMAPhZUMkE7Ab5CYDuAHkADEooBngJgMqlpAMcHk40XoyT0sKBrgpjghxRqYnj8/QBn55oAwCYLtRrh19FU1d+HKzoWi5kJv5vxadrMZTBcDOD8XBKTuCoeST6LTqzJJQ4wxBwVj7RXCkr6DSohQ+LHVlx1e6rydb9x4vNaP2Ot+RaJBb5rAQYMzey6jYte9BsDOIpQayvay/qhV0mc5q8w/T5E3rBsY9XLuRR2JE3zknNh0eL3rivpxb3psgsauuek/dbwnsl8APYe3yIJDWdOsp8PUiQAiG6s6sqY/TMA/dSPP8kZE4t23pxLDe8YUY2RjnOAzFaCbq82Qr+gq+tT1b5/rt7SiPG5yTtguNLdWbv7xo79xJ2/+uJuP7nfMaKoTIOrSJL6YOyCfIsEAAQV7apeBfAmd2dOGnOwr95/7kHikfapgl5xcRYkY1FZ11W9wW8BfmmMJJcTuNfFR8LecNHbZ9721LV7XfMdHlFW9muuzgS++X6IBADRzspVEn7m4kNiQiY9bomffAYAHihPnEzwWhdHSV09F720yk/SICCoMenMVwH91dHzBkHOy0sGAPqKuRBEiVcnSX0Erm9oaLCuCYPklu7aXgg3OrpNa6xom+GaywAALSsd/dZGU9V/c02WD6Kp6k5BT7r4GJgq1zymZWZLkch5nj2E/kzaNromyick7naxF3WZaw7TO/G08wmc7L0qdHy9u/Y/ronySd3GqmcAveTgcv69kcRElxwGxjq9+NJqvYt9ISAoCzzmYM8wOMslh4FwnndzpfsPhlMuCQqGCT3lYk6Yc5zCEzjbq7GEl5c/s3CfS4JCsa+vdCuAA17tCXm+bgAwID7qPTgDfdkNksGVgde82ktuq7YG4Kmeg0P/dAleaAT8w7Mx5fm6AcBITne8EdNdMgSe63O60wMwJEKeg4v9LsELDYE+z8aiU5+EgeD5NcRCBWjC8I/kvT5BTqudBtR+r8YkSl2CFxqSkxysPV83kJ2jPLfO0PFOUWgEneXVlvB+3UD2rvemZ2tqmkvwQhKLxQyBT3m1F/Qvl/gGxDbPwYXzYuWPjnVJUCgm/mb6VJfNUxJO61jG5WWS5JjSovHlLgkKhjGXuJhbGaeHZ2OIP7g4CKxxsS8cqnWxtun08y72Zk//vuckOTx/YHG8vGNE3f2a57aeC/JCzw7CNtelIpNtuuJmzx5EiQ1nbnFJkm+s4Z1ODtTTrjmyuzBCh5sb72ie+/jprsnyQXNF8gKAi52cnK93UKhisg2C59cTEhMyTN/vZzcjSGI1iWJLtLj4SPp3T7pss2suAwC3pip3CnDa6SVR2xRp/7JrwiCZsMvcDffWoEf9NGsc3gA1xrr3EEkPNs1ru8jZLwAaK5LXkbzdxUfAAGR/4CffYaHqNtY8C2CTizPJMRJ+ubqiNaeGL1dWR5JXkHrY2VH6SX1Xrfc3kSN4Z9sP9W3XAARLSXYVamQ1RtquNlAS4JDdgkNwUKHQXX7zvmcyboy0tRKsdg0kqQ/CzdGuqkfy0RSfqEmE3tgd+i6AFX78BX2vvrP6O37zv6eRTCYUFdDrGojkGBr+qCmSTGS7iYMjHmmfun1XqBs+RYKwDb32nlxqOOrtvSnSfiOgB/2H1T4AjTJ2bS6HE5sjibMszHIAN/j4qf2/Gihe31kd9esPDCGUIDZFkh0Er8wlOIADgFoBJjLcv/mOjdcdc7Gs8ZLEKcZyvsTFAr/gslQ9LEI0mqqK+3Uf8oExXt5RasP2OdL7vt/wKC3hZZKvQNoucrekAQJjCJaJmkxxuqhPOrdGei7Bv1jDFtQcaTvbAs+4bGmNeHyKNewRj2Wd1X+B5XwABT+amjeIpqaKZJ2r27BCAUC0q+qPsJgLaIe/ykYgPsQ6plBAViwZ+1lAvk8hjDgcxfIkFADUP127rR92NiTnJYoRi4NYzncXQYxXJK8HsTq4k1A5IG0HuQ3AHP8xjj3Bex5RhyCoaKr6IVk7FQ7NW0EjISNhTajowPRQeNxlEp7wHczDyMr5eWXwBNRdJJx2QXJBUruhWVHXWfnqoc8GD4a3grzCf+ChR1ZgD3arL+mYyYy9jUQNgMD3/iS9TWAdrNZEN9X8+Wg2+RQr8CfgeHlHqS2yiwhVSphL8iTfwYT9gFICk+kDoQ4v3X6xmkTxhN0mkdPr11HEyuuad6wmUTx+B2cxZGYTmA5pSrbDj6dm/+2H4ex/FmT/7Qfgm5C2ifgTrHnu5J63XvDzLxlZsUKPEVjou/h3ifW+bg7kk8Gf4XqQi3wHOUKsD6xQQDBiCair76xq/kALBQAtM1uK9peWPZbTyKKu+MALBWTF6i0tW086n/kZRK+PCqGAwZE16dRfAHA+MAT4eDI/Xlm6ZelAye4dVwlq8+M/akbUIVpmthT1Tir7uetO06gTCjg8wa8DvfV6CegdNT+9I1m6ZelAyZ6d10Bq9eQg3T8qR9QhYuWbwhPCu9aRGLJbT8DmcHjcpaNyRB2ioXtOem/6lGsg3P3urkMJGQgPoDdz+W1PXd43qkfUkaytaC9LE+UZ2NMNtNPY4u5lXVf+99D3/wOD+pLvymWxawAAAABJRU5ErkJggg==") no-repeat right .75rem center;
	background-size: 12px 13px;
	filter: grayscale(1);
}
.btn-gray-light {
	background-color: #f1f5f7;
	color: #4c5667;
}
.btn-gray-light:hover,
.btn-gray-light:focus {
	color: #6c757d;
}
.text-decoration-underline {
	text-decoration: underline;
}
.td-max-width {
	width: 200px;
	max-width: 200px;
    display: flex;
    word-break: break-word;
}
textarea.form-control {
	min-height: 96px;
}
.modal-export-subtitle {
    color: #4C5667;
    font-family: "Source Sans Pro";
    font-size: 14.4px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 18px;
}
.fields-responsive .col {
	min-width: 160px;
	margin-bottom: 15px !important;
}
textarea.textarea-small {
	max-height: 75px;
    height: 75px;
	min-height: initial;
	resize: none;
	color: #4C5667;
	font-family: 'Nunito', sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 19px;
}
.anexos-list-wrapper h3 {
	color: #343A40;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 22px;
	margin-bottom: 12px;
}
.anexos-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -6px;
	list-style: none;
	padding: 0;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 19px;
	font-family: 'Nunito', sans-serif;
}
.anexos-item {
	width: calc(33.333333% - 12px);
	margin: 0 6px 12px 6px;
}
.anexos-item a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 8px;
	background-color: #FFFFFF;
	border: 1px solid #CED4DA;
	border-radius: 4px;
}
.anexos-item-type {
	height: 43px;
  	width: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-right: 12px;
	border-radius: 4px;
	background-color: rgba(148, 164, 181, 0.16);
}
.anexos-item-perfil__menu {
	margin-bottom: 0;
	width: calc(100% - 55px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (max-width: 1600px) {
	.activities-item p {
		font-size: 13px;
		line-height: 14px;
	}
}
@media (max-width: 1370px) {
	.status__item {
		width: 24.6%;
	}
	.card-box.box__buttons {
		padding-bottom: 0;
	}
	.box__buttons--content {
		margin-bottom: 20px;
	}
	.device-details-row .col-auto {
		margin-bottom: 8px;
	}
	.activities-item {
		padding: 10px 1px;
	}
}
@media (max-width: 1270px) {
	.activities-item {
		min-height: 71px;
	}
	.activities-item:not(:last-child):before {
		top: 22px;
	}
}
@media (max-width: 1200px) {
	.box__buttons--content {
		margin-bottom: 30px;
		width: 50%;
	}
	.card-box.box__buttons {
		padding-bottom: 0;
	}
	.device-image {
		margin: 0 auto 20px auto;
		display: block;
	}
	.device-details-map-card-text {
		width: calc(100% - 42px);
	}
	.device-details-location-smallcard {
		width: 100%;
		margin-top: 15px;
	}
}
@media (max-width: 992px) {
	.activities {
		flex-wrap: wrap;
	}
	.activities-item {
		width: 100%;
		margin: 0 0 5px 0;
		min-height: 60px;
	}
	.activities-item:not(:last-child):before {
		height: 22px;
    	width: 22px;
		right: calc(50% - 14px);
    	top: calc(100% - 8px);
		transform: rotate(90deg);
	}
	.activities-item-list {
		z-index: 2;
		left: calc(50% - 130px);
	}
	.footer-social {
		justify-content: center;
		margin: 10px 0 0 0;
	}
	.footer-social li a {
		margin: 0 4px;
	}
	.footer .footer-links a, .footer .footer-links a:first-of-type {
		margin: 0 10px;
	}
	.footer-links {
		display: inline-grid;
		margin-bottom: 20px;
	}
}
@media (max-width: 768px) {
	.container {
	    max-width: 100%;
	}
	.status {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}
	.status__item {
		width: 100%;
	}
	.box__buttons--group .btn {
		margin: 0 4px 8px 4px;
		padding: 4px 10px;
    	font-size: 14px;
	}
	.carousel__small .carousel-indicators {
		bottom: -10px;
	}
	.carousel-control-next-icon, .carousel-control-prev-icon {
		display: none;
	}
	.carousel-indicators li {
		background-color: rgba(16, 101, 77, 0.5);
	}
	.carousel-indicators .active {
		background-color: var(--primary);
	}
	.farol__form .select2-container, .farol__form .input-group, .farol__form .input-group.input-group-button {
		width: 100% !important;
	}
	.reman__form .select2-container, .reman__form .input-group {
		width: 100% !important;
	}
	.reman__form .select2-container .select2-selection {
		background-position: right 12px center;
	}
	.table__desktop {
		display: none;
	}
	.table__mobile {
		display: block;
	}
	.table__mobile .pagination {
		width: calc(100% + 20px);
    	overflow-y: auto;
		margin-top: 16px;
	}
	.table__mobile .pagination li:last-child {
		padding-right: 20px;
	}
	.label__reman--resultados {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-wrap: wrap;
		width: 100%;
		margin-bottom: 20px;
	}
	.label__reman--resultados .form-control {
		width: auto;
		margin-right: 10px;
	}
	.table__item {
		border: 1px solid #F4F5F6;
		border-radius: 4px;
		background-color: #FFFFFF;
		box-shadow: 0 2px 6px 0 rgba(0,0,0,0.08);
		padding: 12px;
		margin-bottom: 10px;
	}
	.table__item--title {
		text-transform: uppercase;
		margin-bottom: 6px;
	}
	.table__item p {
		font-size: 13px;
		line-height: 17px;
		color: #6E768E;
		margin-bottom: 4px;
	}
	.table__list {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	.table__list li {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 10px;
	}
	.table__list .table__item--subtitle {
		margin-bottom: 2px;
		color: #4C5667;
		font-size: 14px;
		line-height: 18px;
	}
	.table__list .table__list--col:last-child {
		text-align: right;
		width: 50%;
	}
	.device-details-price {
		flex-direction: column;
	}
	.device-details-price .device-details-price-item {
		width: 100%;
		border-right: 1px solid #CED4DA;
		border-bottom: none;
	}
	.device-details-price .device-details-price-item:first-child {
		border-top-left-radius: 4px;
		border-top-right-radius: 4px;
    	border-bottom-left-radius: 0;
	}
	.device-details-price .device-details-price-item:last-child {
		border-top: 1px solid #CED4DA;
		border-bottom: solid 4px var(--primary);
		border-top-right-radius: 0;
		border-bottom-right-radius: 4px;
		border-bottom-left-radius: 4px;
	}
	.device-details-price .device-details-price-item:first-child:before,
	.device-details-price .device-details-price-item:nth-child(2):before {
		right: calc(50% - 16px);
    	top: 68px;
	}
	.modal .modal-dialog {
		margin-top: 24px;
	}
	.dropdown-toggle.arrow-none {
		position: absolute;
		right: 0;
	}
	.device-details-row .col-auto {
		margin-bottom: 24px;
	}
	.document {
		min-width: auto;
	}
	.ribbon-box .ribbon-box-title {
		width: 100%;
		margin-top: 40px;
	}
	#tab-gestao div.dataTables_wrapper div.dataTables_length {
		text-align: left;
	}
	#tab-gestao div.dataTables_wrapper div.dataTables_filter {
		text-align: left;
		margin-left: -10px;
	}
	.anexos-item {
		width: 100%;
	}
	#topnav .navigation-menu .menu-item.has-submenu:before {
		right: 15px;
	}
	.logo-text{
		display: none;
	}

	.topbar-main .logo-image img{
		position: relative;
		height: 50px;
		width: 150px;
		left: 20px;
	}
	#topnav .navbar-toggle .lines {
	    margin-right: 0;
		padding: 0;
		margin: 50% auto;
		position: relative;
		right: 20px;
	}
	.topbar-main .logo-image, .topbar-main .helpers{
		position: relative;
		right: 0px;
	}
}
@media (max-width: 650px) {
	.box__buttons--content {
		width: 100%;
		margin-bottom: 16px;
		padding: 0;
	}

	.topbar-main .helpers .title__none{
		display: none;
	}
	
}
@media (max-width: 540px) {
	.cards__farol--box {
		min-height: auto;
	}
	.table__mobile .pagination {
		padding-left: 2px;
	}
	.table__mobile .pagination li:not(:nth-child(2), :nth-child(5)) {
		display: none;
	}
	.document {
		width: 100%;
		margin-right: 0;
	}
	.activities-gallery.carousel {
		flex-direction: column;
	}
	.activities-gallery .carousel-wrapper {
		width: 100%;
	}
	.activities-gallery .carousel-indicators {
		margin-left: 0;
		flex-direction: revert;
		width: 100% !important;
		height: auto !important;
		justify-content: center;
		flex-wrap: wrap;
	}
	.activities-gallery .carousel-indicators img {
		display: none;
	}
	.activities-gallery .carousel-indicators li {
		width: 10px;
		height: 10px;
		margin: 10px 4px 0 4px;
		border-radius: 50%;
	}
	.activities-gallery .carousel-indicators li.active {
		background-color: var(--primary);
	}
	.activities-gallery .carousel-item {
		height: 200px;
	}
	.carousel-caption {
		padding: 15px;
		top: 150px;
		min-width: 210px;
	}
	.carousel-caption h3 {
		font-size: 26px;
	}
	.carousel-caption p {
		font-size: 16px;
	}
	.container-fluid-mobile {
		padding: 0 0px;
		margin: 0 -1px;
		width: calc(100% + 2px);
		max-width: inherit;
	}
	.activities-list {
		margin-left: 16px;
		padding-left: 22px;
	}
	.activities-list-initial {
		height: 40px;
    	width: 40px;
		font-size: 13px;
	}
	.activities-list-top {
		align-items: flex-start;
		margin-left: -43px;
	}
}
@media (max-width: 370px) {
	.activities-list-initial {
		height: 40px;
		width: 42px;
	}
	.topbar-main .logo-image, .topbar-main .helpers{
		right: 20px;
	}
}
.carousel-caption{
	background: rgba(255,255,255,0.8);
}
#accordion .card-header a{
	display: block;
	width: 100%;
	margin-bottom: 0;
}
#accordion .card-header a i {
    float: right;
    font-size: 24px;
    line-height: 1;
    margin-top: 2px;
    transform: rotate(-180deg);
}

#accordion .card-header a.collapsed i {
    transform: rotate(0deg);
}

.faq p a {
    color: #fff;
}

.faq p a:hover {
    color: #fff;
    opacity: 0.8;
}

.btn:focus, .btn:hover{
	box-shadow: none!important;
}

#addToTable {
    background: #f5f5f5;
    margin-top: 50px;
    color: #000;
}

#addToTable:hover {
    background: #ccc;
}

.form-group.has-error {
    position: relative;
}

.editable-error-block.help-block {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 5px;
    padding: 7px 10px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
    font-size: 13px;
    line-height: 1.3;
}

input.form-control {
    border: 1px solid #e1e1e1 !important;
    border-radius: .25rem!important;
    height: 41px!important;
    padding: 0 10px!important;
}

.input-group button {
    height: 40px;
}

@media (min-width: 1120px) {
	#topnav .navigation-menu .menu__responsive{
		display: none;
	}
}

@media (max-width: 1120px) {
	.login .login-field {
	    max-width: 90%;
	    padding: 30px 15px;
	}

	#login .wrapper {
	    padding-top: 60px;
	}
	.carousel__small {
		margin: 95px 0 32px 0;
	}
}
/* HOME FILTER */
.home-filter.row{
	margin: 0 -4px;
}
.home-filter .col-12{
	padding: 0 4px;
}
.home-filter .col-md-3{
    flex: 0 0 25%;
}
.home-filter .col-md-auto{
	flex: 0 0 10.71%;
	
}
.home-filter .col-md-auto label{
	display: block;
}
.home-filter .col-md-auto label, 
.home-filter .col-md-auto select, 
.home-filter .col-md-auto input {
    width: 100%;
}

.btn-simple {
    font-size: 15px;
    line-height: 19px;
    color: var(--primary-variant-2)!important;
    margin: 0 8px;
    position: relative;
}

.btn-simple:before {
	content: '';
	width: 1px;
	height: 15px;
	background: #94A4B5;
	position: absolute;
	top: 50%;
	left: -8px;
	transform: translateY(-50%);
}

.box__buttons--group .btn-simple:first-child:before {
    content: none;
}

.box__buttons--title i {
	display: none;
}

@media (max-width: 1200px) {
	.home-filter .col-md-3, .home-filter .col-md-auto {
		flex: 0 0 100%;
		margin-bottom: 5px;
	}
	.box__buttons--content {
		width: 33.33%;
		padding: 0 5px;
	}
}

@media (max-width: 1120px) {
	.btn-mobile-block {
		display: inline-block;
		width: auto;
	}
}


@media (max-width: 768px) {
	.box__buttons--title {
		font-size: 14px;
		line-height: 18px;
		text-align: left;
		padding: 15px 20px;
		width: 100%;
		border-top: 1px solid #CFCFCF;
		margin-bottom: 0;
	}

	.btn-mobile-block {
		display: block;
		width: 100%;
	}

	.box__buttons--content {
		width: 100%;
		text-align: left;
		align-items: flex-start;
		margin: 0;
	}

	.card-box.box__buttons {
		padding: 0;
	}

	.box__buttons--group {
		padding: 15px 20px;
		padding-bottom: 5px;
		width: 100%;
		display: none;
		border-top: 1px solid #CFCFCF;
	}

	.box__buttons--group.is-open {
		display: block;
	}

	.btn-simple {
		font-size: 15px;
		color: #343A40!important;
		margin: 0;
		margin-bottom: 10px;
	}

	.btn-simple:before {
		content: none;
	}

	.card-box.box__buttons .box__buttons--content:first-child .box__buttons--title {
		border-top: none;
	}

	.box__buttons--title i {
		font-size: 17px;
		color: #00B19D;
		position: absolute;
		right: 15px;
		top: 50%;
		display: block;
		transform: translateY(-50%);
	}
	
	.box__buttons--title {
		position: relative;
	}

	.home-filter .col-md-3, .home-filter .col-md-auto {
		flex: 0 0 100%;
		margin-bottom: 5px;
	}
	#topnav .navigation-menu .menu__responsive{
		color: #ddd;
	}
	.topbar-main .helpers .title__none{
		display: none;
	}
}

/* -- Copy Function --*/
.js-copy{
	position: relative;
}

.js-copy:after {
    content: 'Clique para copiar';
    opacity: 0;
	visibility: hidden;
    position: absolute;
    z-index: 9999;
    top: 40px;
    left: -37px;
    width: 114px;
    height: 36px;
    color: #fff;
    font-size: 10px;
    line-height: 36px;
    text-align: center;
    background: rgba(0,0,0,.72);
    border-radius: 3px;
}
  
.js-copy:hover {
	background-color: #eee;	
}
.js-copy:hover:after {
    opacity: 1;
	visibility: visible;
}

.js-copy:active:after, .js-copy:focus:after {
	content: 'Copiado!';
}

/*-- Alterações Alfa --*/
.custom-control-label {
    color: #555;
    cursor: pointer;
}

.custom-checkbox .custom-control-label {
    padding-left: 22px;
    margin-right: 18px;
}

.custom-radio .custom-control-label {
    padding-left: 1px !important;
}

.custom-checkbox {
    padding: 0;
}

@media (min-width: 1025px){
	#topnav .navbar-toggle {
		display: none;
	}
}
@media (min-width: 1024px){
	#topnav .navbar-toggle {
		display: block;
	}
}


/* -- Tour Virtual -- */
div.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow {
border-bottom: 15px solid #2BAC76!important;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
}

div.hopscotch-bubble {
background: #2BAC76;
border: none;
filter: drop-shadow(0px 16px 24px rgba(0, 0, 0, 0.14)) drop-shadow(0px 6px 30px rgba(0, 0, 0, 0.12)) drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.2));
border-radius: 0px;
}

div.hopscotch-bubble .hopscotch-bubble-arrow-container.up {
top: -15px!important;
}

div.hopscotch-bubble .hopscotch-bubble-number {
background: #F5F6F8;
border: none;
width: 40px;
height: 40px;
line-height: 40px;
color: var(--primary-variant);
}

div.hopscotch-bubble .hopscotch-bubble-content {
margin: 0 0 0 55px;
}

div.hopscotch-bubble h3 {
font-weight: 700;
font-size: 14px;
line-height: 144%;
color: #fff;
margin-bottom: 8px;
}

div.hopscotch-bubble .hopscotch-content {
font-weight: 400;
font-size: 13px;
line-height: 144%;
color: #fff;
}

div.hopscotch-bubble .hopscotch-next, div.hopscotch-bubble .hopscotch-prev {
background: var(--primary)!important;
border-radius: 4px!important;
border: none;
font-weight: 400;
font-size: 12px;
line-height: 16px;
}

div.hopscotch-bubble .hopscotch-nav-button.prev {
background: none!important;
color: var(--primary)!important;
}

div.hopscotch-bubble .hopscotch-bubble-close {
text-indent: 0;
top: inherit;
right: inherit;
bottom: 15px;
left: 10px;
font-weight: 400;
font-size: 12px;
line-height: 16px;
color: #fff;
padding: 0 10px;
height: 26px;
width: auto;
border-radius: 4px;
}

div.hopscotch-bubble .hopscotch-bubble-close:hover {
box-shadow: 0 1px 3px rgb(0 0 0 / 25%);
}

div.hopscotch-bubble .hopscotch-nav-button.prev {
color: #fff!important;
}

div.hopscotch-bubble .hopscotch-nav-button.prev:hover, div.hopscotch-bubble .hopscotch-bubble-close:hover {
background: var(--primary)!important;
}

@media (max-width: 1024px){
div.hopscotch-bubble {
	display: none;
}
}


/* -- Header Não Fixo --*/
#topnav.scroll, #topnav.scroll .navbar-custom{
	position: absolute;
	top: 0;
	left: 0;
}


/* -- Gestão de Pedidos - Anexos -- */
.anexos__card {
    display: flex;
    width: 100%;
    min-width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    /* flex-shrink: inherit; */
}

.anexos__card--item {
    display: flex;
    margin: 0 28px;
    flex-direction: column;
}

.anexos__card--item p {
    margin: 0;
    margin-bottom: 2px;
}

.anexos__card--icon {
    width: 64px;
    height: 64px;
    background: rgba(78, 174, 157, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #4EAE9D;
}

.anexos__card--title {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    color: #4C5667;
}

.anexos__card--excerpt {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #4C5667;
}

.anexos__card--date {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #89939D;
}

.anexos__card {
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    border-radius: 3px;
    padding: 16px;
}

@media (max-width: 1024px){
	.anexos__card {
		flex-wrap: wrap;
		padding-top: 1px;
	}

	.anexos__card--item {
		width: 50%;
		margin: 0;
		margin-top: 15px;
	}

	.anexos__card--icon {
		display: none;
	}
}

.anexos__title{
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 23px;
	color: #343A40;
	margin: 0;
	margin-bottom: 4px;
}

.anexos__subtitle{
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	color: #89939D;
	margin: 0;
	margin-bottom: 16px;
}

.anexos__tabs--list .nav-item {
    width: 25%;
    text-align: center;
}

.anexos__tabs--list .nav-item .nav-link.active, 
.anexos__tabs--list .nav-item .nav-link:hover, 
.anexos__tabs--list .nav-item .nav-link:focus {
    border-bottom: solid 2px #4EAE9D!important;
    color: #4EAE9D;
}

.anexos__tabs--content hr{
	margin: 20px 0;
	border-color: #E9E9E9;
}

.anexos__btn{
	color: #4EAE9D;
	background: none;
	padding: 0;
	font-weight: 400;
}
.anexos__btn i{
	margin-right: 7px;
}

.anexos__modal .modal-dialog{
	width: 860px;
}

.badge{
	font-family: 'Source Sans Pro';
	font-style: normal;
}

.category-contrato{
	color: #364476;
	background: #E0E7FF;
}
.category-ordem-de-compra{
	color: #815329;
	background: #FEEEDF;
}
.category-outros{
	color: #285D68;
	background: #DEF9FF;
}

.status-pago{
	color: #165A3E;
	background: #D6F5E8;
}
.status-atrasado{
	color: #871728;
	background: #FEECEE;
}
.status-pendente{
	color: #6B500A;
	background: #F9E8BE;
}
.status-nao-atribuido{
	color: #871728;
	background: #FEECEE;
}
.status-atribuido{
	color: #16255A;
	background: #D6DDF5;
}
.status-aceito{
	color: #095430;
	background: #E1FAEE;
}
.status-deslocamento{
	color: #6B500A;
	background: #F9E8BE;
}
.status-chegou{
	color: #363F42;
	background: #BEEBF9;
}
.status-entregue{
	color: #245A16;
	background: #DCF5D6;
	font-weight: 600;
}
.status-vuupt{
	color: #4C5667;
	background: #F2F2F2;
	font-weight: 600;
}
.status-contrato{
	color: #364476;
	background: #E0E7FF;
	font-weight: 600;
}
.status-outros{
	color: #285D68;
	background: #DEF9FF;
	font-weight: 600;
}
.status-documento{
	color: #402981;
	background: #E7DFFE;
	font-weight: 600;
}
/* -- Fim Gestão de Pedidos - Anexos -- */

/* -- Inicio Entregas Comprovante -- */
.button-link {
	color: #4EAE9D;
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 19px;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
}
.button-link:hover {
	text-decoration: underline;
}
.entregas-comprovante__modal{
	max-width: 560px;
	width: 100%;
}

.entregas-comprovante__info-box {
	border: 1px solid #E9E9E9;
}
.entregas-comprovante__info-box--section {
	border-bottom: 1px solid #E9E9E9;
	padding: 16px;
}
.entregas-comprovante__info-box--section-no-border {
	border-bottom: none;
}
.entregas-comprovante__info-box--section .btn{
	background: #ccc!important;
	border-color: #ccc!important;
	color: #5f5f5f;
	padding: 3px 10px;
	width: auto;
}
.entregas-comprovante__info-box--logo-endereco {
	width: 64px;
	height: 40px;
	margin-right: 16px;
}
.entregas-comprovante__info-box--logo-endereco img{
	object-fit: contain;
}
.entregas-comprovante__info-box--endereco-title{
	font-family: 'Work Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 144%;
	color: #343A40;
	margin-bottom: 6px;
}
.entregas-comprovante__info-box--endereco-description{
	font-family: 'Work Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 11px;
	line-height: 144%;
	color: #6E768E;
	margin-bottom: 0;
}
.entregas-comprovante__item-data {
	width: 56px;
	height: 56px;
	margin-right: 12px;
}
.entregas-comprovante__item-data img{
	object-fit: contain;
	height: 100%;
}
.entregas-comprovante__item-data-title{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 19px;
	color: #4C5667;
	margin-bottom: 6px;
}
.entregas-comprovante__item-data-code{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: #89939D;
	margin: 0;
	margin-right: 8px;
}
.entregas-comprovante__main-info-title{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	color: #4C5667;
	margin-bottom: 4px;
}
.entregas-comprovante__main-info-description{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #4C5667;
	margin: 0;
}
.entregas-comprovante__data-box{
	min-width: 150px;
}
.entregas-comprovante__data-margin{
	margin-bottom: 12px;
}
.entregas-comprovante__data-title{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 15px;
	line-height: 19px;
	text-align: right;
	color: #4C5667;
	margin: 0;
}
.entregas-comprovante__data-description{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 19px;
	color: #4C5667;
	margin: 0;
	margin-left: 16px;
}
.entregas-comprovante__data-description--add{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: #90959E;
	margin: 4px 0 0 16px;
}
.entregas-comprovante__registers-text{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: #343A40;
	margin: 0;
}
.entregas-comprovante__registers a{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: #4EAE9D;
}
.entregas-comprovante__registers a img{
	margin-right: 10px;
}
.entregas-comprovante__registers{
	padding: 16px 0;
}
.entregas-comprovante__table-margin{
	margin-right: 12px;
}
.modal {
	overflow-y: auto;
}

@media (max-width: 429px) {
	.entregas-comprovante__modal{
		max-width: calc(100% - 30px);
	}
	.entregas-comprovante__data-margin{
		flex-direction: column!important;
	}
	.entregas-comprovante__data-title {
		justify-content: flex-start!important;
	}
	.entregas-comprovante__data-description{
		margin-top: 8px;
		margin-left: 0;
	}
	.entregas-comprovante__data-description--add{
		margin-left: 0;
	}
}
/* -- Fim Entregas Comprovante -- */

/* -- Inicio equipamentos da nf -- */
.equipamentos-nf__title{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 15px;
	line-height: 19px;
	color: #4C5667;
	margin-bottom: 6px;
}
.equipamentos-nf__date{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 23px;
	color: #4EAE9D;
	margin: 0;
}
/* -- Fim equipamentos da nf -- */

/* -- Inicio novo anexo -- */
.novo-anexo__title{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 19px;
	color: #6E768E;
	margin-bottom: 4px;
}
.novo-anexo__upload{
	border: 2px dashed #DADFE5;
	border-radius: 4px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 24px 0;
	margin-bottom: 12px;
}
.novo-anexo__upload-description{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #4C5667;
	margin: 0;
	margin-top: 24px;
}
.novo-anexo__anexo{
	border: 1px solid #EDEDED;
	border-radius: 3px;
	padding: 12px 18px 14px 12px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 8px;
}
.novo-anexo__anexo img{
	margin-right: 12px;
}
.novo-anexo__anexo-nome{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 19px;
	color: #4C5667;
	margin-bottom: 6px;
}
.novo-anexo__anexo-description{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: #89939D;
	margin: 0;
}
.novo-anexo__button{
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	border: none;
}
.novo-anexo__button i{
	color: #F64F69;
	font-size: 12px;
	line-height: 15px;
	height: 12px;
	width: 15px;
}
.novo-anexo__button img{
	margin: 0;
}
.novo-anexo__button-envio{
	background-color: #4EAE9D;
	margin-top: 16px;
	border: none;
}
/* -- Fim novo anexo -- */

.share-modal{
	max-width: 440px;
	width: 100%;
}
.share-modal__button{
	background-color: #4EAE9D;
}

@media (max-width: 429px) {
	.share-modal{
		max-width: calc(100% - 30px);
	}
}

.indicators-cards{
	height: auto;
	padding: 16px;
	flex-shrink: 0;
	display: flex;
    flex-direction: column; 
}
.text-indicators{
	color: #4C5667;
	font-family: "Source Sans Pro";
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.text-options{
	color: #6F768C;
	font-family: "Source Sans Pro";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0;
}
.text-options::after {
    content: ""; 
    display: inline-block; 
	width: 17px;
	height: 17px; 
    background: url('../images/alert-octagon.svg') no-repeat;
    background-size: contain;
    margin-left: 4px;
	vertical-align: middle;
}
.indicators-number {
    color: #343A40;
    font-family: "Source Sans Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
	margin-bottom: 0;
	background-color: #F1F5F7;
	padding: 4px;
	border-radius: 4px;
}
.indicators-wrapper {
	display: flex;
	align-items: center;
}
.badge__large{
	width: 100%;
}
.badge__new2 {
	background-color: #AFCB9E;
	border: solid 1px #AFCB9E;
	color: #34585C;
}
.badge__reman2 {
	background-color: #FADDA6;
	border: solid 1px #FADDA6;
	color: #A06A00;
}
.badge__administrative {
	background-color: #EAC589;
	border: solid 1px #EAC589;
	color: #816022;
}
.badge__logistics {
	background-color: #9BE5EF;
	border: solid 1px #9BE5EF;
	color: #20727D;
}
.text-values {
	margin-bottom: 0;
	color: #6F768C;
	font-family: "Work Sans";
	font-size: 14px;
}
.text-values strong {
	color: #000000;
}
.pendencies__records p{
	color: #000;
	text-align: center;
	font-family: "Work Sans";
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0;
}
.badge__pendencies {
	border-radius: 32px;
	padding: 0px 6px;
}
.badge__top {
	position: absolute;
	top: -7px; 
    right: 2px;
	background-color: #F64F69;
	border: solid 1px #F64F69;
	color: #FFFFFF;
	padding: 0px 4px;
	border-radius: 7.5px;
	font-family: "Work Sans";
}
.form-period-indicators {
	display: flex;
	align-items: center;
	justify-content: flex-end
}
.label-form-period {
	color: #000;
	font-family: "Work Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	align-items: center;
	margin: 0;
	margin-right: 11px;
}