@import '../default.less';
@import '../mixins.less';
//DON'T ADD IMPORTS, ABOVE ARE TO MAKE INTELLISENSE WORK

#search-panel
{
	display: none;
	float: right;
	width: 220px;
	padding: 7px 15px 0 15px;
	font-family: @title-font;
	background-color: #edf8ff;
	min-height: 360px;

	html[dir='rtl'] &
	{
		float: left;
		margin-left: 5px;
	}

	div.section
	{
		padding-top: 7.5px;
		padding-bottom: 7.5px;

		ul
		{
			margin: 5px 0 0 0;
			padding: 0;
			font-size: 14px;

			li
			{
				list-style-type: none;
				margin-top: 3px;

				input
				{
					vertical-align: middle;
					margin-right: 10px;

					html[dir='rtl'] &
					{
						margin-right : 0;
						margin-left: 10px;
					}
				}
			}
		}

		&#search-title
		{
			font-size: 17px;
			font-weight: bold;
			border-bottom: 1px solid #d2dce6;
			padding-bottom: 10px;
		}
	}
}

#similar-results
{
	.similar-search-result-item
	{
		display: none;
		float: left;
		margin: 2px 20px 10px 2px;
		padding: 10px;
		border: 2px solid white;

		h3.item-title
		{
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
			margin: 0;
			font-weight: bold;
			font-size: 12pt;
			font-family: Arial;
		}

		.sub-title
		{
			font-style: italic;
			font-family: Arial;
			font-size: 8pt;
		}

		.add-similar-series
		{
			display: inline-block;
			visibility: hidden;

			span
			{
				font: bold 14px @title-font;
			}

			&.disabled
			{
				opacity: 0.5;
				visibility: visible;
			}
		}

		&:hover
		{
			box-shadow: 1px 1px 10px 1px #dbedf9;

			.add-similar-series
			{
				visibility: visible;
			}
		}

		html[dir='rtl'] &
		{
			margin: 2px 2px 10px 20px;
			float: right;
		}
	}

	.similar-search-error
	{
		font: normal 16px @title-font;
	}
}

#full-search-results.similar-results
{
	min-height: 130px;
	margin: 30px 0 0 0;
}

.correlation-box
{
	font-family: Trebuchet MS;
	font-size: 12pt;
	padding: 0 2px;
	background-color: #d1d1d1;
}
