/*Import*/
/*************************************
Wishlist Style
***********************************************/
body {
  padding: 0;
  font-weight: 400;
  overflow-x: hidden;
}
body table.compare-list td.odd {
  border-right: 1px solid #eee;
  background: transparent;
}
.product-price > span,
.product-price ins{
  color: #f0494c;
  font-weight: 700;
  font-size: 20px;
}
.product-price del{
  color: #aaa;
  font-weight: 600;
  font-size: 14px;
}
.woocommerce table.dataTable td {
  padding: 10px;
}
.woocommerce table.compare-list .price td {
  text-decoration: none;
}
.woocommerce table.compare-list td img{
  margin: 0;
  padding: 0;
  border: 0;
}
.woocommerce table.compare-list tr.title td{
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
  color: #000;
}
.product-desc{
  line-height: 24px;
}
.woocommerce table.compare-list thead th, h1 {
  font-weight: normal;
  font-size: 20px;
}
.woocommerce table.compare-list .remove td a{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
}
.woocommerce table.compare-list .remove td a .remove {
  width: 14px;
  height: 14px;
  font-size: 0;
  line-height: 0;
  border-radius: 50%;
  position: relative;
  background: #c50000;
  margin: 0 5px;
}
.woocommerce table.compare-list .remove td a .remove::before,
.woocommerce table.compare-list .remove td a .remove::after{
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  width: 8px;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.woocommerce table.compare-list .remove td a .remove:not(:hover)::before{
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.woocommerce table.compare-list .remove td a .remove:not(:hover)::after{
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.woocommerce table.compare-list .add-to-cart td a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border: 0px !important;
  text-align: center;
  background-color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  background: #f0494c;
  transition: all 0.35s ease-out 0s;
  -webkit-transition: all 0.35s ease-out 0s;
}
.woocommerce table.compare-list .add-to-cart td a:hover{
  background-color: #4c5461;
  color: #fff;
}