.catalog-compare-list {
	z-index: 995;
	overflow: hidden;
	box-sizing: border-box;
	margin-top: 115px;
	margin-bottom: 10px;
	padding: 0.75rem 1.25rem;
	max-height: calc(100vh - 150px);
	border: 1px solid #ced4da;
	border-radius: 0.2rem;
	background: #fff;
	color: #404040;
	white-space: normal;
	font-size: 1rem;
	line-height: 1.2;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.is-scrolled .catalog-compare-list {
	margin-top: 60px;
}

.catalog-compare-list table {
	display: block;
	max-height: calc(100vh - 260px);
	overflow-y: auto;
}

.catalog-compare-count span {
	font-weight: bold;
}

.catalog-compare-page-link {
	display: block;
	color: #fff;
	background-color: var(--theme-b-link);
	text-align: center;
	vertical-align: center;
	line-height: 40px;
	margin-top: 20px;
	border: 1px solid var(--theme-b-link);
	border-radius: 5px;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.catalog-compare-page-link:hover {
	color: var(--theme-b-link);
	background-color: #fff;
}

.catalog-compare-list.fixed {
	position: fixed;
	width: 270px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .18);
}

.catalog-compare-list.top { top: 5px; }

.catalog-compare-list.right { right: 5px; }

.catalog-compare-list.bottom { bottom: 5px; }

.catalog-compare-list.left { left: 5px; }

.catalog-compare-item-list { width: 100%; }

.compare_added .popup-window .popup-window-buttons {
	display: none;
}

.catalog-compare-list_delette {
	position: relative;
	display: block;
	height: 20px;
	width: 20px;
	margin-top: 5px;
	outline: none;
	opacity: 0.5;
	-webkit-transition: opacity 0.2s linear;
	-o-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	cursor: pointer;
}

.catalog-compare-list_delette:hover {
	opacity: 1;
}

.catalog-compare-list_delette::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	width: 15px;
	height: 15px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.787 1L5 3.787 2.213 1 1 2.213 3.787 5 1 7.787 2.213 9 5 6.213 7.787 9 9 7.787 6.213 5 9 2.213' fill='%23999' fill-rule='evenodd'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
}

@media all  and (max-width: 992px){
	.catalog-compare-list,
	.is-scrolled .catalog-compare-list {
		margin-top: 42px;
	}

	.catalog-compare-list.fixed {
		width: auto;
	}

	.catalog-compare-list tbody {
		display: none;
	}
}