@import url("reset.css");

html,body{
    height:100%;
    font-size:14px;
    font-family:arial !important;
    overflow:hidden;
}

/* Need this for IE. By default, IE textare inherits white-space
from parent. We want to wrap always */
textarea {
	white-space: pre-wrap;
}

.bold{
	font-weight: bold;
}

.loadingBatch{
	position:absolute;
	background:rgba(0,0,0,0.7);
	width:100%;
	z-index:99999;
	top:0px;
}
.loadingBatch .animatedGif{
	background-color:#fff;
	border-radius:10px;
	padding:10px;
	width:50px;
	height:50px;
	margin:0 auto;

	background-image:url(../images/ajax-loader.gif);
	background-position:center center;
	background-repeat: no-repeat;
}

.animatedLoaderRelative{
	top: 63px;
    bottom: 62px;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.85);
    background-image: url(../images/ajax-loader.gif);
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 9999;
}

.animatedLoader{
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.85);
    background-image: url(../images/ajax-loader.gif);
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 9999;
}

.loadingBatch .msg{
	font-size:25px;
	margin-top:15px;
	color:#fff;
}
.loadingBatch button{
	margin-top: 25px;
}

.loader-box{
	background-image:url(../images/ajax-loader.gif);
	background-position:center center;
	background-repeat: no-repeat;
	height:100%;
	width:100%;
	position: absolute;
	margin-top:-40px;
	z-index:9999;

}


.loaderBoxRelative{

	background-image:url(../images/ajax-loader.gif);
	background-position:center center;
	background-repeat: no-repeat;
	height:100%;
	width:100%;
	min-height:200px;
	z-index:9999;

}
/* Disabled inputs */
input[disabled], button[disabled]{
   opacity:0.6;
   text-shadow: 0px 1px 1px #fff;
   box-shadow: 0px 1px 1px #fff;
   box-shadow: inset 0 0 10px #e5e5e5;
}

.grdGrey{
	background: #6d6d6d; /* Old browsers */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzZkNmQ2ZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0NTQ1NDUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #6d6d6d 0%, #454545 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6d6d6d), color-stop(100%,#454545)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #6d6d6d 0%,#454545 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #6d6d6d 0%,#454545 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #6d6d6d 0%,#454545 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #6d6d6d 0%,#454545 100%); /* W3C */
	color:#fff;
}


.border-radius-top{
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}



.border-radius-bottom{
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}



.calculated-content-nofilter {
	/*background-color: #F5F5f5;*/
	position:absolute;
	z-index:0 !important;
    right:0px;

    overflow:auto;
    overflow-x:hidden;

	width: -moz-calc(100% - 80px) !important;
    width: -webkit-calc(100% -80px) !important;
    width: calc(100% - 80px) !important;

    height: -moz-calc(100% - 62px);
    height: -webkit-calc(100% -62px);
    height: calc(100% - 62px);
}

.calculated-content {
	/*background-color: #F5F5F5;*/
	position:absolute;
	z-index:0 !important;
    right:0px;
    overflow-y:auto;

	width: -moz-calc(100% - 80px) !important;
    width: -webkit-calc(100% -80px) !important;
    width: calc(100% - 80px) !important;

    height: -moz-calc(100% - 117px) !important;
    height: -webkit-calc(100% -117px) !important;
    height: calc(100% - 116px) !important;
}

.calculated-height-leftbar {
    height: -moz-calc(100% - 61px) !important;
    height: -webkit-calc(100% -61px) !important;
    height: calc(100% - 61px) !important;
}

.calculated-width-leftbar {
    width: -moz-calc(100% - 80px) !important;
    width: -webkit-calc(100% -80px) !important;
    width: calc(100% - 80px) !important;
}

.box {
	width:50%;
	float:left;
	background-color:#f4f4f4;
	border-radius:15px;

}

/*LeftBar*/
.leftbar {
	position: fixed;
	background-color: #5b91ba;
	z-index: 999;
}
.top-options{
	position: relative;
}

.top-options span > .navbtn, .bottom-options span > .navbtn{
    display: inline-block;
    padding: 12px 0;
    box-sizing: border-box;
}

.top-options > span:after, .bottom-options div > span:before{
	content: " ";
	background-image: url(../images/border-hor.png); /* Safari 5 */
	width: 100%;
	height: 2px;
	display: block;
}

.bottom-options{
	bottom:0px;
	position:absolute;
}

.navbtn {
	cursor: pointer;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 11px;
	color: #fff;
}

.square {
	width: 80px;
	height: 80px;
}

.square .label {
	background: none;
	font-size: 11px;
	font-weight: normal;
	text-shadow: 0px 1px 2px #000;
	display: block;
	margin-top: -4px;
}

.square #menu-qc-label.label{
	margin-top: -10px;
}

.sep {
	background-image: url(../images/border-hor.png); /* Safari 5 */
	width: 100%;
	height: 2px;
}


.float-menu{
	background-color:#5b91ba;
	position:absolute;
	left:80px;
	height: 82px;
	z-index: 99999;
	display: none;
}

.topmenuicon{
	margin-top: -83px;
}

.bottommenuicon{
	margin-top: -81px;
}

.float-menu .navbtn{
	height: 82px;
	min-width: 80px;
	width: 80px;
}


@media (max-height: 715px) {
	.mainoptions .more_options{
		top:-28px;
	}
	.mainoptions .navbtn, .mainoptions .square{
		height: 30px;
		text-align: left;
		text-indent: 8px;
	}
	.mainoptions .navbtn .icons{
		display: none;
	}
}

@media (max-width: 1023px) {
	.user-info .textuser{
		display : none;
	}
}

@media (max-width: 1540px){
	.results-container{
		width: 100%;
		max-width: 500px;
	}
}

.navbtn:hover, .navbtn.selected, .grdBlue , .uk-button.grdBlue{
	text-shadow:none;
	color: #fff;
	text-decoration: none;
	background: #6096bd;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzYwOTZiZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzMzcxOWIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #6096bd 0%, #33719b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6096bd), color-stop(100%,#33719b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #6096bd 0%,#33719b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #6096bd 0%,#33719b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #6096bd 0%,#33719b 100%); /* IE10+ */
	background: linear-gradient(to bottom, #6096bd 0%,#33719b 100%); /* W3C */
}
.uk-button.grdBlue:hover {
	background: #4C90C1;
}
.navbtn.right {
	margin-left: 3px;
	background: rgba(0,0,0,0.4);
	background-color: #005b82;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.navbtn_more_options {
	background-image: url(../images/more_options.png);
	background-repeat: no-repeat;
	background-position:right 6px center;
}

.more_options{
	position: absolute;
	right:0px;
	margin-top:38px;
	width:10px;
	height:10px;
	background-image: url(../images/more_options.png);
	background-repeat: no-repeat;

}

/* TopBar */
.topbar {
	height: 61px;
	background: #35729d;
}

.topbar .logout {
	padding: 18px 15px;
	margin-right: 10px;
	height:48px;
	background-color: #00354b !important;
}

.topbar .servername{
	font-size:12px;
	text-align: left;
	margin-right:11px;
}
.topbar .accountname{
	font-size:11px;
	text-align: left;
	font-style: italic;
	margin-right:11px;
}

.navbtn.grdgreen, .grdGreen, .analyzer-item.green {
	background: #82aa78 !important;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzgyYWE3OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0Yzc5NDIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+) !important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#98b0b7), color-stop(100%,#4c7942)) !important;
	background: -webkit-linear-gradient(top, #82aa78 0%,#4c7942 100%) !important;
	background: -moz-linear-gradient(top, #82aa78 0%, #4c7942 100%) !important;
	background: -o-linear-gradient(top, #82aa78 0%,#4c7942 100%) !important;
	background: -ms-linear-gradient(top, #82aa78 0%,#4c7942 100%) !important;
	background: linear-gradient(to bottom, #82aa78 0%,#4c7942 100%) !important;
}


.navbtn.grdred, .grdRed{
	background: #ff3019 !important; /* Old browsers */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QzMDAyZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhNTAwMjMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+) !important;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#d3002e), to(#a50023)) !important;
	background: -webkit-linear-gradient(#d3002e 0%, #a50023 100%) !important;
	background: -moz-linear-gradient(#d3002e 0%, #a50023 100%) !important;
	background: -o-linear-gradient(#d3002e 0%, #a50023 100%) !important;
	background: -ms-linear-gradient(top, #d3002e 0%,#a50023 100%) !important;
	background: linear-gradient(#d3002e 0%, #a50023 100%) !important;
}


.navbtn.grdyellow, .grdYellow {
	background: #f1cb48 !important; /* Old browsers */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxY2I0OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZTk1MWEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+) !important;
	background: -moz-linear-gradient(top,  #f1cb48 0%, #ce951a 100%) !important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f1cb48), color-stop(100%,#ce951a)) !important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f1cb48 0%,#ce951a 100%) !important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f1cb48 0%,#ce951a 100%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f1cb48 0%,#ce951a 100%) !important; /* IE10+ */
	background: linear-gradient(to bottom,  #f1cb48 0%,#ce951a 100%) !important; /* W3C */
}


.grd-grey-box {
	background: #dfdfdf !important; /* Old browsers */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RmZGZkZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkMmQyZDIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+) !important;
	background: -moz-linear-gradient(top,  #dfdfdf 0%, #d2d2d2 100%) !important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dfdfdf), color-stop(100%,#d2d2d2)) !important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #dfdfdf 0%,#d2d2d2 100%) !important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #dfdfdf 0%,#d2d2d2 100%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #dfdfdf 0%,#d2d2d2 100%) !important; /* IE10+ */
	background: linear-gradient(to bottom,  #dfdfdf 0%,#d2d2d2 100%) !important; /* W3C */
}


.network-btn {
	width:32px;
}

/* Button icons from sprite*/
.icons {
	background-image: url(../images/icons-sprite.png);
	width: 48px;
	height: 48px;
	display: block;
	margin: 0 auto;
	background-repeat: no-repeat;
}
.icons.logo {
	margin-top: 5px;
	width: 250px;
	background-position: -180px -190px;
}
.icons.corp {
	margin-top: 5px;
	width: 170px;
	background-position: 0px -190px;
}

.icons.email {
	background-position: 0px -47px;
}

.icons.arrow-down {
	background-position: 0px -144px;
	float: right;
}

.icons.network-status {
	width: 15px;
	background-position: 0px -85px;
}

.icons.his-status {
	width: 15px;
	background-position: 0px -236px;
}

.icons.account {
	background-position: -336px -48px;
}


.icons.stat {
	background-position: -480px 0px;
}
.icons.report {
	background-position: -96px 0;
}

.icons.iqm {
	background-position: -190px -93px;
}

.icons.rilibaek {
	background-position: -240px -93px;
}

.icons.enhanced {
	background-position: -288px -93px;
}

.icons.auditlog {
	background-position: -336px -93px;
}

.icons.signed {
	background-position: -382px -93px;
}

.icons.security {
	background-position: -430px -95px;
}

.icons.certification {
	background-position: -481px -98px;
}

.icons.archive {
	background-position: -575px -97px;
}

.icons.global {
	background-position: -624px -97px;
}

.icons.area {
	background-position: -431px -190px;
}

.icons.verification {
	background-position: -480px -232px;
}

.icons.analyzer {
	background-position: -96px -96px;
}

.icons.samples {
	background-position: -144px 0;
}
.icons.operators {
	background-position: -240px 0;
}

.icons.tools {
	background-position: -192px 0;
}
.icons.external {
	background-position: -48px 0;
}

.icons.diagnostics {
	background-position: -288px 0;
}

.icons.manage {
	background-position: -384px 0;
}
.icons.service {
	background-position: -432px 0;
}
.icons.config {
	background-position: -528px 0;
}

.icons.myil {
	background-position: -576px 0;
}

.icons.synapse {
	background-position: -528px -96px;
}
.icons.gwp {
	background-position: -624px 0;
}

.icons.qc {
	background-position: -528px -96px;
}

.icons.leveyJennings {
	background-position: -144px -92px;
}

.icons.eqc {
	background-position: -668px -186px;
}

.icons.lot {
	background-position: -668px -94px;
}

.icons.uncertainty {
	background-position: -668px 0px;
}

.icons.dashboard {
	background-position: -530px -185px;
}

.icons.orders {
	background-position: -575px -185px;
}


.icons.orders {
	background-position: -575px -185px;
}

.navbtn:hover .icons.orders, .navbtn.selected .icons.orders {
	background-position: -575px -236px;
}
.navbtn:hover .icons.dashboard, .navbtn.selected .icons.dashboard {
	background-position: -530px -230px;
}
.navbtn:hover .icons.analyzer , .navbtn.selected .icons.analyzer {
	background-position: -96px -143px;
}
.navbtn:hover .icons.stat, .navbtn.selected .icons.stat {
	background-position: -480px -48px;
}
.navbtn:hover .icons.report , .navbtn.selected .icons.report{
	background-position: -96px -48px;
}
.navbtn:hover .icons.samples , .navbtn.selected .icons.samples{
	background-position: -144px -48px;
}
.navbtn:hover .icons.operators , .navbtn.selected .icons.operators{
	background-position: -240px -48px;
}
.navbtn:hover .icons.tools , .navbtn.selected .icons.tools{
	background-position: -192px -48px;
}
.navbtn:hover .icons.external, .navbtn.selected .icons.external {
	background-position: -48px -48px;
}
.navbtn:hover .icons.diagnostics, .navbtn.selected .icons.diagnostics {
	background-position: -288px -48px;
}
.navbtn:hover .icons.manage, .icons.manage.selected , .navbtn.selected .icons.manage{
	background-position: -384px -48px;
}
.navbtn:hover .icons.service , .navbtn.selected .icons.service{
	background-position: -432px -48px;
}
.navbtn:hover .icons.config , .navbtn.selected .icons.config {
	background-position: -528px -48px;
}
.navbtn:hover .icons.myil , .navbtn.selected .icons.myil {
	background-position: -576px -48px;
}
.navbtn:hover .icons.gwp , .navbtn.selected .icons.gwp {
	background-position: -624px -48px;
}
.navbtn:hover .icons.qc , .navbtn.selected .icons.qc{
	background-position: -528px -142px;
}
.navbtn:hover .icons.leveyJennings , .navbtn.selected .icons.leveyJennings{
	background-position: -144px -140px;
}
.navbtn:hover .icons.eqc , .navbtn.selected .icons.eqc{
	background-position: -668px -234px;
}
.navbtn:hover .icons.lot , .navbtn.selected .icons.lot{
	background-position: -668px -138px;
}
.navbtn:hover .icons.uncertainty , .navbtn.selected .icons.uncertainty{
	background-position: -668px -48px;
}
.navbtn:hover .icons.iqm, .navbtn.selected .icons.iqm {
	background-position: -190px -139px;
}
.navbtn:hover .icons.rilibaek, .navbtn.selected .icons.rilibaek {
	background-position: -240px -139px;
}
.navbtn:hover .icons.enhanced, .navbtn.selected .icons.enhanced {
	background-position: -288px -139px;
}
.navbtn:hover .icons.auditlog, .navbtn.selected .icons.auditlog {
	background-position: -336px -139px;
}
.navbtn:hover .icons.signed, .navbtn.selected .icons.signed {
	background-position: -382px -139px;
}
.navbtn:hover .icons.security, .navbtn.selected .icons.security {
	background-position: -430px -140px;
}
.navbtn:hover .icons.certification, .navbtn.selected .icons.certification {
	background-position: -481px -143px;
}
.navbtn:hover .icons.archive, .navbtn.selected .icons.archive {
	background-position: -575px -142px;
}
.navbtn:hover .icons.global, .navbtn.selected .icons.global {
	background-position: -624px -142px;
}
.navbtn:hover .icons.area, .navbtn.selected .icons.area {
	background-position: -431px -233px;
}

/****************************************************************/
/* Navigator path top (Global, Area, Model, Analyzer) */
/****************************************************************/
#filters{
	background-color:#e5e5e5;
	/*
	border-bottom:1px solid #f4f4f4;
	height:55px;*/
}


.topnav  {
	padding:0px;
	margin:0px;
}

.topnav  li{
	list-style:none;
	padding:0px;
	margin:0px;
	float:left;
	font-size:15px;
	color:#434343 !important;

}
.topnav .step, .topnav .step.disabled:hover{
	background-image:url(../images/tab-step.png);
	background-position:right 0;

	padding-left:20px;
	padding-right:30px;
	position:relative;

	cursor:pointer;
}

.topnav .step.first.qc{
	width: 30px;
}

.topnav .step.qc{
	cursor: default;
}

.topnav .step.selected{
	background-image:url(../images/tab-step.png);
	background-position:right -56px;

	padding-left:20px;
	padding-right:30px;
	position:relative;
	color:#fff !important;
}


.topnav .step.disabled span, .topnav .step.disabled .title{
	color:#cccccc !important;
}
.topnav .step.disabled .nav-dropdown{
	opacity:0.2;
}

.topnav .step:hover{
	background-image:url(../images/tab-step.png);
	background-position:right -112px;

	padding-left:20px;
	padding-right:30px;
	position:relative;
	color:#fff !important;
}

.topnav .step.qc:hover{
	background-image:url(../images/tab-step.png);
	background-position:right 0;

	padding-left:20px;
	padding-right:30px;
	position:relative;
	color: #000000 !important;
}

.topnav .step.selected.qc:hover{
	background-image:url(../images/tab-step.png);
	background-position:right -56px;

	padding-left:20px;
	padding-right:30px;
	position:relative;
	color:#fff !important;
}

.topnav .step:hover .title, .topnav .step.selected .title{
	color:#fff;
}

.topnav .step.qc:hover .title{
	color:#a8a9aa !important;
}

.topnav .step.selected.qc:hover .title{
	color:#ffffff !important;
}

.topnav .first{
	z-index:15;
}

.topnav .second{
	z-index:13;
	margin-left:-30px;
}

.topnav .third{
	z-index:11;
	margin-left:-30px;

}
.topnav .fourth{
	z-index:9;
	margin-left:-30px;

}
.topnav .five{
	z-index:7;
	margin-left:-30px;
}

.topnav .six{
	z-index:5;
	margin-left:-30px;
}

.topnav .seven{
	z-index:3;
	margin-left:-30px;
}

.topnav li span div.title{
	font-size:9px;
	text-transform: uppercase;
	color:#a8a9aa;
	margin-bottom:1px;
	font-weight:bold;

}

.topnav li span div.value{
	font-size:15px;
}

.topnav li > span{
	line-height:14px;
	height:55px;

	display:table-cell;
	vertical-align:middle;
}

.topnav .second > span, .topnav .third > span, .topnav .fourth > span, .topnav .five > span, .topnav .six > span, .topnav .seven > span {
	padding-left:20px;
	padding-right:15px;
	min-width:90px;
}

.nav-dropdown{
	float:right;
	margin-right:-14px;
	margin-top:-35px;
}

/*.user-info{
	margin-right:10px;
	//min-width:120px;
	//padding-right:30px;
}*/
.dvlogin, .user-info{
  margin-right: 8px;
}
.user-info .textuser{
	margin-top:11px;
	padding-right:24px;
}

.user-info .nav-dropdown-logout{
	position: absolute;
	right:15px;
	top:15px;
}


/**********************/
/* Float Popover Menu */
/**********************/
.popover_filter{
	display:none;
	width:250px;
	background:#666;
	border-radius:4px;
	position:absolute;
	margin-top: 15px;
	z-index:1;
	margin-left: -55px;
}

.popover_content{
	overflow-y:auto;
	margin:0px !important;
}
.popover_filter .arrow-up {

	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #666;
	margin: 0 auto;
	margin-top:-10px;

}

.popover_filter .search{

	padding:10px;

}

.popover_filter .search input{

	background-color:#ffffff;
	border:none;
	padding-left:35px;
	padding-top:10px;
	padding-bottom:10px;
	border-radius:4px;
	width:84%;
	font-size:13px;
	color:#000;

	background-image:url(../images/lupa.png);
	background-repeat:no-repeat;
	background-position:10px 9px;
}

.btnClear{
	border-radius:7px;
	cursor: pointer;
	background-color:#5b91ba;
	font-size:9px;
	padding:2px 5px;
	margin-top:1px;
	margin-right:2px;
	text-transform: uppercase;
}
.popover_filter .header{
	padding:5px 10px;
	background-color:#666;
	font-size:11px;
	color:#fff;
}

.popover_filter .sub-header{
	padding:7px 10px;
	font-size:11px;
}

.popover_filter .info-header{
	padding:7px;
	font-size:11px;
	color:#fff;
	background-color:#2d2d2d;
}
.popover_filter .info-header .info{
	margin-top:2px;
	margin-left:5px;
}


.popover_filter .icon{
	width:23px;
	text-align:left;
	display: inline-block;

}

.popover_filter .sub-header.selected {
	background-color:#85b552;
	color:#fff;

	font-weight:bold;
}

.popover_filter .item{
	cursor: pointer;
	background-color:#ccc;
	color:#2d2d2d;
}


.popover_filter .item:hover{
	background-color:#6096bd;
		color:#fff;
}


/*Modal*/

.uk-modal-dialog{
	padding:0px;
}
.scroll-content{
	height:460px;
}

.uk-modal-content{
	padding: 20px 25px;
}

.uk-modal-body{
	padding:0px !important;
	overflow:auto !important;
}

.uk-modal-body h3{
	color:#000 !important;
}

.uk-modal-body h3.uk-accordion-title{
	color: #fff !important;
}

.uk-modal-body #msg-text{
	font-size:18px !important;
	padding:20px;
}

.uk-modal-footer, .uk-modal-header{
	margin:0px;
}

.uk-modal-header{

	background-color:#6e9ac1 !important;
}

/* Custom Modal header */
.uk-modal-header.error{
	padding: 15px;
	background-color: #fafafa !important;
}
.uk-modal-header.error h3{
	color: inherit;
}
.uk-modal-header.error i{
	padding-left: 5px;
	color:#DC0033;
}

.uk-modal-header .uk-close{
	color:#fff !important;
	position: absolute;
	right:15px;
	top:13px;
	opacity: 1 !important;
	border:1px solid #5f86a8 !important;
	border-radius: 3px;
	padding:5px !important;
}

.uk-modal-header #title{
	font-size:16px !important;

	margin:0px !important;
	color:#ffffff !important;
}

.labeltxt{
	font-size:11px;
	color:#666;
	font-weight: bold;
	margin-bottom:6px;
	text-transform: uppercase;
}



/*Button group*/
.right-buttons{
	float:right;
	margin-right:15px;
	margin-top:11px;
}


table .error, .ui-grid .error, .tblMessages .error, #box-login .error{
	background-color:#f7c8c8 !important;
}

table .success, .ui-grid .success, .tblMessages .success{
	background-color:#f2dede !important;
}


table .warning, .ui-grid .warning, .tblMessages .warning{
	background-color:#fcf8e3 !important;
}


.table thead tr{
	height:40px !important;
}

.table tbody tr{
	height:35px !important;
}

.table>thead>tr>td.new,
.table>tbody>tr>td.new,
.table>tfoot>tr>td.new,
.table>thead>tr>th.new,
.table>tbody>tr>th.new,
.table>tfoot>tr>th.new,
.table>thead>tr.new>td,
.table>tbody>tr.new>td,
.table>tfoot>tr.new>td,
.table>thead>tr.new>th,
.table>tbody>tr.new>th,
.table>tfoot>tr.new>th{
	background-color:#fcf8e3;
}
.table-hover>tbody>tr>td.new:hover,
.table-hover>tbody>tr>th.new:hover,
.table-hover>tbody>tr.new:hover>td,
.table-hover>tbody>tr:hover>.new,
.table-hover>tbody>tr.new:hover>th{
	background-color:#fcf8e3;
}

.table-header{
	background-color:#565a5c !important;
	color:#fff;
}

.table-status td{
	padding: 5px 15px;
}
.table-status td.checkBoxCell {
	padding: 0 0 0 10px;
}
.table-status td.checkBoxCell input[type=checkbox]{
	margin-top:0;
}

.chkSelected, .table>tbody > tr.chkSelected>td {
	background-color: #D2FAFF;
}

.infomsg .error_analyzer{
	float:right;
	background-image: url(../images/error.png);
	background-position:left 4px;
	padding-top:5px;
	padding-left:19px;
	font-size:11px;
	background-repeat: no-repeat;
	height:18px;
	margin-left:5px;
	margin-right:7px;
}

.infomsg .warning_analyzer{
	float:right;
	background-image: url(../images/warning.png);
	background-position:left 4px;
	padding-left:19px;
	padding-top:5px;
	font-size:11px;
	height:18px;
	background-repeat: no-repeat;
	margin-right:7px;


}

.clientDetails-row td, .header-table-network{
	background-color:#e5e5e5;
	color:#565656;
	padding-left:10px;
	padding-bottom:10px;
}


.clientDetails-row .title{
	font-weight: bold;
	line-height: 16px;

}
.clientDetails-row .state{
	font-weight: normal;
	display: inline-block;
}

.clientDetails-content{
	/*padding-left:20px;*/
	line-height: 15px;
	font-size:13px;
	padding-right:10px;
}
.clientDetails-content .title{
	font-weight: bold;
	margin-top:10px;

}


.clientDetails-clickinfo{
	font-size:18px;
	text-align:center;
	margin:0 auto;
	margin-top:210px;
	width:400px;
	font-style: italic;
	color:#666;

}

/* Contacts */
#contacts > .uk-grid {
   margin-left: -16px;
}
#contacts > .uk-grid>*{
	padding-left: 16px;
	margin-bottom: 16px;
}

#contacts .panel-contact {
    background-color: #F4F4F4;
    border: 1px solid #C9C9C9;
    border-radius: 4px;
    color: #707070;
}

#contacts .panel-contact .contact-header {
	padding: 14px;
	background-color: #fff;
	font-weight: bold;
	border-radius: 4px 4px 0 0;
	border-bottom: 1px solid #E6E6E6;
	word-wrap: break-word;
}
#contacts .panel-contact .contact-body {
	border-radius: 0 0 4px 4px;
	padding: 14px;
}

#contacts .panel-contact .contact-body > div{
	margin-bottom: 10px;
    border-bottom: 1px solid #DADADA;
    padding-bottom: 10px;
    word-wrap: break-word;
}

#contacts .panel-contact .contact-body .uk-grid>div{
	margin-bottom: 2px;
}

.netRowInfo > div{
	margin-bottom: 10px;
    border-bottom: 1px solid #DADADA;
    padding-bottom: 10px;
    word-wrap: break-word;
    margin-top: 1px;
}
.orderRowInfo > div{
    border-bottom: 1px solid #DADADA;
    word-wrap: break-word;
    margin-top: 7px;
    padding-bottom:10px;
	padding-top: 5px;
	overflow-y: auto;
}

.tblMessages{
	position:relative;
	overflow-y: auto;
	/*height:400px*/
	min-height: 180px;
	max-height:400px;
	border: 1px solid #d4d4d4;
}


.tblClients tr:hover{
	background-color:#f4fee9;
}

.tblMessages tr{
	border-bottom:1px solid #fff;
}

table.alarmsTable tr{
	background-color: #fff;
	border-bottom: 1px solid #E2E2E2;
}

table.alarmsTable .time-header {
	width: 145px;
}

.table-info{
	width:93%;

	margin:0 auto;
	margin-top:10px;
	margin-bottom:15px !important;
	font-size:13px;
}

.table-info .valor{
	padding-right:10px;
}
.table-info .title, .table-info .subtitle{
	font-weight:bold;
	margin-left:16px;
	line-height: 16px;
}
.table-info .subtitle{
	font-weight: normal;
}


.table{
	margin:0;
}


/* Search */

.analyzer-list-container .search, .qc .search {
	background: #fbfbfb;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZiZmJmYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZWVlZWUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #fbfbfb 0%, #eeeeee 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fbfbfb), color-stop(100%,#eeeeee));
	background: -webkit-linear-gradient(top, #fbfbfb 0%,#eeeeee 100%);
	background: -o-linear-gradient(top, #fbfbfb 0%,#eeeeee 100%);
	background: -ms-linear-gradient(top, #fbfbfb 0%,#eeeeee 100%);
	background: linear-gradient(to bottom, #fbfbfb 0%,#eeeeee 100%);
	border-bottom: 1px solid #d3d3d3;
	border-radius: 0px;
	border-right:none;
	border-left:none;
}



.analyzer-list-container .search input[type=text], .qc .search input[type=text] {
	width:100%;
	border-radius: 15px;
	border:1px solid #cccccc;
	font-size: 12px;
	padding-top:2px;
	padding-bottom:2px;
	height:30px;
}

/* Badge */
.badge{
	font-weight: normal !important;
	letter-spacing: -1px;
	font-size: 10px;
	padding:2px 5px 2px 3px;
	margin-right:4px;
	margin-top:5px;
	border-radius: 5px;
}
.badgeRed{
	background-color: #cf002d !important;
}
.badgeDarkBlue{
	background-color: #114d72 !important;
	text-shadow: none;
}

.badgeGreen{
	background-color: #8bae4d !important;
}


/* LOGIN DROPODOWN*/
.triangle-up {
    width: 10%;
    height: 0;
    padding-left:10%;
    padding-bottom: 10%;
    overflow: hidden;
    margin-left:155px;
    margin-top:-8px;

}
.triangle-up:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left:-500px;
    border-left: 500px solid transparent;
    border-right: 500px solid transparent;
    border-bottom: 500px solid #ffffff;
}
.dropdownUser .dvlogout{
	padding: 10px;
}

.dvlogin {
	font-size: 15px;
	text-decoration: none;
  line-height: 46px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
	width: auto;

}
.dvdisclaimer {
	color: #ffffff;
	font-size: 12px;
	width: auto;
	padding: 8px;
	border-radius: 0 0 5px 5px;
	cursor: default !important;
}
.dropdownUser .dvexit{
	padding-top: 0px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
}
.dropdownUser {
	padding:0px;
	width:216px;
	margin-right:10px;
	margin-top:12px;
}

.dv_user{
	padding-top:40px;
	height:70px;
}

.user_options li:first-child{
	border-top:1px solid #e5e5e5;
}
.user_options li{
	cursor: pointer;
	text-align:left;
	line-height: 35px;
	padding-left:15px;
	border-bottom:1px solid #e5e5e5;
}
.user_options li a {
	text-decoration: none;
	display: block;
	color: #444;
}
.user_options li:hover{
	background-color:#ccc;
}


/* Filter Page */
.filter-page .filter-header, .filter-header{
	height:78px;
    line-height: 78px;
    padding: 0 15px;
	background: #fbfbfb;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZiZmJmYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZWVlZWUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #fbfbfb 0%, #eeeeee 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fbfbfb), color-stop(100%,#eeeeee));
	background: -webkit-linear-gradient(top,  #fbfbfb 0%,#eeeeee 100%);
	background: -o-linear-gradient(top,  #fbfbfb 0%,#eeeeee 100%);
	background: -ms-linear-gradient(top,  #fbfbfb 0%,#eeeeee 100%);
	background: linear-gradient(to bottom,  #fbfbfb 0%,#eeeeee 100%);
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.20);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.20);
}

.filter-page .filter-header .form-legend{
	line-height: 78px;
}

.filter-page .filter-header .results{

}
.filter-page .filter-header .subresults{
    font-size: 12px;
    font-style: italic;
    margin-top:2px;
    color:#6d6d6d;
}
.filter-page .filter-header .boxresults{
	margin-left:7px;
    line-height: 14px;
    text-align:left;
}

#filters .uk-button{
	width: 42px;
    height: 40px;
    line-height: 38px;
    margin: 7px;
    font-size: 18px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
    position: relative;
}

.filter-page .filter-header .uk-button {
	min-width: 46px;
    height: 46px;
    line-height: 45px;
    margin: 2px;
    font-size: 18px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
    position: relative;
}
.filter-page .filter-header .uk-button.filtered {
	background: #5B91BA;
    color: #FAFAFA;
    text-shadow: 0 1px 0 #000;
}

.uk-button .icon-remove-filter{
	background-image:url(../images/remove-filter.png);
	background-repeat: no-repeat;
	width:11px;
	height:11px;
	display: inline-block;
	position: absolute;
	top:6px;
	left:24px;
}
.filter-page .filter-header .uk-button > i+i.uk-icon-remove {
}

.filter-page .filter-content, .filter-page .filter-content-table {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 70px;
	overflow-y:auto !important;
}

.filter-page .filter-content-table.bottom0{
	bottom:0px;
}

.filter-page .filter-content .filter-content-marged, .filter-content.filter-content-marged,
.filter-page .filter-content-table .filter-content-marged, .filter-content-table.filter-content-marged,
.no-results-found, .uk-modal-body-padding, .table-padding{
	padding: 16px;
}
.table-margin{
	margin:16px;
}

/* Legend Header */
.legendHeader{
    background-color:#f4f4f4;
    font-size:14px;
    padding:10px;
    border-radius:4px;
    border:1px solid #e5e5e5;
    margin-bottom:15px;
    color: #6F6F6F;
}

#qcChart .level .legendHeader {
	background-color: #ffffff;
}

#qcChart .plot.uk-accordion-title, #qcChart .grid.uk-accordion-title {
	pointer-events: none;
}

#signDetView .legendHeader, #signDialogFilter .legendHeader{
	background-color:#f4f4f4;
    font-size:14px;
    padding:15px 0px 0px 10px !important;
    border-radius:4px;
    border:1px solid #e5e5e5;
    margin-bottom:15px;
    color: #6F6F6F;
}

.legendHeader.sample{
	/*min-height:100px;*/
}
.legendHeader .list  div{

    padding-bottom:3px;
    margin-top:3px;
}

.legendHeader .paginator{
    font-size:14px;
    color: #6F6F6F;
}

.filter-page .filter-content-table .filter-content-marged .legendHeader{
	margin-bottom: 0;
}

.legendHeader .value {
    color: #949494;
}

.legendHeader .patient{

    font-size:16px;
    font-weight: bold;
}

.legendHeader .type{
	padding:3px 5px;
	text-transform: uppercase;
	border-radius: 3px;
    font-size:11px;
    font-weight: bold;
	background-color:#fff;
	margin-bottom:10px;
	display: inline-block;
}

.legendHeader .type.arterial{
	background-color:#eda1a1;
    color:#d01010;
}
.legendHeader .type.capillary{
    background-color:#deaaef;
    color:#953db2;
}
.legendHeader .type.venous{
 	background-color:#9fe6f8;
    color:#35729d;
}
.legendHeader .type.passed{
	background-color:#e4f0d5;
	color:#82bb42;
}

.spacer {
	height: 45px;
}

.sample-footer {
	position: absolute;
	bottom: 65px;
	padding-left: 16px;
	max-height: 105px;
	left: 0;
	right: 33px;
}

.sample-footer .legendHeader {
	height: 88px;
	overflow: hidden;
}

.sample-footer-exception {
	height: 20px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.sample-footer-col1 {
	width: 90%;
}

.sample-footer-col2 {
	width: 10%;
}

.sample-footer p {
	margin-left: 0px !important;
	padding-top: 5px;
}

.colorDanger {
	color: red;
}

.filter-page .filter-footer p{
	margin-left:5px;
}

.filter-page .filter-footer{
	height: 70px;
	padding: 7px 10px;
    /*position: fixed;*/

    background-color: #F0F0F0;
	box-sizing: border-box;

	-webkit-box-shadow: 0px -1px 3px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px -1px 3px rgba(0,0,0,0.20);
	box-shadow: 0px -1px 3px rgba(0,0,0,0.20);
}
.filter-page .filter-footer .uk-button, .related-samples .uk-button {
	/*padding: 0px 25px;*/
	width:85px;
	font-size: 12px;
    margin-left: 4px;
    line-height: 12px;
    height: 57px;
}
.legendHeader .uk-button{
	margin-top:4px;
	font-size:13px;
	height: 57px;
	line-height: 12px;
}
.filter-page .filter-footer .uk-button > i{
	font-size: 17px;
	margin-top:-5px;
	line-height: 24px;
	display: block;
}

/*Datepicker*/
.uk-datepicker{
	z-index:98999;
}

/*Renew Popup*/
.modalrenew.uk-modal-body{
	height:350px !important;
}
.modalrenew  input[type=text]{
	font-size:20px;
	width:256px;
	margin-top:20px;
	height:40px;
	text-align:center;
}

.pickadate {
	margin:15px !important;
}
.pickadate-cell li {
	height:40px !important;
	line-height: 30px !important;
	border:none !important;
}
.pickadate-prev{
	float:left;
}
.pickadate-cell .pickadate-active {
	background-color: #6e9ac1 !important;
	border-radius:3px !important;
}



/*Hamburguer*/

.filter-header .filter-header-btn {
	width: 50px;
	float:left;
}

/* Configuartion */
.filter-header .title_header{
	height: 80px;
	line-height: 20px;
}


hamburger-table .breadcrumb, .filter-header-btn + .breadcrumb{
	width: calc(100% - 50px);
}

.breadcrumb{
	width: 100%;
	height:78px;
	float:left;
	min-width: 0;
}
.breadcrumb .breadcrumb-title{
	margin-top: -8px;
	height: 20px;
}
.breadcrumb .breadcrumb-title > span{
	display:block;
	padding-left:6px;
	font-size: 12px;
    color: #848484;
}
.breadcrumb .breadcrumb-subtitle > span{
	display:block;
	font-size:16px;
	line-height: 71px;
	color:#676767;
	padding-left:6px;
}
.breadcrumb .breadcrumb-title > span,
.breadcrumb .breadcrumb-subtitle > span{
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.breadcrumb_sign{
	float:left;
	margin-bottom: 10px;
}
.breadcrumb_sign .breadcrumb_sign-title{
	height: 15px;
}
.breadcrumb_sign .breadcrumb_sign-title > span{
	display:block;
	padding-left:6px;
	font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: bold;
}

.breadcrumb_sign .breadcrumb_sign-subtitle > span{
	display:block;
	font-size:13px;
	color:#9d9d9d;
	padding-left:6px;
}


.title-hamburger, .title-page{
	margin-left:6px;
	vertical-align: middle;
	display: inline-block;
	font-size:20px;
}

.title-page{
	margin-left: 3px;
}

.subtitle-hamburger{
	font-size:10px;
	margin-bottom:-12px;
	text-transform: uppercase;
}

.button-header-hamburger{
	vertical-align: top;
	font-size:14px;
}

.content.sidenav-open {

  padding-left: 330px;
  /*padding-left: 80%;*/
}
.sidenav, .sidenav2 {
	/*width: 0;*/
	width: 80%;
	left:-80%;
	overflow: hidden;
	position: fixed;
	/*left: 80px;*/
	top: 61px;
	bottom: 0;
	transition: all 0.1s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	box-shadow: 0 8px 17px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 8px 17px rgba(0,0,0,.2);
	background: #fff;
	z-index: 10;
}

.sidenav.small.open {
  width: 32%;
  min-width: 320px;
}
.sidenav.open {
  left:80px;
}

.open100 {
  width:calc(100% - 80px);
  left:80px;
}


.disabled-open{
	position:fixed;
	background:rgba(0,0,0,0.8);
	top:61px;
	width:100%;
	height:100%;
	overflow: hidden;
	z-index:9;
}

.sidenav-open{

	height:calc(100% - 78px);

}

.container.panel {
  min-height: 500px;

}

/* Forms */
.calculated-content .input-msg-warning,.calculated-content-nofilter .input-msg-warning{
	color: #c4002a;
    font-style: italic;
    font-size: 12px;
}

.uk-form-help-block.uk-text-danger {
	margin: 0;
}

/* Toggle Check buttons*/
.toggleButton{
	/*min-height:230px;*/
}
.margin_modal{
	padding:18px !important;
}

.marked, .unmarked{
	cursor: pointer;
    background:none;
    padding:5px;
    border:1px solid #cbcbcb;
    border-radius:4px;
    width:100%;
    height:95px;
    background-repeat: no-repeat;
    background-position: center 21px;
	text-align: center;
	margin-bottom:15px !important;

	line-height:15px;
	font-size:12px;
}

.marked i, .unmarked i{
	margin-bottom:5px;
}

.marked{
    background-color:#edfed2;
    color:#fff;
    border:1px solid #6b9d35;
 	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b4da8a), color-stop(100%,#6b9d35)) !important;
	background: -webkit-linear-gradient(top, #b4da8a 0%,#6b9d35 100%) !important;
	background: -moz-linear-gradient(top, #b4da8a 0%, #6b9d35 100%) !important;
	background: -o-linear-gradient(top, #b4da8a 0%,#6b9d35 100%) !important;
	background: -ms-linear-gradient(top, #b4da8a 0%,#6b9d35 100%) !important;
	background: linear-gradient(to bottom, #b4da8a 0%,#6b9d35 100%) !important;
}


.unmarked i.thin{
	width:27px;
	height: 27px;
	color:#aaaaaa;
	background: none !important;
	border-radius:50%;
	border:1px solid #aaa;
}

.unmarked{
    color:#484848;
 	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdfdfd), color-stop(100%,#d0d0d0)) !important;
	background: -webkit-linear-gradient(top, #fdfdfd 0%,#d0d0d0 100%) !important;
	background: -moz-linear-gradient(top, #fdfdfd 0%, #d0d0d0 100%) !important;
	background: -o-linear-gradient(top, #fdfdfd 0%,#d0d0d0 100%) !important;
	background: -ms-linear-gradient(top, #fdfdfd 0%,#d0d0d0 100%) !important;
	background: linear-gradient(to bottom, #fdfdfd 0%,#d0d0d0 100%) !important;
}

.lockArea{
	height: 95px !important;
	resize: none;
}

/* unselectable elements */
button, input[type="button"], .uk-button, .navbtn, .analyzer-item {
-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
}

/*Config CSS tweaks*/
.hint{
	font-size: 12px;
	background-color: #DEDEDE;
	padding: 8px;
	line-height: 18px;
	border-radius: 4px;
	background-image: url("../images/ico-info.png");
	background-repeat: no-repeat;
	background-position: 10px 10px;
	padding-left: 30px;
	white-space: normal !important;
}

.hint-icon {
	background-image: url("../images/ico-info.png");
	background-repeat: no-repeat;
	background-position: 10px	10px;
	padding-left: 30px;
}

/* editor-inline */
.editor-inline {
	background-color: #F5F5F5;
	position: relative;
	/*margin-bottom: 16px; */
}

.editor-inline .editor-inline-body, .editor-inline .editor-inline-footer {
  padding: 10px;
}

.editor-inline .editor-inline-footer{
	background-color: #E4F0D5;
	border-top: 1px solid #DFE8D3;
	padding-top:10px;
}

.editor-inline legend {
	font-size: 14px;
}

/*Comments & Patient Ranges*/
#commentsDialog .btns-group{
	padding: 12px 20px;
}

#patientRanges .actionsAccordion button.selectAllBtn{
	min-width: 90px;
}

#commentsDialog .uk-list{
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 350px;
}

#commentsDialog .uk-list li, #patientRanges .uk-list li{
	background-color: #fff;
	padding: 0;
	position: relative;
	border-bottom: 1px solid #ddd;
}

#commentsDialog .form-checkbox ,
#patientRanges .form-checkbox,
#exams .form-checkbox {
	width: 45px;
    text-align: center;
    position: absolute;
    top: 16px;
}
#commentsDialog .form-checkbox input[type=checkbox] + label:before,
#patientRanges .form-checkbox input[type=checkbox] + label:before,
#exams .form-checkbox input[type=checkbox] + label:before {
	margin-left: 8px;
}

#commentsDialog .coment-content,
#patientRanges .age-segments-item,
#exams .question-text {
	position: relative;
	cursor: pointer;
	padding: 17px;
	word-break: break-word;
}

#patientRanges .editor-inline-body .uk-grid > div {
	margin-bottom: 15px;
}

#patientRanges .age-segments-item, #exams .question-text {
	margin-left: 45px;
	padding-left: 0;
}

#exams .question-item {
	padding: 0;
	position: relative;
	border-bottom: 1px solid #ddd;
}

#exams .question-item textarea {
	height: 60px;
}

/* Display tables */
.dtable{
	display: table;
	width:100%;
	background-color:#fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.dtable-row{
	display: table-row;
}
.dtable-cell, .dtable-head-cell{
	display: table-cell;
	padding: 10px 8px;
	border-bottom: 1px solid #E6E6E6;
}

.dtable-head > .dtable-head-cell:first-child {
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	border-top-left-radius: 4px;
}

.dtable-head > .dtable-head-cell:last-child {
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
}

.dtable-head{
	/*color: #fff;*/
	/*background-color: #565a5c;*/
	/*font-weight: bold;*/
	color:#484848;
	background-color: #d6d6d6;

	height: 37px;
}

.dtable-head-sticky .dtable-head-cell{
	display: block;
	float: left;
	padding: 10px 0 0 0 !important;
	margin: 0;
	border: 0 !important;
}

/*
#commentsDialog .coment-content:hover:after,
#patientRanges .age-segments-item:hover:after {
	font-family: FontAwesome;
	content: "\f040";
    font-size: 1.3em;
    position: absolute;
    top:16px;
    right: 10px;
    color: #828282;
	-webkit-font-smoothing: antialiased;
}
#commentsDialog fieldset, #patientRanges fieldset{
	margin-bottom: 10px;
	color: #565A5C;
}
#commentsDialog legend, #patientRanges legend{
	color: #565A5C;
}
*/

.gwp-table {
    background-color: white;
}

.gwp-table thead,
.gwp-table tbody {
	display: block;
}

.gwp-table tbody {
	border: 1px solid #9E9E9E;
	border-width: 0 1px 1px 0;
}

.gwp-table thead th,
.gwp-table tbody td {
    vertical-align: middle;
    border: 1px solid #9E9E9E;
}

.gwp-table thead th:not(.thin),
.gwp-table tbody td:not(.thin) {
    width: 100%;
}

.gwp-table tbody td {
	width: 100%;
	border-width: 0 0 1px 1px;
}

.gwp-table tbody tr:last-child td {
	border-bottom: none;
}

.gwp-table thead th {
    background-color: rgb(204, 204, 204);
}

.gwp-table thead th.thin,
.gwp-table tbody td.thin {
    width: 1px;
}

.gwp-table thead th input[type="checkbox"],
.gwp-table tbody td input[type="checkbox"] {
    margin: 0;
}

.gwp-table-scrollable tbody {
	overflow-x: hidden;
	overflow-y: auto;
}

.gwp-button-group-toggle button {
    opacity: 0.6;
}

.gwp-button-group-toggle button.uk-active {
    opacity: 1;
}

.gwp-answer {
    margin-bottom: 25px;
}

.gwp-action-buttons > * {
    margin-left: 10px;
}

.gwp-action-buttons span {
    color: blue;
    cursor: pointer;
}

/* Exam Questions List */
.question-inline-form {
	padding: 0 !important;
}

.question-detail {
    padding: 15px 15px 1px 15px;
    background-color: rgb(203, 232, 186);
}

.question-detail textarea {
    height: 80px;
}

.question-detail input[type="radio"] {
    margin: 0 !important;
}

/* Add Operator Modal */
.addMembers .ngdialog-content{
	max-width: 850px;
}

#addOperators .add-member-modal .results{
	color: #ffffff;
}

#addOperators .filter-content-table{
	height: 471px;
}

#addOperators #filter-operators-btn, #addOperators #dis-filter-operators-btn{
	min-width: 46px;
	height: 46px;
	line-height: 46px;
	margin: 2px;
	font-size: 18px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	position: relative;
}

#addOperators #filter-operators-btn.filtered{
	background: #5B91BA;
	color: #FAFAFA;
	text-shadow: 0 1px 0 #000;
}

#addOperators #dis-filter-operators-btn .uk-icon-ban{
	position: absolute;
	left: 0;
	right: 0;
	top: 7px;
	font-size: 28px;
	color: #D50233;
}

#addOperators .uk-modal-footer .filter-footer .uk-button{
	width: 85px;
	height: 57px;
	font-size: 12px;
	margin-left: 4px;
	line-height: 12px;
}

#addOperators .uk-modal-footer .filter-footer .uk-button i {
	display: block;
	line-height: 24px;
	font-size: 17px;
	margin-top: -5px;
}

#addOperators .uk-modal-footer{
	height: 97px;
	position: initial !important;
}

/* Results Detail View */
.result-detail form{
	font-size: 12px;
    padding: 8px;
    line-height: 18px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: 10px 10px;
    padding-left: 30px;
    white-space: normal !important;
}

.result-detail .legendHeader .type{
	padding:3px 5px;
	text-transform: uppercase;
	border-radius: 3px;
	font-size:11px;
	font-weight: bold;
	margin-bottom:0;
	display: inline;
}

/* QC Lots Management */
#lots .model, #lotAnalytes .analyte{
	width: 130px;
	height: 100px;
	text-align: center;
	padding: 5px 0;
}

#lots .model.unmarked{
  	background: linear-gradient(to bottom, #d0d0d0 0%,#a8a8a8 100%) !important;
	border: 1px solid #b4b4b4;
}

.lot-list .uk-flex-left{width: 33% !important;}
.lot-list .uk-flex-right{width: 66% !important;}

.uk-button.enabled{
	background-color: #6E9AC1;
	color: #FFFFFF;
	text-shadow: none;
	background-image: none;
}

/* Manage Bias */
.analyteBtn{
	border-radius:5px;
	width:70px;
	height:78px;

	border:2px solid #d0d0d0;
	float:left;
	margin-left:15px;
	margin-right:15px;
	margin-top:15px;
}

.analyteBtn:hover, .analyteBtn:hover .state.biasSet{
	background-color: #e4e4e4;
}

.analyteBtn .state{
	height: 89%;
}

.analyteBtn .state.biasSet, .analyteBtn .state.objectiveSet{
	background-color: #d0d0d0;
}

.analyteBtn .title{
	font-size:12px;
	color:#000;
	text-align:center;

	margin-top:-25px;
	padding-top: 5px;
	width:100%;
}

.analyteBtn .state{
	text-align: center;
	padding-top:10px;
	/*text-transform: uppercase;*/
	font-size:12px;
	font-weight: bold;
}

/*Reportable ranges*/
#reportableRangesTS .row > div, #reportableRangesTS .row > label{
	vertical-align:top !important;
}

/*Ventilator modes */
.ventilatorModes .editor-inline,
.deviceNames .editor-inline{
	height:140px;
}

/*Orders*/
.countViewer{
    font-size: 16px;
    color: #676767;
}

/*LeveyJennings table*/
#leveyJennings{
	padding: 0px !important;
}

/*Uncertainty Table */
#uncertaintyTable {
	border: 1px solid #d6d6d6;
}

#uncertaintyTable .dtable-head-cell, #uncertaintyTable .dtable-cell{
	width: 8.33%
}

#uncertaintyTable .resume{
	background-color: #ccdcea;
}

.mt-1 {
	margin-top: 5px !important;
}

.float-left {
	float: left;
}
