/* app css stylesheet */

/* -----------------------------------------------------------------------

 *************** GENERAL ELEMENTS ***********

--------------------------------------------------------------------------*/
body {
	background-color: #dadada;
	color: #333;
	font-family: Ubuntu, Verdana, sans-serif, serif;
	font-size: 16px;
	font-weight: 400;
	padding: 0 32px;
}

::-moz-selection {
	text-shadow: none;
	background: rgba(0, 255, 255, 0.5);
	color: black;
}

::-webkit-selection {
	text-shadow: none;
	background: rgba(0, 255, 255, 0.5);
	color: black;
}

::selection {
	text-shadow: none;
	background: rgba(0, 255, 255, 0.5);
	color: black;
}

.maxWidth {
	max-width: 900px;
	margin: auto;
}

.pointer {
	cursor: crosshair;
}

.error {
	position: relative;
	display: inline-block;
	color: #e00;
	padding: 10px;
	padding-right: 40px;
	margin: 10px;
	background: #fffafa;
	border: 1px solid #e00;
	border-bottom: 2px solid #e00;
	border-radius: 5px;
	-webkit-animation: fadeIn .5s;
	animation: fadeIn .5s;
}

.error .error {
	background: white;
	color: #522;
	border-color: silver;
}

.error a[ng-click="hideError()"],.error a[ng-click="hideReason()"] {
	position: absolute;
	right: 10px;
	top: 5px;
	border: none;
}

.error a[ng-click="hideError()"]:hover,.error a[ng-click="hideError()"]:focus,.error a[ng-click="hideReason()"]:hover,.error a[ng-click="hideReason()"]:hover
	{
	color: red;
}

h1 {
	margin-top: 20px;
	text-align: center;
	font-family: Ubuntu, Verdana, sans-serif, serif;
	font-weight: 300;
	font-size: 2.2em;
	color: black;
}

h1 i,h2 i,h1 .popover,h2 .popover {
	font-size: 16px;
}

h2 {
	margin-left: 5%;
	font-family: Ubuntu, Verdana, sans-serif, serif;
	font-weight: 300;
	font-size: 1.8em;
	color: black;
}

h5 {
	font-weight: 300;
	font-size: 1.2em;
}

.small {
	font-size: 0.6em;
}

a {
	color: #333;
	text-decoration: none;
	border-bottom: 2px solid silver;
	transition: 0.3s;
}

a:hover,a:focus {
	color: black;
	outline: none;
	text-decoration: none;
	border-bottom: 2px solid #0ff;
	transition: 0.3s;
	cursor: pointer;
}

a:active {
	color: #333;
	outline: none;
	border-bottom: 2px solid white;
	transition: 0.3s;
}

label {
	display: inline-block;
	font-weight: normal;
	margin-left: 10px;
}

input,textarea,select,button {
	margin: 5px;
	padding: 5px;
	background-color: white;
	color: #444;
	border: 1px solid #dadada;
	border-bottom: 2px solid silver;
	border-radius: 5px;
	outline: none;
	transition: 0.3s;
}

input:focus,textarea:focus,button:focus,select:focus,button:hover,input[type="button"]:hover,input[type=submit]:hover
	{
	border: 1px solid silver;
	color: black;
	border-bottom: 2px solid silver;
}

button:active,input[type="button"]:active,input[type=submit]:active
	{
	border-bottom: 1px solid silver;
	position: relative;
	top: 1px;
	transition: 0.3s;
}

input[type=file] {
    animation : none;
    animation-delay : 0;
    animation-direction : normal;
    animation-duration : 0;
    animation-fill-mode : none;
    animation-iteration-count : 1;
    animation-name : none;
    animation-play-state : running;
    animation-timing-function : ease;


    transform : none;
    transform-style : flat;
    transition : none;
    transition-delay : 0s;
    transition-duration : 0s;
    transition-property : none;
    transition-timing-function : ease;
}

.bigButton {
	padding: 5px 10px 8px 10px;
	font-size: 1.3em;
	background: #0ff;
	border-bottom: 2px solid #0bb;
	color: white;
	text-shadow: 1px 1px 0 #099;
}

.bigButton:hover,.bigButton:focus {
	background: #0bb;
	border-bottom: 2px solid #055;
	color: white;
}

.bigButton:active {
	border-bottom: 1px solid #055;
	position: relative;
	top: 1px;
}

textarea {
	display: block;
}

label {
	display: inline-block;
	font-weight: normal;
}

select:-moz-focusring { /*Avoid outline on Firefox*/
	color: transparent;
	text-shadow: 0 0 0 #000;
}

:required,:invalid {
	border: 1px solid red;
	border-bottom: 2px solid red;
	box-shadow: none;
}

legend {
	border-bottom: none;
}

/*Checkboxes (inspired by Geoffrey Crofte)*/
[type="checkbox"]:not (:checked ),[type="checkbox"]:checked {
	/*Select recent browsers*/
	position: absolute;
	left: -9999px; /*Hide default checkbox*/
}

[type="checkbox"]:not (:checked ) +label,[type="checkbox"]:checked+label
	{
	position: relative;
	padding-left: 50px; /*Space for the new checkbox*/
	cursor: pointer;
}

[type="checkbox"]:not (:checked ) +label:before,[type="checkbox"]:checked+label:before,[type="checkbox"]:not
	(:checked ) +label:after,[type="checkbox"]:checked+label:after {
	content: '';
	position: absolute;
}

[type="checkbox"]:not (:checked ) +label:before,[type="checkbox"]:checked+label:before
	{ /*Background of new checkbox*/
	left: 0;
	top: 0px;
	width: 40px;
	height: 20px;
	background: white;
	border-radius: 5px;
	border-bottom: 2px solid silver;
	transition: background-color .2s;
}

[type="checkbox"]:not (:checked ) +label:after,[type="checkbox"]:checked+label:after
	{ /*Switch of new checkbox*/
	width: 12px;
	height: 12px;
	transition: all .2s;
	border-radius: 50%;
	background: silver;
	top: 3px;
	left: 5px;
}

/* on checked */
[type="checkbox"]:checked+label:before {
	background: silver;
}

[type="checkbox"]:checked+label:after {
	background: #0ff;
	top: 3px;
	left: 22px; /*Moved when checked*/
}

[type="checkbox"]:focus+label:before {
	border: 1px solid silver;
	border-bottom: 2px solid silver;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

[type="checkbox"]:checked:focus+label:before {
	border-bottom: 2px solid #0ff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/*Radios*/
[type="radio"]:not (:checked ),[type="radio"]:checked {
	/*Select recent browsers*/
	position: absolute;
	left: -9999px; /*Hide default radio*/
}

[type="radio"]:not (:checked ) +label,[type="radio"]:checked+label {
	position: relative;
	padding-left: 20px; /*Space for the new radio*/
	cursor: pointer;
}

[type="radio"]:not (:checked ) +label:before,[type="radio"]:checked+label:before
	{
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 12px;
	height: 14px;
	border-radius: 5px;
	background: white;
	border-bottom: 2px solid silver;
	transition: background 0.7s;
}
/*on checked*/
[type="radio"]:checked+label:before {
	background: #0ff;
	transition: background 0.5s;
}

[type="radio"]:focus+label:before {
	border: 1px solid silver;
	border-bottom: 2px solid silver;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: -1px;
}

.box {
	display: inline-block;
	margin: 10px;
	padding: 10px !important;
	background-color: white;
	border-bottom: 2px solid silver;
	border-radius: 5px !important;
}

.progress-bar b {
	font-weight: 300;
	font-size: 27px;
	color: black;
}

table td {
	padding-left: 10px;
}

.loading {
	display: block;
	position: relative;
	width: 74px;
	height: 16px;
	background: black;
	margin: auto;
	margin-top: 60px;
	-webkit-animation: startload1 .5s;
	animation: startload1 .5s;
}

.loading div:nth-of-type(1) {
	display: inline-block;
	position: absolute;
	bottom: 8px;
	left: 8px;
	width: 8px;
	height: 50px;
	background: lime;
	-webkit-animation: startload2 2s, loading 2s linear 0.5s infinite;
	animation: startload2 2s, loading 2s linear 0.5s infinite;
}

.loading div:nth-of-type(2) {
	display: inline-block;
	position: absolute;
	bottom: 8px;
	left: 24px;
	width: 8px;
	height: 30px;
	background: aqua;
	-webkit-animation: startload2 2s, loading 2s linear 1s infinite;
	animation: startload2 2s, loading 2s linear 1s infinite;
}

.loading div:nth-of-type(3) {
	display: inline-block;
	position: absolute;
	bottom: 8px;
	left: 40px;
	width: 8px;
	height: 40px;
	background: yellow;
	-webkit-animation: startload2 2s, loading 2s linear 1.5s infinite;
	animation: startload2 2s, loading 2s linear 1.5s infinite;
}

.loading div:nth-of-type(4) {
	display: inline-block;
	position: absolute;
	bottom: 8px;
	left: 56px;
	width: 8px;
	height: 60px;
	background: red;
	-webkit-animation: startload2 2s, loading 2s linear 2s infinite;
	animation: startload2 2s, loading 2s linear 2s infinite;
}

.loading p {
	position: relative;
	display: inline-block;
	width: 80px;
	text-align: center;
	font-size: 18px;
	font-family: Ubuntu, Verdana, sans-serif;
	margin-top: 20px;
	-webkit-animation: startload1 .5s;
	animation: startload1 .5s;
	overflow: hidden;
}

@-webkit-keyframes loading {
	from { height:16px;}
	10%{height:60px;}
	to {height: 16px;}
}

@-webkit-keyframes startload1 {
	from {
		width:0;
		opacity: 0;
	}
	to {
		width: 74px;
		opacity: 1;
	}
}

@-webkit-keyframes startload2 {
	from { 
		height:0px;
		opacity: 0;
	}
	25% {
		height:0px;
		opacity:1;
	}
	to {
		height: 16px;
		opacity: 1;
	}
}

@keyframes loading {
	from { height:16px; }
	10% { height:60px; }
	to { height: 16px; }
}

@keyframes startload1 {
	from {	
		width:0;
		opacity: 0;
	}
	to {
		width: 74px;
		opacity: 1;
	}
}

@keyframes startload2 {
	from {
		height:0px;
		opacity: 0;
	}
	25%{
		height: 0px;
		opacity: 1;
	}
	to {
		height: 16px;
		opacity: 1;
	}

}


.subform {
	border: 3px solid silver;
	border-radius: 5px;
	}

.menu {
	display: table;
	margin: 10px auto;
	padding: 0;
	background-color: white;
	border-bottom: 2px solid silver;
	border-radius: 5px;
}

.menu li {
	display: inline-block;
}

.menu li a {
	display: inline-block;
	border-bottom: none;
	padding: 10px;
	color: #333;
}

.menu li a:hover,.menu li a:focus {
	background-color: #f0f0f0;
	color: black;
}

.menu li:first-child a:hover {
	border-radius: 5px 0 0 5px;
}

.menu li:last-child a:hover {
	border-radius: 0 5px 5px 0;
}


.current_item {
	background-color: #f0f0f0;
	color: black;
}

/*-------- Fade anims --------*/
* {
	-webkit-animation: fadeIn .3s;
	animation: fadeIn .3s;
}

body,html,div,.menu,.menu *,.currentProject,.currentProject * {
	-webkit-animation: noFade .3s;
	animation: noFade .3s;
}

@-webkit-keyframes fadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}

@-webkit-keyframes noFade {
	from {opacity: 1;}
	to {opacity: 1;}
}

@keyframes fadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes noFade {
	from {opacity: 1;}
	to {opacity: 1;}
}

/* -----------------------------------------------------------------------

 *************** PRECISE ELEMENTS ***********

--------------------------------------------------------------------------*/
#loginBox:after {
	content: "";
	display: block;
	position: relative;
	z-index: 10;
	height: 3px;
	background: linear-gradient(90deg, #0f0 0%, #0f0 25%, #0ff 25%, #0ff 50%, #ff0 50%,
		#ff0 75%, #f00 75%, #f00 100%);
	margin: 0 -32px; /*compensate body margin*/
}

#loginBox div {
	display: inline-block;
}

#logOut a {
	position: absolute;
	top: 30px;
	right: 20px;
	color: white;
	z-index: 30;
	border-bottom: 2px solid #333;
}

#logOut a:hover {
	border-bottom: 2px solid #0ff;
}

.homePresentation {
	display: none;
}

body:not (.homeClass ) .homeImg {
	-webkit-animation: narrowing .3s ease;
	animation: narrowing .3s ease;
}

@-webkit-keyframes narrowing {
	from { 
		height:200px;
		background: url("../images/home-img.jpg"), black;
		background-size: cover;
		background-position: right;
		margin-left: -32px;
		margin-right: -32px;
		padding-top: 1px;
		margin-bottom: 16px;
	}
	to {
		height: 70px;
		background: transparent;
		margin-left: -32px;
		margin-right: -32px;
		padding-top: 1px;
		margin-bottom: 16px;
	}
}

@keyframes narrowing {
	from { 
		height:200px;
		background: url("../images/home-img.jpg"), black;
		background-size: cover;
		background-position: right;
		margin-left: -32px;
		margin-right: -32px;
		padding-top: 1px;
		margin-bottom: 16px;
	}
	to {
		height: 70px;
		background: transparent;
		margin-left: -32px;
		margin-right: -32px;
		padding-top: 1px;
		margin-bottom: 16px;
	}
}

header {
	min-width: 800px; /* To be ajusted */
	height: 50px;
	margin-top: 16px;
	margin-bottom: 24px;
	margin-left: -32px;
	margin-right: -32px; /* Compensates the padding of body */
	background-color: black;
	color: white;
}

#headerContent {
	display: inline-block;
	padding-left: 5%;
	padding-right: 16px;
	width: 100%;
}

header ul {
	margin: 0;
	height: 50px;
}

header ul li {
	display: inline-block;
	list-style-type: none;
}

header ul li a {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	padding: 0 10px;
	color: white !important;
	text-shadow: 1px 1px 1px black;
	font-size: 1.1em;
	font-family: Ubuntu, Verdana, sans-serif, serif;
	font-weight: 300;
	text-decoration: none;
	text-transform: uppercase;
	border-bottom: 0px solid transparent;
	transition: background-color .5s, border .3s;
}

header ul li a:hover,header ul li a:active,header ul li a:focus {
	background-color: rgba(255, 255, 255, 0.2);
	transition: background-color .5s;
	outline: none;
	color: white;
	text-decoration: none;
}

header ul li:nth-child(4n+1) a:hover,header ul li:nth-child(4n+1) a:active,header ul li:nth-child(4n+1) a:focus
	{
	border-bottom: 5px solid #0f0;
	transition: .3s;
}

header ul li:nth-child(4n+2) a:hover,header ul li:nth-child(4n+2) a:active,header ul li:nth-child(4n+2) a:focus
	{
	border-bottom: 5px solid #0ff;
	transition: .3s;
}

header ul li:nth-child(4n+3) a:hover,header ul li:nth-child(4n+3) a:active,header ul li:nth-child(4n+3) a:focus
	{
	border-bottom: 5px solid #ff0;
	transition: .3s;
}

header ul li:nth-child(4n+4) a:hover,header ul li:nth-child(4n+4) a:active,header ul li:nth-child(4n+4) a:focus
	{
	border-bottom: 5px solid #f00;
	transition: .3s;
}

header #proticdbLogo {
	background-color: white;
	margin-top: -16px;
	float: left;
	height: 80px;
	padding: 10px;
	border-radius: 0 0 5px 5px;
	border-bottom: 2px solid silver;
}

.homeClass .homeImg {
	position: relative;
	height: 400px;
	background-color: #333;
	background: url("../images/home-img.jpg");
	background-size: cover;
	background-position: right;
	margin-left: -32px;
	margin-right: -32px; /* Compensates the padding of body */
	padding-top: 1px;
	margin-bottom: 16px;
}

.homeClass .homeImg {
	-webkit-animation: enlargement 0.5s ease;
	animation: enlargement 0.5s ease;
}

@-webkit-keyframes enlargement {
	from { height:0px;}
	to {height: 400px;}
}

@keyframes enlargement {
	from { height:0px;}
	to {height: 400px;}
}

/*@media screen and (min-width: 1270px) {
	.homeClass .homeImg { animation: homeImg 30s ease-out; }
	@keyframes homeImg {
		from { background-size: 105%; }
		to { background-size: 100%;  }
	}
}*/
.homeClass header {
	background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.7),
		transparent );
	margin-left: 0;
	margin-right: 0;
}

.homeClass #proticdbLogo {
	margin-top: -17px;
}

.homeClass .homePresentation {
	display: block;
	position: absolute;
	right: 2%;
	top: 110px;
	padding: 20px;
	font-size: 1.3em;
	font-weight: bold;
	color: white;
	text-shadow: 1px 1px 3px black, -1px -1px 5px black, 1px 1px 1px black;
}

.homeClass .homePresentation {
	-webkit-animation: appearance 2s ease;
	animation: appearance 2s ease;
}

@-webkit-keyframes appearance {
	from {
		right:-300px;
		opacity: 0;
	}
	50% {
		right: -300px;
		opacity: 0;
	}
	to {
		right: 2%;
		opacity: 1;
	}
}

@keyframes appearance {
	from { 
		right:-300px;
		opacity: 0;
	}
	50% {
		right: -300px;
		opacity: 0;
	}
	to {
		right: 2%;
		opacity: 1;
	}
}

.homeClass .homePresentation h1 {
	color: white;
	font-weight: bold;
	font-size: 1.8em;
	text-align: left;
}

.homeClass .homePresentation a {
	color: white;
}

.homeClass .homePresentation ul li {
	list-style-type: none;
}

.homeClass .homePresentation ul li:before {
	content: "";
	display: inline-block;
	margin-right: 8px;
	margin-bottom: 3px;
	width: 8px;
	height: 8px;
	background: white;
	border-radius: 3px;
	box-shadow: 1px 1px 3px black, -1px -1px 5px black, 1px 1px 1px black;
}

.projectListDiv {
	margin-bottom: 20px;
}

.projectsList {
	padding-left: 10px;
	margin-left: 9px;
	border-left: 5px solid white;
	border-radius: 5px;
}

.projectName {
	list-style-type: none;
	line-height: 30px;
}

.projectDescription {
	display: inline-block;
	position: relative;
	height: 300px;
	width: 400px;
	overflow: hidden;
	word-wrap: break-word;
	margin: 10px;
	padding: 10px;
	background-color: white;
	border-bottom: 2px solid silver;
	border-radius: 5px;
}

.projectDescription:after {
	content: "...";
	position: absolute;
	bottom: 10px;
	right: 10px;
}

.projectDescription:before {
	content: "  ";
	height: 50px;
	position: absolute;
	bottom: 0px;
	left: 10px;
	right: 10px;
	z-index: 2;
	background: linear-gradient(0deg, white 20%, rgba(255, 255, 255, 0) 100%
		);
}

.projectTitle a {
	font-family: Ubuntu, Verdana, sans-serif, serif;
	font-weight: 300;
	font-size: 1.5em;
}

.projectMenu {
	position: relative;
	display: table;
	font-size: 17px;
	margin: 10px auto;
	padding: 0;
	background-color: white;
	border-bottom: 2px solid silver;
	border-radius: 5px;
}

.projectMenu li {
	display: inline-block;
}

.projectMenu li a {
	display: inline-block;
	border-bottom: none;
	padding: 10px;
	color: #333;
}

.projectMenu li a:hover,.projectMenu li a:focus {
	background-color: #f0f0f0;
	color: black;
}

.projectMenu li:first-child a:hover {
	border-radius: 5px 0 0 5px;
}

.projectMenu li:nth-last-child(2) a:hover {
	border-radius: 0 5px 5px 0;
}

.projectMenu li:last-child a:hover {
	border-radius: 0 5px 5px 0;
}

.projectMenu:after {
	content: " ";
	position: relative;
	top: 0px;
	display: block;
	height: 2px;
	border-radius: 0 0 2px 2px;
	background: linear-gradient(90deg, #0f0 0%, #0f0 25%, #0ff 25%, #0ff 50%, #ff0 50%,
		#ff0 75%, #f00 75%, #f00 100%);
}

.spotInfo {
	display: block;
	float: right;
	width: 400px;
	overflow: auto;
	margin: 10px;
	padding: 10px;
	background-color: white;
	border-bottom: 2px solid silver;
	border-radius: 5px;
}

[ng-repeat="queryDataset in queryDatasets"],[ng-repeat="linkDatasetButton in linkDatasetButtons"],[ng-repeat="rootButton in rootButtons"]
	{
	list-style-type: none;
}

[ng-repeat="queryDataset in queryDatasets"]:before,[ng-repeat="linkDatasetButton in linkDatasetButtons"]:before,[ng-repeat="rootButton in rootButtons"]:before
	{ /*Blue triangle*/
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-radius: 3px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 12px solid #0ff;
}

a[ng-click="queryDataset.removeFilter(filter)"],a[ng-click="removeQueryDataset(queryDataset)"]
	{
	margin-left: 10px;
	border-bottom: none;
}

.glyphicon-trash:hover,.glyphicon-trash:focus,a[ng-click="queryDataset.removeFilter(attribute.filter)"]:hover,a[ng-click="queryDataset.removeFilter(attribute.filter)"]:focus,a[ng-click="removeQueryDataset(queryDataset)"]:hover,a[ng-click="removeQueryDataset(queryDataset)"]:focus
	{
	border-bottom: none;
	cursor: pointer;
	transition: .3s;
	color: red;
}

span[ng-show="filter.isString()"] { /*Filter content*/
	margin-left: 40px;
}

div[ng-repeat="queryDataset in queryDatasets"] {
	margin-left: 42px;
	display: list-item;
}

#mindetected_spots_matched_spot_num,#maxdetected_spots_matched_spot_num,
#mindetected_spots_detected_spot_num,#maxdetected_spots_detected_spot_num,
#mindetected_spots_detected_spot_x,#maxdetected_spots_detected_spot_x,
#mindetected_spots_detected_spot_y,#maxdetected_spots_detected_spot_y,
#minproteins_protein_hit_group,#maxproteins_protein_hit_group,
#minproteins_protein_hit_subgroup,#maxproteins_protein_hit_subgroup,
#minproteins_protein_rank,#maxproteins_protein_rank,
#minproteins_protein_score,#maxproteins_protein_score,
#minproteins_protein_xtandem_evalue,#maxproteins_protein_xtandem_evalue,
#minpeptide_identifications_peptide_hit_group,#maxpeptide_identifications_peptide_hit_group,
#minpeptide_identifications_peptide_hit_peptide_number,#maxpeptide_identifications_peptide_hit_peptide_number,
#minpeptide_identifications_peptide_hit_charge,#maxpeptide_identifications_peptide_hit_charge,
#minpeptide_identifications_peptide_ms_level,#maxpeptide_identifications_peptide_ms_level,
#minpeptide_identifications_peptide_xtandem_evalue,#maxpeptide_identifications_peptide_xtandem_evalue,
#minpeptide_identifications_peptide_xtandem_hyperscore,#maxpeptide_identifications_peptide_xtandem_hyperscore,
#minquanti_value_quanti_value_area,#maxquanti_value_quanti_value_area,
#minquanti_value_quanti_value_rt,#maxquanti_value_quanti_value_rt,
#minquanti_value_quanti_value_maxint,#maxquanti_value_quanti_value_maxint,
#minquanti_value_quanti_value_z,#maxquanti_value_quanti_value_z,
#minquanti_value_quanti_value_mz,#maxquanti_value_quanti_value_mz,
#minquantified_peptides_and_proteins_quanti_peptide_mh,#maxquantified_peptides_and_proteins_quanti_peptide_mh
	/*Small min-max inputs*/ {
	width: 50px;
	margin-right: -10px;
}

div[class="tab-pane ng-scope active"] {
	/*Project MS samples principal div*/
	padding: 10px;
	background: white;
	border-radius: 5px;
	border-bottom: 2px solid silver;
}

div[class="tab-pane ng-scope active"] table {
	border-bottom: none;
	border-radius: 5px;
}

span.valueSet {
	margin: 5px;
	padding: 5px;
	background-color: white;
	color: #444;
	border: 1px solid #dadada;
	border-bottom: 2px solid silver;
	border-radius: 5px;
	outline: none;
}


.queryButtons li {
	display: inline-block;
	margin: 10px;
}

.highlight_row {
	border-style: solid;
	border-width: 1px;
	border-color: red;
}

/* -----------------------------------------------------------------------

 *************** DISABLE animations on SVG elements ***********

--------------------------------------------------------------------------*/
svg,svg * { /*CSS transitions*/
	-o-transition-property: none !important;
	-moz-transition-property: none !important;
	-ms-transition-property: none !important;
	-webkit-transition-property: none !important;
	transition-property: none !important;
	/*CSS transforms*/
	-o-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-webkit-transform: none !important;
	transform: none !important;
	/*CSS animations*/
	-webkit-animation: none !important;
	-moz-animation: none !important;
	-o-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
}

.sequence {
	word-break: break-all;
	/* Non standard for webkit */
	word-break: break-word;
	font-family: "Lucida Console", Monaco, monospace;
}
