ul.product-stand {
  list-style-type: none;
  text-align: center;
  padding: 0px;
  background-color: #fff;
  background-image: url("/wp-content/uploads/2015/09/shadow-topbottom.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom center;
  box-shadow: 0px -1px 20px rgba(85, 85, 85, 0.2), -1px 0px 20px rgba(85, 85, 85, 0.2);
  margin-bottom: 35px !important;
  margin-top: 45px !important;
}
ul.product-stand li {
  display: inline-block !important;
  margin-right: 5px;
  margin-bottom: 10px !important;
  width: 24%;
  min-width: 244px;
}
ul.product-stand li:hover {
  cursor: pointer;
}
ul.product-stand li:last-child {
  margin-right: 0;
}
ul.product-stand li div.product-info {
  position: relative;
  margin-top: 10px;
  padding: 0;
  color: #fff;
}
ul.product-stand .product-header {
  position: relative;
}
ul.product-stand .product-bg {
  background-color: #fff;
  width: 100%;
  z-index: 1;
}
ul.product-stand .product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
ul.product-stand .product-type {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 20px;
  z-index: 3;
}
ul.product-stand .product-example {
  line-height: 3em;
  padding-left: 10px;
  padding-right: 10px;
  height: 3em;
  background: #555555;
  color: #ffffff;
  margin-top: -4px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 3;
}
ul.product-stand .product-performance {
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  color: #555555;
}
ul.product-stand .product-performance .product-performance-unit {
  font-size: 12px;
}
ul.product-stand .product-performance .product-performance-power, ul.product-stand .product-performance .product-performance-torque {
  width: 49.6%;
  float: left;
  background-color: #eeeeee;
  padding: 10px 0px 5px 0;
}
ul.product-stand .product-performance .product-performance-torque {
  float: right;
}
ul.product-stand .product-performance .product-performance-difference {
  font-size: 30px;
}
ul.product-stand .product-performance .product-performance-difference .product-performance-unit {
  font-size: 18px;
}
ul.product-stand .actions {
  line-height: 3em;
  height: 3em;
  font-weight: bold;
}
ul.product-stand .actions a.vdb_product_filter_anchor {
  display: block;
  background-color: #16a8c1;
  color: #ffffff;
}
ul.product-stand .actions a.vdb_product_filter_anchor:hover {
  background-color: #555555;
}
ul.product-stand .campaign-price {
  color: white;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  background: #f76d2b;
  padding: 10px;
  margin-top: -3px;
}
ul.product-stand .limited-stock {
  position: absolute;
  top: 36px;
  right: 20px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  background: #555555;
  padding: 5px;
  -ms-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  transform: skewX(-20deg);
}

ul.product-stand.product-clearfix, ul.product-stand .product-clearfix {
  overflow: hidden;
  zoom: 1;
}

@media screen and (max-width: 782px) {
  ul.product-stand {
    margin: 0 !important;
    background-color: transparent;
    background-image: none;
  }
  ul.product-stand li {
    margin-right: 0;
    width: 100%;
    min-width: auto;
  }
}
.chiptuning-indicator {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  z-index: 1000;
  display: inline-block;
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #fff;
}
.chiptuning-indicator.hide {
  display: none;
}
.chiptuning-indicator:before, .chiptuning-indicator:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s xspin linear infinite;
}
.chiptuning-indicator:after {
  color: #dd3333;
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}

@keyframes xspin {
  0%, 100% {
    box-shadow: 0.4em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.4em 0.4em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.4em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.4em 0.4em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.4em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.4em -0.4em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.4em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.4em -0.4em 0 0 currentcolor;
  }
}
/*
.chiptuning-indicator {
    position: fixed;
    top: calc(50% - 50px);
    left: calc(50% - 40px);
    z-index: 1000;
    display: inline-block;
    width: 80px;
    height: 80px;

    &.hide {
        display: none;
    }

    &:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        border-radius: 50%;
        border: 6px solid #d12128;
        border-color: #d12128 transparent #fff transparent;
        animation: indicator 1.2s linear infinite;
    }

    @keyframes indicator {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }
}
*/

/*# sourceMappingURL=frontend.css.map */
