body{
	background-color: rgba(255,255,255,0) !important;
}


.layout {
  z-index: 1;
  height: calc(100% - 45px);
}
.layout .header {
  box-shadow: 1px 1px 4px #9aa0b9;
  display: flex;
  align-items: center;
  padding: 20px;
}
.layout .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.layout .footer {
  text-align: center;
  margin-top: auto;
  margin-bottom: 20px;
  padding: 20px;
}
.layout.rtl .header {
  box-shadow: -1px 1px 4px #9aa0b9;
}
.header {
  color: black;
  overflow-x: hidden !important;
  position: relative;
  width:  100%;
  align-items: center;
  padding: 0 25px;
  padding-top: 25px;
  border-bottom: 1px solid rgba(83, 93, 125, 0.3);
  height: 80px; 
  background-image: linear-gradient(to right, #2686da, #f68a34);
}
.headertitle {
  color: black;
  font-size: 15px; 
  letter-spacing: 3px; 
  font-weight: bold;
}
.binclude{
 /* width:98%; 
  min-height:90%; 
  margin: 10px;
  padding-bottom: 20px;*/
}

.sidebar {
  color: black;
/*   overflow-x: hidden !important; */
  position: relative;
  background-color: white;
  height: calc(100% - 78px);
/*   overflow: hidden; */
}
.sidebar .image-wrapper {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  z-index: 1;
  display: none;
}
.sidebar .image-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sidebar.has-bg-image .image-wrapper {
  display: block;
}
.sidebar .sidebar-layout {
  height: 100%;
  width:  20%;
  display: inline-block;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  z-index: 2;
  border-right: 1px solid rgba(83, 93, 125, 0.3);
  background-color: rgba(83, 93, 125, 0.1);
}
.sidebar .sidebar-layout .sidebar-header {
  height: 64px;
  min-height: 64px;
  width:  20%;
  display: inline-block;
  align-items: center;
  padding: 0 25px;
  padding-top: 25px;
  border-bottom: 1px solid rgba(83, 93, 125, 0.3);
}
.sidebar .sidebar-layout .sidebar-header > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sidebar .sidebar-layout .sidebar-content {
  height: 100%;
}
.sidebar .sidebar-layout .sidebar-footer {
  height: 64px;
  min-height: 64px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(83, 93, 125, 0.3);
  padding: 0 20px;
}
.sidebar .sidebar-layout .sidebar-footer > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@keyframes swing {
  0%, 30%, 50%, 70%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
}
.layout .sidebar .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.layout .sidebar .menu .menu-item a {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  color: black;
}
.layout .sidebar .menu .menu-item a .menu-icon {
  font-size: 2.2rem;
  width: 35px;
  min-width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  border-radius: 2px;
  transition: color 0.3s;
}
.layout .sidebar .menu .menu-item a .menu-icon i {
  display: inline-block;
}
.layout .sidebar .menu .menu-item a .menu-title {
  font-size: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
  transition: color 0.3s;
}
.layout .sidebar .menu .menu-item a .menu-prefix,
.layout .sidebar .menu .menu-item a .menu-suffix {
  display: inline-block;
  padding: 5px;
  opacity: 1;
  transition: opacity 0.3s;
}
.layout .sidebar .menu .menu-item a:hover .menu-title {
  color: black;
}
.layout .sidebar .menu .menu-item a:hover .menu-icon {
  color: black;
}
.layout .sidebar .menu .menu-item a:hover .menu-icon i {
  animation: swing ease-in-out 0.5s 1 alternate;
}
.layout .sidebar .menu .menu-item a:hover::after {
  border-color: black !important;
}
.layout .sidebar .menu .menu-item.sub-menu {
  position: relative;
}
.layout .sidebar .menu .menu-item.sub-menu > a::after {
  content: "";
  transition: transform 0.3s;
  border-right: 2px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  width: 5px;
  height: 5px;
  transform: rotate(-45deg);
}
.layout .sidebar .menu .menu-item.sub-menu > .sub-menu-list {
  padding-left: 20px;
  display: none;
  overflow: hidden;
  z-index: 999;
}
.layout .sidebar .menu .menu-item.sub-menu.open > a::after {
  transform: rotate(45deg);
}
.layout .sidebar .menu .menu-item.active > a .menu-title {
  color: #dee2ec;
}
.layout .sidebar .menu .menu-item.active > a::after {
  border-color: #dee2ec;
}
.layout .sidebar .menu .menu-item.active > a .menu-icon {
  color: #dee2ec;
}
.layout .sidebar .menu > ul > .sub-menu > .sub-menu-list {
  background-color: #0b1a2c;;
}
.layout .sidebar .menu.icon-shape-circle .menu-item a .menu-icon, .layout .sidebar .menu.icon-shape-rounded .menu-item a .menu-icon, .layout .sidebar .menu.icon-shape-square .menu-item a .menu-icon {
  background-color: #0b1a2c;;
}
.layout .sidebar .menu.icon-shape-circle .menu-item a .menu-icon {
  border-radius: 50%;
}
.layout .sidebar .menu.icon-shape-rounded .menu-item a .menu-icon {
  border-radius: 4px;
}
.layout .sidebar .menu.icon-shape-square .menu-item a .menu-icon {
  border-radius: 0;
}
.layout .sidebar:not(.collapsed) .menu > ul > .menu-item.sub-menu > .sub-menu-list {
  visibility: visible !important;
  position: static !important;
  transform: translate(0, 0) !important;
}
.layout .sidebar.collapsed .menu > ul > .menu-item > a .menu-prefix,
.layout .sidebar.collapsed .menu > ul > .menu-item > a .menu-suffix {
  opacity: 0;
}
.layout .sidebar.collapsed .menu > ul > .menu-item.sub-menu > a::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: currentcolor;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 50%;
  border: none;
  transform: translateY(-50%);
}
.layout .sidebar.collapsed .menu > ul > .menu-item.sub-menu > a:hover::after {
  background-color: black;
}
.layout .sidebar.collapsed .menu > ul > .menu-item.sub-menu > .sub-menu-list {
  transition: none !important;
  width: 200px;
  margin-left: 3px !important;
  border-radius: 4px;
  display: block !important;
}
.layout .sidebar.collapsed .menu > ul > .menu-item.active > a::after {
  background-color: black;
}
.layout .sidebar.has-bg-image .menu.icon-shape-circle .menu-item a .menu-icon, .layout .sidebar.has-bg-image .menu.icon-shape-rounded .menu-item a .menu-icon, .layout .sidebar.has-bg-image .menu.icon-shape-square .menu-item a .menu-icon {
  background-color: rgba(11, 26, 44, 0.6);
}
.layout .sidebar.has-bg-image:not(.collapsed) .menu > ul > .sub-menu > .sub-menu-list {
  background-color: transparent;
}
.layout.rtl .sidebar .menu .menu-item a .menu-icon {
  margin-left: 10px;
  margin-right: 0;
}
.layout.rtl .sidebar .menu .menu-item.sub-menu > a::after {
  transform: rotate(135deg);
}
.layout.rtl .sidebar .menu .menu-item.sub-menu > .sub-menu-list {
  padding-left: 0;
  padding-right: 20px;
}
.layout.rtl .sidebar .menu .menu-item.sub-menu.open > a::after {
  transform: rotate(45deg);
}
.layout.rtl .sidebar.collapsed .menu > ul > .menu-item.sub-menu a::after {
  right: auto;
  left: 10px;
}
.layout.rtl .sidebar.collapsed .menu > ul > .menu-item.sub-menu > .sub-menu-list {
  margin-left: -3px !important;
}

* {
  box-sizing: border-box;
}

.tableWithPadding{
	padding: 5px;
}

input[type=submit] {
  width: 100%;
  background-color: orange;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: orange;
}
.divImputTN{
	border: 1px solid rgba(83, 93, 125, 0.3); 
	padding: 10px;
	position: relative;
	display: inline-block;
	width: 100%
}
.divImputButton{
	padding: 10px;
	position: relative;
	display: inline-block;
	width: 100%;
	text-align: right;
}
body {
  margin: 0;
  /* height: 100vh; */
  font-family: "Roboto", sans-serif;
  color: #212529;
}

a {
  text-decoration: none;
}

@media (max-width: 992px) {
  #btn-collapse {
    display: none;
  }
}

.selectComp{
    min-height: 38px;
    border-radius: 2px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.excelExportLeftText {
	display: inline-block;
	text-align: left;
	padding-left: 10px;
	padding-top: 10px;
	font-size: 70%;
}

.excelExport {
	text-align: right;
	padding-right: 10px;
}

.excelExportIcon {
	width: 24px;
}

.fa.disabled,.fa[disabled],.disabled > .fa,[disabled] > .fa {
	color: lightgrey;
	opacity: 0.6;
}

.fa.icon-green {
	color: green;
}
.claimsProcessHeader{
	background-image: linear-gradient(to right, #2686da, #f68a34);
	font-size: 100% !important;
}

.btAction {
    clear: left;
    display: inline-block;
    height: 25px;
    border: 0;
    border-radius: 3px;
    background: #ea7c24;
    transition: border .3s;
    margin: 19px 0px 0px 0;
    font-size: 80%;
    padding: 0 14px;
}

/* btAction */
.btAction {
	clear: left;
	display: inline-block;
	height: 25px;
	border: 0;
	border-radius: 3px;
	background: #ea7c24;  
	transition: border 0.3s;
	margin: 19px 0px 0px 0;
	font-size: 80%;
	padding: 0px 14px;
}

.btAction:hover {
	background: #ea7c24;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.btActionExit {
	background: hsla(0, 100%, 60%, 1);
}

.btActionExit:hover {
	background: hsla(0, 100%, 50%, 1);
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.btActionDisabled{
	clear: left;
	display: inline-block;
	height: 25px;
	border: 0;
	border-radius: 3px;
	background: hsla(196, 15%, 80%, 1);
	transition: border 0.3s;
	margin: 10px 5px 10px 0;
	font-size: 80%;
	padding: 0px 14px;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
	cursor: default;
	opacity: 1;
	filter: Alpha(Opacity = 100);
}

.btActionToggled {
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
	background: #F8A331;
}

.btActionLowerRightInside{
	position: absolute;
	bottom: 0px;
	right: 10px;
}

.btActionNoClearRight {
	clear: none;
	float: right;
}

.btActionLeft {
	float: left;
}

.btActionRight{
	float: right;
	margin: 10px 0 10px 10px;
}

.btActionNoClear{
	clear: none;
	float: left;
}

.btActionInline{
	display: inline-block;
}

.btConfirmNoClear{
	clear: none;
	float: right;
}

.btActionTop{
	float: left;
	margin: 20px 10px 10px 0;
}

.btActionSquare{
	width: 25px;
	height: 25px;
	margin: 0;
	clear: none;
	float: left;
	padding: 0;
}

.btActionPrintProp {
	clear: none;
	float: left;
	margin-left: 15px;
}

.btActionLowerRight {
	position: fixed;
	bottom: 15px;
	right: 50px;
}

.btCreatePolicy{
	width: 150px;
	display: inline-block;
	padding: 0;
}

.btActionBox {
	display: table;
	width: 100%;
	height: 100%;
}

.btActionInner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
}
/* verificar pesquisa */
.filterProp {
	display: inline-block;
	vertical-align: top;
	margin-left: 5px;
}

.form {
	padding-top:12px;
}

.footer {
  height: 45px; 
  background-image: linear-gradient(to right, #2686da, #f68a34);
}
.footertitle {
  color: black;
  font-size: 15px; 
  letter-spacing: 3px; 
  font-weight: bold;
}

.contentFrame{
	margin: 0px;
	padding: 0px;
	border: 0px;
	position: absolute;
    width: 79%;
    height: 100%;
}

.siniCntParent{
	overflow-x: inherit !important;
	overflow-y: inherit !important;
}

.siniCnt1 {
	overflow-y: auto;
	display: inline-block;
	width: 48%;
	height: 100%;
	margin: 0px !important;
	border: 0;
	outline: 0;
	float: left;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt1Full {
	overflow-y: auto;
	display: inline-block;
	width: 100%;
	height: 100%;
	margin: 0px !important;
	border: 0;
	outline: 0;
	float: left;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt1NotFull {
	overflow-y: auto;
	display: inline-block;
	width: 0px;
	height: 100%;
	margin: 0px !important;
	border: 0;
	outline: 0;
	float: left;
	visibility: hidden;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt1Close {
	position: fixed;
	top: 50px;
	font-size: 150%;
	left: 2px;
	cursor: pointer;
	-ms-transform: rotate(180deg); /* IE 9 */
	-webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
	transform: rotate(180deg);
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt1Hide {
	position: fixed;
	top: 50px;
	left: 2px;
	cursor: pointer;
	opacity: 0;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt1Open {
	position: fixed;
	top: 50px;
	font-size: 150%;
	left: calc("47% - 5px");
	cursor: pointer;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt1Open2 {
	position: fixed;
	top: 50px;
	left: calc("100% - 385px");
	cursor: pointer;
	opacity: 0;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt2 {
	display: inline-block;
	width: 52%;
	height: 100%;
	margin: 0px !important;
	border: 0;
	outline: 0;
	float: left;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt2Full {
	display: inline-block;
	width: 100%;
	height: 100%;
	font-size: 150%;
	left: 20px;
	margin: 0px !important;
	border: 0;
	outline: 0;
	float: left;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt2NotFull {
	display: inline-block;
	width: 0px;
	font-size: 150%;
	height: 100%;
	margin: 0px !important;
	border: 0;
	outline: 0;
	float: left;
	visibility: hidden;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt2NotFull2 {
	display: inline-block;
	width: 0px;
	font-size: 150%;
	height: 100%;
	margin: 0px !important;
	border: 0;
	left: 100%;
	outline: 0;
	float: left;
	visibility: hidden;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt2Close {
	position: fixed;
	top: 50px;
	font-size: 150%;
	left: 2px;
	cursor: pointer;
	-ms-transform: rotate(180deg); /* IE 9 */
	-webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
	transform: rotate(180deg);
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt2Hide {
	position: fixed;
	top: 50px;
	font-size: 150%;
	left: 2px;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt2Open {
	position: fixed;
	top: 50px;
	font-size: 150%;
	left: calc("47% + 20px");
	cursor: pointer;
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCnt2Open2 {
	position: fixed;
	top: 50px;
	font-size: 150%;
	left: calc("100% - 30px");
	cursor: pointer;
	-ms-transform: rotate(180deg); /* IE 9 */
	-webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
	transform: rotate(180deg);
	-webkit-transition: all 0.3s linear; /* Safari */
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}

.siniCntMenu {
	display: inline-block;
	width: 50px;
	height: 100%;
	padding-top: 25px;
	margin: 0px !important;
	left: 0px;
	float: right;
	overflow-x: hidden;
	overflow-y: hidden;
	color: white;
}


.claimsHalfScreen {
}

.claimsFullScreen {
	display: block;
	width: 100%;
	max-width: 100% !important;
	vertical-align: top;
	margin: 0px;
	flex: auto !important;
}


.ui-tabs .ui-tabs-nav li{
	margin: -1px !important;
}

.ui-tabs-selected{
	background-color: #ea7c24 !important;
}

.tableLine_detail_cell {
	border: none !important;
	background-color: white !important;
	padding: 0px !important;
}
.ui-widget-content {
	border: 1px solid #ea7c24 !important;
	padding:0px !important;
	margin:0px !important;
	min-height:165px !important;
}

.ui-widget-content-withoutborder {
	border: none !important;
	padding:0px !important;
	margin:0px !important;
	min-height:165px !important;
}

.ui-state-default {	
	padding:0px !important;
}

.ui-datatable thead th, .ui-datatable tfoot td {
	text-align: none !important;
}

.pcPage .inputNumberClass{
	width: 80px !important; 
}

.ui-tabs-panels{
	margin: 1px;
	background: white !important;
}

select{
	height: 19px !important;
}

.claimsProcFooterBarOptLbl {
    padding-top: 1px !important;
    font-size: 95% !important;
    display: inline-block !important;
}

.ui-widget {
    font-size: 1.0em !important;
    padding: 0px !important;
}

.pcDiv {
    font-size: 95% !important;
}

.claimsProcessFooter > span{
	font-size: 95% !important;
}

.claimsProcessFooter {
    margin-top: 0;
    background-color: #ea7c24;
    border: 0;
    width: 100%;
    min-height: 50px;
    color: #fff;
    padding-top: 0;
    text-align: right;
}


element.style {
}
* {
    box-sizing: border-box;
}
.ui-datatable thead th, .ui-datatable tfoot td {
    text-align: center;
}
user agent stylesheet
th {
    font-weight: bold;
    text-align: -internal-center;
}
.ui-datatable table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}
user agent stylesheet
table {
    border-collapse: separate;
    text-indent: initial;
    border-spacing: 2px;
}
.ui-datatable-tablewrapper {
    background-color: #daa520;
    color: white;
    text-align: left;
    border-width: 1px;
    border-style: none;
    width: 100%;
}
.devbackground {
    background-color: #daa520;
    color: white;
    text-align: left;
    border-width: 1px;
    border-style: none;
    width: 100%;
    padding: 0px;
}
.ui-widget {
    font-size: 0.9em !important;
    padding: 0px;
}
.bottom{
	text-align: center;
	position: absolute; 
	bottom: 5px;
	width: 100%;
}