/* responsive-table.css */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[data-tr-table] {
  width: 100%;
}

.tr-mobile [data-tr-table] [data-product]:not(.active) {
  display: none;
}

.tr-mobile [data-tr-table] [data-mobile-collapse] {
  display: none;
}

[class^="product-selector"] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tr-desktop [class^="product-selector"] {
  display: none;
}

@media print {
  [class^="product-selector"] {
    display: none;
  }
}

[class^="product-selector"] a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

[class^="tr-wrapper-"] .tr-tooltip {
  position: absolute;
  max-width: 30rem;
  -webkit-animation: trFadeIn 0.3s ease forwards;
  animation: trFadeIn 0.3s ease forwards;
}

@-webkit-keyframes trFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes trFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* responsive-table-ui.css */
[class^="tr-wrapper-"] .tr-tooltip {
  background-color: #444;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.7em;
}

[data-tr-table] {
  text-align: center;
  border-collapse: collapse;
  color: #4d4d4d;
  margin-bottom: 2rem;
}

[data-tr-table] thead, [data-tr-table] tbody, [data-tr-table] tfoot {
  background: none;
}

[data-tr-table] td, [data-tr-table] th {
  border: 1px solid lightgrey;
}

[data-tr-table] th {
  background: transparent;
  color: #223a52;
  font-weight: normal;
}

[data-tr-table] th a {
  color: inherit;
}

[data-tr-table] td {
  font-size: 0.8em;
  background: #fff;
}

[data-tr-table] td a {
  width: 100%;
}

[data-tr-table] thead th {
  padding: 1rem;
  padding-top:0px;
  text-align: center;
  font-size: 1.5em;
  vertical-align: bottom;
}

[data-tr-table] thead th:empty {
  background: none;
  border: 0;
}

.tr-desktop [data-tr-table] thead th {
  font-size: 1em;
}

[data-tr-table] tbody td, [data-tr-table] tbody th {
  padding: 1rem;
}

[data-tr-table] tbody th {
  max-width: 20rem;
  text-align: right;
  font-size: 0.8em;
}

[data-tr-table] tbody th:empty {
  background: none;
  border: 0;
}

[data-tr-table] .price {
  font-size: 1.7em;
  font-weight: bold;
}

[data-tr-table] .icon-check, [data-tr-table] .icon-x {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

[data-tr-table] .icon-check {
  background: #3fcc8a;
}

[data-tr-table] .icon-check:after {
  content: "";
  width: 0.5em;
  height: 1em;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

[data-tr-table] .icon-x {
  background: lightgrey;
}

[data-tr-table] .icon-x:before {
  content: "";
  height: 1em;
  width: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

[data-tr-table] .icon-x:after {
  content: "";
  height: 1em;
  width: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

[class^="product-selector"] {
  border: 1px solid lightgrey;
  border-bottom: 0;
}

[class^="product-selector"] a {
  padding: 1rem 0.5rem;
}

[class^="product-selector"] a:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

[class^="product-selector"] a.active {
  background: #f2f2f2;
}

[class^="product-selector"] a.active:after {
  content: "";
  background: #f2f2f2;
  width: 14px;
  height: 14px;
  position: absolute;
  left: calc(50% - 7px);
  bottom: -7px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 1;
}

/* responsive-table RandMcNally */
.compare-titles p {
    color: #333;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: normal;
}
[class^="product-selector"] a {
    padding: 1rem 0.5rem;
    /* color: #eae5fb;
    background: #222; */
    color: #444;
    background: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: .02em;
    text-decoration: none;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
[class^="product-selector"] a:active {
    padding: 1rem 0.5rem;
    color: #222;
    background: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: .02em;
    text-decoration: none;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

[class^="product-selector"] a.active {
  background: #f2f2f2;
  color: #222;
}
[data-tr-table] tbody th {
  max-width: 20rem;
  text-align: right;
  font-size: 0.8em;
  background: #f2f2f2;
  color: #222;
  border: 0;
  -webkit-box-shadow: inset -15px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: inset -15px 0 20px -10px rgba(0, 0, 0, 0.1);
}
[data-tr-table] tbody tr:not(:last-child) th {
  border-bottom: 1px solid #f2f2f2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.085);
  background: #f2f2f2;
  color: #222;
}

.btn-mod.btn-compare, a.btn-mod.btn-compare, .btn-mod.btn-compare {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3px 3px;
    color: #222;
    background: rgba(34,34,34,.1);
    border: 1px solid transparent;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: "open-sans",sans-serif;
    font-weight: 600;
    letter-spacing: 1.1px!important;
    font-size: 9px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .2s cubic-bezier(0.000,0.000,0.580,1.000);
    -moz-transition: all .2s cubic-bezier(0.000,0.000,0.580,1.000);
    -o-transition: all .2s cubic-bezier(0.000,0.000,0.580,1.000);
    -ms-transition: all .2s cubic-bezier(0.000,0.000,0.580,1.000);
    transition: all .2s cubic-bezier(0.000,0.000,0.580,1.000);
}
.btn-mod.btn-compare:hover, a.btn-mod.btn-compare:hover, .btn-mod.btn-compare:hover {
    color: #fff;
    background: rgba(34,34,34,.8);
    -webkit-transition: all .2s cubic-bezier(0.000,0.000,0.580,1.000);
    -moz-transition: all .2s cubic-bezier(0.000,0.000,0.580,1.000);
    -o-transition: all .2s cubic-bezier(0.000,0.000,0.580,1.000);
    -ms-transition: all .2s cubic-bezier(0.000,0.000,0.580,1.000);
    transition: all .2s cubic-bezier(0.000,0.000,0.580,1.000);
}
[data-tr-table] td, [data-tr-table] th {
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  /* border-right: 1px solid #f2f2f2; */
  border-right: 1px solid #ffffff;
  /* border-bottom: 1px solid #f2f2f2; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
}
[data-tr-table] td {
  font-size: 0.8em;
  background: transparent;
}
[data-tr-table] tbody th {
  max-width: 40rem;
  /* min-width: 10rem; */
  text-align: right;
  font-size: 0.9em;
  background: #f2f2f2;
  color: #222;
  border: 0;
  -webkit-box-shadow: inset -15px 0 20px -10px rgba(0, 0, 0, 0.0);
  box-shadow: inset -15px 0 20px -10px rgba(0, 0, 0, 0.0);
}
[data-tr-table] .icon-check {
  background: #3fcc8a;
  background: #2CA01C;
}
img.ccimg{
  vertical-align: baseline;
}
span.compare-titles{
  display:block;
  width:100%;
}


@media only screen and (max-width: 991px) and (min-width: 0px){
  img.ccimg{
    max-height:200px;
  }
}
@media only screen and (max-width: 5120px) and (min-width: 992px){
  [data-tr-table] tbody tr:not(:last-child) th {
    min-width: 400px!important;
  }
}



@media only screen and (max-width: 1199px) and (min-width: 992px){
  /* #image-row{
    position: relative;
    top: 50px;
  } */
  /* .compare-titles p {
      color: #333;
      font-size: 12px;
      font-weight: 400;
      line-height: 1.3;
      letter-spacing: normal;
      position: absolute;
      top: 45px;
  }
  img.ccimg {
    vertical-align: baseline;
    position: relative;
    top: -70px;
    left:6px;
  } */
}
@media only screen and (max-width: 5120px) and (min-width: 1200px){
  /* #image-row{
    position: relative;
    top: 50px;
  } */
  /* .compare-titles p {
      color: #333;
      font-size: 12px;
      font-weight: 400;
      line-height: 1.3;
      letter-spacing: normal;
      position: absolute;
      top: 70px;
  }
  img.ccimg {
    vertical-align: baseline;
    position: relative;
    top: -60px;
    left:6px;
  } */
}
