@import "integrations";

body.contact_page_eacf7 {
  background: #eff3fe;

  #wpcontent {
    padding: 0;
  }

  #wpfooter {
    display: none;
  }
}

.eacf7-dashboard {
  background: #f5f6fc;
  min-height: 100vh;
  padding-bottom: 60px;

  * {
    box-sizing: border-box;
  }

  &-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
  }

  &-header {
    color: #25252c;
    width: calc(100% + 60px);
    margin-bottom: 30px;
    background: #fff;
    border-bottom: 1px solid #dddddd;
    padding: 15px;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    position: sticky;
    top: 32px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .header-title {
      display: flex;
      align-items: center;
      margin-right: auto;

      img {
        width: 40px;
        margin-right: 7px;
        background: #fff;
        padding: 3px;
        border-radius: 50%;
      }

      &-text {
        line-height: 1;

        h2 {
          color: #212121;
          font-size: 18px;
          font-weight: 600;
          margin: 0 0 5px 0;
        }

        span {
          color: #212121b2;
          font-size: 15px;
          font-style: italic;
        }

        p {
          margin: 0;
        }
      }
    }

    .header-actions {
      display: flex;
      align-items: center;
      margin-left: auto;
      gap: 16px;

      .button {
        padding: 12px 16px;
        border-radius: 7px;
        border: 1px solid;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 400;

        &.docs {
          border-color: $eacf7_color;
        }

        &.upgrade {
          border-color: darken(#F4C430, 10%);
          background: #F4C430;
          color: #fff;

          &:hover {
            background: darken(#F4C430, 10%);
            border-color: #F4C430;
          }
        }
      }
    }
  }

  &-main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 1400px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    gap: 30px;
  }

  &-menu {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    position: sticky;
    top: 132px;
    margin-top: 0;
    gap: 15px;

    .menu-item {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      padding: 10px;
      cursor: pointer;
      color: #4d4d4d;
      transition: all 0.3s ease-in-out;
      border-radius: 7px;
      width: 100%;

      & > span {
        font-size: 0.9rem;
        font-weight: 500;
      }

      .dashicons {
        margin-left: auto;
      }

      &:hover {
        color: $eacf7_color_dark;

        i {
          &.eacf7-icon {
            background-color: $eacf7_color_dark;
          }
        }
      }

      &.active {
        background: $eacf7_color;
        color: #fff;

        img {
          filter: brightness(0) invert(1);
        }
      }

      &.item-get_pro {
        color: #ff9966;

        svg,
        path {
          fill: #ff9966;
        }

        &.active {
          color: #fff;

          i {
            background-color: #fff;
          }
        }

        &:hover {
          color: darken(#ff9966, 10%);

          i {
            background-color: darken(#ff9966, 10%);
          }
        }
      }

      &:has(.submenu) {
        padding-bottom: 0;
        overflow: hidden;
        border: 1px solid #ddd;
      }
    }

    .submenu {
      display: flex;
      flex-direction: column;
      width: calc(100% + 40px);
      background: #f9f9f9;
      margin: 0 -10px 0;
      padding: 10px;

      .submenu-item {
        padding: 12px;
        font-size: 0.85rem;
        border-radius: 5px;
        color: #666;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        border: 1px solid #ddd;
        margin-bottom: 7px;

        &.active {
          > img {
            filter: brightness(0) invert(1);
          }
        }

        img {
          width: 20px;
          height: 20px;
          filter: none;
        }

        i {
          &.eacf7-icon {
            background: $eacf7_color;
          }
        }

        span {
          margin-left: 7px;
        }

        &:hover {
          background: rgba($eacf7_color, 0.1);
          color: $eacf7_color_dark;
        }

        &.active {
          background: $eacf7_color_light;
          color: #fff;
          font-weight: 600;

          & > .eacf7-icon {
            background: #fff;
          }

          .integration-item {
            &.enabled,
            &.active {
              img {
                filter: none;
              }
            }
          }
        }

        &:has(.integrations-items) {
          border-left: none;
          padding-bottom: 2px;
        }
      }
    }

    .integrations-items {
      width: calc(100% + 20px);
      display: flex;
      flex-direction: column;
      background: #fff;
      margin-top: 10px;
      border-radius: 5px;
      border: 1px solid #ddd;
      margin-left: -10px;
      margin-right: -10px;

      .integration-item {
        cursor: pointer;
        padding: 8px 10px;
        transition: all 0.3s ease-in-out;
        margin-bottom: 3px;
        display: flex;
        align-items: center;
        color: #3c434a;
        font-weight: 400;
        font-size: 14px;

        > img {
          margin-right: 7px;
          filter: grayscale(1);
        }

        i {
          &.eacf7-icon {
            background: gray;
          }
        }

        &-status {
          margin-left: auto !important;
          font-size: 12px;
          padding: 4px 7px;
          border-radius: 5px;
          line-height: normal;

          &.disabled {
            background: #f5f5f5;
            color: #999;
          }

          &.active {
            background: rgba($eacf7_color, 0.875);
            color: #fff;
          }

          &.pro-item {
            background: #ffc107;
            color: #fff;
          }
        }

        &.active,
        &:hover {
          color: $eacf7_color;
          background: rgba($eacf7_color, 0.1);

          > i {
            &.eacf7-icon {
              background: $eacf7_color;
            }
          }
        }

        &.enabled {
          > i {
            &.eacf7-icon {
              background: $eacf7_color;
            }
          }
        }
      }
    }

    @media (max-width: 767px) {
      width: 100%;
      border-radius: 0;
      flex-direction: column;
      align-items: normal;
    }

    @media (min-width: 768px) and (max-width: 1199px) {
      overflow: scroll;
    }
  }

  &-content {
    flex: 1;
    width: calc(100% - 350px);
    border-radius: 10px;

    &-header {
      margin-bottom: 20px;

      h2 {
        font-size: 24px;
        font-weight: 500;
      }
    }

    .section-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin: 0 auto 30px auto;

      .section-half {
        justify-content: center;
        width: 48%;
        display: flex;
        flex-wrap: wrap;
        padding: 30px;
        border-radius: 15px;

        .col-image {
          margin-top: auto;
        }

        .col-description {
          text-align: center;
          margin-bottom: 1rem;

          h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1rem 0;
            line-height: 1.5;
          }

          p {
            font-size: 1rem;
          }

          a {
            padding: 15px 20px;
            margin: 20px auto 0 auto;
            text-decoration: none;
            background-color: $eacf7_color;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.25rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: #fff;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            border: none;
            user-select: none;
            line-height: normal;
          }
        }
      }
    }

    section {
      display: flex;
      flex-wrap: wrap;
      padding: 30px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #eee;

      .col-image {
        position: relative;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        background: #fefefe;
        max-width: 100%;
        max-height: 400px; /* optional */

        img,
        iframe {
          width: 100%;
          border-radius: 7px;
          border: 1px solid rgba(#2fb44b, 0.1);
        }

        iframe {
          aspect-ratio: 16/9;
          max-height: 500px;
        }
      }

      &.section-full {
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2rem;

        & > div {
          width: 48%;
        }
      }

      &.section-half {
        justify-content: center;

        .col-description {
          text-align: center;
          margin-bottom: 1rem;
        }

        .col-image {
          margin-top: auto;
        }
      }

      &.section-video-tutorials {
        background: transparent;
        padding: 0;

        .col-image {
          width: 100%;
          max-height: unset;
        }
      }

      &.section-documentation,
      &.section-contact {
        border: 1px solid #eee;

        .col-image {
          box-shadow: none;

          img {
            border: none;
            width: 200px;
          }
        }

        .igd-btn {
          padding: 15px 20px;
          margin: 30px auto 0 auto;

          &:hover {
            color: #fff;
          }
        }
      }

      &.section-pricing {
        background: #fff;
        display: block;
        margin: 0;

        .pricing {
          .pricing-switcher {
            display: flex;
            align-items: center;
            justify-content: center;
            width: max-content;
            margin: 0 auto 40px auto;

            > .switch {
              position: relative;
              width: 70px;
              height: 35px;
              background: $eacf7_color;
              border-radius: 20px;
              cursor: pointer;
              transition: all 0.3s ease;
              margin: 0 15px;
              display: flex;
              align-items: center;
              line-height: 1;

              &:after {
                content: "";
                position: absolute;
                width: 25px;
                height: 25px;
                border-radius: 50%;
                background: #fff;
                left: 5px;
                transition: all 0.3s ease;
              }
            }

            .switch-text {
              color: #5c637e;
              font-size: 1.2rem;
              cursor: pointer;

              &.annual {
                color: $eacf7_color;
                cursor: pointer;
              }

              &.lifetime {
                opacity: 0.5;
              }
            }

            &.active {
              .switch {
                background: $eacf7_color;

                &:after {
                  left: auto;
                  right: 5px;
                }
              }

              .switch-text {
                &.annual {
                  color: #5c637e;
                  opacity: 0.5;
                }

                &.lifetime {
                  color: $eacf7_color;
                  cursor: pointer;
                  opacity: 1;
                }
              }
            }
          }

          .pricing-container {
            display: flex;
            justify-content: flex-start;
            padding-top: 40px;
            overflow: scroll;

            .pricing-card {
              background: white;
              text-align: center;
              padding: 20px;
              min-width: 220px;
              border-bottom: 1px solid #e4e4e7;
              transition: linear 0.4s;
              min-height: 100%;
              display: flex;
              flex-direction: column;
              justify-content: space-between;

              h3 {
                font-size: 22px;
                margin: 0 0 10px 0;
                font-weight: 500;
              }

              &.card-profesion {
                margin-top: -40px;
                margin-bottom: 42px;
                box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
                position: relative;
                padding: 0;

                .card-profe {
                  background: #2fb44b;
                  padding: 10px 15px;

                  h3 {
                    color: #fff;
                    font-size: 18px;
                    font-weight: 700;
                    margin: 0;
                  }
                }
              }

              .pricing-btn {
                .features-btn {
                  color: #2fb44b;
                  font-size: 16px;
                  font-weight: normal;
                  text-transform: capitalize;
                  text-align: left;
                  padding-top: 30px;
                  padding-bottom: 15px;
                  display: block;
                  text-decoration: none;

                  &:focus {
                    box-shadow: none;
                  }
                }
              }

              .plan-name {
                font-weight: bold;
                border-top: 1px solid #eaeeff;
                border-bottom: 1px solid #eaeeff;
                padding: 10px 0;
              }

              .buy-btn-pro {
                color: #fff;
                display: inline-block;
                margin-top: auto;
                padding: 12px 25px;
                width: 100%;
                text-decoration: none;
              }

              &.card-green {
                transition: linear 0.4s;
                border: 1px solid #00bb45;
                border-right: 1px solid #00bb45;
                border-left: 1px solid #00bb45;
                border-bottom: 1px solid #00bb45;

                .price-text {
                  color: #00bb45;
                }

                .plan-name {
                  color: #01c034;
                }

                .btn-green {
                  background: #28a745;
                }
              }

              &.card-orange {
                border-top: 3px solid orange;
                transition: linear 0.4s;

                .price-text {
                  color: #fd7e14;
                }

                .plan-name {
                  color: #fd7e14;
                }

                .btn-orange {
                  background: #fd7e14;
                }
              }

              &.card-blue {
                border-top: 3px solid #007bff;
                border-right: 1px solid #e4e4e7;
                border-left: 1px solid #e4e4e7;
                transition: linear 0.4s;

                .price-text {
                  color: #007bff;
                }

                .plan-name {
                  color: #007bff;
                }

                .btn-blue {
                  background: #007bff;
                }
              }

              &.card-sky-blue {
                border-top: 3px solid #02c4f0;
                border-right: 1px solid #e4e4e7;
                border-left: 1px solid #e4e4e7;
                transition: linear 0.4s;

                .price-text {
                  color: #02c4f0;
                }

                .plan-name {
                  color: #02c4f0;
                }

                .btn-sky-blue {
                  background: #02c4f0;
                }
              }

              &.card-pink {
                border-top: 3px solid #e83e8c;
                transition: linear 0.4s;

                .price-text {
                  color: #e83e8c;
                }

                .plan-name {
                  color: #e83e8c;
                }

                .btn-pink {
                  background: #e83e8c;
                }
              }

              .price-text {
                margin: 1rem 0;
                color: #00bb45;

                .price-value {
                  font-size: 3rem;
                  font-weight: 700;
                  display: none;

                  &:before {
                    content: "$";
                    font-size: 1.5rem;
                    vertical-align: top;
                  }

                  &.free {
                    display: inline-block;
                  }

                  .cent {
                    font-size: 22px;
                    vertical-align: middle;
                  }
                }

                .price-suffix {
                  display: none;
                }

                &.annual {
                  &.license-1 {
                    .price-value.single.annual {
                      display: inline-block;
                    }
                  }

                  &.license-2 {
                    .price-value.two.annual {
                      display: inline-block;
                    }
                  }

                  &.license-5 {
                    .price-value.five.annual {
                      display: inline-block;
                    }
                  }

                  &.license-100 {
                    .price-value.hundred.annual {
                      display: inline-block;
                    }
                  }

                  &.license-unlimited {
                    .price-value.unlimited.annual {
                      display: inline-block;
                    }
                  }

                  .price-suffix.annual {
                    display: inline-block;
                  }
                }

                &.lifetime {
                  &.license-1 {
                    .price-value.single.lifetime {
                      display: inline-block;
                    }
                  }

                  &.license-2 {
                    .price-value.two.lifetime {
                      display: inline-block;
                    }
                  }

                  &.license-5 {
                    .price-value.five.lifetime {
                      display: inline-block;
                    }
                  }

                  &.license-100 {
                    .price-value.hundred.lifetime {
                      display: inline-block;
                    }
                  }

                  &.license-unlimited {
                    .price-value.unlimited.lifetime {
                      display: inline-block;
                    }
                  }

                  .price-suffix.lifetime {
                    display: inline-block;
                  }
                }

                .offer-price {
                  display: none;
                  margin-bottom: 20px;

                  .price-offer {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                  }

                  .price-off {
                    color: #757575;
                    font-weight: 600;
                    font-size: 1.5rem;
                    margin-bottom: 0;
                    text-decoration: line-through;
                  }

                  .price-dis {
                    letter-spacing: -0.004em;
                    color: #fff;
                    font-weight: 500;
                    font-size: 1rem;
                    background: #ffae35;
                    border-radius: 50px;
                    padding: 6px 12px;
                    margin-left: 10px;
                    text-decoration: none !important;
                  }
                }

                &.annual {
                  &.license-1 {
                    .offer-price.single.annual {
                      display: block;
                    }
                  }

                  &.license-2 {
                    .offer-price.two.annual {
                      display: block;
                    }
                  }

                  &.license-5 {
                    .offer-price.five.annual {
                      display: block;
                    }
                  }

                  &.license-100 {
                    .offer-price.hundred.annual {
                      display: block;
                    }
                  }

                  &.license-unlimited {
                    .offer-price.unlimited.annual {
                      display: block;
                    }
                  }

                  .price-suffix.annual {
                    display: inline-block;
                  }
                }

                &.lifetime {
                  &.license-1 {
                    .offer-price.single.lifetime {
                      display: block;
                    }
                  }

                  &.license-2 {
                    .offer-price.two.lifetime {
                      display: block;
                    }
                  }

                  &.license-5 {
                    .offer-price.five.lifetime {
                      display: block;
                    }
                  }

                  &.license-100 {
                    .offer-price.hundred.lifetime {
                      display: block;
                    }
                  }

                  &.license-unlimited {
                    .offer-price.unlimited.lifetime {
                      display: block;
                    }
                  }
                }
              }

              .feature-item {
                margin-top: 1rem;
                display: flex;
                align-items: center;

                i {
                  width: 20px;
                  height: 20px;
                  line-height: 20px;
                  background: $eacf7_color;
                  font-size: 0.8rem;
                  color: #fff;
                  border-radius: 5px;
                  margin-right: 10px;
                  text-align: center;
                }

                span {
                  color: #5c637e;
                  font-weight: normal;
                  font-size: 0.8rem;
                  flex: 1;
                  text-align: left;

                  .hot {
                    border-radius: 3px;
                    background: #ffe7d6;
                    padding: 1px 4px;
                    color: #ce0404;
                    font-size: 0.7rem;
                    font-weight: 400;
                    border: 1px solid #ffe7d6;
                    margin-left: 0px;
                    display: inline-flex;
                    align-items: center;
                    text-transform: uppercase;

                    img {
                      margin-left: 2px;
                    }
                  }

                  .new {
                    border-radius: 3px;
                    background: #00bb45;
                    padding: 1px 4px;
                    color: #fff;
                    padding-right: 0px;
                    font-size: 0.7rem;
                    font-weight: 400;
                  }
                }
              }
            }

            .pricing-head {
              position: relative;
              z-index: 1;

              .pricing-head-title {
                color: #fff;
              }

              .pricing-head-description {
                color: #fff;
              }
            }
          }

          @media (min-width: 1600px) {
            .pricing-container {
            }
          }

          @media (min-width: 1400px) {
            .pricing-container {
            }
          }

          @media (min-width: 1200px) and (max-width: 1399px) {
            .pricing-container {
              .pricing-card {
                padding: 16px 12px;

                h3 {
                  font-size: 22px;
                }

                p {
                  font-size: 11px;
                  margin: 0;
                }

                .price-text {
                  margin: 12px 0px;

                  .offer-price {
                    margin-bottom: 14px;

                    .price-offer {
                      .price-off {
                        font-size: 20px;
                      }

                      .price-dis {
                        font-size: 13px;
                        padding: 4px 8px;
                        margin-left: 8px;
                      }
                    }
                  }

                  .price-value {
                    font-size: 28px;
                  }
                }

                .plan-name {
                  font-size: 11px;
                  padding: 6px 0;
                }

                .feature-item {
                  margin-top: 8px;

                  i {
                    font-size: 12px;
                    width: 16px;
                    height: 16px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                  }

                  span {
                    font-size: 11px;
                  }
                }

                .pricing-btn {
                  .features-btn {
                    font-size: 12px;
                    padding-top: 20px;
                    padding-bottom: 10px;
                  }

                  .buy-btn-pro {
                    padding: 6px 10px;
                  }
                }
              }
            }
          }

          @media (min-width: 992px) and (max-width: 1199.98px) {
            .pricing-container {
              .pricing-card {
                padding: 12px 8px;

                .card-profe {
                  h3 {
                    font-size: 13px !important;
                  }
                }

                h3 {
                  font-size: 16px;
                  margin: 0 0 6px 0;
                }

                p {
                  font-size: 8px;
                  margin: 0;
                }

                .price-text {
                  margin: 6px 0px;

                  .offer-price {
                    margin-bottom: 8px;

                    .price-offer {
                      .price-off {
                        font-size: 12px;
                      }

                      .price-dis {
                        font-size: 10px;
                        padding: 3px 6px;
                        margin-left: 6px;
                      }
                    }
                  }

                  .price-value {
                    &::before {
                      font-size: 15px;
                    }

                    font-size: 15px;
                  }
                }

                .plan-name {
                  font-size: 9px;
                  padding: 4px 0;
                }

                .feature-item {
                  margin-top: 8px;

                  i {
                    font-size: 10px;
                    width: 14px;
                    height: 14px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 6px;
                  }

                  span {
                    font-size: 9px;
                    line-height: 1.5;
                  }
                }

                .pricing-btn {
                  .features-btn {
                    font-size: 9px;
                    padding-top: 9px;
                    padding-bottom: 9px;
                  }

                  .buy-btn-pro {
                    padding: 4px 8px;
                  }
                }
              }
            }
          }

          @media (min-width: 768px) and (max-width: 991.98px) {
            .pricing-switcher {
              margin-bottom: 1.5rem;
            }

            .pricing-container {
              .card-profesion {
                margin-top: 0 !important;
                margin-bottom: 42px;
              }
            }
          }

          @media (max-width: 767.98px) {
            .pricing-switcher {
              margin-bottom: 1.5rem;
            }

            .pricing-container {
              .crad-profesion {
                margin-top: 0px;
                margin-bottom: 42px;
              }
            }
          }
        }

        @media (max-width: 767.98px) {
          margin-bottom: 30px;

          .pricing-switcher {
            margin-bottom: 1rem;
          }
        }
      }

      .review-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        #review-slider {
          width: 100%;

          .slick-dots {
            bottom: -50px;

            button {
              &:before {
                color: rgba($eacf7_color, 0.3);
                width: 18px;
                height: 18px;
                font-size: 18px;
              }

              &.active {
                &::before {
                  color: $eacf7_color;
                }
              }
            }
          }
        }

        .review-item {
          position: relative;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          padding: 24px;
          border-radius: 20px;
          background: #fff;
          border: 1px solid #eee;
          transition: all 0.3s ease-in-out;
          margin: 0 10px;
          width: calc((100% - 40px) / 3);

          h3 {
            font-size: 14px;
            line-height: 1.2;
            font-weight: 500;
            margin: 0 0 12px 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: #212121;
          }

          .rating {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;

            i {
              font-size: 24px;
              background: #ff8f1e;
            }
          }

          p {
            font-size: 16px;
            font-style: italic;
            color: #5c637e;
          }

          .reviewer {
            display: flex;
            align-items: center;
            gap: 10px;

            .avatar {
              background: #b5b5b533;
              border-radius: 50px;
              padding: 11px;

              i {
                background: $eacf7_color;
              }
            }

            h4 {
              color: #212121;
              font-size: 18px;
              font-weight: 700;
              margin: 0;
            }
          }

          .quote {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(150deg, #9cc7ff 12.78%, #1e62b9 87.76%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
          }
        }
      }
    }

    .fields-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;

      .field-item {
        position: relative;
        width: calc(33.333% - 13.33px);
        display: flex;
        align-items: center;
        padding: 15px 15px 15px 10px;
        border-radius: 7px;
        background: #fff;
        border: 1px solid #eee;
        transition: all 0.3s ease-in-out;

        .field-icon {
          width: 35px;
        }

        h3 {
          font-size: 14px;
          font-weight: 500;
          margin: 0 7px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          color: #444;
        }

        .field-item-help {
          cursor: auto;
          margin-right: auto;
          width: 16px;
          height: 16px;
        }

        .eacf7-tooltip {
          margin-left: 5px;
          cursor: pointer;
          max-width: 200px;
          text-align: center;
          font-size: 13px;
        }

        a {
          &:focus,
          &:focus-visible {
            outline: none;
            box-shadow: none;
          }
        }

        .field-item-doc {
          margin: 0 10px;
          width: 16px;
          height: 16px;
          background: #888;
        }

        .field-item-toggle {
          position: relative;
          display: flex;
          align-items: center;

          .components-form-toggle {
            height: 14px;
          }

          .field-item-lock {
            position: absolute;
            top: 2px;
            right: 4px;
            width: 9px;
            pointer-events: none;
          }
        }

        .badge {
          position: absolute;
          top: 0;
          right: 0;
          background: #1e62b9;
          color: #fff;
          padding: 4px 8px;
          position: absolute;
          border-top-right-radius: 7px;
          border-bottom-left-radius: 7px;

          span {
            font-size: 10px;
          }
        }

        &.active {
          border: 1px solid rgba($eacf7_color, 0.3);
          background-color: rgba($eacf7_color_light, 0.07);

          .field-item-toggle {
            background: transparent;

            .field-item-checkbox {
              background: $eacf7_color;
              left: 30px;
            }
          }
        }

        &:hover {
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 767px) {
          width: 100%;
        }
      }

      .no-fields {
        background: #fff;
        padding: 15px 20px;
        border-radius: 7px;

        p {
          margin: 0;
        }
      }
    }

    .content-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.3;
      width: 100%;
      margin-bottom: 30px;

      h2 {
        margin: 0 0 5px 0;
        font-size: 24px;
        line-height: 1.2;
        font-weight: 600;

        span {
          background: linear-gradient(90.03deg, #fe5c73 4.62%, #1e62b9 95.62%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }
      }

      p {
        margin-top: 0;
        font-size: 16px;
        color: #555;
      }

      &.heading-features {
        margin-top: 30px;
      }

      &.align-center {
        align-items: center;
      }

      &.compare-plans {
        margin-top: 60px;
        margin-bottom: 1rem !important;

        h3 {
          span {
            font-size: 1.2rem;
            font-weight: 500;
            margin-right: 7px;

            &.plan-free {
              color: #555;
            }

            &.plan-pro {
              color: $eacf7_color;
            }
          }
        }
      }

      &.heading-overview {
        mark {
          &:after {
            left: -30px;
          }
        }
      }

      &.heading-form-fields {
        mark {
          &:after {
            left: -25px;
          }
        }
      }

      &.heading-settings {
        mark {
          &:after {
            left: -50px;
          }
        }
      }

      &.heading-faq {
        mark {
          &:after {
            left: -30px;
          }
        }
      }

      &.heading-help {
        margin-top: 80px;

        mark {
          &:after {
            left: -80px;
          }
        }
      }

      &.heading-tutorials {
        margin-top: 80px;

        mark {
          &:after {
            left: -40px;
          }
        }
      }

      .eacf7-btn {
        margin-top: 20px;
        padding: 12px 15px;

        svg {
          margin-right: 10px;
          width: 22px;
        }

        svg,
        path {
          fill: #fff;
        }

        &:hover {
          color: #fff;
          background: darken($eacf7_color, 10%);
        }
      }

      @media (max-width: 767px) {
        h2 {
          font-size: 1.5rem;

          mark {
            &:after {
              width: 150px;
            }
          }
        }
      }
    }

    .fields-actions {
      margin-bottom: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;

      .components-button-group {
        padding: 0;
        background: none;

        button {
          border-radius: 5px !important;
          margin: 0 5px;
          font-size: 0.875rem;
        }

        &.items-actions {
          button {
            box-shadow: none;

            &:first-child {
              border: 1px dashed $eacf7_color;
            }

            &:last-child {
              border: 1px dashed #f3754d;

              &:hover {
                background: #f3754d;
                color: #fff;
              }
            }
          }
        }
      }

      .search-wrap {
        margin: 0 20px 0 auto;
        display: flex;
        align-items: center;
        position: relative;

        .search-box {
          border: 1px solid #ddd;
          font-size: 0.875rem;
          padding: 0 12px;
          height: 40px;
          line-height: 1;
        }

        .search-icon {
          position: absolute;
          left: 150px;
          pointer-events: none;
        }

        .dashicons-no-alt {
          cursor: pointer;
          margin-left: 7px;
          color: #999;
          font-size: 28px;
          width: 28px;
          height: 28px;
        }

        &:has(input:placeholder-shown) {
          .dashicons-no-alt {
            display: none;
          }
        }
      }

      @media (max-width: 767px) {
        justify-content: center;

        .items-to-show {
          margin-bottom: 15px;
        }
      }
    }

    .section-heading {
      margin-bottom: 20px;

      h3 {
        margin: 5px 0;
        font-size: 20px;
        font-weight: 500;
      }

      &.heading-fields-wrap {
        margin-top: 30px;
      }
    }

    // Accounts
    .eacf7-account-item {
      padding: 1rem;
      display: flex;
      border: 0 solid transparent;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      border-radius: 0.5rem;
      align-items: center;
      max-width: 450px;
      margin-bottom: 1rem;
      background: #fff;

      img {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
        border-radius: 50%;
      }

      &-info {
        display: flex;
        flex-flow: column;

        .account-name {
          font-size: 1rem;
        }

        .account-email {
          color: #757575;
        }
      }

      &-action {
        margin-left: auto;

        button {
          background-color: #ffe9d9;
          color: #f06500;
          border-color: transparent;
        }
      }

      &:hover {
        button {
          background: #ff9966;
          color: #fff;
        }
      }
    }

    .no-account-placeholder {
      display: flex;
      flex-flow: column;
      align-items: center;
      margin: 0;
      padding: 1.5rem 1rem;
      border-radius: 0.5rem;
      width: 30rem;
      box-shadow: none;
      margin-bottom: 30px;
      background: #eff3fe;

      .placeholder-heading {
        font-size: 1.2rem;
        margin-bottom: 5px;
        font-weight: 500;
      }

      .placeholder-desc {
        font-size: 0.9rem;
        margin: 0;
        color: #555;
      }

      button {
        margin-top: 1.5rem;
        padding: 7px 10px;
        background: #fff;
        color: #555;
        border-radius: 3px;
        border: 1px solid #ccc;

        img {
          width: 24px;
          height: 24px;
          margin-right: 10px;
        }
      }
    }

    .privacy-text-wrap {
      margin-top: 30px;
      user-select: none;
      background: #fff;
      border-radius: 10px;
      padding: 12px 30px 12px 15px;
      border: 1px solid rgba($eacf7_color, 0.1);
      background: rgba($eacf7_color_light, 0.05);

      .privacy-text-btn {
        font-size: 1rem;
        color: #555;
        cursor: pointer;
        display: flex;
        align-items: center;

        img {
          margin-right: 10px;
        }

        span {
          margin: 0 5px;
        }

        i {
          margin-left: auto;
        }
      }

      .privacy-text {
        margin-top: 20px;
        color: #333;
        padding: 20px 10px;
        border-top: 1px solid rgba($eacf7_color, 0.1);

        h4 {
          margin-top: 0;
          margin-bottom: 5px;
          font-size: 1rem;
        }

        p {
          font-size: 0.9rem;
          line-height: 1.5;
        }
      }
    }

    .add-account-btn {
      padding: 10px 15px;
      background: #fff;
      color: #555;
      border-radius: 5px;
      border: 1px solid #ccc;
      cursor: pointer;
      width: max-content;
      display: flex;
      align-items: center;
      line-height: 1;
      text-decoration: none;
      transition: all 0.2s ease-in-out;
      font-size: 14px;

      img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
      }

      &.disabled {
        background: #f5f5f5;
        color: #999;
        cursor: not-allowed;
      }

      &:hover {
        background: #f5f5f5;
      }
    }

    // Getting Started
    .section-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 30px;

      .section-item {
        width: 48%;
      }

      @media (max-width: 767px) {
        flex-direction: column;
        section {
          width: 100% !important;
          margin-bottom: 20px;
        }
      }
    }

    .section-item {
      display: flex;
      flex-wrap: wrap;
      padding: 30px;
      border-radius: 15px;
      background: #fff;

      &.section-full {
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 2rem;
        box-shadow: 0 1px 10px 0 #c8c8c814;

        & > div {
          width: 48%;

          &.col-image {
            width: 44%;
          }

          &.col-description {
            width: 54%;
          }

          &.content-heading,
          &.features-wrap,
          &.popular-plugins-wrap,
          &.fields-actions,
          &.fields-wrap,
          &.settings-wrap,
          &.changelog,
          &.faq,
          &.section-wrap,
          &.video-tutorials,
          &.w-full {
            width: 100%;

            iframe {
              width: 100%;
            }
          }
        }
      }

      &.section-half {
        justify-content: center;

        .col-description {
          text-align: center;
          margin-bottom: 1rem;
        }

        .col-image {
          margin-top: auto;
        }
      }

      .col-description {
        h2 {
          font-size: 1.5rem;
          font-weight: 600;
          margin: 1rem 0;
          display: inline-flex;
          align-items: center;

          .badge {
            background: #2fb44b;
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 1rem;
            margin-left: 10px;
          }
        }
      }

      .col-image {
        img,
        iframe {
          width: 100%;
          border-radius: 7px;
          border: 1px solid rgba(#2fb44b, 0.1);
        }

        iframe {
          aspect-ratio: 16/9;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
      }

      .igd-btn {
        padding: 15px 20px;
        margin: 30px auto 0 auto;
      }

      &.empty {
        border-radius: 0;
        margin: 0;
        border: 0;

        &:not(:last-child) {
          padding-bottom: 0;
        }
      }

      &.section-moneyback {
        padding: 50px;
        margin: 0;
        background-color: $eacf7_color;
        background-image: url("../images/dashboard/pro/moneyback_bg.png");
        color: #fff;
        border-radius: 0;

        h2 {
          color: #fff;
          font-size: 32px;
          font-weight: 600;
        }

        p {
          color: #fff;
          font-size: 16px;
          line-height: 1.2;
          max-width: 670px;
        }

        .card-wrap {
          display: flex;
          align-items: center;
          gap: 30px;

          .card-item {
            width: calc((100% - 60px) / 3);
            background: #1e3f69cc;
            border-radius: 10px;
            border: 0.5px solid #ffffff99;
            padding: 20px;
            text-align: center;

            h3 {
              font-size: 18px;
              color: #fff;
              margin-bottom: 22px;
            }

            img {
            }
          }
        }
      }

      @media (max-width: 767px) {
        flex-direction: column;

        .col-description,
        .col-image {
          width: 100% !important;
        }
      }
    }

    .features-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 30px 20px;
      justify-content: space-between;
      margin-bottom: 30px;
      position: relative;

      .feature-item {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        background: #fff;
        width: calc(33.333% - 20px);
        position: relative;
        border: 1px solid #eee;

        img {
          margin-bottom: 10px;
        }

        h3 {
          font-size: 1rem;
          margin: 10px 0;
        }

        p {
          margin-bottom: 5px;
        }

        .badge {
          background: #1e62b9;
          color: #fff;
          padding: 10px 12px;
          position: absolute;
          top: 0;
          border-top-right-radius: 10px;
          border-bottom-left-radius: 10px;
          right: 0;

          span {
            font-size: 12px;
            line-height: 1;
            font-weight: bold;
          }
        }
      }

      .show-all-btn-wrap {
        width: 100%;
        text-align: center;
        z-index: 1;
        margin-top: -50px;

        .eacf7-btn {
          height: 50px;
          font-size: 1rem;

          &:hover {
            color: #fff;
            background: darken($eacf7_color, 10%);
          }
        }
      }

      &:has(.show-all-btn-wrap) {
        &:after {
          content: "";
          position: absolute;
          bottom: 0;
          width: 100%;
          height: 80%;
          border-radius: 10px;
          background: linear-gradient(to bottom, transparent 20%, #ffffff 90%);
        }
      }

      @media (max-width: 767px) {
        .feature-item {
          width: 100%;
        }
      }
    }

    // Settings
    .settings-wrap {
      display: flex;
      flex-wrap: wrap;
      background: #fff;
      border-radius: 7px;
      padding: 15px;
      border: 1px solid #eee;

      .settings-sidebar {
        width: 250px;
        margin-right: 15px;

        .settings-item {
          cursor: pointer;
          padding: 10px;
          transition: all 0.3s ease-in-out;
          border-radius: 5px;
          margin-bottom: 3px;
          display: flex;
          align-items: center;
          flex-wrap: wrap;

          img {
            margin-right: 7px;
            filter: grayscale(1);
            width: 22px;
          }

          & > span {
            font-weight: 500;
            font-size: 0.875rem;
          }

          &-status {
            margin-left: auto;
            font-size: 12px;
            padding: 4px 7px;
            border-radius: 5px;
            line-height: normal;

            &.disabled {
              background: #f5f5f5;
              color: #999;
            }

            &.active {
              background: rgba($eacf7_color, 0.875);
              color: #fff;
            }
          }

          &.active,
          &:hover {
            background: #eaecf0;

            & > span {
              color: $eacf7_color;
            }

            img {
              filter: none;
            }
          }

          .integrations-items {
            width: 100%;
            display: flex;
            flex-direction: column;
            background: #fff;
            margin-top: 15px;
            border-radius: 5px;
            border: 1px solid #ddd;

            .integration-item {
              cursor: pointer;
              padding: 8px 10px;
              transition: all 0.3s ease-in-out;
              margin-bottom: 3px;
              display: flex;
              align-items: center;

              img {
                margin-right: 7px;
                filter: grayscale(1);
              }

              &-status {
                margin-left: auto;
                font-size: 12px;
                padding: 4px 7px;
                border-radius: 5px;
                line-height: normal;

                &.disabled {
                  background: #f5f5f5;
                  color: #999;
                }

                &.active {
                  background: rgba($eacf7_color, 0.875);
                  color: #fff;
                }

                &.pro-item {
                  background: #ffc107;
                  color: #fff;
                }
              }

              &.active,
              &:hover {
                color: $eacf7_color;
                background: rgba($eacf7_color, 0.1);

                img {
                  filter: none;
                }
              }

              &.enabled {
                img {
                  filter: none;
                }
              }
            }
          }
        }
      }

      .settings-body {
        flex: 1;

        &-wrap {
          flex: 1;
          background: #fff;
          border-radius: 10px;
          padding: 25px;
        }

        .settings-header {
          margin-bottom: 20px;
          border-bottom: 1px solid #eee;
          padding-bottom: 10px;
          display: flex;
          align-items: center;
          justify-content: space-between;

          .header-content {
            display: flex;
            align-items: center;
            gap: 10px;

            img {
              width: 40px;
              height: 40px;
            }

            .header-title {
              display: flex;
              flex-direction: column;

              h3 {
                font-size: 20px;
                font-weight: 500;
                margin-top: 0;
                margin-bottom: 0;
                color: #333;
              }

              p {
                font-size: 0.875rem;
                margin: 3px 0 0;
                color: #555;
              }
            }
          }

          .btn-outline {
            min-width: 100px;
          }
        }

        .settings-content {
          .settings-field {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            margin-bottom: 20px;
            background: #fff;
            border-radius: 10px;
            padding: 20px 20px;
            border: 1px solid #eee;

            .pro-feature {
              opacity: 0.7;
            }

            &-label {
              width: 250px;
              font-size: 0.9rem;
              font-weight: 500;
              display: flex;
              justify-content: space-between;
              align-items: center;
              margin-right: 20px;
              line-height: 1.5;
              margin-top: 8px;
              margin-bottom: 0;

              &:after {
                content: ":";
                margin-left: auto;
              }
            }

            &-content {
              flex: 1;
              display: flex;
              flex-direction: column;
              width: 100%;

              input[type="text"],
              input[type="email"],
              input[type="number"],
              select,
              .components-select-control {
                width: 300px;
                height: 40px !important;
                border-color: #ddd;
                border-radius: 5px !important;
                max-width: 100%;

                &.folder-naming-template {
                  width: 500px;
                }

                &:focus {
                  border-color: inherit;
                  box-shadow: none;
                }
              }

              .eacf7-text-control,
              .eacf7-form-control,
              .eacf7-color-picker-wrapper {
                width: max-content;
              }

              .components-input-control__container {
                width: 300px;
              }

              .components-input-control__backdrop {
                border-color: #ddd !important;
                border-radius: 5px !important;
                height: 40px;
              }

              .components-button {
                color: #fff;
                background-color: #4d4d4d;

                &.is-primary {
                  color: #fff;
                  background-color: #3265a6;
                  box-shadow: inset 0 0 0 1px #3265a6;
                }

                &.is-secondary {
                  box-shadow: inset 0 0 0 1px #4d4d4d;
                }
              }

              .eacf7-color-palette {
                max-width: 100%;
                position: relative;
                border: 1px solid #e5e5e5;
                padding: 11px;
                border-radius: 10px;
                background: #fff;

                legend {
                  display: none;
                }

                .components-dropdown {
                  width: max-content;
                }

                .components-color-palette__custom-color-button {
                  width: 100px;
                  height: 40px;
                  border-radius: 5px;

                  .components-truncate {
                    display: none;
                  }

                  .components-color-palette__custom-color-value {
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    overflow: hidden;
                  }
                }

                .components-popover {
                  left: 0 !important;

                  .components-popover__content {
                    outline-color: rgba(#ddd, 0.5);
                    border-radius: 5px;
                    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
                    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;

                    .react-colorful {
                      & + div {
                        padding-top: 0;
                        display: flex;

                        & > div {
                          &:first-child {
                            width: auto;
                            padding-right: 0;

                            & > button {
                              margin-left: 5px;
                            }
                          }

                          &:last-child {
                            padding: 5px;
                            flex: 1;
                          }
                        }
                      }
                    }

                    .react-colorful__saturation {
                      height: 100px;
                      margin-bottom: 10px;
                    }

                    .components-input-control__container {
                      width: 100%;

                      .components-spacer {
                        margin-left: 10px;
                      }

                      input {
                        height: 30px;
                        min-height: 30px;
                        padding-right: 5px;
                      }

                      select {
                        height: auto !important;
                      }

                      .components-input-control__backdrop {
                        border-color: #ddd;
                        border-radius: 5px;
                        height: auto !important;
                      }
                    }

                    /* width */
                    &::-webkit-scrollbar {
                      width: 5px;
                    }

                    /* Track */
                    &::-webkit-scrollbar-track {
                      background: #f1f1f1;
                    }

                    /* Handle */
                    &::-webkit-scrollbar-thumb {
                      background: #888;
                    }

                    /* Handle on hover */
                    &::-webkit-scrollbar-thumb:hover {
                      background: #555;
                    }
                  }
                }

                .components-circular-option-picker__custom-clear-wrapper {
                  position: absolute;
                  margin: 0;
                  left: 120px;
                  top: 15px;

                  button {
                    color: #675ed5 !important;
                    background: #fff !important;
                    border: 1px solid rgba(#675ed5, 0.25) !important;
                    box-shadow: none;
                    font-size: 0.875rem;
                    height: 32px;
                    width: 60px;
                    text-align: center;
                    border-radius: 5px;
                    padding: 5px 12px;

                    &:hover {
                      color: #fff;
                      background: #675ed5;
                      border: 1px solid rgba(#675ed5, 0.25);
                    }
                  }
                }

                .components-color-palette__custom-color-text-wrapper {
                  position: absolute;
                  box-shadow: none;
                  pointer-events: none;
                }

                .components-circular-option-picker__option {
                  &:before,
                  &:after {
                    width: auto;
                    height: auto;
                  }

                  .components-tooltip {
                    display: none;
                  }
                }

                .components-select-control {
                  .components-input-control__backdrop {
                    display: block;
                    border-color: #ddd !important;
                    border-radius: 5px !important;
                  }
                }

                &.disabled {
                  opacity: 0.5;
                }
              }

              .eacf7-textarea {
                max-width: 500px;

                textarea {
                  border-color: #ddd;
                  border-radius: 5px !important;
                }
              }

              .components-range-control {
                width: 350px;
                margin-top: 15px;

                .components-range-control__wrapper {
                  color: $eacf7_color;
                  margin-bottom: 0;

                  .components-range-control__mark-label {
                    top: 20px;
                  }

                  .components-range-control__thumb-wrapper {
                    span {
                      background: $eacf7_color;
                    }
                  }
                }

                .components-input-control__input {
                  width: auto;
                  height: auto;
                  padding: 0 0 0 10px;
                }

                .components-input-control__backdrop {
                  border-color: #ddd;
                }

                .components-range-control__reset {
                  background-color: #f8d7da;
                  color: #d8000c;
                  box-shadow: none;
                  border: 1px solid rgba(#d8000c, 0.3);
                }

                .components-number-control {
                  .components-input-control__container {
                    width: 80px;

                    .components-input-control__input {
                      padding: 0 10px;
                      width: 100%;
                    }
                  }
                }
              }

              &.disabled {
                button,
                .eacf7-select,
                .components-form-toggle {
                  opacity: 0.5;
                }
              }

              .telegram-bot-status {
                .eacf7-btn {
                  width: max-content;

                  &.eacf7-btn-online {
                    background-color: rgba($eacf7_color, 1);
                    color: #fff;
                  }
                }

                p {
                  margin-top: 5px;
                  margin-bottom: 0;
                }
              }

              .active-campaign-status,
              .drip-status {
                p {
                  margin: 0;
                }
              }

              .eacf7-btn {
                width: max-content;

                &.btn-primary {
                  margin-top: 7px;
                  background: #007bff;

                  &:hover {
                    background: #0069d9;
                  }
                }

                &.btn-info {
                  background-color: #b4d8e7;
                  border-color: #b4d8e7;
                  color: #1f4e6e;

                  &:hover {
                    background-color: #00a5e6;
                  }
                }

                &.btn-danger {
                  background-color: #f8d7da;
                  border-color: #f8d7da;
                  color: #d8000c;

                  &:hover {
                    background-color: #f5c6cb;
                  }
                }
              }
            }

            .description {
              margin-top: 7px;
              margin-bottom: 0;
              color: #666;
              display: flex;
              align-items: center;
              flex-wrap: wrap;
              font-size: 0.875rem;

              .eacf7-btn {
                margin-left: 15px;
              }

              strong {
                margin-right: 3px;

                &:not(:first-child) {
                  margin-left: 3px;
                }
              }
            }

            .template-tags-title {
              font-size: 0.875rem;
            }

            &.field-custom-css {
              flex-direction: column;
              align-items: flex-start;

              .settings-field-label {
                width: 100%;

                &:after {
                  content: "";
                }
              }

              .eacf7-textarea,
              textarea {
                width: 100%;
                max-width: 100%;
              }

              .description {
                font-size: 1rem;
                margin-bottom: 20px;
              }

              .CodeMirror {
                border: 1px solid #ddd;
                border-radius: 5px;
              }
            }

            &.field-naming-template {
              input[type="text"] {
                width: 100%;
              }
            }

            &.field-google-accounts {
              flex-direction: column;
              align-items: flex-start;

              .settings-field-label {
                width: 100%;
                margin-bottom: 0;

                &:after {
                  content: "";
                }
              }

              .description {
                margin-bottom: 20px;
                margin-top: 5px;
              }
            }

            &-sub {
              display: flex;
              flex-direction: column;
              width: 100%;

              .settings-field {
                flex-direction: column;
                align-items: flex-start;
                margin-top: 15px;
                margin-bottom: 0;
                display: flex;
                border: 1px dashed #ddd;
                padding: 15px;
                border-radius: 7px;
                width: 100%;

                &-label {
                  margin-bottom: 10px;
                  margin-right: 0;
                  width: auto;

                  &:after {
                    content: "";
                    display: none;
                  }
                }

                &-content {
                  width: 100%;
                  margin-left: 0;

                  & + .settings-field-label {
                    margin-top: 10px;
                  }
                }
              }
            }
          }

          .collapse-wrapper {
            border: 1px solid #eee;
            background: #fff;
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 15px;

            .collapse-header {
              display: flex;
              align-items: center;
              cursor: pointer;

              .header-title {
                h3 {
                  font-size: 18px;
                  margin-top: 0;
                  margin-bottom: 5px;
                  color: #333;
                  line-height: 1;
                  display: flex;
                  align-items: center;

                  img {
                    margin-right: 10px;
                    width: 25px;
                  }
                }

                p {
                  margin-bottom: 0;
                  margin-top: 5px;
                  color: #555;
                }
              }

              .collapse-toggle {
                margin-left: auto;
                cursor: pointer;
              }
            }

            .collapse-content {
              margin-top: 15px;

              .metafield-wrap {
                .components-input-control__backdrop {
                  height: 33px;
                }
              }

              .settings-field {
                background: rgba(245, 246, 250, 1);

                &.full-width {
                  h4 {
                    width: 100%;

                    &::after {
                      content: "";
                    }
                  }
                }

                &.conditional {
                  h4 {
                    margin-bottom: 10px;
                  }
                }

                &:last-child {
                  margin-bottom: 0;
                }
              }

              .eacf7-trigger-group {
                display: flex;
                flex-wrap: wrap;
                align-items: flex-end;
                justify-content: space-between;
                margin-bottom: 1.2rem;
                width: 100%;

                .group-item {
                  display: flex;
                  flex-direction: column;
                  flex: 1;
                  margin-right: 20px;

                  .group-item-header {
                    display: flex;
                    flex-direction: column;
                    margin: 7px 5px;

                    .header-title {
                      font-size: 1rem;
                      font-weight: 500;
                      line-height: 1.5;
                      color: #333;
                    }
                  }

                  .input-group {
                    width: 100%;
                    display: flex;
                    align-items: flex-start;
                    flex-wrap: nowrap;

                    .content {
                      min-height: 26px;
                    }

                    input {
                      width: 100%;
                      border: 1px solid #ddd;
                      padding: 0.5rem;
                      height: 40px;
                      border-radius: 7px;
                    }

                    .components-base-control,
                    .components-select-control {
                      width: 100%;

                      .components-base-control__field {
                        margin: 0;

                        .components-select-control__input {
                          height: 40px !important;
                          padding: 0 !important;
                          padding-left: 15px !important;
                          margin-top: 0 !important;
                        }

                        .components-input-control__backdrop {
                          border-radius: 7px !important;
                          border-color: #e5e5e5 !important;
                          height: 40px;
                        }
                      }
                    }
                  }
                }

                .eacf7-btn {
                  &.btn-danger {
                    border-color: #f8d7da;
                    background-color: #f8d7da;
                    color: #d8000c;
                    display: inline-flex;
                    height: 40px;
                    width: max-content;
                    align-items: center;
                    justify-content: center;

                    i {
                      margin: 0;
                    }
                  }
                }
              }

              .eacf7-coupons-table {
                width: 100%;
                border: 1px solid #ddd;
                border-collapse: collapse;
                margin-bottom: 20px;

                th,
                td {
                  border: 1px solid #ddd;
                  text-align: center;
                  padding: 6px 12px;

                  .coupon-actions {
                    display: flex;
                    justify-content: center;
                    gap: 5px;

                    button {
                      &.eacf7-btn {
                        height: auto;
                        padding: 6px;
                        border: none;

                        i {
                          font-size: 12px;
                          line-height: 1;
                          height: 12px;
                          width: 12px;
                          margin: 0;
                        }

                        &.btn-edit {
                          background: #6f7071;
                        }

                        &.btn-delete {
                          background: #f8d7da;
                          color: #d8000c;
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }

      @media (max-width: 767px) {
        .settings-sidebar {
          width: 100%;
          margin-right: 0;
          margin-bottom: 20px;

          .settings-item {
            width: 100%;
            padding: 10px;
            font-size: 0.875rem;

            img {
              width: 20px;
              height: 20px;
            }

            & > span {
              font-size: 0.875rem;
            }
          }
        }

        .settings-body {
          padding-left: 0;
          border-left: 0;

          .settings-header {
            display: none;
          }

          .settings-content {
            .settings-field {
              width: 100%;

              &-label {
                width: 100%;
                margin-bottom: 10px;
                margin-right: 0;

                &:after {
                  content: "";
                  display: none;
                }
              }

              &-content {
                width: 100%;
                margin-left: 0;
              }
            }

            .collapse-wrapper {
              padding: 15px;
            }
          }
        }
      }
    }

    @media (max-width: 767px) {
      padding: 10px;
    }

    p {
      font-size: 15px;
      line-height: 1.6;
      margin: 0 0 16px;
      color: #5c637e;

      &.success {
        background: green;
        width: max-content;
        padding: 5px 10px;
        border-radius: 8px;
        color: #ffff;
        font-size: 12px;
        margin: 10px 0 0;
      }

      &.error {
        background: red;
        width: max-content;
        padding: 5px 10px;
        border-radius: 8px;
        color: white;
        font-size: 12px;
        margin: 10px 0 0;
      }

      &.loading {
        background: royalblue;
        width: max-content;
        padding: 5px 10px;
        border-radius: 8px;
        color: white;
        font-size: 12px;
        margin: 10px 0 0;
      }
    }

    li {
      font-size: 0.975rem;
      margin-bottom: 15px;
      line-height: 1.5;
    }

    h4 {
      font-size: 1rem;
    }
  }

  .log {
    border-radius: 15px;
    margin-bottom: 20px;

    &-header {
      display: flex;
      align-items: center;
      cursor: pointer;
      padding: 20px;
      background: rgba(#2fb44b, 0.0875);
      border-radius: 15px;

      span {
        font-size: 1rem;
        font-weight: 500;
        margin-right: 10px;

        &.log-version {
          background: $eacf7_color;
          color: #fff;
          padding: 5px 10px;
          border-radius: 5px;
        }
      }

      i {
        margin-left: auto;
        background: $eacf7_color;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 50%;
        height: 25px;
        width: 25px;
      }
    }

    &-body {
      display: none;

      .log-section {
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(#2fb44b, 0.1);

        &:last-child {
          border-bottom: none;
        }
      }

      .log-item {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 10px;
        display: flex;
        align-items: center;

        i {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          margin-right: 10px;
          border-radius: 50%;
          height: 25px;
          width: 25px;
          padding: 5px;
        }

        &-new {
          color: #3265a6;

          i {
            background: #3265a6;
            color: #fff;
          }
        }

        &-fix {
          color: #2fb44b;

          i {
            background: #2fb44b;
            color: #fff;
          }
        }

        &-enhancement {
          color: #f5a623;

          i {
            background: #f5a623;
            color: #fff;
          }
        }

        &-remove {
          color: #f3754d;

          i {
            background: transparent;
          }
        }
      }
    }

    &.active {
      border: 1px solid rgba(#2fb44b, 0.3);

      .log-header {
        border-bottom: 1px solid rgba(#2fb44b, 0.3);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
      }

      .log-body {
        display: block;
        padding: 20px;
      }
    }
  }

  .free-vs-pro {
    h2 {
    }

    &-wrap {
      margin: 10px 0;
      font-size: 24px;
      font-weight: 500;

      span {
        margin: 0 5px;
      }

      span:first-child {
        color: #7a7a7a;
      }

      span:last-child {
        color: $eacf7_color_dark;
      }
    }
  }

  .features-list {
    background: #eff3fe;
    border-radius: 15px;
    margin: 0 auto;

    .list-header {
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      color: #fff;
      display: flex;
      align-items: center;
      padding: 20px 30px;
      font-size: 1.2rem;
      border-bottom: 1px solid rgba($eacf7_color, 0.1);
      font-weight: 600;
      background: $eacf7_color;

      .feature-title {
        width: 75%;
      }

      .feature-free {
        width: 12%;
      }

      .feature-pro {
        width: 12%;
        margin-left: auto;
        text-align: center;
      }
    }

    .feature {
      display: flex;
      align-items: center;
      padding: 15px 20px;
      font-size: 1rem;
      font-weight: 500;
      border-right: 1px solid rgba($eacf7_color, 0.1);
      border-left: 1px solid rgba($eacf7_color, 0.1);
      border-bottom: 1px solid rgba($eacf7_color, 0.1);
      background-color: rgba($eacf7_color, 0.05);

      &:nth-child(odd) {
        background-color: #fff;
      }

      &:last-child {
        border-bottom: none;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
      }

      .feature-title {
        width: 75%;
        display: flex;
        align-items: center;
        gap: 16px;
      }

      i {
        color: #fff;
        background: $eacf7_color;
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;

        &.dashicons-no-alt {
          background: #fe8483;
        }
      }

      .feature-free {
        width: 12%;
      }

      .feature-pro {
        width: 12%;
        margin-left: auto;
        text-align: center;
      }
    }
  }

  .get-pro-cta {
    display: flex;
    align-items: center;
    background: url("../images/dashboard/pro/bg.png") rgba(30, 98, 185, 1) no-repeat left center;
    border-radius: 15px;
    padding: 30px;
    margin: 15px auto;

    &.pro-cta {
      background: url("../images/dashboard/pro/bg2.png") rgba(30, 98, 185, 1) no-repeat left center;
    }

    .cta-content {
      display: flex;
      flex-direction: column;
      width: 70%;

      h2 {
        margin-bottom: 5px;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.3;
        color: #fff;
      }

      p {
        color: #fff;
        margin-bottom: 28px;
      }
    }

    .cta-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-start;

      .eacf7-btn {
        padding: 15px 20px;
        background: #ffffff;
        color: #1e62b9;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2;
        border-radius: 5px;

        img {
          margin-right: 10px;
        }

        &:hover {
          background: $eacf7_color_light;
          color: #fff;
        }
      }
    }

    .cta-img {
      img {
        max-width: 90%;
      }
    }

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      text-align: center;

      .cta-content {
        width: 100%;
        margin-bottom: 20px;
      }

      .cta-btn {
        margin: auto;
      }

      .cta-img {
        display: none;
      }
    }
  }

  .demo-cta {
    display: flex;
    align-items: center;
    background: #274974 url("../images/dashboard/pro/bg3.png") no-repeat left center;
    background-size: 100% 100%;
    border-radius: 15px;
    padding: 30px;
    margin: 0 auto 15px auto;

    .cta-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 70%;

      h2 {
        margin-bottom: 5px;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.3;
        color: #fff;
      }

      p {
        color: #fff;
        margin-bottom: 40px;
      }
    }

    .cta-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;

      .eacf7-btn {
        padding: 15px 20px;
        background: #fff;
        color: #1e62b9;
        gap: 10px;
        font-weight: 600;
        line-height: 1.2;

        &:hover {
          background: $eacf7_color_light;
          color: #fff;
        }
      }
    }

    .cta-img {
      img {
        max-width: 90%;
      }
    }

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      text-align: center;

      .cta-content {
        width: 100%;
        margin-bottom: 20px;
      }

      .cta-btn {
        width: 100%;
      }

      .cta-img {
        display: none;
      }
    }
  }

  .facebook-cta {
    display: flex;
    align-items: center;
    background: url("../images/getting-started/cta-bg.png") no-repeat center/cover,
    #eaf7ed;
    border-radius: 15px;
    padding: 30px 60px;
    margin: 60px 0;

    .cta-content {
      display: flex;
      flex-direction: column;
      width: 60%;

      h2 {
        margin-bottom: 5px;
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.3;
      }
    }

    .cta-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;

      .eacf7-btn {
        padding: 15px 20px;
      }
    }

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      text-align: center;

      .cta-content {
        width: 100%;
        margin-bottom: 20px;
      }

      .cta-btn {
        width: 100%;
      }
    }
  }

  .faq-item {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    width: 100%;
    margin: 0 auto 20px auto;
    max-width: 100%;
    flex-direction: column;
    user-select: none;

    .faq-header {
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #edf5ff;
      padding: 15px 20px;

      i {
        font-size: 1.2rem;
        transition: all 0.3s ease-in-out;
        background: #fff;
        color: #333;
        width: 35px;
        height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #ddd;
      }

      h3 {
        font-size: 1.2rem;
        margin: 0;
        line-height: 1.5;
        font-weight: normal;
      }
    }

    .faq-body {
      display: none;
      line-height: 1.5;
      padding: 20px;

      p {
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 1rem;
        color: #444;
      }
    }

    &.active {
      border: 1px solid $eacf7_color;

      .faq-header {
        i {
          background: $eacf7_color;
          color: #fff;
          transform: rotate(180deg);
        }
      }

      .faq-body {
        display: block;
      }
    }

    @media (max-width: 767px) {
      .faq-header {
        padding: 10px 15px;

        i {
          width: 30px;
          height: 30px;
          font-size: 1rem;
        }

        h3 {
          font-size: 1rem;
        }
      }

      .faq-body {
        padding: 15px;
      }
    }
  }

  .changelog-item {
    border: 1px solid #c4deff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    width: 100%;
    margin: 0 auto 20px auto;
    max-width: 100%;
    flex-direction: column;
    user-select: none;

    .header {
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #edf5ff;
      padding: 17px 23px;

      .version {
        background: rgba($eacf7_color, 1);
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        margin-right: 10px;
      }

      .date {
        font-size: 1rem;
        font-weight: 500;
        margin-right: 10px;
      }

      i {
        font-size: 1.2rem;
        transition: all 0.3s ease-in-out;
        background: $eacf7_color;
        color: #fff;
        width: 35px;
        height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
      }

      h3 {
        font-size: 1.2rem;
        margin: 0;
      }
    }

    .body {
      display: none;
      line-height: 1.5;
      padding: 10px 23px;

      .log-item-wrap {
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(47, 180, 75, 0.1);

        .log-item {
          font-size: 1rem;
          line-height: 1.5;
          margin-bottom: 10px;
          display: flex;
          align-items: center;

          i {
            background: #3265a6;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            border-radius: 50%;
            height: 25px;
            width: 25px;
            padding: 5px;
          }

          &-fix {
            color: #2fb44b;

            i {
              background: #2fb44b;
            }
          }

          &-enhancement {
            color: #f5a623;

            i {
              background: #f5a623;
            }
          }
        }

        &:last-child {
          border-bottom: none;
        }
      }

      p {
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 1rem;
        color: #444;
      }
    }

    &.active {
      .header {
        i {
          color: #5c637e;
          background: #fff;
          transform: rotate(180deg);
        }
      }

      .body {
        display: block;
      }
    }
  }

  .components-form-toggle {
    line-height: normal;
    width: max-content;

    &.is-checked .components-form-toggle__track {
      background-color: $eacf7_color;
      border-color: $eacf7_color;
    }

    &.disabled {
      opacity: 0.5;
    }
  }

  .popular-plugins-wrap {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: auto;

    .popular-plugin-item {
      display: flex;
      align-items: center;
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 10px;
      margin-bottom: 15px;
      background: #fff;

      img {
        width: 70px;
        height: 70px;
        margin-right: 15px;
      }

      .plugin-info {
        display: flex;
        flex-direction: column;

        h3 {
          font-size: 18px;
          font-weight: 500;
          margin-bottom: 0;
          margin-top: 0;
          color: #151826;
        }

        p {
          color: #5c637e;
          font-size: 14px;
          margin-top: 5px;
          margin-bottom: 0;
        }

        .users-count {
          display: flex;
          align-items: center;
          font-size: 14px;
          line-height: 1.5;
          font-weight: 400;
          color: #555;
          margin: 7px 0 0 0;
          padding: 2px 5px 2px 8px;
          border-left: 3px solid var(--plugin-color);
          background: linear-gradient(
                          to right,
                          var(--plugin-color) -150%,
                          transparent 95%
          );
          background-repeat: no-repeat;
          background-size: 120px;
          border-radius: 5px;

          i {
            margin-right: 3px;
          }
        }
      }

      .components-button-group {
        display: flex;
        gap: 10px;
        margin-left: auto;

        .eacf7-btn {
          padding: 8px 12px;
          font-size: 0.875rem;
          height: 40px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          border-radius: 5px;
          box-shadow: none;
          border: 1px solid transparent;
          transition: background-color 0.3s ease;
          color: #fff;
          white-space: nowrap;
          text-decoration: none;

          &.btn-install {
            color: $eacf7_color;
            background: transparent;
            border-color: darken($eacf7_color, 10%);

            &:hover {
              color: #fff;
              background-color: darken($eacf7_color, 10%);
            }
          }

          &.btn-primary {
            background-color: #a6cfe166;
            color: #202224;

            &:hover {
              background-color: darken(#a6cfe166, 10%);
            }
          }
        }
      }
    }

    @media (max-width: 767px) {
      .popular-plugin-item {
        flex-direction: column;
        align-items: flex-start;

        img {
          width: 50px;
          height: 50px;
          margin-bottom: 10px;
        }

        .plugin-info {
          h3 {
            font-size: 1rem;
          }
        }

        .components-button-group {
          margin-top: 10px;
          width: 100%;
          justify-content: space-between;
        }
      }
    }
  }
}

#coupon-editor {
  overflow-y: auto;
  max-height: 600px;

  .settings-content {
    .settings-field {
      display: flex;
      flex-wrap: nowrap;
      margin-bottom: 20px;
      background: #fff;
      border-radius: 10px;
      padding: 20px 20px;
      border: 1px solid #eee;

      &.pro-feature {
        .components-form-toggle,
        .progressbar-style,
        .eacf7-color-picker-wrapper,
        .eacf7-radio-group,
        .eacf7-range-control,
        .eacf7-text-control,
        .eacf7-select-control,
        .eacf7-upload-btn {
          opacity: 0.7;
        }
      }

      &-label {
        width: 120px;
        font-size: 0.9rem;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        margin-right: 20px;
        line-height: 1.5;
        margin-top: 0;
        margin-bottom: 0;

        &:after {
          content: ":";
          margin-left: auto;
        }
      }

      &-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        width: 100%;

        .components-base-control__field {
          max-width: 300px;

          .components-text-control__input {
            padding: 6px;
            border-color: #ddd;
            border-radius: 5px !important;
            height: 40px;
          }
        }

        .eacf7-select-control {
          max-width: 300px;

          div[class*="menu"] {
            z-index: 99;
          }
        }

        input[type="text"] {
          input[type="email"],
          input[type="number"],
          select,
          .components-select-control {
            width: 300px;
            height: 40px !important;
            border-color: #ddd;
            border-radius: 5px !important;
            max-width: 100%;

            &#react-select-2-input {
              height: 30px !important;
            }

            &:focus {
              border-color: inherit;
              box-shadow: none;
            }
          }

          .eacf7-text-control,
          .eacf7-form-control {
            width: max-content;
          }

          .components-input-control__container {
            width: 300px;
          }

          .components-input-control__backdrop {
            border-color: #ddd !important;
            border-radius: 5px !important;
            height: 45px;
          }

          .components-button {
            color: #fff;
            background-color: #4d4d4d;

            &.is-primary {
              color: #fff;
              background-color: #3265a6;
              box-shadow: inset 0 0 0 1px #3265a6;
            }

            &.is-secondary {
              box-shadow: inset 0 0 0 1px #4d4d4d;
            }
          }

          .components-button-group {
            display: flex;
            justify-content: flex-start;
          }

          .eacf7-textarea {
            max-width: 500px;

            textarea {
              border-color: #ddd;
              border-radius: 5px !important;
            }
          }

          &.disabled {
            button,
            .eacf7-select,
            .components-form-toggle {
              opacity: 0.5;
            }
          }

          .eacf7-btn {
            width: max-content;

            &.btn-primary {
              margin-top: 7px;
              background: #007bff;

              &:hover {
                background: #0069d9;
              }
            }

            &.btn-info {
              background-color: #b4d8e7;
              border-color: #b4d8e7;
              color: #1f4e6e;

              &:hover {
                background-color: #00a5e6;
              }
            }

            &.btn-danger {
              background-color: #f8d7da;
              border-color: #f8d7da;
              color: #d8000c;

              &:hover {
                background-color: #f5c6cb;
              }
            }
          }
        }

        .components-button-group {
          text-align: left;
        }

        .description {
          margin-top: 7px;
          margin-bottom: 0;
          color: #666;
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          font-size: 0.875rem;

          .eacf7-btn {
            margin-left: 15px;
          }

          strong {
            margin-right: 3px;

            &:not(:first-child) {
              margin-left: 3px;
            }
          }
        }
      }
    }
  }
}
