form.pricing-form {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  max-width: 480px;

  .slider-wrapper {
    margin-bottom: 56px;
  }
  #total-price.glow {
    animation: glow 0.5s infinite alternate;

    @keyframes glow {
      to {
        text-shadow: 0 0 15px #308967;
      }
    }
  }
  .slider {
    border-radius: 3px;
    border: 2px solid #c7d1d3;
    height: 40px;
    width: 100%;
    margin-bottom: 24px;
    position: relative;
    z-index: 20;
    cursor: pointer;

    &::before {
      bottom: 2px;
      content: "";
      left: -2px;
      position: absolute;
      right: 0px;
      top: 2px;
      background: repeating-linear-gradient(
        to right,
        transparent 1px,
        #c7d1d3,
        #c7d1d3 3px,
        transparent 1px,
        transparent calc(16.7% + 1px)
      );
      z-index: 10;
    }

    .slider-progress {
      border-color: black;
      border-bottom-left-radius: 3px;
      border-top-left-radius: 3px;
      border-width: 2px;
      border-style: solid;
      bottom: -2px;
      box-sizing: content-box;
      left: -2px;
      margin: 0;
      position: absolute;
      right: -2px;
      top: -2px;

      &.primary {
        background-color: rgba(58, 165, 124, 0.2);
      }
      &.secondary {
        background-color: rgba(70, 151, 201, 0.2);
      }
    }

    .slider-handle-wrapper {
      cursor: grab;
      padding: 16px;

      .slider-handle {
        border-radius: 6px;
        border: 2px white solid;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
        height: 60px;
        width: 12px;
        position: absolute;
        top: -11px;
        left: 34px;
        z-index: 100;

        &.primary {
          background-color: rgba(58, 165, 124, 1);
        }
        &.secondary {
          background-color: rgba(70, 151, 201, 1);
        }
      }
    }
  }
}
body .tooltip {
  z-index: 100;
}
#community-discount {
  position: absolute;
  right: 50px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  transform: rotate(25deg);
  border-radius: 100%;
  background-color: red;
  color: white;
  font-weight: bold;
  font-size: 16px;
}
