.alignItemFlexStart {
  display: flex;
  align-items: center;
}

.alignItemFlexStart.justify-space-between {
  justify-content: space-between;
}

.account-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-block span {
  line-height: 1;
}

.viewWaysToRedeemProduct {
  cursor: pointer;
  border: 1px solid black;
  background: transparent;
  padding: 13px;
  font-size: 15px;
  font-weight: 500;
}

.ex-cart-block-product {
  padding: 16px;
  cursor: pointer;
}

.joinusercartProduct {
  background: #fff;
  display: flex;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 12px;
}

.joinusercartProduct img {
  object-fit: contain;
}

.joinusercartProduct p {
  margin-left: 5px;
  margin: 0px;
}

p#earningTextProduct {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  width: calc(100% - 40px)
}

p#earningTextProductImage {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  width: calc(100% - 80px)
}

.icon-block-rippl {
  width: 40px;
  text-align: center;
  height: 40px;
  margin-right: 10px;
}

p#earningTextProduct_ {
  margin: 0 0 10px;
  line-height: 1;
}

.rippl-impact-slider {
  position: relative;
  background: #fff;
  width: calc(100% - 40px);
  padding: 8px;
  border-radius: 10px;
}

.rippl-impact-slider label {
  width: 5px;
  height: 5px;
  border-radius: 20px;
  background: white;
  margin: 0 5px;
  box-shadow: inset 0 0 0 3px #858585;
  display: inline-block;
  cursor: pointer;
  z-index: 10;
  transition: .3s ease;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 0;
}

.rippl-impact-slider label.lbl-2 {
  right: 10px;
}

.rippl-impact-slider label.lbl-1 {
  right: 20px;
}

.rippl-impact-slider .slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  height: 25px;
}

.rippl-impact-slider .content {
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 50px);
  height: 100%;
  z-index: 5;
  animation: hide .2s ease both;
}

@keyframes show {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes hide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.icon-block-rippl img {
  padding: 3px;
  object-fit: cover;
  height: 40px;
  width: 40px;
  border-radius: 50px;
  border: 1px solid #fff;
}