/*
 * @FilePath     : /135new/webroot/css/editor_styles/_list/index.css
 */
.price {
  margin-bottom: 9px;
}

.price .price-container,
.price .money {
  cursor: default;
  text-align: left;
  color: #ed2525;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  padding-top: 12px;
}

.price .price-container .price_value {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.price .price-container .price_discount {
  background-color: red;
  color: #fff;
  border-radius: 10px;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0.7) translate(56px, 2%);
  font-size: 12px;
  cursor: pointer;
}

.price .price-container:hover~span.price_discount-wrap {
  display: inline;
}

.price .price_discount-wrap {
  width: 0;
  position: relative;
  display: none;
}

.price .price_discount-wrap:hover {
  display: inline;
}

.price .price_discount-wrap .discount-container {
  width: 260px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transform: translate(-42%, -114%);
  -moz-transform: translate(-42%, -114%);
  -ms-transform: translate(-42%, -114%);
  -o-transform: translate(-42%, -114%);
  transform: translate(-42%, -114%);
  font-size: 12px;
  background-color: rgba(38, 53, 76, 0.9);
  -webkit-box-shadow: 0 4px 12px #00000026;
  box-shadow: 0 4px 12px #00000026;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4px;
}

.price .price_discount-wrap .discount-container::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.price .price_discount-wrap .discount-container::after {
  content: "";
  position: absolute;
  left: 16%;
  bottom: -5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(38, 53, 76, 0.9);
}

.price .price_discount-wrap .discount-container .discount-desc,
.price .price_discount-wrap .discount-container .discount-item {
  font-size: 13px;
  color: #ffffff;
  font-weight: normal;
}

.price .price_discount-wrap .discount-container .discount-item .trigger_upgrade {
  color: #ff793f;
  cursor: pointer;
  margin-left: 4px;
}