/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

a {
  color: #0065cf;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.tbl_cdlink {
	position: relative;
	display: inline-block;
	text-align: center;
}

.tbl_cdlink a:hover img {
	transform: scale(2.5) translate(-10px,35px);
	z-index: 99;
}

.tbl_cdlink a:hover img:last-child {
	transform: scale(2.5) translate(-40px,35px);
	z-index: 99;
}

.tbl_cdlink a img {
	position: relative;
	display: block;
/*	width: 120px;
	height: 75px;	*/
}

.tbl_cdlink img {
	transition: transform 0.3s linear;
}

.table-h1 {
  font-size: 2.2rem;
  text-align: center;
  padding: 4em 5%;
}
@media only screen and (min-width: 1170px) {
  .table-h1 {
    font-size: 4rem;
    font-weight: 300;
    padding: 3em 5%;
  }
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-products-comparison-table {
  margin-bottom: 4rem;
}
.cd-products-comparison-table::after {
  /* never visible - this is used in jQuery to check the current MQ */
  display: none;
  content: 'mobile';
}
.cd-products-comparison-table .tbl_header {
	display: flex;
	justify-content: center;
}

.cd-products-comparison-table .tbl_header {
  padding: 0 5% 25px;
}
.cd-products-comparison-table .tbl_header::after {
  clear: both;
  content: "";
  display: table;
}
.cd-products-comparison-table h2 {
  float: left;
  font-weight: bold;
}
.cd-products-comparison-table .table-actions {
	max-width: 85vw;
    overflow: hidden;
    margin: 20px auto;
    max-height: 200px;
}
.cd-products-comparison-table .reset, .cd-products-comparison-table .filter {
  font-size: 0.95rem;
	height: 50px;
	width: 115px;
	vertical-align: middle;
	justify-content: center;
	text-align: center;
}
.cd-products-comparison-table .reset {
	display: inline-block;
	padding: 1rem 1.5rem;
	color: #F4F2FA;
	background-color: #404042;
	border-radius: 3px;
}
.cd-products-comparison-table .filter {
  padding: 1rem 1.5rem;
	display: inline-block;
  color: #f4f2fa;
  background-color: #555555;
  border-radius: 3px;
  margin-left: 0.5rem;
  cursor: not-allowed;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.cd-products-comparison-table .filter.active {
  cursor: pointer;
  background-color: #E86224;
	border: 2px solid #b85214;
}
.no-touch .cd-products-comparison-table .filter:hover {
  background-color: #0089dd;
}

@media only screen and (max-width: 630px) {
	.cd-products-comparison-table .reset, .cd-products-comparison-table .filter {
		display: none;
}
}
	
@media only screen and (min-width: 1170px) {
  .cd-products-comparison-table {
    margin-bottom: 3em;
  }
  .cd-products-comparison-table::after {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .cd-products-comparison-table tbl_header {
    padding: 0 5% 40px;
  }
  .cd-products-comparison-table h2 {
    font-size: 2.4rem;
  }
  .cd-products-comparison-table .reset, .cd-products-comparison-table .filter {
    font-size: 1rem;
  }
  .cd-products-comparison-table .reset, .cd-products-comparison-table .filter {
    padding: 1rem 1.5rem;
    margin-left: 2.5rem;
  }
}

.cd-products-table {
  position: relative;
  overflow: hidden;
}

.cd-products-table .features {
  /* fixed left column - product properties list */
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 275px;
  border-style: solid;
  border-color: #c0bfbd;
  border-top-width: 1px;
  border-bottom-width: 1px;
  background-color: #fff;
  opacity: 1;
	white-space: normal;
	overflow: visible;
}
.cd-products-table .features::after {
  /* color gradient on the right of .features -  visible while scrolling inside the .cd-products-table */
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 4px;
  height: 100%;
  background-color: transparent;
  background-image: -webkit-linear-gradient(left, rgba(207,203,203,0.53), transparent);
  background-image: linear-gradient(to right, rgba(207,203,203,0.53), transparent);
  opacity: 0;
}
/*@media only screen and (min-width: 1170px) {
  .cd-products-table .features {
	  background-color: #0065cf;
	  color: #fff;
  }
}*/

.cd-products-table.scrolling .features::after {
  opacity: 1;
	 width: 275px;
}
.cd-products-table.scrolling .cd-products-columns::after {
	margin-left: 275px;
}

.cd-products-wrapper {
  overflow-x: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
	padding-bottom: 20px;
  border-style: solid;
  border-color: #c0bfbd;
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.cd-products-columns {
  /* products list wrapper */
  width: 1200px;
  margin-left: 275px;
}
.cd-products-columns::after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (min-width: 1600px) {
  .cd-products-columns {
    width: 2480px;
    margin-left: 275px;
  }
}

.cd-products-columns .product {
  position: relative;
  float: left;
  width: 275px;
	height: auto;
  text-align: center;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.filtering .cd-products-columns .product:not(.selected) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.no-product-transition .cd-products-columns .product.selected {
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.filtered .cd-products-columns .product:not(.selected) {
  position: absolute;
}
@media only screen and (min-width: 1170px) {
  .cd-products-columns .product {
    width: 275px;
  }
}

.cd-features-list li {
	font-family: 'gravita-geo-variable', sans-serif;
	font-size: 0.95rem;
  font-weight: 300;
	line-height: 1.2;
  padding: 10px;
  border-color: #c0bfbd;
  border-style: solid;
  border-top-width: 1px;
  border-right-width: 1px;
	min-height: 50px
}
.cd-features-list li:last-child {
	border-color: #c0bfbd;
  border-style: solid;
  border-bottom-width: 1px;
}
.cd-features-list li.cd-features-design-lists{
	padding: 10px;
	display: flex;
	justify-content: center;
	margin: 0px;
	line-height: 1.2;
    min-height: auto;
	align-items: center;
}

.tbl-icon {
    display: inline-block;
    font-size: 7px;
    line-height: 3;
    padding-right: 3px;
	color: #0065CF;
}

.cd-features-list li.rate {
  /* rating stars */
  padding: 21px 0;
}
.cd-features-list li.rate span {
  display: inline-block;
  height: 22px;
  width: 275px;
  background: url(../img/cd-star.svg);
  color: transparent;
}
@media only screen and (min-width: 1900px) {
  .cd-features-list li {
    font-size: 0.90rem;
  }
  .cd-features-list li.rate {
    padding: 22px 0;
  }
}

.features .cd-features-list li,
.cd-products-table .features .top-info {
  /* fixed left column - items */
  font-size: 1.15rem !important;
  font-weight: 600;
  /* set line-height value equal to font-size of text inside product cells */
  line-height: 1.2rem;
	text-transform: capitalize;
  padding: 12px 10px;
  text-align: right;
	vertical-align: middle;
  color: #0065cf !important;
	font-family: 'adobe-aldine', serif;
	min-width: 275px;
}
@media only screen and (min-width: 1170px) {
  .features .cd-features-list li,
  .cd-products-table .features .top-info {
    padding: 15px 12px 15px 20px;
    letter-spacing: 1px;
	  min-width: 275px;
  }
}

.features .cd-features-list li {
  /* truncate text with dots */
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
	vertical-align: middle;
}

.cd-products-table .top-info {
  position: relative;
  height: 270px;
  width: 270px;
  text-align: center;
  padding: 1.05em;
  border-color: #c0bfbd;
  border-style: solid;
  border-right-width: 1px;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
  cursor: pointer;
  background: #ffffff;
}
.cd-products-table .top-info::after {
  /* color gradient below .top-info -  visible when .top-info is fixed */
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 4px;
  width: 100%;
  background-color: transparent;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.06), transparent);
  background-image: linear-gradient(to bottom,rgba(0, 0, 0, 0.06), transparent);
  opacity: 0;
}
.cd-products-table .top-info h3 {
	padding: 0.45em;
	font-weight: bold;
	font-size: 1.15rem !important;;
	text-transform: uppercase;
    color: #f4f2fa !important;
    text-align: center;
    font-family: 'adobe-aldine', serif;
	background-color: #0065cf;
}
.cd-products-table .top-info img {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-products-table .top-info h3, .cd-products-table .top-info img {
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-products-table .top-info .check {
  position: relative;
  display: block;
  height: 16px;
  width: 16px;
  margin: 0 auto 1rem;
}
.cd-products-table .top-info .check::after, .cd-products-table .top-info .check::before {
  /* used to create the check icon and green circle dot - visible when product is selected */
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
/* 	content: '\f133';
	justify-content: center;
	align-items: center;
	font-family: "Material Design Icons";
	font-size: 24px;
	color: #0065CF	*/
}
.cd-products-table .top-info .check::before {
  /* select circle dot */
  border-radius: 0%;
  border: 1px solid #404042;
  background: #ffffff;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, -moz-transform 0.3s, border-color 0.3s;
  transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}
.cd-products-table .top-info .check::after {
 /* check icon*/
  background: url("../images/comp_table/cd-check.svg") no-repeat center center;
  background-size: 24px 24px; 
  opacity: 0;
	/* ;*/
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 1170px) {
  .cd-products-table .top-info {
    height: 275px;
    width: 270px;
  }
/*  .cd-products-table .top-info h3 {
    padding-top: 0.75em;
    font-size: 1.25rem;
  }*/
  .cd-products-table .top-info .check {
    margin-bottom: 1em;
  }
}

.cd-products-table .features .top-info {
  /* models */
  width: 270px;
  cursor: auto;
  background: #fff;
}


.cd-products-table .selected .top-info .check::before {
  /* green circle dot */
  background: #E86224;
  border-color: #B85214;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}

@-webkit-keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
	transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.6);
	transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.5);
	transform: scale(1.5);
  }
}
@-moz-keyframes cd-bounce {
  0% {
    -moz-transform: scale(1);
	transform: scale(1);
  }
  60% {
    -moz-transform: scale(1.6);
	transform: scale(1.6);
  }
  100% {
    -moz-transform: scale(1.5);
	transform: scale(1.5);
  }
}
@keyframes cd-bounce {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.cd-products-table .selected .top-info .check::after {
  /* check icon */
  opacity: 1;
}

@media only screen and (min-width: 1170px) {
  .cd-products-table.top-fixed .cd-products-columns > li,
  .cd-products-table.top-scrolling .cd-products-columns > li,
  .cd-products-table.top-fixed .features,
  .cd-products-table.top-scrolling .features {
    padding-top: 160px;
  }

  .cd-products-table.top-fixed .top-info,
  .cd-products-table.top-scrolling .top-info {
    height: 160px;
    position: fixed;
    top: 0;
  }
  .no-cssgradients .cd-products-table.top-fixed .top-info, .no-cssgradients
  .cd-products-table.top-scrolling .top-info {
    border-bottom: 1px solid #c0bfbd;
  }
  .cd-products-table.top-fixed .top-info::after,
  .cd-products-table.top-scrolling .top-info::after {
    opacity: 1;
  }
  .cd-products-table.top-fixed .top-info h3,
  .cd-products-table.top-scrolling .top-info h3 {
    -webkit-transform: translateY(-116px);
    -moz-transform: translateY(-116px);
    -ms-transform: translateY(-116px);
    -o-transform: translateY(-116px);
    transform: translateY(-116px);
  }
  .cd-products-table.top-fixed .top-info img,
  .cd-products-table.top-scrolling .top-info img {
    -webkit-transform: translateY(-62px) scale(0.4);
    -moz-transform: translateY(-62px) scale(0.4);
    -ms-transform: translateY(-62px) scale(0.4);
    -o-transform: translateY(-62px) scale(0.4);
    transform: translateY(-62px) scale(0.4);
  }

  .cd-products-table.top-fixed .top-info img,
  .cd-products-table.top-scrolling .top-info img {
	  margin: 5px 0px 5px 0px;
	}
	
  .cd-products-table.top-scrolling .top-info {
    position: absolute;
  }
}
.cd-table-navigation a {
  position: absolute;
  z-index: 2;
  top: 198px;
  right: 15px;
  -webkit-transform: translateY(55px);
  -moz-transform: translateY(55px);
  -ms-transform: translateY(55px);
  -o-transform: translateY(55px);
  transform: translateY(55px);
  /* replace text with image */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  height: 60px;
  width: 40px;
  background: rgba(64, 64, 66, 0.9) url("../images/comp_table/cd-arrow.svg") no-repeat center center;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s, opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  -moz-transition: background-color 0.3s, opacity 0.3s, visibility 0.3s, -moz-transform 0.3s;
  transition: background-color 0.3s, opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.cd-table-navigation a.inactive {
  opacity: 0;
  visibility: hidden;
}
.cd-table-navigation a.prev {
  left: 120px;
  right: auto;
  -webkit-transform: translateY(55px) translateX(15px) rotate(180deg);
  -moz-transform: translateY(55px) translateX(15px) rotate(180deg);
  -ms-transform: translateY(55px) translateX(15px) rotate(180deg);
  -o-transform: translateY(55px) translateX(15px) rotate(180deg);
  transform: translateY(55px) translateX(15px) rotate(180deg);
}
.no-touch .cd-table-navigation a:hover {
  background-color: #0065CF;
}
@media only screen and (min-width: 1170px) {
  .cd-table-navigation a {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
  }
  .cd-table-navigation a.prev {
    left: 210px;
    -webkit-transform: translateY(100px) translateX(15px) rotate(180deg);
    -moz-transform: translateY(100px) translateX(15px) rotate(180deg);
    -ms-transform: translateY(100px) translateX(15px) rotate(180deg);
    -o-transform: translateY(100px) translateX(15px) rotate(180deg);
    transform: translateY(100px) translateX(15px) rotate(180deg);
  }
  .top-fixed .cd-table-navigation a {
    position: fixed;
  }
  .top-fixed .cd-table-navigation a, .top-scrolling .cd-table-navigation a {
    -webkit-transform: translateY(45px);
    -moz-transform: translateY(45px);
    -ms-transform: translateY(45px);
    -o-transform: translateY(45px);
    transform: translateY(45px);
  }
  .top-fixed .cd-table-navigation a.prev, .top-scrolling .cd-table-navigation a.prev {
    -webkit-transform: translateY(45px) translateX(15px) rotate(180deg);
    -moz-transform: translateY(45px) translateX(15px) rotate(180deg);
    -ms-transform: translateY(45px) translateX(15px) rotate(180deg);
    -o-transform: translateY(45px) translateX(15px) rotate(180deg);
    transform: translateY(45px) translateX(15px) rotate(180deg);
  }
}

/* -------------------------------- 
No JS
-------------------------------- */
.no-js .actions {
  display: none;
}

.no-js .cd-products-table .top-info {
  height: 145px;
}
@media only screen and (min-width: 1170px) {
  .no-js .cd-products-table .top-info {
    height: 275px;
  }
}

.no-js .cd-products-columns .check {
  display: none;
}
