# blockspare/5.0.1/admin/assets/styles/style.scss

BlockSpare – Gutenberg Blocks, AI Content Generator &amp; Site Builder for News, Magazine &amp; Blogs, version 5.0.1. 3,097 lines.

- Page: https://pluginprobe.com/plugins/blockspare/5.0.1/code/admin/assets/styles/style.scss
- Raw: https://pluginprobe.com/plugins/blockspare/5.0.1/raw/admin/assets/styles/style.scss
- Modified: 2026-09-24T10:31:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockspare/5.0.1/code/admin/assets/styles/style.scss#L10-L20`.

```scss
//variables-----------------------------------------
$primary-color: #6c4eff;
$secondary-color: #141618;
$transparent-primary-color: #6c4eff1a;
$text-color: rgba(17, 24, 39, 1);
$text-color-2: rgba(156, 163, 175, 1);
$border-color: rgba(209, 213, 219, 1);
$box-shadow-1: 0 6px 15px rgba(36, 37, 38, 0.08);
$box-shadow-2: 5px 12px 20px rgba(36, 37, 38, 0.13);

:root {
  --icon-background: #e7e7e7;
}

body {
  :has(#bs-dashboard) {
    background-color: #fff;
  }
}

//notice--------------------------------------------
.blockspare-ai-tabs > a {
    margin: 0;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 2px 2px 10px rgba(108, 78, 255, 0.2);
    width: 100%;
    text-decoration: none;

    h3{margin-top:0}
    img{width: 32px;opacity:.25}

    span span {
      display:block;
    }
}
.about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
  background-color: #f8f9fc;
  border-bottom-color: #f8f9fc;
}

.blocksparetb-conditions-panel p.components-base-control__help {
  margin-bottom: 15px;
}
.blocksparetb-conditions-panel .components-flex.blocksparetb-rule-row {
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  padding: 10px 15px;
  position: relative;

  > div {width: 100%}

 label {margin: 5px 0;}

  button.components-button.is-destructive.has-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    min-width: 25px;
    height: 25px;
  }
  .blocksparetb-rule-row__no-settings{padding-bottom:0;}
}
.blockspare-pro_page_blockspare-ai .wrap{padding: 30px;background: #f8f9fc;margin: 0;}
.blockspare-pro_page_blockspare-ai,
.blockspare-pro_page_bs-change-log,
.blockspare-pro_page_bs-blocks,
.blockspare-pro_page_bspare-starter-sites,
.toplevel_page_blockspare {
  #wpcontent {
    padding: 0;
  }
  .notice:not(.blockspare-notice-setup),
  div.fs-notice.updated,
  div.fs-notice.success,
  div.fs-notice.promotion {
    display: none !important;
  }

  .blockspare-notice-setup {
    margin: 0;
    box-shadow: none;
  }

  #wpfooter {
    border-top: 1px solid $border-color;
  }

  #wpbody-content {
    padding-bottom: 0px;
  }
}
.components-notice.is-error {
  word-break: break-word;
  margin-top: 10px;
}
.blockspare-ai-prompt-label {margin: 10px 0;}
.components-notice__content p:last-child {margin-bottom: 0;}
.wp-core-ui.blockspare-pro_page_blockspare-ai .button-primary {
  background: #6c4eff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1.75;
  min-height: unset;
}
//Container-----------------------------------------
.blockspare-dashboard {
  &__container {
    // padding: 0 20px;
    margin: 0 auto;
    max-width: 1440px;
  }
}

//tooltip-----------------------------------------
.toplevel_page_blockspare .components-tooltip {
  background: #000;
  border-radius: 2px;
  color: #f0f0f0;
  font-size: 12px;
  line-height: 1.4;
  padding: 4px 8px;
  text-align: center;
  z-index: 1000002;
}
//Button-----------------------------------------
.blocksape-dashboard__button {
  display: inline-block;
  cursor: pointer;
  line-height: 18px;
  border-radius: 50px;
  background: $primary-color;
  color: #fff;
  border: 1px solid #f0f0f3;
  font-size: 14px;
  margin: 0;
  padding: 10px 24px;
  transition: all 0.25s ease;

  &:hover {
    background: $secondary-color;
  }
}

//switch-----------------------------------------

.blocksape-dashboard__switch-control {
  line-height: 1em;

  label {
    line-height: 1em;
  }

  input[type='checkbox'] {
    display: none;
  }

  .switch {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    height: 20px;
    border-radius: 24px;
    background: $border-color;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all 1s ease;
    box-shadow: none;

    &::before {
      content: 'OFF';
      position: absolute;
      right: 5px;
      top: 50%;
      transform: translate3d(0, -50%, 0);
      padding-top: 1px;
      font-family: 'Roboto';
      font-style: normal;
      font-weight: 500;
      font-size: 11px;
      line-height: 13px;
      display: flex;
      align-items: center;
      text-align: right;
      letter-spacing: 0.04em;
      color: $text-color;
      transition: all 0.25s ease;
    }

    &::after {
      content: '';
      background: #fff;
      display: block;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 3px;
      box-shadow: 0 1px 3px rgb(46 56 77 / 40%);
      transform: translate3d(0, -50%, 0);
      transition: all 350ms cubic-bezier(0, 0.95, 0.38, 0.98);
    }
  }

  input:checked + .switch {
    // background: $primary-color;
    &::before {
      left: 8px;
      right: auto;
      // color: #fff;
      content: 'ON';
    }

    &::after {
      transform: translate3d(26px, -50%, 0);
    }
  }
}

//Header-----------------------------------------

.blockspare-dashboard {
  header {
    border-bottom: 1px solid $border-color;
    background-color: #fff;
    position: sticky;
    top: 32px;
    z-index: 99;

    .navigation-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      height: 72px;
      padding: 0 30px;

      .plugin-logo {
        background-image: linear-gradient(to bottom, $primary-color 30%, $secondary-color);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        mask-image: url(../images/blockspare-logo.png);
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        margin-right: 45px;
        height: 40px;
        width: 140px;
        cursor: pointer;

        img {
          height: 50px;
        }
      }

      .navigation-item {
        display: inline-block;
        font-weight: 600;
        font-size: 15px;
        line-height: 1.3;
        text-decoration: none;
        color: $text-color;
        padding: 23px 0px 20px 0px;
        border-bottom: 2px solid rgba(0, 0, 0, 0);
        cursor: pointer;

        &:not(:last-child) {
          margin-right: 38px;
        }

        &:hover,
        &.active {
          color: $primary-color;
        }

        &.active {
          border-bottom-color: $primary-color;
        }
      }
      .bs-dashboare-menu-mobile {
        display: none;
        .mobile-menu-icon {
          padding: 23px 0;
          cursor: pointer;
          svg {
            width: 32px;
            height: 32px;
          }
        }
        .mobile-menu-content {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: #fff;
          z-index: 99;
          padding: 46px 16px;

          .mobile-menu-close {
            position: relative;
            svg {
              position: absolute;
              top: 23px;
              right: 4px;
              width: 32px;
              height: 32px;
            }
          }

          .navigation-items-mobile {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            .navigation-item {
              margin: 0;
              font-size: 24px;
            }
          }
        }
      }
      .bs-dashboard-upgrade-button {
        margin-left: auto;
      }
    }
  }
}

//Common-----------------------------------------
.blockspare-dashboard {
  * {
    box-sizing: border-box;
  }
  .content-wrapper {
    margin: 30px 0;
  }
  h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
  }
  a:focus {
    box-shadow: none;
    outline: none;
  }
}

//Welcome page-----------------------------------------

.blockspare-dashboard {
  .content-wrapper {
    &.dashboard {
      display: flex;
      align-items: start;
      justify-content: space-between;
      padding: 0 30px;
      gap: 30px;
    }
  }

  .panel-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;

    &.first-wrapper {
      width: calc(100% - 330px);
    }
    &.second-wrapper {
      max-width: 300px;
      height: 100%;
      position: sticky;
      top: calc(32px + 72px + 20px);
    }
  }

  .feature-panel {
    flex-direction: column;
  }

  .feature-panel,
  .subscribe-panel {
    display: flex;
    padding: 0px;
    justify-content: center;

    > div {
      position: relative;
      padding: 0px;
      display: flex;
      flex-wrap: wrap;
      align-content: center;
    }

    h2 {
      display: block;
      margin: 0 0 15px;
    }

    .description {
      color: #64748b;
      font-size: 16px;
      line-height: 1.7;
    }
    .flex-between h2 {
      margin: 0;
    }
  }

  .highlight-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
  }
  .box-panel {
    margin: 0;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 2px 2px 10px rgba(108, 78, 255, 0.2);
    width: 100%;

    &.category-panel {
      padding-bottom: 0;
    }

    h1 {
      line-height: 1.3;
      color: $text-color;
      margin-bottom: 10px;
      margin-top: 0px;
      font-weight: 600;
    }

    h2 {
      margin: 0;
    }

    h3.title {
      margin: 12px 0;
    }

    .bs-dashboard-video {
      aspect-ratio: 16/9;
      border-radius: 6px;
      overflow: hidden;
      width: 100%;

      .video {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.1);
      }
    }

    .illustration {
      width: 100%;
      height: 314px;
      border-radius: 6px;
      -o-object-fit: cover;
      object-fit: cover;
    }

    .bs-dashboard {
      &__footer {
        width: 100%;
        background-color: #000;
        background: linear-gradient(
          180deg,
          hsla(292, 63%, 38%, 1) 0%,
          hsla(270, 56%, 23%, 1) 50%,
          hsla(0, 0%, 7%, 1) 100%
        );
        background-position: top;
        background-size: cover;
        border-radius: 6px;
        color: #fff;
        flex-direction: column;
        justify-content: center;
        padding: 38px 40px;
        text-align: center;
        box-sizing: border-box;

        h2 {
          color: #fff;
          font-size: 24px;
          font-weight: 600;
          line-height: 1.3;
          margin-top: 0;
          justify-content: center;
        }

        p {
          line-height: 1.6;
          font-size: 16px;
          color: #cecece;
        }
      }
    }
  }

  .bs-dashboard__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }

  .bs-dashboard__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-sizing: border-box !important;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 12px 20px;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 4px;
    transition: all 0.1s ease-in-out;

    > svg {
      fill: currentColor;
    }

    &.primary {
      color: #fff;
      background: $secondary-color;
    }

    &.secondary {
      color: $secondary-color;
      background: transparent;
      box-shadow: inset 0 0 0 1px;

      &:hover {
        background: $secondary-color !important;
        box-shadow: inset 0 0 0 0 !important;
        color: #fff !important;
      }
    }

    &.bs-upgrade-button {
      color: #fff;
      background: $primary-color;
    }
  }

  .links-panel {
    padding: 0;
    display: block;
  }

  .rating-panel {
    padding: 0;
    cursor: pointer;
    // border: 1px solid $border-color;
    box-shadow: 2px 2px 10px rgba(108, 78, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;

    .bs-illustration {
      width: 100%;
      height: 100%;
    }
  }

  .support-panel {
    display: block;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    // border: 1px solid $border-color;
    box-shadow: 2px 2px 10px rgba(108, 78, 255, 0.2);

    &.free-pro {
      background-color: #f0edff;
    }

    .details {
      display: flex;
      flex-wrap: wrap;

      span {
        margin: 10px 0;
        &.description {
          font-size: 13px;
          line-height: 1.7;
        }
      }
      h2 {
        margin: 0;
      }

      a {
        width: fit-content;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        font-weight: 400;
        font-size: 14px;
        text-decoration: none;
        line-height: 16px;
        color: $primary-color;

        i {
          margin-left: 10px;
          font-size: 12px;
        }
      }

      &:not(:last-child) {
        margin-bottom: 20px;
      }
    }
  }

  h2 {
    display: flex;
    align-items: center;
    color: $text-color;

    svg {
      margin-right: 8px;

      path {
        fill: $primary-color;
      }
    }
  }
}

#bs-change-log .panel-wrapper {
  &.first-wrapper {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(108, 78, 255, 0.2);
  }
}

//Blocks page-----------------------------------------

.blockspare_block_cards .blockspare_rating__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  img {
    width: 25px;
  }
}
.blockspare_block_card__title {
  margin: 10px 0 5px;
  font-size: 15px;
  order: 1;
}
.blockspare_block_card__footer {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.blockspare_block_card__footer p {
  font-size: 12px;
  margin: 5px 0;
  order: 3;
}
span.bs-review-star {
  order: 0;

  svg {
    width: 18px;
  }
}

.blockspare-dashboard {
  .block-list {
    width: 100%;
  }
  .blocklist-page {
    width: 100%;
    .blocklist-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 30px;
      border-bottom: 1px solid $border-color;
    }

    .block-enable-disable-all {
      display: flex;
      align-items: center;
      border: 1px solid $border-color;
      border-radius: 10px;
      overflow: hidden;
      background: transparent;

      > * {
        margin: 0;
        padding: 12px 16px;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 14px;
        color: #737373;
        cursor: pointer;
        border: none;
        background: none;

        &:hover {
          color: $text-color;
          background: #fbfbfb;
        }
      }

      .disable-all {
        border-right: 1px solid $border-color;
      }

      & > .active {
        color: $text-color;
        background: #fff;
      }
    }

    .block-category {
      &:not(:last-child) {
        margin-top: 0;
        margin-bottom: 30px;
      }
    }

    .block-category-heading {
      font-size: 20px;
      font-weight: 600;
      line-height: 32px;
      color: $text-color;
      margin: 0;
    }

    .block-category-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .blockspare_block_cards {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
      grid-gap: 20px;
    }

    .blockspare_block_card {
      display: flex;
      align-items: center;
      padding: 20px;
      gap: 15px;
      background-color: #fbfbfb;
      border: 1px solid $border-color;
      border-radius: 6px;
      overflow: hidden;
      transition: all 0.5s;

      .blockspare_block_card__header {
        .blockspare_block_card__title {
          font-size: 14px;
          color: $text-color;
          letter-spacing: 0.42px;
          margin: 0;
        }
        p {
          margin: 5px 0;
          font-size: 12px;
        }
      }

      .blockspare_block_card__icon {
        border-radius: 50%;
        height: 70px;
        width: 70px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background: $border-color;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 1s ease;

        .blockspare-svg {
          height: 30px;
          width: 40px;
          fill: #c4c4c4;
          transition: all 0.25s ease;
        }
      }

      .blockspare_block_card__info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 5px;
      }

      .blockspare_block_card__footer {
        display: flex;
        gap: 15px;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
        margin-top: 0;

        .bs-video-link-wrapper {
          display: flex;
          gap: 5px;
        }

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

        .blockspare_block_card__link {
          position: relative;
          font-size: 12px;
          color: $text-color;
          letter-spacing: 0.36px;
          cursor: pointer;
          text-decoration: none;

          &::before,
          &::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            height: 1px;
            width: 13%;
            background-color: $text-color;
            transition:
              opacity 0.25s ease,
              transform 0.25s ease,
              width 0.3s cubic-bezier(0.68, 0.05, 0.46, 1.02),
              left 0.2s 0.2s ease-out;
          }

          &::after {
            z-index: 10;
            width: 30%;
            background-color: white;
            opacity: 0;
          }

          &:hover::before {
            width: 100%;
          }

          &:hover::after {
            opacity: 1;
            left: 100%;
          }
        }
        .blockspare_block_card__video_link {
          display: flex;
          svg {
            path {
              transition: all 0.5s ease;
            }
          }
        }
      }

      &.active {
        background-color: white;

        .blockspare_block_card__icon {
          .blockspare-svg {
            fill: #737373;
          }
        }

        &:hover {
          box-shadow: 5px 12px 20px $transparent-primary-color;
          transform: translateY(-7px);

          .blockspare_block_card__icon {
            background: $transparent-primary-color;

            .blockspare-svg {
              fill: $primary-color;
            }
          }

          .blockspare_block_card__footer {
            .blockspare_block_card__video_link {
              svg {
                path {
                  fill: $primary-color;
                }
              }
            }
          }

          .blocksape-dashboard__switch-control {
            input:checked + .switch {
              background: $primary-color;

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

.blockspare-dashboard .block-list.box-panel .blocklist-page .blockspare_block_cards {
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
}

//Designs page-----------------------------------------

/********** Tab start **********/

.blockspare-dashboard {
  .bs-tab-list {
    display: flex;
    align-items: center;
    height: 100%;

    a {
      text-decoration: none;
    }
    a:last-child {
      padding-right: 0;
    }

    a i {
      display: inline-block;
      vertical-align: middle;
      height: unset;
      font-size: 14px;
      padding-right: 6px;
      width: unset;
    }
  }

  .bs-tab {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    cursor: pointer;
    height: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    color: #404040;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;

    &.bs-active-tab {
      color: $primary-color;
      background: $transparent-primary-color;
      &::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background-color: $primary-color;
      }
    }
  }
}

/********** Tab end **********/

/********** Sidebar Start **********/

.blockspare-dashboard {
  .bs-horizontal-line {
    margin: 0;
    border: none;
    border-top: 1px solid $border-color;
  }
  .bs-layout-sidebar {
    width: 100%;
    border-right: 1px solid #d1d5db;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    .components-base-control:last-child {
      align-self: flex-end;
      margin: 0;
    }

    .components-base-control__field {
      margin-bottom: 0;
    }

    .bs-layout-search-wrapper {
      position: relative;

      input {
        border-radius: 6px;
        color: $text-color;
        height: 45px;
        padding: 6px 45px 6px 16px;
        background-color: rgba(243, 244, 246, 1);
        border: 1px solid transparent;
        width: 100%;
        font-size: 14px;

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

      .bs-layout-search-icon {
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;

        svg {
          fill: $text-color;
        }
      }
    }

    .bs-layout-category-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      overflow-y: auto;
      padding: 0;
      // margin: 0 -16px;

      .bs-layout-category {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-size: 14px;
        line-height: 24px;
        color: $text-color;
        padding: 8px 15px;
        background-color: #eee;
        border-radius: 4px;
        transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);

        &:hover {
          background-color: $transparent-primary-color;
        }

        &.bs-layout-selected-category {
          background-color: $primary-color;
          color: #fff;
        }

        span {
          font-weight: 700;
          margin-left: 20px;
        }
      }
    }
  }
}
.bs-design-lib-sidebar {
  display: flex;
  width: 100%;
  .bs-layout-sidebar {
    max-width: 280px;

    .bs-layout-category-list {
      display: block;

      .bs-layout-category {
        min-width: unset;
        width: 100%;
        margin-bottom: 10px;
        background: transparent;
      }
    }
  }
}

/********** Sidebar End **********/

/********** Layout Start **********/

.blockspare-dashboard {
  .bs-layouts-wrappper {
    position: relative;
    padding: 0 10px;
    flex: 1;
    width: 100%;
    height: calc(100vh - 146px);
    overflow-y: auto;
  }

  .bs-layout-choices {
    margin: -10px;
  }

  .bs-layout-view {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 2em;
  }

  .bs-layout-view-left {
    p {
      margin: 0;
      line-height: 2.2em;
    }

    a {
      font-weight: bold;
      color: #027bba;
    }
  }

  .bs-layout-view-right {
    text-align: right;
    display: flex;
    align-items: center;

    button {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      width: 40px;
      padding: 0;

      &:hover,
      &:active {
        color: $primary-color;
      }

      &.is-primary:hover,
      &.is-primary {
        background-color: $transparent-primary-color;
        color: $primary-color;
        border: solid 1px $primary-color;
      }

      &:focus:not(:disabled) {
        box-shadow: none;
      }
    }
  }

  .bs-layout-zoom-layout {
    grid-column: 1 / -1;
  }

  .blockspare-childpages {
    display: flex;
    flex-wrap: wrap;
  }

  .bs-layout-parent-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;

    .bs-layout-parent-title {
      text-transform: capitalize;
      margin: 0;
      font-size: 20px;
      font-weight: 600;
      color: rgba(60, 67, 74, 1);
    }
  }

  .bs-layout-button.bs-back-button {
    background-color: transparent;
    border: 1px solid $border-color;
    color: $text-color;
    font-size: 14px;

    svg {
      fill: $text-color;
    }
  }

  .bs-layout-modal-footer-wrap {
    display: flex;
    justify-content: center;
  }
}

/********** Card start **********/
.blockspare-dashboard {
  .bs-layout-design {
    position: absolute;
    width: calc(100% / 4 - 20px);
    margin: 10px;
    -webkit-animation: scale-in-center 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: scale-in-center 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;

    img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .bs-layout-insert-button {
      height: auto;
      background: none;
      border: none;
      box-shadow: none;
      border-bottom: none;
      padding: 0;
      z-index: 5;
      position: relative;
      display: flex;
      width: 100%;
      min-height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;

      .is-visible {
        width: 100%;
      }
    }
    &.bs-layout-page {
      .bs-layout-insert-button {
        aspect-ratio: 1/1.2;
        overflow: hidden;
        position: relative;
      }
      img {
        height: auto;
        position: absolute;
        top: 0;
        transition-timing-function: ease-in-out;
        transition-duration: 3s;
      }

      &:hover {
        img {
          transform: translate(0, calc(100% - 1.2 / 1 * 100%));
        }
      }
    }
  }

  .bs-layout-tab-content:has(.bs-layout-sidebar) {
    .bs-layout-design {
      width: calc(100% / 3 - 30px);
    }
  }
  .bs-layout-tab-content.settings-tab-content-wrapper:has(.bs-layout-sidebar) {
    .bs-layout-design {
      width: calc(100% / 4 - 30px);
    }
  }

  &.bs-layout-view-full {
    .bs-layout-design {
      width: calc(100% - 20px);
    }

    .bs-layout-design-inside {
      max-width: 576px;
      margin: 0 auto;
    }
    .bs-layout-tab-content.settings-tab-content-wrapper:has(.bs-layout-sidebar),
    .bs-layout-tab-content:has(.bs-layout-sidebar) {
      .bs-layout-design {
        width: calc(100% - 20px);
      }
    }
  }

  .bs-layout-design-inside {
    border: solid 1px $border-color;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px 0px rgba(153, 153, 153, 0.3);

      .bs-layout-design-item {
        .bs-layout-image-overlay {
          background-color: rgba(0, 0, 0, 0.1);
        }
      }

      .bs-layout-action-info,
      .bs-layout-premium {
        opacity: 1;
      }

      .bs-pro-badge {
        opacity: 1;
      }
    }

    &:active {
      transform: translateY(-2px);
      box-shadow: 0 5px 10px 0px rgba(153, 153, 153, 0.3);
    }
  }

  .bs-layout-design-item {
    position: relative;

    .bs-layout-image-overlay {
      position: absolute;
      left: 0;
      top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      text-decoration: none;
      z-index: 1;
      transition: all 0.2s ease-in-out;

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

  .bs-layout-action-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    color: $text-color;
    opacity: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.2s ease-in-out;

    svg {
      width: 28px;
      height: 28px;
      fill: $text-color;
    }
  }

  .bs-layout-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: $text-color;
    padding: 20px;
    opacity: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all 0.2s ease-in-out;

    h4 {
      margin: 0;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
      color: $text-color;
      max-width: 350px;
    }

    p {
      margin: 0;
      font-size: 14px;
      line-height: 1.6;
      max-width: 350px;
    }
  }

  .bs-pro-badge {
    z-index: 99;
    position: absolute;
    right: 7px;
    top: 7px;
    background-color: #ce242c;
    color: #fff;
    padding: 5px 8px;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 1px;
    font-size: 11px;
    opacity: 0;
    transition: all 0.3s ease-in;
  }

  .bs-layout-design-info {
    border-top: solid 1px $border-color;
    line-height: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
    min-height: 50px;
    padding: 12px;
    transition: all 0.2s ease-in-out;

    &.bs-layout-template-info {
      border: none;
    }
  }

  .bs-layout-design-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 0.1s ease-in-out;
  }

  .bs-layout-action-buttons {
    position: absolute;
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }

  .bs-premium-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }

  .bs-layout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.3s ease-in;
    cursor: pointer;
    border: none;
    font-size: 16px;

    svg {
      fill: #fff;
    }

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

    &:active {
      color: #fff;
    }
  }

  .bs-import-button {
    background-color: $primary-color;
  }

  .bs-premium-button {
    background-color: $primary-color;
    font-size: 14px;
  }

  .bs-import-button-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    .bs-import-loader {
      position: absolute;
    }
  }

  .bs-layout-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .bs-layout-action-button {
    background: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid $border-color;
    padding: 0;
    text-decoration: none;
    cursor: pointer;

    svg {
      fill: $primary-color;
      width: 20px;
      height: 20px;
    }
  }

  .components-button-group .components-button.bs-layout-action-button {
    border-radius: 3px;
    padding: 0 8px 0px;
  }

  .components-button.bs-layout-action-button:focus {
    box-shadow: none;
  }

  .components-button.is-default:active:enabled {
    box-shadow:
      inset 0 0 0 1px #ccd0d4,
      inset 0 0 0 2px #fff;
  }

  .bs-layout-icon-favorite {
    color: #fff;
    -webkit-text-stroke: 1px $primary-color;
    font-size: 20px;
    width: 20px;
    height: 20px;
    font-weight: 600;
  }

  @media all and (-ms-high-contrast: none) {
    .bs-layout-icon-favorite {
      box-shadow: 0 0 2px $primary-color;
    }
  }

  .bs-layout-icon-favorite-active {
    color: $primary-color;
  }

  .bs-layout-action-button-icon {
    color: $primary-color;
    font-size: 20px;
    width: 20px;
    height: 20px;
  }

  .bs-favorite-loader {
    position: absolute;
  }
  @keyframes savingPulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.3);
      opacity: 0.7; /* Slight fade to show progress/saving state */
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .bs-layout-icon-favorite.is-pulsing {
    display: inline-block;
    /* Run infinitely while the class is attached (will be removed after 1.5s) */
    animation: savingPulse 0.75s ease-in-out infinite;
    color: #6c4eff; /* Optional: forces a vibrant heart color during saving */
  }

  /* Optional: change cursor or style of the button wrapper during active save */
  .bs-layout-favorite-button.is-saving {
    cursor: wait;
    pointer-events: none; /* Stops interaction during the 1.5s save window */
  }

  .bs-layout-zoom-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border-radius: 5px !important;
    transition: 0.2s ease;
    z-index: 10;
    border-radius: 5px;
    padding: 5px;
    height: auto;
    opacity: 0;
    display: none;
  }

  .bs-layout-design-importing {
    .bs-layout-design-item {
      .bs-layout-image-overlay {
        background-color: rgba(0, 0, 0, 0.1);
      }
    }

    .bs-layout-action-info {
      opacity: 1;
      width: 130px;
      height: 130px;
    }

    .bs-import-button-icon {
      width: 45px;
      height: 45px;
    }
  }

  .bs-layout-parent {
    cursor: pointer;
  }

  .bs-template-count {
    color: rgba($text-color, 0.7);
    font-size: 14px;
    white-space: nowrap;
  }

  .bs-load-more {
    padding: 10px 20px;
    font-size: 16px;
    background-color: $primary-color;
    position: relative;
    z-index: 1;
    margin-top: 40px;
  }
}

.bs-layout-design-item > .bs-layout-design-title {
  padding: 12px 15px;
  background-color: #eee;
}

/********** Card End **********/

/********** Not Found Start **********/

.blockspare-dashboard {
  .bs-not-found-message {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    width: 100%;
    text-align: center;
    svg {
      width: 150px;
      height: 150px;
    }

    .bs-not-found-message-title {
      font-size: 30px;
      font-weight: 400;
      margin: 0;
    }

    .bs-not-found-message-description {
      font-size: 18px;
      font-weight: 300;
      margin: 0;
    }
  }
}
/********** Not Found End **********/

/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

//Settings page-----------------------------------------

.blockspare-dashboard {
  .settings-tab-container {
    background: #fff;
    border-radius: 6px;
    box-shadow: $box-shadow-1;

    .setting-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 90px;
      padding: 0 40px;
      border-bottom: 1px solid $border-color;
    }

    .setting-body {
      .blockspare__settings {
        padding: 32px 40px;

        &:not(:last-child) {
          border-bottom: 1px solid $border-color;
        }
      }

      .blockspare__settings-info {
        width: 100%;
        display: flex;
        align-items: center;
        margin-right: 64px;
      }

      .blockspare__settings-title {
        font-size: 18px;
        color: $text-color;
        line-height: 32px;
        font-weight: 500;
        flex: 1;
        display: inline-flex;
        margin: 0;
      }

      .blockspare__input-wrap {
        display: flex;

        .blockspare-admin__input-field {
          padding: 8px 0 8px 12px;
          border-radius: 6px 0 0 6px;
          color: #64748b;
          background-color: #fff;
          border: 1px solid $border-color;
          border-right-width: 0;
          font-size: 16px;
          line-height: 20px;
          min-height: 30px;
          display: block;
          width: 80px;
          height: 32px;
          margin: 0;
          appearance: none;

          &:focus {
            outline: none;
            border-color: #94a3b8;
            box-shadow: none;

            + .blockspare-admin__input-field--value-type {
              border-color: #94a3b8;
              box-shadow: none;
            }
          }
        }

        .blockspare-admin__input-field--value-type {
          padding: 8px 12px;
          font-size: 16px;
          line-height: 20px;
          color: #64748b;
          background-color: #fff;
          border-radius: 0 6px 6px 0;
          border: 1px solid $border-color;
          display: inline-flex;
          align-items: center;
          height: 32px;
        }
      }

      .blockspare__settings-description {
        font-size: 14px;
        line-height: 22.4px;
        color: rgb(100, 116, 139);
        width: 75%;
        margin: 0;
        margin-top: 8px;
      }

      .blockspare__settings-button {
        display: flex;
        justify-content: flex-end;
        padding: 40px;
      }
    }
  }
}

//Loader spiner
.bs-loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.bs-loader {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid $primary-color;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/********** Design Library Loaders Start **********/

.bs-circular-loader {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  border-radius: 100%;
  border: 1px solid;
  border-top-color: $primary-color;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-left-color: $primary-color;
  border-right-color: rgba(0, 0, 0, 0.1);
  -webkit-animation: bs-circular-loader 1s ease-in-out infinite;
  animation: bs-circular-loader 1s ease-in-out infinite;
}

.bs-import-loader {
  &.bs-circular-loader {
    width: 45px;
    height: 45px;
  }
}

@keyframes bs-circular-loader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes bs-circular-loader {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

.bs-layout-search-text {
  padding: 30px 16px 0;
  font-size: 18px;
}

/********** Design Library Loaders End **********/

/********** Media Query Start **********/

@media screen and (max-width: 1400px) {
  .blockspare-dashboard {
    .components-modal__header-heading {
      display: none;
    }
  }
}

@media screen and (max-width: 1200px) {
  .blockspare-dashboard .bs-tab-list {
    height: unset;
    flex-wrap: wrap;
  }
  .blockspare-dashboard .bs-tab {
    padding: 0 12px;
  }
  .blockspare-dashboard .bs-tab-list a i {
    display: none;
  }
  .blockspare-dashboard .bs-tab.bs-active-tab:after,
  .blockspare-dashboard .bs-tab.bs-active-tab {
    background: transparent;
  }
  .blockspare-dashboard {
    .bs-layout-tab-content.settings-tab-content-wrapper:has(.bs-layout-sidebar) .bs-layout-design,
    .bs-layout-design {
      width: calc(100% / 3 - 20px);
    }

    .bs-layout-tab-content:has(.bs-layout-sidebar) {
      .bs-layout-design {
        width: calc(100% / 2 - 20px);
      }
    }
  }
}

@media screen and (max-width: 992px) {
  .blockspare-dashboard {
    .bs-layout-tab-content.settings-tab-content-wrapper:has(.bs-layout-sidebar) .bs-layout-design,
    .bs-layout-design {
      width: calc(100% / 2 - 20px);
    }

    .bs-layout-tab-content:has(.bs-layout-sidebar) {
      .bs-layout-design {
        width: calc(100% - 20px);
      }
    }
  }
}

@media screen and (max-width: 782px) {
  .toplevel_page_blockspare {
    #wpbody-content {
      padding-bottom: 0;
    }

    .blockspare-dashboard {
      header {
        top: 46px;
      }

      .bs-layouts-wrappper {
        height: calc(100vh - 119px);
      }
      .bs-layout-sidebar {
        .bs-layout-category-list {
          height: calc(100vh - 159px);
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .blockspare-dashboard {
    .bs-layout-tab-content.settings-tab-content-wrapper:has(.bs-layout-sidebar) .bs-layout-design,
    .bs-layout-design {
      width: calc(100% - 20px);
    }
    .bs-layout-modal-header-wrap {
      flex-wrap: wrap;
    }

    .bs-layout-view-right button {
      margin-left: 0;
    }
  }

  .blockspare-dashboard {
    header {
      .navigation-wrapper {
        // justify-content: space-between;
        .plugin-logo {
          margin-right: 0;
        }
        .bs-dashboare-menu-desktop {
          display: none;
        }
        .bs-dashboare-menu-mobile {
          display: block;
        }
      }
    }
  }

  .blockspare-dashboard {
    .content-wrapper {
      &.dashboard {
        flex-direction: column;
      }
    }

    .panel-wrapper {
      &.second-wrapper {
        max-width: 100%;
        height: auto;
        position: static;
        top: auto;
      }
    }
  }
}

@media screen and (max-width: 600px) {
  .toplevel_page_blockspare {
    .blockspare-dashboard {
      header {
        top: 0;
      }
    }
  }
}

@media screen and (max-width: 576px) {
  .blockspare-dashboard {
    .bs-layout-design {
      width: calc(100% - 20px);
    }
  }

  .blockspare-dashboard {
    header {
      .navigation-wrapper {
        gap: 8px;
        .bs-dashboard-upgrade-button {
          &.links-panel {
            .bs-dashboard__button {
              font-size: 12px;
            }
          }
        }
      }
    }
  }
  .blockspare-dashboard {
    .feature-panel,
    .subscribe-panel {
      span {
        // font-size: 14px;
      }
    }
    .feature-panel {
      h1 {
        font-size: 24px;
      }
    }
    .links-panel {
      .bs-dashboard {
        &__footer {
          p {
            font-size: 14px;
          }
        }
      }
    }
  }
  .blockspare-dashboard {
    .blocklist-page {
      .block-category-heading {
        font-size: 20px;
      }
    }
  }
}

/********** Media Query End **********/

/****Dashboard landing*********/
.blockspare-dashboard {
  background: #f8f9fc;
  min-height: 100vh;
}

.blockspare-dashboard__container {
  max-width: 1500px;
  margin: 0 auto;
}

.bs-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.blockspare_block_viewcard {
  i.dashicons {
    color: #6c4eff;
    background: $transparent-primary-color;
    border-radius: 6px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;

  .highlight-content {
    h3 {
      margin: 0;
    }
    p {
      margin: 0;
      font-size: 12px;
    }
  }
  i.dashicons {
    color: #6c4eff;
    background: $transparent-primary-color;
    border-radius: 6px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  &:nth-child(2) i {
    color: #ce242c;
    background-color: #ffe7e8;
  }
  &:nth-child(3) i {
    color: rgb(16, 145, 16);
    background-color: rgb(214, 255, 205);
  }
  &:nth-child(4) i {
    background-color: #caefff;
    color: #2196f3;
  }
  &:nth-child(5) i {
    background-color: #fff5a6;
    color: #f1c100;
  }
}

.bs-main-content,
.bs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.box-panel a {
  text-decoration: none;
  color: $primary-color;
}
.box-panel a.bs-link {
  font-weight: 500;
  font-size: smaller;
  color: $primary-color;
  text-decoration: underline;

  &:hover {
    text-decoration: none;
  }
}
.box-panel a i {
  font-size: inherit;
  height: unset;
  display: inline-block;
  vertical-align: middle;
}

.component-card {
  background: #fff;
  border-radius: 18px;
  padding: 15px;

  a {
    text-decoration: none;
  }
}

.component-card a i {
  font-size: inherit;
  display: inline-block;
  vertical-align: middle;
  height: unset;
}
.bs-video-link {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  flex-wrap: wrap;
}
.toolkit-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;

  h3 {
    margin-bottom: 0;
    color: #6c4eff;
  }
}

.badge-pill-small {
  background-color: #ffe8e8;
  color: #ce242c;
  padding: 3px 6px;
  border-radius: 3px;
}
.bs-font-smaller {
  font-size: smaller;
}

.hero-block {
  padding: 40px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
  margin: 20px 0;

  span {
    display: block;
    color: #6c4eff;
  }
}

.hero-desc {
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.box-panel p {
  color: #64748b;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  // margin-bottom: 20px;
}

.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

button.btn-primary,
a.btn-primary {
  background: #6c4eff;
  color: #fff;
}
.btn-primary:hover {
  background: #5a3df5;
  color: #fff;
}

.btn-outline,
.btn-ghost {
  background: #fff;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.btn-outline:hover,
.btn-ghost:hover {
  background: #f8fafc;
  color: #6c4eff;
}
.section-label {
  display: inline-flex;
  align-items: center;
  background: #f3f4f6;
  color: #6c4eff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.toolkit-header h3 {
  margin-top: 0;
  line-height: 1.3;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.news-panel {
  display: flex;
  width: 100%;

  .bs-card {
    display: flex;

    .bs-content {
      display: flex;
      gap: 10px;
      width: 60%;
    }
    .bs-preview {
      width: 40%;
    }

    h3.bs-title {
      margin: 0;
      font-size: 13px;
    }
    p.bs-description {
      font-size: 12px;
      margin: 8px 0;
    }
  }
  img {
    max-width: 100%;
    display: block;
  }
}
.blockspare_block_cards {
  margin: 15px 0 0;
}

.mt-8 {
  margin-top: 8px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mt-12 {
  margin-top: 12px;
}

.whatsnew-item {
  display: flex;
  align-items: flex-start;
  padding: 4px 0;
  border-bottom: 1px solid #f1f5f9;
  gap: 5px;
}

.whatsnew-item:last-child {
  border-bottom: 0;
}
.whatsnew-item i {
  color: #22c55e;
}

.first-wrapper .whatsnew-item {
  border: none;
  padding: 8px 0;
}
.first-wrapper .whatsnew-item:nth-child(even) {
  background: #f5f4fe;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 500;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
}

.feature-item i {
  color: #22c55e;
}

.pricing-toggle {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
}

.pill.active {
  background: #6c4eff;
  color: #fff;
}

.pill.inactive {
  background: #f3f4f6;
}
.cta-block,
.love-block {
  .btn-primary,
  .btn-outline {
    margin-top: 10px;
  }
}
.bs-left-inner-wrap,
.blocksapre-choose-wrap,
.hero-block-container {
  display: flex;
  gap: 2%;
  width: 100%;
}
.bs-left-inner-wrap > div,
.blocksapre-choose-wrap > div,
.hero-block-container > div {
  width: 49%;
}
.hero-block-container {
  align-items: center;
}
.bs-left-inner-wrap {
  margin-top: 15px;
}
.blocksapre-choose-right {
  padding: 30px;
  background: #fff9e6;
  border-radius: 10px;
}

.video-thumbnail {
  position: relative;
  height: 100%;

  &::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(108 78 255 / 71%);
  }

  span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 9;
    font-size: 34px;
    width: 54px;
    height: 54px;
    line-height: 54px;
    background: #0007;
    border-radius: 50%;
  }
}

.cta-text,
.love-text {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-sub,
.love-sub {
  color: #64748b;
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .bs-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }

  .component-card {
    padding: 20px;
  }

  .cta-block,
  .love-block {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*********** Footer section *******************/
.bs-footer .plugin-logo {
  background-image: linear-gradient(180deg, #8b259c 30%, #141618);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  height: 40px;
  margin-right: 45px;
  mask-image: url(../images/blockspare-logo.png);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 140px;
}
.bs-footer {
  background: #fff;
  border-top: 1px solid #ececec;
  margin-top: 30px;
}

.bs-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 2fr;
  gap: 40px;
  padding: 50px 30px;
}

.bs-footer-brand {
  padding-right: 20px;
}

.bs-footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.bs-footer-brand p,
.bs-footer-subscribe p {
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}

.bs-footer-links h4,
.bs-footer-subscribe h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111;
}

.bs-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bs-footer-links li {
  margin-bottom: 12px;
}

.bs-footer-links a {
  color: #666;
  text-decoration: none;
  transition: 0.3s;
}

.bs-footer-links a:hover {
  color: #5a3df0;
}

.bs-footer-subscribe {
  background: #f8f8fc;
  border: 1px solid #ededf3;
  border-radius: 16px;
  padding: 28px;
}

.bs-subscribe-form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.bs-subscribe-form input {
  flex: 1;
  height: 46px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.bs-subscribe-form button {
  border: none;
  background: #5a3df0;
  color: #fff;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.bs-subscribe-form button:hover {
  background: #472cd1;
}

.bs-footer-bottom {
  border-top: 1px solid #ececec;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bs-footer-bottom p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.bs-footer-bottom span {
  color: #7b61ff;
}

span.btn-outline a {
  text-decoration: none;
  color: inherit;
}

.blockspare_block_card.active {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #eee;
  padding: 6px 12px;
  border-radius: 10px;
}
.blockspare_block_card__icon {
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0edff;

  svg {
    width: 15px;
    fill: #6c4eff;
  }
}
.block-category .blockspare_block_cards {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;

  .blockspare_block_viewcard {
    width: 20%;
    margin-bottom: 2%;
  }
}
.block-category {
  width: 100%;
  margin: 15px 0 0;
}

.blockspare_block_card__iconwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  align-items: center;

  i {
    font-size: 15px;
    width: 15px;
    height: 15px;
  }

  h4 {
    margin: 0;
  }
}

a.blockspare_block_card_video_link {
  display: block;
  margin: 0 0 10px;

  i {
    display: inline-block;
    vertical-align: middle;
    height: unset;
    font-size: inherit;
  }
}

.why-item-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  color: #777;
  margin-top: 15px;
}
.why-item strong {
  font-weight: 500;
}
.why-item i,
table.feature-table .dashicons-yes {
  color: #4caf50;
}

ul.category-block-list {
  list-style: inside;
  list-style-type: circle;
  margin-bottom: 0;

  li a {
    color: #64748b;
  }
  li a:hover {
    color: $primary-color;
  }
}
.box-panel.news-panel {
  gap: 30px;
}
.news-panel .bs-card,
.news-panel .blockspare_block_card__info {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #f0edff;
}
.news-panel .bs-card {
  padding: 0px;
  border: none;
}

table.feature-table {
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
  background: #fff;
  border-collapse: collapse;
  border: 1px solid #ddd;
  font-size: 12px;

  thead {
    background-color: #eee;
  }
  tr:nth-child(even) {
    background-color: #eeea;
  }
  tr td,
  tr th {
    padding: 5px 8px;
  }
  tr td {
    color: #64748b;
  }
}

.box-panel {
  h2,
  h3 {
    font-size: 16px;
  }
}
span.btn-outline a i {
  font-size: inherit;
  display: inline-block;
  vertical-align: middle;
  height: unset;
}
.toolkit-card button.btn-primary {
  width: 100%;
  justify-content: center;
  border-color: #6c4eff;
}
span.pro-badge {
  background: #6c4eff;
  color: #fff;
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
}

/* Container Box Custom Styles */
.blockspare-comparison-table-wrapper {
  max-width: 1000px;
  margin: 0px auto 20px;
  background-color: #fff; /* Deep dark background from image */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(240 237 255);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.blockspare-comparison-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Row Grid Framework */
.blockspare-comparison-table li {
  display: flex;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Dim internal grid dividers */
}
.blockspare-comparison-table li:nth-child(odd) {
  background: #f5f3ff;
}
.blockspare-comparison-table li.blockspare-table-heading {
  background: linear-gradient(0deg, #6c4eff, #7458ff, #9f8cfc);
}

/* Headings Alignment */
.blockspare-comparison-table .blockspare-table-heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Structural Width Alignments: 30% Feature, 35% Free, 35% Pro */
.blockspare-comparison-table .blockspare-feature-title-cell {
  width: 30%;
  padding: 24px 20px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #140707;
}

.blockspare-comparison-table .blockspare-table-heading:first-child .blockspare-feature-title-cell {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.blockspare-comparison-table .blockspare-column-header-cell {
  width: 35%;
  padding: 24px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.blockspare-comparison-table .blockspare-table-cell {
  width: 35%;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* Feature Description Text Block */
.blockspare-comparison-table .blockspare-cell-text {
  font-size: 14px;
  line-height: 1.6;
  color: #080d14;
}

/* Right-Side Pro Gradient Accent Overlays */
.blockspare-comparison-table .blockspare-pro-highlight-header {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%);
  color: #fff;
}

.blockspare-comparison-table .blockspare-pro-highlight-column {
  background-color: rgba(99, 102, 241, 0.03); /* Subtle translucent highlight tint */
}

/* Fallback WordPress Icon Formatting inside cells */
.blockspare-comparison-table .dashicons {
  font-size: 22px;
  width: 22px;
  height: 22px;
}
.blockspare-comparison-table .dashicons-yes {
  color: #34d399;
}
.blockspare-comparison-table .dashicons-no-alt {
  color: rgb(248, 113, 113);
}

/* Footer Control Container Elements */
.blockspare-upgrade-pro-button-wrapper {
  padding: 24px;
  /*background-color: #080d18;*/
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.blockspare-upgrade-pro-button-wrapper .button.button-primary {
  background-color: #4f46e5;
  border-color: #4f46e5;
  padding: 8px 24px;
  height: auto;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.blockspare-upgrade-pro-button-wrapper .button.button-primary:hover {
  background-color: #4338ca;
  border-color: #4338ca;
}

.bs-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  .blockspare_block_card__title {
    order: unset;
  }
  span.bs-is-pro {
    background: #181127;
    color: #fff;
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    padding: 0.3rem 0.6rem;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 1;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .bs-footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-block-container > div,
  .blocksapre-choose-wrap > div {
    width: 100%;
  }
  .hero-actions {
    margin-bottom: 20px;
  }
  .blockspare-dashboard .feature-panel > div {
    display: block;

    .blocksapre-choose-right {
      margin-top: 15px;
    }
  }
  .block-category .blockspare_block_cards {
    .blockspare_block_viewcard {
      width: 49%;
      margin-bottom: 20px;
    }
  }
  .box-panel.news-panel {
    flex-direction: column;
  }
  .blockspare-dashboard {
    .highlight-item {
      width: 45%;
    }
  }
  .bs-video-link {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .blockspare-dashboard .panel-wrapper.second-wrapper,
  .blockspare-dashboard .panel-wrapper.first-wrapper {
    width: 100%;
  }
  .blockspare-dashboard .bs-layout-sidebar .bs-layout-category-list .bs-layout-category {
    width: calc(50% - 5px);
    min-width: unset;
  }

  .bs-footer-top {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .bs-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .bs-subscribe-form {
    flex-direction: column;
  }

  .bs-subscribe-form button {
    height: 46px;
  }
}

```
