.page-content-wrapper {
	background: #eee;
}

.tenders-list {
	background: #fff;
}

.page-content-wrapper .empty {
	color: #666;
	font-size: 18px;
	text-shadow: 1px 1px 1px #fff;
	margin: 120px;
	text-align: center;
}

.tenders-list .table-row:not(.table-header) {
	cursor: pointer;
}


.tenders-list .table-row.table-header .table-cell {
	padding: 5px 10px;
}

.tenders-list .table-row.selected {
	background: #ffef99;
	font-weight: bold;
}

.table-wrapper .table-row:not(.table-header):not(.selected):hover {
	background: #eee;
}

.tenders-list .table-row .tender-info {
	display: none;
}

.tenders-list .table-row td,
.tenders-list .table-row th {
	height: 40px;
}

.tender-info-wrap {
	position: absolute;
	top: 69px;
	right: 0;
	bottom: 0;
	width: 30%;

	display: none;
	overflow: auto;

	background: #fff;
	padding: 10px;
	box-sizing: border-box;
}

.tender-info-wrap .close-info:after {
	content: '❌';
	font-size: 32px;
	font-weight: bold;

	width: 32px;
	height: 32px;

	float: right;
	margin-top: 10px;
	color: #999;

	cursor: pointer;
	transition: all 0.3s;

	position: fixed;
	top: 70px;
	right: 32px;
}

.tender-info-wrap .close-info:hover:after {
	color: #f99;
}

.page-content-wrapper .list-menu-wrapper {
	position: absolute;
	top: 0;
	right: 5px;
	z-index: 99995;
}

.page-content-wrapper .list-menu-wrapper .list-menu-btn {
	width: 40px;
	height: 40px;

	text-align: center;
	line-height: 40px;

	font-size: 20px;
	background: #fff;

	cursor: pointer;
}

.page-content-wrapper .list-menu-wrapper .list-menu {
	position: absolute;
	top: 16px;
	right: 0px;

	width: 200px;
	background: #fff;

	border: 1px solid #bbb;
	box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.125 );

	display: none;
}

.page-content-wrapper .list-menu-wrapper:hover .list-menu-btn {
	background: #aaa;
}

.page-content-wrapper .list-menu-wrapper:hover .list-menu {
	display: block;
}

.page-content-wrapper .list-menu-wrapper .list-menu .list-menu-item {
	display: block;
	color: #333;
	text-decoration: none;

	padding: 6px 14px;
	padding-left: 32px;

	font-size: 12px;
	line-height: 20px;

	cursor: pointer;
	position: relative;
}

.page-content-wrapper .list-menu-wrapper .list-menu .list-menu-item:hover {
	background: #ddd;
}

.page-content-wrapper .list-menu-wrapper .list-menu .list-menu-item .icon {
	margin-left: -25px;
	width: 25px;
	height: 20px;
	display: inline-block;

	font-size: 18px;
	vertical-align: middle;
	text-align: left;

	color: #999;
}

.table-columns-menu {
	position: absolute;
	top: 20px;
	right: 0;
	width: 250px;
	padding: 5px;

	background: #fff;
	border: 1px solid #bbb;
	box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.125 );

	z-index: 99999;
	display: none;
}

.table-columns-menu-btn:hover .table-columns-menu {
	display: block;
}

.table-columns-menu label {
	display: block;
	padding: 5px;
}

.table-columns-menu label input {
	margin-right: 5px;
}

.export-wnd {
	position: fixed;

	top: 100px;
	left: 50%;

	width: 600px;
	margin-left: -316px;
	padding: 15px;

	background: #fff;
	box-shadow: 1px 1px 15px #000;

	display: none;
	z-index: 99999;
}

.export-wnd .btn {
	display: inline-block;
}

.export-wnd select {
	width: 120px;
}

.shade {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	background: rgba( 0, 0, 0, 0.25 );

	display: none;
	z-index: 99998;
}

.loader-wrap {
	padding: 20px;
	display: none;
	text-align: center;
}

.loader-wrap .loader-anim {
	margin: auto;
	font-size: 0;
	display: inline-block;
}

.loader-wrap .loader-anim i {
	display: inline-block;
	width: 24px;
	height: 24px;
	background: #99bb88;
	border-radius: 50%;
	margin: 5px;

	animation: loader-animation 1.5s infinite ease-in; 
	-webkit-animation: loader-animation 1.5s infinite ease-in; 
}

@keyframes loader-animation {
	0% {
		opacity: 0;
		transform: scale( 0, 0 );
	} 5% {
		opacity: 0;
		transform: scale( 0, 0 );
	} 50% {
		opacity: 1;
		transform: scale( 1, 1 );
	} 95% {
		opacity: 0;
		transform: scale( 0, 0 );
	} 100% {
		opacity: 0;
		transform: scale( 0, 0 );
	}
}

.loader-wrap .loader-anim i:nth-child(1) {
	animation-delay: -0.6s !important;
	-webkit-animation-delay: -0.6s !important;
}

.loader-wrap .loader-anim i:nth-child(2) {
	animation-delay: -0.3s !important;
	-webkit-animation-delay: -0.3s !important;
}

.table-wrapper {
	font-size: 0;
	box-shadow: 0 0 15px rgba( 0, 0, 0, 0.15 );
}

.table-wrapper .table-row {
	padding: 5px 0;
	border-bottom: 1px solid #eee;
}

.table-wrapper .table-row:last-child {
	border-bottom: 1px solid #ccc;
}

.table-wrapper .table-row.table-header {
	font-weight: bold;
	white-space: nowrap;
}

.table-wrapper .table-row .table-cell {
	font-size: 14px;
	padding: 5px;
	box-sizing: border-box;
	position: relative;
}

.table-wrapper .table-row {
	height: 34px;
}

.table-wrapper .table-row .table-cell .table-cell-wrap {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px;
	line-height: 22px;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	
	text-decoration: none;
	color: #000;
}

.table-wrapper .table-row .table-cell .table-cell-wrap:focus {
	outline: none;
}

table {
	width: 100%;
}

table th,
table td {
	padding: 5px;
	vertical-align: middle;
	text-align: left;
}

table th {
	background: #ffffff;
}

.fixed-header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
	box-shadow: 0 10px 10px -10px #000;
	display: none;
}

.fixed-header tr {
	border-bottom: none !important;
	height: 40px !important;
}

.fixed-header tr td {
	padding: 5px 10px;
}

.tender-info-wrap .tender-edrs,
.tender-info-wrap .tender-risks-wrap,
.tender-info-wrap .features-wrap .feature .enum-item .title,
.tender-info-wrap .tender-item-list .tender-item .tender-item-description,
.tender-info-wrap .tender-bids-list table tr td:nth-child(2) {
	width: auto;
	float: none;
}

.tender-info-wrap .tender-risks-details th {
	text-align: center;
}

.tender-info-wrap .tender-edrs {
	border-top: none;
}

.tender-info-wrap .tender-descr,
.tender-info-wrap .tender-meta-wrap,
.tender-info-wrap .tender-item-list,
.tender-info-wrap .features-wrap {
	margin: 10px 0;
	padding: 0;
	font-size: 12px;
}

.tender-info-wrap .tender-cancellation, 
.tender-info-wrap .tender-lot .tender-lot-header {
	margin-left: 0;
}

.tender-info-wrap .bid-value-cell:hover .bid-calculated-value .details {
	display: none;
}

.tender-info-header .tender-value {
	width: 200px;
	float: right;

	margin-left: 10px;
	margin-bottom: 10px;
	padding: 10px;
}

.tender-info-header .tender-value div {
	font-size: 16px;
}

.tender-info-header .tender-value .exchange-rate-info {
	font-size: 12px;
	font-weight: normal;
	color: #555;
}

.tender-info-header .tender-value .exchange-rate-info abbr {
	text-decoration: none;
	border-bottom: none;
}

.tender-info-wrap .tender-bids-list {
	font-size: 14px;
}

.tender-info-wrap .tender-contract-changes .spacer {
	margin-top: 5px;
}

.tender-info-wrap .tender-lot .tender-lot-header {
	cursor: pointer;
}

.tender-info-wrap .tender-lot .tender-lot-more {
	display: none;
}

.tender-info-wrap .tender-acts {
	display: none;
}

.page-content-wrapper .bottom-bar {
	display: none;
	height: 20px;

	background: #eee;
	border-top: 1px solid #ddd;

	box-shadow: 0 -5px 5px -5px rgba( 0, 0, 0, 0.25 );
	font-size: 12px;

	position: absolute;
	padding: 5px 10px;

	bottom: 0;
	left: 0;
	right: 0;
}

.page-content-wrapper .bottom-bar .pad:after {
	content: '|';
	display: inline-block;
	margin: 0 10px;
	color: #666;
}

.tender-info-wrap .tender-complaints .list,
.tender-info-wrap .tender-questions .list,
.tender-info-wrap .tender-monitoring .monitoring-wrap {
	display: none;
}

.tender-info-wrap .tender-complaints,
.tender-info-wrap .tender-questions {
	border-top: none;
	padding-top: 0;
}