﻿.page__compare table thead tr {
  background-color: #fff;
}
.page__compare table thead th {
  position: relative;
}
.page__compare table thead i {
  font-size: 1.8em;
  position: absolute;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.1;
  top: 2px;
  right: 2px;
  box-shadow: 0 0 0 1px #aaa;
}
@media (min-width: 991px) {
  .page__compare table img {
    margin: auto;
    max-width: 200px;
  }
}
.page__compare table img + a {
  color: inherit;
  display: block;
  margin: 15px auto 0;
  height: 56px;
  overflow: hidden;
  font-size: 0.94em;
}
@media (max-width: 991px) {
  .page__compare table img + a {
    height: 44px;
  }
}
.page__compare table .fa-times {
  color: red;
}
.page__compare table .fa-check {
  color: green;
}
.page__compare table tr.stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 991px) {
  .page__compare table th {
    width: 235px !important;
    overflow-x: auto;
  }
}
.page__compare .react__loader {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
.page__compare .react__loader > div {
  border: 2px solid #ccc;
  border-right-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -25px 0 0 -25px;
  animation: spinner 0.3s linear infinite;
}

@keyframes spinner {
  100% {
    transform: rotate(360deg);
  }
}
