.pricing-content-wrapper {
  background: white;
  max-width: 56rem;
  width: 100%;
  align-self: center;
  padding: 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;

  .pricing-title {
    line-height: 2.5rem;
    font-size: 2.25rem;
    text-align: center;
    margin: unset;
  }

  .pricing-text {
    max-width: 42rem;
    text-align: center;
  }

  .PricingFormWrapper {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 42rem;
    width: 100%;

    .pricingSwitcher {
      margin-top: 1rem;
      padding: 0.13rem;
      border-radius: 0.5rem;
      background-color: var(--color-background);
      width: fit-content;

      .switcherButton {
        padding: 0.6rem 0.75rem;
        background: transparent;
        border: unset;
        border-radius: 0.5rem;
        cursor: pointer;
      }

      .switcherButton.active {
        padding: 0.5rem 0.75rem;
        background: white;
        font-weight: 700;
      }
    }

    .plansWrapper {
      display: flex;
      width: 100%;
      justify-content: space-between;
      column-gap: 1rem;
      max-width: 42rem;
      margin-top: 1rem;

      .PricingItem {
        padding: 1.25rem;
        width: 100%;
        border: 1px solid var(--color-border);
        border-radius: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: -1rem;
        background-color: white;

        .PricingItemTitle {
          margin: unset;
          font-size: 1.25rem;
          line-height: 1.75rem;
        }

        .priceInfo {
          margin-top: 1rem;
          font-size: .875rem;
          line-height: 24px;
          text-align: center;
        }

        .subsPlansButtons {
          padding: 1rem 0;
          display: flex;
          column-gap: 0.4rem;
          .subsPlan{
            padding: 0.25rem 1rem;
            background: var(--color-background);
            border: unset;
            border-radius: 1rem;
            white-space: nowrap;
            cursor: pointer;
          }

          .subsPlan.active {
            border: solid 1px var(--color-green);
          }
        }

        .home{
          width: 100%;
        }
        .price-wrapper{
          margin-bottom: 2rem;
          .Plan-Price{
            font-size: 1.875rem;
            line-height: 2.25rem;
            font-weight: 600;
          }
          .priceForArticle{
            text-align: center;
          }
        }
      }
    }
  }
}