/** Shopify CDN: Minification failed

Line 252:17 The "-" operator only works if there is whitespace on both sides

**/
.davz_compProd table {
    border-collapse: collapse;
    margin-bottom: 3em;
    width: 100%;
    background: #fff;
}
.davz_compProd td,
th {
    padding: 0.75em 1.5em;
    text-align: left;
}
.davz_compProd td.err {
    background-color: #e992b9;
    color: #fff;
    font-size: 0.75em;
    text-align: center;
    line-height: 1;
}
.davz_compProd th {
    background-color: white;
    font-weight: bold;
    color: #4c4b4b;
    white-space: nowrap;
    border: 1px solid #ececec;
}
.davz_compProd tbody th {
    background-color: white;
    border-top: 1px solid #ececec;
    border-right: 1px solid #ececec;
}
/*tbody tr:nth-child(2n-1) {
    background-color: #f5f5f5;
    transition: all .125s ease-in-out;
}*/

.davz_compProd tbody tr {
    transition: all .125s ease-in-out;
    border-top: 1px solid #ececec;
}
/*tbody tr:hover {
    background-color: rgba(129,208,177,.3);
}*/

.davz_compProd tbody tr td {
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 30px 1.5em;
}
/* For appearance */

.davz_compProd .sticky-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    margin: 3em 0;
    width: 100%;
}
.davz_compProd .sticky-wrap .sticky-thead,
.davz_compProd .sticky-wrap .sticky-col,
.davz_compProd .sticky-wrap .sticky-intersect {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .125s ease-in-out;
    z-index: 50;
    width: auto;
    /* Prevent table from stretching to full size */
}
.davz_compProd .sticky-wrap .sticky-thead {
    box-shadow: 0 0.25em 0.1em -0.1em rgba(0, 0, 0, .125);
    z-index: 100;
    width: 100%;
    /* Force stretch */
}
.davz_compProd .sticky-wrap .sticky-intersect {
    opacity: 1;
    z-index: 150;
}
.davz_compProd .sticky-wrap .sticky-intersect th {
    background-color: #666;
    color: #eee;
    height: 175px;
}
.davz_compProd .sticky-wrap td,
.davz_compProd .sticky-wrap th {
    box-sizing: border-box;
}
/* Not needed for sticky header/column functionality */

.davz_compProd td.user-name {
    text-transform: capitalize;
}
.davz_compProd .sticky-wrap.overflow-y {
    overflow-y: auto;
    max-height: 50vh;
}
.davz_compProd tbody tr td div {
    max-height: 300px;
    overflow: auto;
}

.davz_compProd table thead tr th .image_cont {
  position: relative;
  text-align: center;
  cursor: pointer;
}


.davz_compProd table thead tr th .image_cont img {
    margin: 0 auto;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}



/* checkbox */


.davz_compProd .check {
  position: relative;
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 auto 1em;
}

@media only screen and (min-width: 1170px) {
.davz_compProd .check {
    margin-bottom: 1.5em;
  }
}

.davz_compProd .check::after, .davz_compProd .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%;
}
.davz_compProd .check::before {
  /* green circle dot */
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  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;
}
.davz_compProd .check::after {
  /* check icon */
  background: url(/cdn/shop/files/cd-check.svg?11797009041286067027) no-repeat center center;
  background-size: 24px 24px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}



.davz_compProd .check::before {
  /* green circle dot */
  background: #9dc997;
  border-color: #9dc997;
  -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);
  }
  60% {
    -webkit-transform: scale(1.6);
  }
  100% {
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes cd-bounce {
  0% {
    -moz-transform: scale(1);
  }
  60% {
    -moz-transform: scale(1.6);
  }
  100% {
    -moz-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);
  }
}


.davz_compProd .check::after {
  /* check icon */
  opacity: 1;
}



/* .davz_compProd .sticky-wrap .sticky-thead,
.davz_compProd .sticky-wrap .sticky-col,
.davz_compProd .sticky-wrap .sticky-intersect {
   margin: 69px 0px 0px;
} */


/*  COMPARE MODAL  */

.modal .compare-modal{
	width: calc(100%-40px);
}