body.dark-mode_page_dracula-getting-started {
  #wpcontent {
    padding: 0;
    background: #f5f6fc fixed;
    min-height: 100vh;
    padding-bottom: 60px;
  }

  #wpfooter {
    display: none;
  }
}

.dracula-getting-started {
  * {
    box-sizing: border-box;
  }

  .getting-started-header {
    z-index: 99;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 13px 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 32px;
    margin-bottom: 30px;

    .header-logo {
      display: flex;
      gap: 12px;
      align-items: center;
      line-height: 1.5;

      img {
        width: 32px;
        border-radius: 50%;
      }

      .text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        span {
          font-weight: 600;
          color: #3e3c53;
          position: relative;
          line-height: 1;

          &:first-child {
            font-size: 24px;
          }

          &:last-child {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
          }
        }
      }
    }

    .header-buttons {
      display: flex;
      align-items: center;
      gap: 16px;

      .button {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 4px 16px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;

        &.docs {
          border: 2px solid #4c3ef1;
          color: #4c3ef1;
          border-radius: 8px;
        }

        &.upgrade {
          color: #fff;
          background: #ff901b;
          border-color: #ff901b;
        }
      }
    }

    p {
      max-width: 600px;
      font-size: 1rem;
      margin: auto;
      line-height: 1.5;
      color: #6e6d7e;
    }

    .header-title {
      font-size: 1.3rem;
      background: $dracula_color_dark;
      padding: 17px 20px;
      border-radius: 30px;
      display: inline-flex;
      color: #eaf7ed;
    }

    @media (max-width: 767px) {
      padding: 20px 20px 80px 20px;

      .header-logo {
        img {
          width: 35px;
          padding: 2px;
        }

        span {
          font-size: 1.5rem;
        }
      }

      p {
        font-size: 0.9rem;
      }

      .header-title {
        font-size: 1rem;
        padding: 10px 15px;
      }
    }
  }

  .getting-started-main {
    max-width: 100%;
    margin: 0 auto 0 auto;
    display: flex;
    gap: 30px;
  }

  .getting-started-menu {
    position: sticky;
    top: 150px;
    height: -moz-fit-content;
    height: fit-content;
    width: 300px;
    padding: 30px 38px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;

    .menu-item {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      cursor: pointer;
      color: #4d4d4d;
      transition: all 0.3s ease-in-out;
      border-radius: 10px;
      white-space: nowrap;
      overflow: hidden;

      &:before {
        content: "";
        background: transparent;
        position: absolute;
        left: -4.5px;
        width: 9px;
        height: 48px;
        border-radius: 9px;
        transition: all 0.3s ease-in-out;
      }

      i {
        margin-right: 10px;

        &.dracula-icons {
          &.home {
            background: linear-gradient(180deg, #8f87f3 -0.25%, #7469fa 99.83%);
          }
          &.docs-pen {
            background: linear-gradient(154deg, #bbe897 3.43%, #08cd87 90.47%);
          }
          &.help {
            background: linear-gradient(144deg, #f7ccdc 11.16%, #fd80d2 94.07%);
          }
          &.changelog {
            background: linear-gradient(143deg, #b7e0fc 4.99%, #40b3ff 94.05%);
          }
          &.crown-alt {
            background: linear-gradient(37deg, #fec73a 14.77%, #ffa825 84.8%);
          }
        }
      }

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

      &:hover {
        color: $dracula_color_dark;

        i {
          &.dracula-icons {
            background: $dracula_color_dark;
          }
        }
      }

      &.active {
        color: #fff;
        background: linear-gradient(139deg, #9b73e4 12.64%, #4c3ef1 89.34%);

        &:before {
          background: linear-gradient(139deg, #9b73e4 12.64%, #4c3ef1 89.34%);
        }

        i {
          &.dracula-icons {
            background: #fff;
          }
        }
      }
    }

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

  .getting-started-content {
    display: none;
    width: 100%;

    .section-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    section {
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      padding: 30px;
      border-radius: 16px;
      background-color: #fefefe;
      position: relative;
      border: 1px solid #eee;
      box-shadow: 0 0 10px 0 #acacac1f;

      .dracula-hidden {
        display: none;
      }

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

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

        & > div {
          width: 48%;
        }

        & > .content-heading {
          width: 100%;
        }

        & > .col-full {
          width: 100%;
        }

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

          button {
            cursor: pointer;
            padding: 15px 20px;
            margin: 20px auto 0 auto;
            text-decoration: none;
            background: $dracula_color;
            border: none;
            border-radius: 10px;
            color: #fff;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 6px;
          }
        }

        & > .section-wrap {
          width: 100%;

          .section-half {
            border-radius: 16px;
            padding: 30px;
            border: 1px solid #ddd;
            width: calc((100% - 30px) / 2);
            text-align: center;
          }
        }
      }

      &.section-features {
        &: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%, #fff 90%);
          }
        }
      }

      &.section-reading-mode {
        & > .col-description {
          width: 55%;
        }

        & > .col-image {
          width: 35%;
        }
      }

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

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

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

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

        .dracula-video-popup {
          float: none;
          margin: 0;
          button {
            width: 100px;
            height: 100px;
            i {
              width: 40px;
              height: 40px;
            }
          }
          img {
            width: 100%;
          }
        }
      }

      &.section-faq {
        .faq-item {
          .faq-header {
            justify-content: space-between;
            h3 {
              font-weight: 400;
            }

            i {
              margin: 0;
            }
          }

          &.active {
            .faq-header {
              h3 {
                font-weight: 600;
              }
            }
          }
        }
      }

      &.section-basic-usage {
        .faq-item {
          .faq-header {
            gap: 10px;
            justify-content: flex-start;
          }
        }
      }

      &.features {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 0 0 30px 0;
        padding: 30px;
        background: #fff;
        border: 0;

        &.valuable-features {
          &: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%, #fff 90%);
            }
          }
        }

        .feature {
          width: calc(33% - 20px);
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          text-align: center;
          background: #fefefe;
          margin: 10px;
          padding: 30px;
          border-radius: 15px;
          border: 1px solid #eee;

          &-title {
            font-size: 18px;
            font-weight: 600;
            line-height: 1;
            margin-top: 14px;
            margin-bottom: 16px;
          }

          p {
            margin-top: 7px;
          }

          .feature-logo {
            margin-bottom: 10px;
            border-radius: 50%;
            width: 100px;
            height: 100px;
            background: #e8e7f8;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
              width: 80%;
            }
          }

          &.dracula-hidden {
            display: none;
          }
        }

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

      .col-description {
        h3 {
          font-size: 24px;
          font-weight: 600;
          margin: 0;
          line-height: 1.5;

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

      .col-image {
        img,
        iframe {
          // width: 100%;
          @media (max-width: 1364px) {
            width: 100%;
          }
          border-radius: 7px;
        }

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

      .dracula-btn {
        padding: 15px 20px;
        margin: 20px auto 0 auto;
        text-decoration: none;

        &:hover {
          color: #fff;
          border-color: $dracula_color_light;
        }
      }

      &.section-documentation,
      &.section-contact {
        .col-image {
          img {
            width: 200px;
          }
        }
      }

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

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

            > .switch {
              position: relative;
              width: 70px;
              height: 35px;
              background: $dracula_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 {
              font-size: 1.2rem;
              color: $dracula_color;

              &.annual {
                color: #5c637e;
                cursor: pointer;
              }

              &.lifetime {
                cursor: pointer;
              }
            }

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

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

              .switch-text {
                &.annual {
                  color: $dracula_color;
                  cursor: pointer;
                }

                &.lifetime {
                  color: #5c637e;
                  cursor: pointer;
                }
              }
            }
          }

          .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(259px, 1fr));
            justify-content: center;

            .pricing-card {
              background: white;
              text-align: center;
              padding: 20px;

              border-bottom: 1px solid #e4e4e7;
              transition: linear 0.4s;
              min-height: 100%;
              display: flex;
              flex-direction: column;
              justify-content: space-between;

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

              &.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: 18px;
                  font-weight: 600;
                  text-transform: capitalize;
                  text-align: left;
                  padding-top: 30px;
                  padding-bottom: 15px;
                  display: block;
                  text-decoration: 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: #2fb44b;
                  font-size: 0.8rem;
                  color: #fff;
                  border-radius: 5px;
                  margin-right: 10px;
                  text-align: center;
                }

                span {
                  color: #5c637e;
                  font-weight: 500;
                  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 {
              grid-template-columns: repeat(auto-fit, minmax(223px, 1fr));
            }
          }

          @media (min-width: 1400px) {
            .pricing-container {
              grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
          }

          @media (min-width: 1200px) and (max-width: 1399px) {
            .pricing-container {
              grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

              .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 {
              grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));

              .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 {
              grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
              .card-profesion {
                margin-top: 0 !important;
                margin-bottom: 42px;
              }
            }
          }

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

            .pricing-container {
              grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));

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

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

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

      &.section-moneyback {
        padding: 50px 90px;
        margin: 0;
        background-color: #211b6e;
        background-image: url("../images/getting-started/get-pro/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: #3a3e71;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 0.5px solid #ffffff99;
            padding: 35px 25px;
            text-align: center;

            &:nth-child(2),
            &:nth-child(3) {
              h3 {
                margin-bottom: 30px;
              }
            }

            h3 {
              font-size: 18px;
              color: #fff;
              margin-top: 0;
              margin-bottom: 12px;
            }
          }
        }
      }

      &.section-reviews {
        .reviews {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          gap: 30px;

          .review-item {
            width: calc((100% - 60px) / 3);
            background: #fff;
            border-radius: 16px;
            border: 1px solid #b7b6bf66;
            padding: 16px;

            &-header {
              display: flex;
              align-items: center;
              justify-content: space-between;
              margin-bottom: 15px;

              .author {
                display: flex;
                align-items: center;
                gap: 13px;
                text-align: left;

                img {
                  border-radius: 50%;
                  width: 44px;
                  height: 44px;
                }

                p {
                  color: #5c637e;
                  font-size: 14px;
                  font-style: normal;
                  font-weight: 600;
                  line-height: 150%;
                  margin: 0;
                }

                .rating {
                  display: flex;
                  gap: 8px;

                  i {
                    color: #f2994a;
                  }

                  span {
                    color: #5c637e;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 150%;
                  }
                }
              }

              .source {
                background: #e8e7f8;
                border-radius: 50px;
                padding: 10px;
                a {
                  text-decoration: none;
                  color: #5c637e;
                }
              }
            }

            h3 {
              font-size: 18px;
              font-weight: 600;
              line-height: 1.5;
              color: #5c637e;
              margin-top: 0;
              margin-bottom: 12px;
            }

            p {
              font-size: 14px;
              line-height: 1.5;
              color: #5c637e;
              margin-top: 0;
              margin-bottom: 12px;
              overflow: hidden;
              display: -webkit-box;
              -webkit-line-clamp: 3;
              line-clamp: 3;
              -webkit-box-orient: vertical;
            }
          }
        }
      }

      .dracula-video-popup {
        float: right;
        margin-left: 15px;
      }
    }

    div {
      &.popular-plugins-wrap {
        display: flex;
        flex-direction: column;
        margin: auto;

        .popular-plugin-item {
          display: flex;
          align-items: center;
          padding: 15px;
          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: 1rem;
              font-weight: 500;
              margin-bottom: 0;
              margin-top: 0;
            }

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

            .users-count {
              display: flex;
              align-items: center;
              font-size: 15px;
              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;
            }
          }

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

            .dracula-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;

              i {
                margin-right: 7px;
              }

              &.btn-primary {
                background-color: $dracula_color;
                color: #fff;

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

              &.btn-info {
                color: #333;
              }
            }
          }
        }

        @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;
            }
          }
        }
      }
    }

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

      &.overview-heading {
        h2 {
          mark {
            &:after {
              right: -45px;
            }
          }
        }
      }

      h2 {
        margin: 5px 0;
        font-size: 36px;
        line-height: 1.2;
        font-weight: 700;

        mark {
          position: relative;
          background: linear-gradient(270deg, #9b73e4 0, #4c3ef1 50%);
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          margin: 0 7px;

          &:after {
            position: absolute;
            right: 7px;
            bottom: -25px;
            content: "";
            width: 215px;
            height: 23px;
            background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22229%22%20height%3D%2223%22%20viewBox%3D%220%200%20229%2023%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2%2017C43.7169%205.68065%20147.12%20-10.1664%20227%2017%22%20stroke%3D%22%23675ED5%22%20stroke-width%3D%223.5%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M17.5%2021.0001C54%2011%20143.5%20-1.49997%20214.5%2021.0001%22%20stroke%3D%22%23675ED5%22%20stroke-width%3D%223.5%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-size: contain;
          }
        }
      }

      p {
        margin: 10px 5px;
        font-size: 16px;
        color: #20222499;
        max-width: 650px;
      }

      &.heading-help {
        h2 {
          mark {
            &:after {
              right: -60px;
            }
          }
        }
      }

      &.heading-get-pro {
      }

      .dracula-btn {
        margin-top: 20px;
        padding: 12px 15px;
        text-decoration: none;

        img {
          margin-right: 10px;
        }

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

    &.active {
      display: block;
    }

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

      .section-wrap {
        section {
          width: 100%;
          margin-bottom: 30px;
        }
      }

      section {
        padding: 10px;

        &.section-full {
          flex-direction: column;
          align-items: center;
          justify-content: center;

          & > div {
            width: 100%;
            text-align: center;
          }
        }

        &.features {
          margin: 0;

          .feature {
            width: 100%;
            margin: 0 0 20px 0;
          }
        }

        &.section-faq {
          .faq-item {
            margin-bottom: 20px;

            .faq-header {
              padding: 10px;
              font-weight: normal;

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

      .content-heading {
        margin: 20px auto 20px auto;
      }
    }

    p {
      color: #5c637e;
      font-size: 1rem;
      line-height: 1.6;
    }

    h4 {
      font-size: 1rem;
      line-height: 1.5;
    }

    ul {
      list-style: disc;
      margin-left: 25px;
    }

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

    &.content-basic-usage {
      h2 {
        mark {
          &:after {
            right: 0 !important;
          }
        }
      }

      .col-image {
        max-width: 600px;
        margin: 40px auto 20px auto;
      }
    }

    &.content-what-new {
      h2 {
        mark {
          &:after {
            right: 0 !important;
          }
        }
      }
    }
  }

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

    &-header {
      display: flex;
      align-items: center;
      cursor: pointer;
      padding: 20px;
      background: #f7f7fd;
      border-radius: 15px;

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

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

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

    &-body {
      display: none;

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

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

        iframe {
          border-radius: 10px;
        }
      }

      .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 #ddd;

      .log-header {
        border-bottom: 1px solid #ddd;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
      }

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

  .compare-pans {
    margin-bottom: 1rem !important;

    h2 {
      font-size: 1.4rem;
    }

    h3 {
      margin-top: 5px;

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

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

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

        &.plan-elite {
          color: #f3754d;
        }
      }

      .vs {
        color: #7a7a7a;
        font-size: 0.875rem;
      }
    }
  }

  .features-list {
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    overflow: hidden;

    .list-header {
      display: flex;
      align-items: center;
      padding: 20px 30px;
      font-size: 1.2rem;
      border-bottom: 1px solid rgba(#2fb44b, 0.1);
      font-weight: 600;
      background: linear-gradient(139deg, #9b73e4 12.64%, #4c3ef1 89.34%);
      color: #fff;

      .feature-title {
        width: 60%;
      }

      .feature-free {
        flex: 1;
        text-align: center;
      }

      .feature-pro {
        flex: 1;
        text-align: center;
      }

      .feature-elite {
        flex: 1;
        text-align: center;
      }
    }

    .feature {
      display: flex;
      align-items: center;
      padding: 15px 30px;
      font-size: 1rem;
      font-weight: 500;
      border-bottom: 1px solid #e5e5e5;
      background: #eff3fe;

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

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

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

        .icon {
          display: flex;
          align-items: center;
          justify-content: center;
          background: linear-gradient(139deg, #9b73e4 12.64%, #4c3ef1 89.34%);
          backdrop-filter: blur(2.66311px);
          border-radius: 10px;
          border: 1px solid transparent;
          border-image: linear-gradient(
              to bottom,
              rgba(255, 255, 255, 0.21),
              rgba(0, 0, 0, 0)
            )
            1;
          width: 40px;
          height: 40px;

          i {
            background: #fff;
            width: 20px;
            height: 20px;
            border-radius: 0;
          }
        }
      }

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

        &.dashicons-no-alt {
          background: rgba(243, 117, 77, 0.7);
        }
      }

      .feature-free {
        flex: 1;
        text-align: center;
      }

      .feature-pro {
        flex: 1;
        text-align: center;
      }

      .feature-elite {
        flex: 1;
        text-align: center;
      }
    }
  }

  .get-pro-cta {
    display: flex;
    align-items: center;
    background: #4a43a199
      url("../images/getting-started/get-pro/get_pro_bg.png") no-repeat center
      center / cover;
    border-radius: 15px;
    padding: 30px;
    margin: 0;

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

      h2 {
        color: #fff;
        margin-bottom: 5px;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
      }

      p {
        color: #fff;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
      }
    }

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

      .dracula-btn {
        color: $dracula_color;
        background: #fff;
        display: flex;
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 8px;
        text-decoration: none;

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

    @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%;
      }
    }
  }

  .demo-cta {
    display: flex;
    align-items: center;
    background: #e8e7f8;
    border-radius: 15px;
    padding: 30px;
    margin: 0;
    border: 1px solid #eee;

    .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;

      .dracula-btn {
        padding: 15px 20px;
        text-decoration: none;
        border-radius: 10px;
        background: linear-gradient(139deg, #9b73e4 12.64%, #4c3ef1 89.34%);

        &:focus-visible {
          outline: none;
          box-shadow: none;
          border: 0;
        }

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

    @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%;
      }
    }
  }

  .facebook-cta {
    display: flex;
    align-items: center;
    background: url("../images/getting-started/facebook-banner.png") no-repeat
        center/cover,
      #675ed5 !important;
    border-radius: 15px;
    padding: 20px 60px;
    margin: 60px 0;
    color: #fff;

    img {
      width: 100px;
      margin-right: 20px;
    }

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

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

      p {
        margin-bottom: 0;
        color: #fff;
      }
    }

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

      .dracula-btn {
        padding: 15px 20px;
        background: #fff;
        color: #675ed5;

        &:hover {
          color: #fff;
          background: #675ed5;
        }
      }
    }

    @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 {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    width: 100%;
    flex-direction: column;
    user-select: none;

    .faq-header {
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      background: #f7f7fd;
      padding: 15px 20px;

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

      h3 {
        font-size: 24px;
        font-weight: 600;
        margin: 0;
        line-height: 1.5;
      }
    }

    .faq-body {
      display: none;
      line-height: 1.5;
      padding: 10px 20px;
      background: #fff;

      p {
        font-size: 1rem;
        color: #444;
      }
    }

    &.active {
      .faq-header {
        i {
          transform: rotate(180deg);
        }
      }

      .faq-body {
        display: block;
      }
    }
  }
}
