.comparison {
	margin: 0 auto;
    max-width: 1350px;
    overflow: hidden;
}

.comparison_message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.comparison__content {
	width: 100%;
    max-height: 110vh;
	overflow: auto;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; 
}

.comparison__content table {
    width: max-content;
    min-width: 99%;
}

.comparison__table-head {
	border-bottom: 1px solid gray;
    position: sticky;
    top: 0;
    background: #f5f3f4;
    z-index: 100;
}

.comparison__table-row {
	display: flex;
}

.comparison__table-row > :first-child {
	border-right: 1px solid gray;
    position: sticky;
    left: 0;
    background: #f5f3f4;
    z-index: 99;
}

.comparison__table-cell {
	width: 300px;
}

.comparison__table-row .comparison__table-cell:first-child {
	max-width: max(10vw, 140px);
}

.comparison__table-cell .product__item {
	width: 100%;
    margin: 0;
    height: 100%;
}

.comparison .product__item .item__inner .product__details .details__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comparison__table-tbody .comparison__table-cell{
	//padding-bottom: 60px;
    font-weight: 600;
}

.comparison__table-tbody .comparison__table-row:first-child .comparison__table-cell{
	//padding-top: 39px;
}

.comparison__table-tbody .comparison__table-row:first-child .comparison__table-cell-border {
	background: #59A58B;
}

.comparison__table-cell-border {
	padding: 19px 43px;
    height: 100%;
}

.comparison__table-row .comparison__table-cell:first-child .comparison__table-cell-border {
	padding-left: 16px;
}

@media (max-width: 1500px) {
    .comparison__table-row .comparison__table-cell:first-child .comparison__table-cell-border {
	padding-left: 5px;
}
}

.comparison__table-tbody td,
.comparison__table-tbody th {
	padding: 20px 0;
}

.comparison__checked-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.comparison__checked {
    width: 22px;
    height: 22px;
    padding: 10px;
    appearance: none;
    border: 2px solid #777;
    cursor: pointer;
}

.comparison__checked:checked {
    background-color: #59A58B;
    border-color: #59A58B;
    background-image: url("../img/V.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.comparison__table-row--hidden {
	display: none !important;
}

.add-to-comparison {
    border: none;
    background: none;
	height: 100%;
    width: 100%;
}

.add-to-comparison svg {
	height: 50%;
    min-height: 20px;
    width: 50%;
    min-width: 20px;
    position: relative;
    left: 40%;
    transform: translateX(-50%);
}

.add-to-comparison.active svg path {
	fill:#94CDBA;
}

.btn-flex {
	position: absolute;
    top: 20px;
    right: 7%;
    display: flex;
    flex-direction: column;
	align-items: center
}

@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .btn-flex {
  	right: 0;
  }
}


.first-cell-thead {
    touch-action: pan-y;
}