.item-pricing {
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 13px 15px 15px 0px rgba(105, 105, 105, 0.08);
  background: #fff;
  position: relative;
  z-index: 0;
  padding: 50px 40px 60px 40px;
  transition: all 0.2s;
}
.item-pricing::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  background: linear-gradient(40deg, #124ee8, #ab7ee4);
  opacity: 0;
  transition: all 0.2s;
}
.item-pricing::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-position: right top;
  background-repeat: no-repeat;
  transition: all 0.2s;
}
.item-pricing .label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  width: 110px;
  height: 106px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  padding-bottom: 6px;
  transform: translate(50%, -50%) rotateZ(45deg);
}
.item-pricing .no_hidden_sale {
  display: none;
}
.item-pricing .price {
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: #2a2a2a;
  transition: all 0.2s;
}
.item-pricing .price .number {
  font-weight: 500;
  font-size: 40px;
}
.item-pricing .price .unit::before {
  content: "/";
}
.item-pricing .title {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.item-pricing .list-info {
  list-style-type: none;
  margin: 0 -40px 35px -40px;
}
.item-pricing .list-info li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #828282;
  word-break: break-word;
  margin-bottom: 0;
  padding: 20px 20px 20px 20px;
  position: relative;
  transition: all 0.2s;
}
.item-pricing .list-info li i {
  padding: 0 18px 0 0;
  font-size: 18px;
  line-height: 1;
  color: #2a2a2a;
  position: relative;
  top: 1px;
}
.item-pricing .list-info li .text-packages {
  position: relative;
  text-align: center;
  padding: 0;
  margin: 0;
}
.item-pricing .list-info li:nth-child(even) {
  background: rgba(235, 235, 235, 0.3);
}
.item-pricing .bottom-price {
  display: flex;
  justify-content: center;
}
.item-pricing .bottom-price .btn-buy {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: 24px;
  background: #2453e9;
  background: linear-gradient(90deg, #2453e9 0%, #6367e5 42%, #9a78e6 100%);
  padding: 0 45px;
  box-shadow: 13px 15px 15px 0px rgba(105, 105, 105, 0.08);
  transition: all 0.2s;
}
.item-pricing:hover:before {
  opacity: 1;
}
.item-pricing:hover:after {
  opacity: 0.15;
}
.item-pricing:hover .price {
  color: #fff;
}
.item-pricing:hover .title {
  color: #fff;
}
.item-pricing:hover .list-info li {
  color: #edebff;
}
.item-pricing:hover .list-info li i {
  color: #fff;
}
.item-pricing:hover .list-info li:nth-child(even) {
  background: rgba(255, 255, 255, 0.1);
}
.item-pricing:hover .btn-buy {
  color: #2a2a2a;
  background: #fff;
}

@media (max-width: 991px) {
  .item-pricing {
    flex-basis: 30%;
  }
}