.wowe-price-list {
  counter-reset: item-counter;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-gap: 10px;
}
.wowe-price-list * {
  transition: all 0.3s ease;
}
.wowe-price-list .uk-grid.wowe-has-image {
  margin-left: 0;
}

.wowe-price-list-image {
  max-width: 50%;
}
.wowe-price-list-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.wowe-price-list-price {
  font-size: 16px;
  font-weight: 700;
}

.wowe-price-list-header {
  font-size: 14px;
  max-width: 100%;
}

.wowe-price-list-title {
  color: #444444;
}

.wowe-price-list-description {
  font-size: 12px;
}

.wowe-price-list-separator {
  display: none;
}

.wowe-price-list-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0;
}
.wowe-price-list-item > .uk-grid.uk-grid-collapse {
  width: 100%;
}
.wowe-price-list-item > div[onclick] {
  cursor: pointer;
}

.wowe-price-list-counter {
  margin-right: 15px;
}
.wowe-price-list-counter::before {
  left: 0;
  content: counter(item-counter) ".";
  counter-increment: item-counter;
  line-height: normal;
  top: 50%;
  transform: translate(0, -50%);
  transition: color 0.3s ease;
}

.wowe-price-list-badge {
  position: absolute;
  left: 0;
  top: 0;
  background: red;
  padding: 3px 5px;
  box-sizing: border-box;
  font-family: montserrat, Sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.2em;
  letter-spacing: 1px;
  color: #fff;
  background-color: #ff214f;
  border-radius: 3px;
  -webkit-transform: translate(var(--wowe-price-list-badge-h-offset, 0), var(--wowe-price-list-badge-v-offset, 0)) rotate(var(--wowe-price-list-badge-rotate, 0));
  transform: translate(var(--wowe-price-list-badge-h-offset, 0), var(--wowe-price-list-badge-v-offset, 0)) rotate(var(--wowe-price-list-badge-rotate, 0));
}

.wowe-price-list-cart-icon {
  border: 1px solid #4ab8f8;
  padding: 10px;
  border-radius: 30px;
  font-size: 15px;
}
.wowe-price-list-cart-icon svg {
  width: 1em;
  height: 1em;
  fill: #4ab8f8;
  display: block;
}
.wowe-price-list-cart-icon:hover {
  background-color: #4ab8f8;
}
.wowe-price-list-cart-icon:hover svg {
  fill: #fff;
}

.elementor-widget-wowe-price-list .wowe-price-list {
  list-style: none;
}

@media (min-width: 768px) {
  .wowe-price-list-header {
    font-size: 19px;
    font-weight: 600;
  }
  .wowe-price-list-title {
    max-width: 80%;
  }
  .wowe-price-list-separator {
    margin-left: 10px;
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    height: 0;
    color: #cccccc;
  }
  .wowe-price-list-description {
    font-size: 14px;
    margin: 0;
    color: #999999;
  }
  .wowe-price-list-separator {
    display: inline-block;
  }
}