.comparison-list table {
  position: relative;
}
.comparison-list .table>:not(caption)>*>* {
  background: #212529;
  color: #fff;
}
.comparison-list table th,
.comparison-list table td {
  min-width: 280px;
  max-width: 280px;
  border-color: #000;
  padding: 1rem .5rem;
  font-size: 14px;
  border-left: 0;
  border-right: 0;
  box-sizing: border-box;
  vertical-align: middle;
}
.comparison-list table tr:first-of-type td {
  vertical-align: top;
}
.comparison-list table th {
  position: sticky;
  left: 0;
  top: 0;
  padding: 1.5rem 2rem;
/*  box-shadow: inset 0 0 4px rgba(0,0,0,.25);*/
  z-index: 3;
}
.comparison-list table th strong {
  font-weight: 500;
}

.comparison-list table th .controls {
  margin-left: .5rem;
}
.comparison-list table th .controls button {
  padding: .25rem .5rem;
  font-size: 12px;
  line-height: 12px;
  border: 1px solid #666;
  color: #FFFFFF;
  background: transparent;
  cursor: pointer;
  outline: none;
}
.comparison-list table th .controls button.active {
  border-color: #EEE;
}
.comparison-list table th .controls button:first-child:not(.active) {
  border-right: 0;
}
.comparison-list table th .controls button:last-child:not(.active) {
  border-left: 0;
}

.comparison-list {
  margin-bottom: 1rem;
}
.comparison-list ::-webkit-scrollbar {
  height: 4px;
  background: transparent;
  position: absolute;
  bottom: 0;
}
.comparison-list ::-webkit-scrollbar-track {
  background: #D3A18833;
  border-radius: 4px;
}
.comparison-list ::-webkit-scrollbar-thumb {
  background: #CF8C6F;
  border-radius: 4px;
  cursor: grab;
}

.comparison-list table .images {
  position: relative;
  margin-bottom: .5rem;
}
.comparison-list table .images .image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: 205px;
}
.comparison-list table .images .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.comparison-list table .images .remove {
  position: absolute;
  right: .25rem;
  top: .25rem;
  width: 40px;
  height: 40px;
  text-align: center;
  font-weight: lighter;
  font-size: 3rem;
  line-height: 40px;
  border: 0;
  color: #FFFFFF;
  background: rgba(0,0,0,.75);
  cursor: pointer;
  outline: none;
  opacity: .3;
  transition: .2s ease-in-out;
}
.comparison-list table .images .remove:hover {
  opacity: 1;
}

.comparison-list table .images .prorerty-slider {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}
.comparison-list table .images .prorerty-slider .controls {
  position: absolute;
  left: .5rem;
  right: .5rem;
  top: 50%;
  transform: translate(0,-50%);
  z-index: 2;
}
.comparison-list table .images .prorerty-slider .controls .control {
  background: transparent;
  border: 0;
}
.comparison-list table .images .prorerty-slider .controls .control:after {
  font-size: 20px;
  font-weight: bolder;
  color: white;
}
.comparison-list table .images .prorerty-slider .swiper-pagination {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%,0);
}
.comparison-list table .images .prorerty-slider .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,1);
  opacity: .6;
}
.comparison-list table .images .prorerty-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #CF8C6F;
  opacity: 1;
}

.comparison-list table .name {
  color: #fff;
  font-size: 14px;
  line-height: 120%;
  text-decoration: none;
}
@media screen and (max-width: 767px)
{
	.comparison-list table th {
		 position: relative;
	}
}