/**
 * Element Pack Admin - Pure CSS (no nesting, full selectors).
 * Uses CSS custom properties for theming.
 */

 :root {
    --ep-green-color: #06d6a0;
    --ep-light-green-color: #b6ffec;
    --ep-red-color: #ef476f;
    --ep-light-red-color: #ffcdd9;
    --ep-yellow-color: #ffd166;
    --ep-light-yellow-color: #fff4d9;
    --ep-blue-color: #0680d6;
    --ep-light-blue-color: #b0ebff;
    --ep-navyblue-color: #073b4c;
    --ep-light-navyblue-color: #94e4ff;
    --ep-icon-color: #48484a;
    --ep-card-background: #fff;
    --ep-dashboard-gap-size: 20px;
    --ep-dashboard-nav-width: 240px;
    --ep-dashboard-border-color: rgba(123, 123, 123, 0.09);
    --ep-shape-primary-color: #49ddb4;
    --ep-shape-secondary-color: #3fb8e1;
    --ep-global-link-color: #1e87f0;
  }
  
  .element-pack-dashboard {
    position: relative;
  }
  .element-pack-dashboard.wrap {
    margin-block-start: 10px;
    margin-inline-end: 20px;
  }
  .element-pack-dashboard.wrap a:focus {
    outline: none;
    box-shadow: none;
  }
  .element-pack-dashboard.wrap #element_pack_api_settings_page .ep-options {
    display: block;
    columns: 1;
    gap: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard.wrap #element_pack_api_settings_page .ep-options .ep-option-item {
    margin-block-end: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard.wrap .ep-affiliate-sub-title {
    color: #1d2327;
    font-size: 1.3em;
    margin: 1em 0;
  }
  .element-pack-dashboard.wrap .ep-affiliate-features ul {
    list-style: inside;
  }
  .element-pack-dashboard.wrap .ep-purchase-button a,
  .element-pack-dashboard.wrap .element-pack-settings-save-btn {
    padding: 3px 30px;
    color: #fff;
    background: linear-gradient(to right, #49e0af, var(--ep-shape-secondary-color));
    border: 0;
    line-height: 40px;
    font-size: 16px;
  }
  .element-pack-dashboard.wrap .ep-purchase-button a:hover,
  .element-pack-dashboard.wrap .element-pack-settings-save-btn:hover {
    background: linear-gradient(to right, var(--ep-shape-secondary-color), #49e0af);
  }
  .element-pack-dashboard.wrap .ep-purchase-button a {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header {
    position: relative;
    padding: 20px 30px;
    background: #fff;
    overflow: hidden;
    z-index: 11;
    border: 1px solid var(--ep-dashboard-border-color);
    border-radius: 6px;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header.bdt-sticky-fixed {
    z-index: 999;
    box-shadow: 0px -32px 0px 0px #ffffff, 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-end-start-radius: 0;
    border-end-end-radius: 0;
    border-block-end: 0;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header.bdt-sticky-fixed .ep-header-elements {
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header.bdt-sticky-fixed:hover .ep-header-elements {
    opacity: 1;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-header-elements {
    position: absolute;
    inset: 0;
    inline-size: 100%;
    block-size: 100%;
    pointer-events: none;
    z-index: 1;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-logo,
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-dashboard-new-page {
    position: relative;
    z-index: 2;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-header-elements .ep-header-element {
    position: absolute;
    display: block;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-header-elements .ep-header-element.ep-header-circle {
    inline-size: 160px;
    block-size: 160px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(73, 221, 180, 0.05), rgba(63, 184, 225, 0.08));
    inset-block-start: -80px;
    inset-inline-end: 10%;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-header-elements .ep-header-element.ep-header-dots {
    inset-block-end: 20px;
    inset-inline-start: 15%;
    inline-size: 80px;
    block-size: 40px;
    background-image: radial-gradient(rgba(73, 221, 180, 0.15) 2px, transparent 2px);
    background-size: 10px 10px;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-header-elements .ep-header-element.ep-header-line {
    inline-size: 120px;
    block-size: 2px;
    background: linear-gradient(90deg, rgba(73, 221, 180, 0), rgba(63, 184, 225, 0.2));
    transform: rotate(-45deg);
    inset-block-start: 40%;
    inset-inline-end: 25%;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-header-elements .ep-header-element.ep-header-square {
    inline-size: 30px;
    block-size: 30px;
    border: 2px solid rgba(73, 221, 180, 0.1);
    inset-block-start: 30px;
    inset-inline-start: 20%;
    transform: rotate(15deg);
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-header-elements .ep-header-element.ep-header-wave {
    inline-size: 140px;
    block-size: 20px;
    inset-block-end: 20px;
    inset-inline-end: 15%;
    background: linear-gradient(45deg, rgba(73, 221, 180, 0) 45%, rgba(63, 184, 225, 0.1) 50%, rgba(73, 221, 180, 0) 55%);
    background-size: 15px 15px;
    transform: rotate(-10deg);
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-logo {
    position: relative;
    z-index: 1;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header.bdt-sticky-fixed,
  .element-pack-dashboard.wrap .bdt-widget-filter-wrapper.bdt-sticky-fixed {
    box-shadow: 0px -32px 0px 0px #ffffff, 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-end-start-radius: 0;
    border-end-end-radius: 0;
  }
  .element-pack-dashboard.wrap .ep-dashboard-wrapper {
    background: #ffffff;
    border-radius: 6px;
    padding: 30px;
    position: relative;
    max-inline-size: 1600px;
  }
  .element-pack-dashboard.wrap .ep-dashboard-container {
    gap: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-logo {
    inline-size: 300px;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-logo img {
    inline-size: 202px;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-dashboard-nav-title h3 {
    font-size: 20px;
    font-weight: 600;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-dashboard-nav-title h3 i {
    margin-inline-end: 10px;
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-dashboard-new-page a {
    text-decoration: none;
    gap: 5px;
    color: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    line-height: normal;
    font-size: clamp(12px, 0.8vw, 14px);
    font-weight: 600;
    padding: clamp(10px, 1vw, 11px) clamp(10px, 1vw, 20px);
    color: var(--ep-shape-primary-color);
    border: 2px solid var(--ep-shape-primary-color);
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-dashboard-new-page a:hover {
    border-color: var(--ep-shape-secondary-color);
    color: var(--ep-shape-secondary-color);
  }
  .element-pack-dashboard.wrap .ep-dashboard-header .ep-dashboard-new-page a i {
    transition: color 300ms ease-out;
  }
  .element-pack-dashboard.wrap .ep-dashboard-nav-container-wrapper {
    margin-block-start: 20px;
    display: none;
  }
  .element-pack-dashboard.wrap .bdt-dashboard-navigation {
    box-sizing: border-box;
    padding: 0;
    min-inline-size: var(--ep-dashboard-nav-width);
    max-inline-size: var(--ep-dashboard-nav-width);
  }
  .element-pack-dashboard.wrap .ep-dashboard-compare-section {
    border-block-start: 1px solid #f5f5f5;
    margin-block-start: 50px;
    padding-block-start: 50px;
  }
  .element-pack-dashboard.wrap .ep-dashboard-compare-section .ep-feature-sub-title {
    font-size: 15px;
    font-weight: 500;
    margin-block-end: 10px;
    color: #6a6b72;
  }
  .element-pack-dashboard.wrap .ep-dashboard-compare-section ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: outside;
    padding: 0;
    margin: 30px 0 0;
    font-size: 14px;
    padding-inline: 20px;
    margin-block-end: 30px;
  }
  .element-pack-dashboard.wrap .ep-highlight-text {
    color: #48dab7;
    padding: 3px 6px;
    border-radius: 6px;
    line-height: 1;
    background: #e6fff8;
  }
  .element-pack-dashboard.wrap .ep-content-type-filter {
    border-block-start: 2px solid #2196f3;
    padding-block-start: 20px;
    display: none;
  }
  .element-pack-dashboard.wrap .ep-content-type-filter ul {
    gap: 2px;
  }
  .element-pack-dashboard.wrap .ep-content-type-filter ul li {
    margin: 0;
  }
  .element-pack-dashboard.wrap .ep-content-type-filter ul li a {
    font-size: 14px;
    color: #666;
    border: 1px solid transparent;
    position: relative;
    padding: 4px 6px;
  }
  .element-pack-dashboard.wrap .ep-content-type-filter ul li a:before {
    content: "";
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 0;
    inline-size: 0;
    block-size: 2px;
    background: #2196f3;
    transition: inline-size 0.3s ease;
  }
  .element-pack-dashboard.wrap .ep-content-type-filter ul li a:hover {
    color: #2196f3;
  }
  .element-pack-dashboard.wrap .ep-content-type-filter ul li.bdt-active a {
    color: #2196f3;
  }
  .element-pack-dashboard.wrap .ep-content-type-filter ul li.bdt-active a:before {
    inline-size: 100%;
  }
  .element-pack-dashboard.wrap .ep-content-type-filter .ep-filter-by-text {
    font-size: 14px;
    margin-inline-end: 10px;
    font-weight: 600;
  }
  .element-pack-dashboard.wrap .ep-dashboard-compare-section.bdt-card {
    background: #fff;
    border: 1px solid var(--ep-dashboard-border-color);
  }
  .element-pack-dashboard.wrap .ep-dashboard-welcome-container {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    grid-row-gap: var(--ep-dashboard-gap-size);
    grid-column-gap: var(--ep-dashboard-gap-size);
    display: grid;
  }
  .element-pack-dashboard.wrap .ep-dashboard-welcome-container p {
    margin-block-end: 16px;
  }
  .element-pack-dashboard.wrap .ep-dashboard-welcome-container .ep-dashboard-footer-item p {
    margin-block-end: 0;
  }
  .element-pack-dashboard.wrap .ep-dashboard-item:nth-child(1),
  .element-pack-dashboard.wrap .ep-dashboard-item:nth-child(3) {
    grid-column: span 12 / auto;
    grid-row: span 1 / auto;
  }
  .element-pack-dashboard.wrap .ep-dashboard-item {
    grid-column: span 12 / auto;
    grid-row: span 1 / auto;
  }
  .element-pack-dashboard.wrap .ep-dashboard-item:nth-child(2) {
    grid-column: span 12 / auto;
    grid-row: span 2 / auto;
  }
  .element-pack-dashboard.wrap .ep-dashboard-template-quick-access img {
    inline-size: 100%;
    block-size: auto;
    border-radius: 6px;
    margin-block-end: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard.wrap .ep-pro-inactive .ep-option-item-inner {
    background-color: rgba(253, 228, 235, 0.12) !important;
    border-color: #ffeaf0 !important;
  }
  .element-pack-dashboard.wrap .ep-pro-inactive .ep-option-item-inner:after {
    content: "PRO";
    position: absolute;
    inset-inline-end: 24px;
    inset-block-start: 50%;
    transform: translate(0, -50%);
    font-size: 10px;
    font-weight: 600;
    color: var(--ep-red-color);
    padding: 5px 9px;
    border-radius: 20px;
    background-color: #ffe4eb;
  }
  .element-pack-dashboard.wrap .ep-pro-inactive .ep-option-item-inner .element-pack-3pp-install,
  .element-pack-dashboard.wrap .ep-pro-inactive .ep-option-item-inner .element-pack-3pp-active,
  .element-pack-dashboard.wrap .ep-pro-inactive .ep-option-item-inner .element-pack-3pp-download,
  .element-pack-dashboard.wrap .ep-pro-inactive .ep-option-item-inner .switch {
    display: none;
  }
  .element-pack-dashboard.wrap .bdt-dashboard-navigation .bdt-tab li {
    margin: 0;
    border-block-end: 1px solid var(--ep-dashboard-border-color);
  }
  .element-pack-dashboard.wrap .bdt-dashboard-navigation .bdt-tab li a {
    padding: 16px 30px;
    border: none;
    background: none;
    text-decoration: none;
    font-size: clamp(14px, 1vw, 15px);
    color: #666;
    position: relative;
    transition: box-shadow 300ms ease-out;
    justify-content: flex-start;
    gap: 12px;
    font-weight: 600;
  }
  .element-pack-dashboard.wrap .bdt-dashboard-navigation .bdt-tab li a:hover,
  .element-pack-dashboard.wrap .bdt-dashboard-navigation .bdt-tab li a:focus {
    border-block-end: none;
    color: #000;
    box-shadow: none;
  }
  .element-pack-dashboard.wrap .bdt-dashboard-navigation .bdt-tab li a:after {
    background-color: var(--ep-blue-color);
    content: "";
    block-size: 0;
    position: absolute;
    inset-inline-start: 0;
    inline-size: 4px;
    transition: block-size 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translate(0, -50%);
    inset-block-start: 50%;
  }
  .element-pack-dashboard.wrap .bdt-dashboard-navigation .bdt-tab li.bdt-active a {
    color: var(--ep-blue-color);
  }
  .element-pack-dashboard.wrap .bdt-dashboard-navigation .bdt-tab li.bdt-active a:after {
    block-size: 75%;
  }
  .element-pack-dashboard.wrap .bdt-card {
    border-radius: 6px;
    background-color: var(--ep-card-background);
    border: 1px solid var(--ep-dashboard-border-color);
  }
  .element-pack-dashboard.wrap .ep-option-page {
    margin-block-start: 20px;
  }
  .element-pack-dashboard.wrap .ep-option-page p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-inline-size: 600px;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .bdt-width-expand > [class^="bdt-wi-"] {
    font-size: 48px;
    margin-inline-end: 20px;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item.ep-widget-free .bdt-width-expand > [class^="bdt-wi-"] {
    color: var(--ep-icon-color);
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item.ep-widget-pro .bdt-width-expand > [class^="bdt-wi-"] {
    color: var(--ep-icon-color);
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item[data-content-type~="update"] > .ep-option-item-inner:before,
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item[data-content-type~="new"] > .ep-option-item-inner:before {
    inline-size: 70px;
    block-size: 20px;
    color: #fff;
    position: absolute;
    transform: rotate(-45deg);
    text-align: center;
    line-height: 20px;
    font-size: 9px;
    inset-inline-start: -20px;
    inset-block-start: 4px;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item[data-content-type~="new"] > .ep-option-item-inner:before {
    background-color: var(--ep-red-color);
    content: "NEW";
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item[data-content-type~="update"] > .ep-option-item-inner:before {
    background-color: var(--ep-blue-color);
    content: "UPDATE";
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-label-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-label-wrap .ep-option-links {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-label {
    font-size: 15px;
    font-weight: 500;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-demo,
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-video {
    color: #837f90;
    transition: all 0.2s ease-out;
    text-decoration: none;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 5px;
    font-size: 12px;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-demo i,
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-video i {
    font-size: 14px;
    color: currentColor;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-demo:hover i,
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-video:hover i {
    color: currentColor;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item.ep-widget-free .ep-option-demo:hover,
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item.ep-widget-free .ep-option-video:hover {
    color: var(--ep-green-color);
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item.ep-widget-pro .ep-option-demo:hover,
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item.ep-widget-pro .ep-option-video:hover {
    color: var(--ep-red-color);
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-item-inner {
    position: relative;
    border: 1px solid var(--ep-dashboard-border-color);
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-item-inner.ep-option-group {
    background-color: var(--ep-card-background);
    border: 1px solid var(--ep-dashboard-border-color);
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-option-item .ep-option-item-inner .ep-option-item-inner {
    border: none;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper {
    position: relative;
    padding: 20px;
    background: #fff;
    overflow: hidden;
    z-index: 998;
    border-radius: 6px;
    border: 1px solid var(--ep-dashboard-border-color);
    margin-block-end: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .bdt-filter-shape {
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    z-index: -1;
    pointer-events: none;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .bdt-filter-shape svg {
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    transform: scale(1.5);
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul {
    margin-block: 0;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .bdt-badge {
    block-size: 18px;
    inline-size: 18px;
    margin-inline-start: 5px;
    font-size: 10px;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .bdt-button-default {
    text-decoration: none;
    color: #444;
    background-color: var(--ep-card-background);
    transition: all 0.3s cubic-bezier(0.3, 0.36, 0.25, 1);
    border: none;
    border-radius: 6px;
    outline: none;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    padding: 10px 12px;
    line-height: 18px;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .bdt-button-default:hover {
    background: var(--ep-blue-color);
    color: #fff;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li {
    margin: 0;
    padding: 0;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li:first-child {
    padding-inline-start: 20px;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li a {
    text-decoration: none;
    color: #444;
    transition: all 0.3s cubic-bezier(0.3, 0.36, 0.25, 1);
    border: none;
    border-radius: 6px;
    outline: none;
    font-size: clamp(12px, 0.8vw, 14px);
    font-weight: 500;
    padding: 10px clamp(10px, 0.9vw, 10px);
    background: #e9f4ff;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li a:hover {
    background: var(--ep-blue-color);
    color: #fff;
    outline: none;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li a:hover .bdt-badge {
    background-color: #118ab2;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li.bdt-active a {
    background: var(--ep-blue-color);
    color: #fff;
    box-shadow: none;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li.ep-widget-free a {
    background-color: var(--ep-light-green-color);
    color: var(--ep-green-color);
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li.ep-widget-free a:hover {
    background-color: var(--ep-green-color);
    color: #fff;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li.ep-widget-free.bdt-active a {
    background-color: var(--ep-green-color);
    color: #fff;
    box-shadow: none;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li.ep-widget-pro a {
    background-color: var(--ep-light-red-color);
    color: var(--ep-red-color);
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li.ep-widget-pro a:hover {
    background-color: var(--ep-red-color);
    color: #fff;
    box-shadow: none;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul.bdt-subnav li.ep-widget-pro.bdt-active a {
    background-color: var(--ep-red-color);
    color: #fff;
    box-shadow: none;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .ep-widget-onoff .ep-active-all-widget {
    background-color: var(--ep-global-link-color);
    color: #fff;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .ep-widget-onoff .ep-active-all-widget:hover,
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .ep-widget-onoff .ep-active-all-widget.bdt-active {
    background-color: #0c6fd1;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .ep-widget-onoff .ep-deactive-all-widget {
    background-color: #c81b07;
    color: #fff;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .ep-widget-onoff .ep-deactive-all-widget.bdt-active,
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .ep-widget-onoff .ep-deactive-all-widget:hover {
    background-color: #cf1c08;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .bdt-dropdown {
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    background-color: var(--ep-card-background);
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .bdt-dropdown ul li a {
    font-size: 14px;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .bdt-dropdown ul li a:focus {
    box-shadow: none;
  }
  .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper .bdt-dropdown ul li.bdt-active a {
    color: #fff;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options > .ep-option-item {
    margin-block-end: 0 !important;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options > .ep-option-item .ep-option-group .ep-option-item .ep-option-label {
    font-size: 14px !important;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options > .ep-option-item .ep-option-item-inner .bdt-input {
    block-size: 34px;
    border-radius: 6px !important;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options > .ep-option-item .ep-option-item-inner .bdt-input:focus {
    background-color: var(--ep-card-background);
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options > .ep-option-item .ep-option-item-inner input[type="text"] {
    border-radius: 3px;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options > .ep-option-item .ep-option-item-inner textarea {
    inline-size: 100%;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options > .ep-option-item > .ep-option-item-inner {
    line-height: 1;
    padding: 18px 25px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.3, 0.36, 0.25, 1);
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options > .ep-option-item > .ep-option-item-inner:hover {
    box-shadow: none;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options > .ep-option-item > .ep-option-item-inner:hover .ep-widget-count-text {
    color: #7c99b7;
  }
  .element-pack-dashboard.wrap .ep-option-page .ep-options > .ep-option-item > .ep-option-item-inner:hover [class^="bdt-wi-"] {
    color: #052442;
  }
  .element-pack-dashboard.wrap .bdt-search-active-wrap .bdt-subnav {
    margin: 0;
  }
  .element-pack-dashboard.wrap .bdt-search-active-wrap .bdt-widget-search input {
    min-block-size: 40px;
    padding: 0 8px;
    border-color: rgba(30, 135, 240, 0.3);
  }
  .element-pack-dashboard.wrap .bdt-search-active-wrap .bdt-widget-search input:focus {
    border: 1px solid var(--ep-global-link-color);
    outline: 0;
    box-shadow: 0 0 0 1px var(--ep-global-link-color);
  }
  .element-pack-dashboard .element-pack-settings-save-btn {
    border-radius: 6px;
  }
  .element-pack-dashboard .ep-setting-save-btn {
    z-index: 99999 !important;
    position: relative;
  }
  .element-pack-dashboard .switch {
    position: relative;
    display: inline-block;
    inline-size: 44px;
    block-size: 24px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    transition: all 0.3s ease-out;
    overflow: hidden;
    cursor: pointer;
  }
  .element-pack-dashboard .switch::after {
    content: "";
    position: absolute;
    inline-size: 20px;
    block-size: 20px;
    border-radius: 20px;
    background-color: white;
    inset-block-start: 2px;
    inset-inline-start: 3px;
    transition: all 0.3s cubic-bezier(0.24, 0.85, 0.58, 1);
  }
  .element-pack-dashboard input[type="checkbox"]:checked + .switch::after {
    transform: translate(18px, 0);
  }
  .element-pack-dashboard input[type="checkbox"]:checked + .switch {
    background-color: var(--ep-global-link-color);
  }
  .element-pack-dashboard input[type="checkbox"] {
    position: absolute;
    inset-inline-start: -9999px;
  }
  .element-pack-dashboard .ep-widget-pro input[type="checkbox"]:checked + .switch {
    background-color: var(--ep-red-color);
  }
  .element-pack-dashboard .ep-widget-free input[type="checkbox"]:checked + .switch {
    background-color: var(--ep-green-color);
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status {
    font-size: 13px;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status li > div {
    padding-block-end: 5px;
    margin-block-end: 5px;
    border-block-end: 1px solid rgba(0, 0, 0, 0.1);
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .label1 {
    inline-size: 200px;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status span {
    display: inline-block;
    line-height: 1.6;
    vertical-align: middle;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .valid,
  .element-pack-dashboard .ep-system-requirement .check-system-status .invalid {
    font-size: 15px;
    inline-size: 20px;
    block-size: 18px;
    margin-inline-start: 10px;
    margin-inline-end: 15px;
    vertical-align: middle;
    border-radius: 3px;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .invalid {
    background: red;
    color: #fff;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .valid {
    background: var(--ep-green-color);
    color: #fff;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .valid i::before {
    margin-inline-start: -1px;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status i::before {
    font-size: 15px;
    line-height: 20px;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-wrap {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-inline-start: 8px;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-doc {
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1.6;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-hint {
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 100%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-red-color);
    pointer-events: none;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-hint i,
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-hint i::before {
    font-size: 17px;
    inline-size: 17px;
    block-size: 17px;
    line-height: 17px;
    color: var(--ep-red-color);
    animation: ep-system-req-arrow-nudge 1.2s ease-in-out infinite;
  }
  @keyframes ep-system-req-arrow-nudge {
    0% {
      transform: translateY(6px);
      opacity: 0.45;
    }
    50% {
      transform: translateY(-2px);
      opacity: 1;
    }
    100% {
      transform: translateY(6px);
      opacity: 0.45;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-hint i {
      animation: none;
      opacity: 1;
    }
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-doc__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-doc__icon i,
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-doc__icon i::before {
    font-size: 24px;
    inline-size: 24px;
    block-size: 24px;
    line-height: 24px;
    color: var(--ep-red-color);
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-doc:hover .ep-system-req-video-doc__icon {
    transform: scale(1.08);
  }
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-doc:hover .ep-system-req-video-doc__icon i,
  .element-pack-dashboard .ep-system-requirement .check-system-status .ep-system-req-video-doc:hover .ep-system-req-video-doc__icon i::before {
    color: #d93a60;
  }
  .element-pack-dashboard .ep-no-result {
    display: none;
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%) !important;
  }
  .element-pack-dashboard .bdt-animation-shake {
    animation-name: bdt-shake !important;
    display: block !important;
  }
  .element-pack-dashboard .ep-code-editor-description {
    color: #0073aa;
    font-size: 13px;
    margin-block: 5px 10px;
    font-style: italic;
    opacity: 0.9;
  }
  .element-pack-dashboard .ep-code-section-header {
    margin-block-end: var(--ep-dashboard-gap-size);
    background: #fefefe;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid var(--ep-dashboard-border-color);
  }
  .element-pack-dashboard .ep-section-title {
    color: #23282d;
    font-size: 18px;
    font-weight: 600;
    margin-block-end: 8px;
    padding: 0;
  }
  .element-pack-dashboard .ep-section-description {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
  }
  .element-pack-dashboard .ep-page-exclusion-wrapper {
    border: 1px solid var(--ep-dashboard-border-color);
    border-radius: 4px;
    padding: 20px;
    margin-block-end: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard .ep-exclusion-label {
    display: block;
    font-weight: 600;
    margin-block-end: 8px;
    color: #23282d;
  }
  .element-pack-dashboard .ep-page-select {
    inline-size: 100%;
    min-block-size: 120px;
    max-block-size: 200px;
    padding: 8px;
    border: 1px solid var(--ep-dashboard-border-color);
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    max-inline-size: 100%;
  }
  .element-pack-dashboard .ep-page-select option {
    padding: 4px 8px;
  }
  .element-pack-dashboard .ep-exclusion-help {
    color: #666 !important;
    font-size: 14px !important;
    font-style: italic !important;
    margin: 12px 0 0 0 !important;
    line-height: 1.4 !important;
  }
  .element-pack-dashboard .ep-dashboard-nav-container {
    position: relative;
    z-index: 98;
  }
  .element-pack-dashboard .ep-dashboard-nav-container.bdt-sticky-fixed {
    z-index: 998;
  }
  .element-pack-dashboard .bdt-tab-container {
    position: relative;
  }
  .element-pack-dashboard #element_pack_elementor_extend_page .ep-option-item-inner,
  .element-pack-dashboard #element_pack_other_settings_page .ep-option-item-inner,
  .element-pack-dashboard #element_pack_third_party_widget_page .ep-option-item-inner,
  .element-pack-dashboard #element_pack_active_modules_page .ep-option-item-inner {
    overflow: hidden;
  }
  .element-pack-dashboard #element_pack_other_settings_page .ep-options > .ep-option-item > .ep-option-item-inner > label > .ep-option-label {
    font-weight: 700;
    font-size: 22px;
  }
  .element-pack-dashboard #element_pack_other_settings_page .ep-options > .ep-option-item > .ep-option-item-inner .description {
    margin-block-start: 20px;
  }
  .element-pack-dashboard #element_pack_elementor_extend_page .ep-widget-count-text,
  .element-pack-dashboard #element_pack_other_settings_page .ep-widget-count-text {
    display: none;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options > .ep-option-item {
    border: 1px solid var(--ep-dashboard-border-color);
    border-radius: 6px;
    background: #fefefe;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options > .ep-option-item > .ep-option-item-inner {
    padding: 35px;
    border: 0;
    background: transparent;
    break-inside: avoid-column;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options > .ep-option-item > .ep-option-item-inner a i {
    font-size: 18px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options > .ep-option-item > .ep-option-item-inner .ep-option-item {
    margin-block-start: 10px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options > .ep-option-item > .ep-option-item-inner .ep-option-item:nth-last-child(1) {
    margin-block-start: 0;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-inline-start: 4px solid #48dbb5;
    margin-block: 10px 0;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager .oauth-setup-required h4 {
    color: #d63638;
    margin-block-end: 10px;
    font-size: 16px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager .oauth-setup-required p {
    font-size: 13px;
    color: #676768;
    margin-block-end: 10px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager .oauth-setup-required ol {
    margin-inline-start: 16px;
    padding: 0;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager .oauth-setup-required ol li {
    font-size: 13px;
    color: #676768;
    line-height: 1.3;
    margin: 0 0 10px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager .oauth-setup-required ol li:last-child {
    margin-block-end: 0 !important;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager .oauth-disconnected p {
    font-size: 13px;
    color: #676768;
    margin-block-end: 10px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager #ep-disconnect-google,
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager .oauth-disconnected button {
    color: #fff;
    background: linear-gradient(to right, #49e0af, var(--ep-shape-secondary-color));
    border: 0;
    margin-block-start: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager #ep-disconnect-google:hover,
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager .oauth-disconnected button:hover {
    background: linear-gradient(to right, var(--ep-shape-secondary-color), #49e0af);
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager .oauth-connected h4 {
    color: #00a32a;
    margin: 0;
    font-size: 16px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager #ep-oauth-status {
    margin-block-start: 15px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager #ep-oauth-status .ep-oauth-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: OAuth-slideInDown 0.5s ease-out;
    position: relative;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager #ep-oauth-status .ep-oauth-loading .ep-oauth-spinner {
    inline-size: 20px;
    block-size: 20px;
    border: 3px solid rgba(102, 126, 234, 0.2);
    border-block-start-color: #49e0af;
    border-radius: 50%;
    animation: OAuthspin 0.8s linear infinite;
    flex-shrink: 0;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-options #ep-google-oauth-manager #ep-oauth-status .ep-oauth-loading .ep-oauth-message {
    color: #49e0af;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  @keyframes OAuthspin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes OAuthslideInDown {
    0% {
      opacity: 0;
      transform: translate(0, -20px);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
    }
  }
  .element-pack-dashboard #element_pack_api_settings_page input,
  .element-pack-dashboard #element_pack_api_settings_page textarea {
    border-color: #ddd;
  }
  .element-pack-dashboard #element_pack_api_settings_page input[type="text"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="password"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="color"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="date"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="datetime"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="datetime-local"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="email"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="month"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="number"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="search"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="tel"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="time"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="url"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="week"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="checkbox"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page input[type="radio"]:focus,
  .element-pack-dashboard #element_pack_api_settings_page select:focus,
  .element-pack-dashboard #element_pack_api_settings_page textarea:focus {
    border-color: var(--ep-blue-color);
    box-shadow: none;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-option-video {
    position: absolute;
    inset-inline-end: 25px;
    inset-block-start: 20px;
    background: #e9f4ff;
    padding: 8px;
    border-radius: 6px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-option-label {
    display: block;
    margin-block-end: 25px;
    font-size: 18px;
  }
  .element-pack-dashboard #element_pack_api_settings_page .ep-option-group .ep-option-label {
    margin-block-end: 15px;
  }
  .element-pack-dashboard #element_pack_api_settings_page p.description {
    font-size: 12px !important;
    color: #999;
    margin-block-start: 10px;
  }
  .element-pack-dashboard #element_pack_api_settings_page p.description a {
    color: #888;
  }
  .element-pack-dashboard #element_pack_extra_options_page .ep-white-label-options .ep-option-item-inner {
    background: #fefefe;
    padding: 30px;
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-others-plugin {
    display: flex;
    flex-direction: column;
    gap: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-others-plugin .bdt-card {
    flex-direction: column;
    gap: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-others-plugin .ep-plugins-list .bdt-card {
    margin-block-start: 20px;
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-others-plugin .ep-plugins-list .bdt-card:nth-child(1) {
    margin-block-start: 0;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card {
    border-radius: 6px;
    transition-property: box-shadow, color;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.3, 0.36, 0.25, 1);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card a {
    text-decoration: none;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card a:focus {
    box-shadow: none;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card p {
    margin-block-start: 0;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .ep-count-canvas-wrap .ep-feature-title {
    margin-block-end: 5px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .ep-count-wrap {
    flex: none;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .ep-widget-count {
    color: #a1a8ad;
    font-size: 12px;
    line-height: 1.7;
    text-transform: uppercase;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-content {
    inline-size: 100%;
    gap: var(--ep-dashboard-gap-size);
    flex-direction: column;
    align-items: flex-start;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-content .ep-feature-title {
    font-weight: 500;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-content .bdt-plugin-logo-wrap {
    gap: 15px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-content img {
    inline-size: clamp(50px, 8vw, 70px);
    block-size: auto;
    vertical-align: middle;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-content .ep-feature-title {
    margin-block-end: 0;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-content p {
    margin-block-end: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: #656a71;
    max-inline-size: 800px;
    font-weight: 300;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-content span.active-installs {
    font-size: 14px;
    font-weight: 500;
    color: #9C27B0;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-content span.active-installs .installs-count {
    color: #9C27B0;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-content .bdt-others-plugin-updated {
    color: #656a71;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugins-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    inline-size: 100%;
    flex: 1;
    min-inline-size: 300px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugins-link .bdt-dashboard-sec-btn {
    padding: 9px 20px !important;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-user-wrap {
    gap: 10px;
    flex-wrap: wrap;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-others-plugin-user-wrap .bdt-others-plugin-user {
    color: #373333;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(76, 89, 98, 0.2);
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid #dcd8e8;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .ep-dashboard-compare-section-buttons {
    display: flex;
    align-items: center;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button {
    color: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    line-height: normal;
    font-size: clamp(12px, 0.8vw, 14px);
    font-weight: 600;
    padding: clamp(10px, 1vw, 11px) clamp(10px, 1vw, 20px);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-welcome-button {
    color: #fff;
    background: linear-gradient(to right, #49e0af, var(--ep-shape-secondary-color));
    border: 0;
    padding: 13px 20px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-welcome-button:hover {
    background: linear-gradient(to right, var(--ep-shape-secondary-color), #49e0af);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-dashboard-sec-btn {
    color: var(--ep-shape-primary-color);
    border: 2px solid var(--ep-shape-primary-color);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-dashboard-sec-btn:hover {
    border-color: var(--ep-shape-secondary-color);
    color: var(--ep-shape-secondary-color);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-btn-red {
    background: var(--ep-light-red-color);
    color: var(--ep-red-color);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-btn-red:hover {
    background: var(--ep-red-color);
    color: #fff;
    box-shadow: none;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-btn-green {
    background: var(--ep-light-green-color);
    color: var(--ep-green-color);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-btn-green:hover {
    background: var(--ep-green-color);
    color: #fff;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-btn-blue {
    background: var(--ep-blue-color);
    color: #fff;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-btn-blue:hover {
    background: #097396;
    color: #fff;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-btn-grey {
    background-color: #e3e8eb;
    color: #1d2327;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-button.bdt-btn-grey:hover {
    background: #1d2327;
    color: #fff;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .ep-feature-title {
    color: #333;
    font-weight: 700;
    font-size: clamp(18px, 1vw, 20px);
    margin-block-end: var(--ep-dashboard-gap-size);
    padding: 0;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .ep-dashboard-welcome-title {
    font-size: 30px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .ep-dashboard-compare-title,
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .ep-dashboard-template-quick-title {
    font-size: 24px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card.bdt-card-green {
    background: rgba(173, 200, 101, 0.03);
    box-shadow: 0 0 0 1px rgba(173, 200, 101, 0.3);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card.bdt-card-red {
    color: #777;
    box-shadow: 0 0 0 1px rgba(255, 65, 77, 0.3);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card.bdt-card-blue {
    color: #777;
    box-shadow: 0 0 0 1px var(--ep-blue-color);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-accordion {
    padding-block-start: 5px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-accordion .bdt-accordion-title {
    font-size: 16px;
    padding: 10px 20px;
    background: rgba(255, 65, 77, 0.1);
    border-radius: 6px;
    font-weight: 400;
    letter-spacing: 0.3px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-accordion .bdt-accordion-title:hover,
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-accordion .bdt-accordion-title:focus {
    box-shadow: 0 0 0 1px rgba(255, 65, 77, 0.3);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-accordion .bdt-open .bdt-accordion-title {
    color: #000;
    background: rgba(255, 65, 77, 0.3);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .bdt-accordion .bdt-accordion-content {
    padding-inline: 20px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card .check-system-status {
    margin-block-start: 20px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card.ep-video-tutorial {
    display: flex;
    flex-direction: column;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card.ep-video-tutorial .bdt-list {
    margin-block-end: var(--ep-dashboard-gap-size);
    flex-grow: 1;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card.ep-video-tutorial .bdt-list-divider > li:nth-child(n + 2) {
    border-block-start: 1px solid rgba(173, 200, 101, 0.3);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card.ep-video-tutorial .ep-link-title {
    margin: 0;
    font-size: 14px;
    color: rgba(173, 200, 101, 0.7);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card.ep-video-tutorial .ep-link-title:hover {
    color: var(--ep-green-color);
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card.ep-video-tutorial .bdt-video-btn {
    font-weight: 500;
    color: #444;
    border: 1px solid var(--ep-green-color);
    display: inline-block;
    inline-size: 145px;
    padding: 5px;
    text-align: center;
    border-radius: 3px;
  }
  .element-pack-dashboard .ep-dashboard-panel .bdt-card.ep-video-tutorial .bdt-video-btn:hover {
    color: #000;
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-footer-item {
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translate(0, 0);
    position: relative;
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-footer-item .ep-feature-title {
    font-size: 18px;
    margin-block-end: 10px;
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-footer-item .ep-dashboard-footer-item-icon {
    display: inline-block;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #f3f3f3;
    margin-block-end: 18px;
    background: #f5fffc;
    color: var(--ep-shape-primary-color);
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-footer-item i {
    font-size: 18px;
    inline-size: 18px;
    block-size: 18px;
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-footer-item:after {
    content: "\f504";
    font-family: dashicons;
    position: absolute;
    inset-block-start: 15px;
    inset-inline-end: 15px;
    font-size: 20px;
    color: var(--ep-shape-primary-color);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-footer-item:hover {
    transform: translate(0, -3px);
    box-shadow: 0 10px 20px rgba(73, 221, 179, 0.065);
    border-color: var(--ep-shape-primary-color);
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-footer-item:hover:after {
    opacity: 1;
    transform: translate(5px, 0);
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-footer-item:hover .ep-dashboard-footer-item-icon {
    animation: ep-footer-icon-bounce 0.5s ease-in-out;
  }
  @keyframes ep-footer-icon-bounce {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, -5px);
    }
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-support-section {
    margin-block-start: 30px;
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-support-section .ep-feature-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-block-end: 10px;
  }
  .element-pack-dashboard .ep-dashboard-panel .ep-dashboard-support-section .ep-feature-title i {
    font-size: 20px;
    color: var(--ep-shape-primary-color);
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
  }
  .element-pack-dashboard #element_pack_active_modules_page .checkbox,
  .element-pack-dashboard #element_pack_third_party_widget_page .checkbox {
    margin-block-start: 5px;
  }
  .element-pack-dashboard .element-pack-3pp-install,
  .element-pack-dashboard .element-pack-3pp-active,
  .element-pack-dashboard .element-pack-3pp-download {
    text-decoration: none;
    color: var(--ep-red-color);
    line-height: normal;
    background-color: #eee;
    border-radius: 100px;
    padding: 5px;
    display: inline-flex;
  }
  .element-pack-dashboard .element-pack-3pp-install:hover,
  .element-pack-dashboard .element-pack-3pp-active:hover,
  .element-pack-dashboard .element-pack-3pp-download:hover {
    color: #fb6094;
  }
  .element-pack-dashboard .element-pack-footer-info {
    background-color: var(--ep-navyblue-color);
    color: #90b6c3;
    border-radius: 6px;
    box-sizing: border-box;
    padding: 30px 40px;
    background-image: url("../images/shiny-overlay.svg");
    background-position: top end;
    background-repeat: no-repeat;
  }
  .element-pack-dashboard .element-pack-footer-info p {
    font-size: 14px !important;
    color: #90b6c3 !important;
    text-align: center;
    margin-block-start: 25px;
  }
  .element-pack-dashboard .element-pack-footer-info a {
    color: #e5f4f9;
  }
  .element-pack-dashboard .bdt-admin-alert {
    background-color: #fff3da;
    border-radius: 2px;
    padding: 10px 20px;
    box-sizing: border-box;
    margin-block-start: 30px;
  }
  .element-pack-dashboard .ep-dashboard-divider {
    inline-size: 100%;
    margin-block: 50px;
    min-block-size: 20px;
    background-size: 20px 20px;
    background-repeat: repeat-x;
  }
  .element-pack-dashboard .ep-dashboard-panel {
    position: relative;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-yes {
    color: var(--ep-green-color);
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no {
    color: #ff0000;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no .oauth-setup-required h4 {
    color: #d63638;
    margin: 0 0 10px 0;
    font-size: 16px;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no .oauth-setup-required p {
    font-size: 13px;
    color: #676768;
    margin: 0 0 10px;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no .oauth-setup-required ol {
    margin: 0 0 0 16px;
    padding: 0;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no .oauth-setup-required ol li {
    font-size: 13px;
    color: #676768;
    line-height: 1.3;
    margin: 0 0 10px;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no .oauth-setup-required ol li:last-child {
    margin-block-end: 0 !important;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no .oauth-disconnected p {
    font-size: 13px;
    color: #676768;
    margin: 0 0 10px;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no #ep-disconnect-google,
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no .oauth-disconnected button {
    color: #fff;
    background: linear-gradient(to right, #49e0af, var(--ep-shape-secondary-color));
    border: 0;
    margin-block-start: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no #ep-disconnect-google:hover,
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no .oauth-disconnected button:hover {
    background: linear-gradient(to right, var(--ep-shape-secondary-color), #49e0af);
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no #ep-disconnect-google.ep-nav-wave,
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no .oauth-disconnected button.ep-nav-wave {
    inline-size: 100px;
    block-size: 20px;
    inset-block-end: 30px;
    inset-inline-end: 40px;
    background: linear-gradient(45deg, rgba(73, 221, 180, 0) 45%, rgba(73, 221, 180, 0.1) 50%, rgba(73, 221, 180, 0) 55%);
    background-size: 15px 15px;
    transform: rotate(-10deg);
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no .oauth-connected h4 {
    color: #00a32a;
    margin: 0;
    font-size: 16px;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no #ep-oauth-status {
    margin-block-start: 15px;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no #ep-oauth-status .ep-oauth-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: OAuth-slideInDown 0.5s ease-out;
    position: relative;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no #ep-oauth-status .ep-oauth-loading .ep-oauth-spinner {
    inline-size: 20px;
    block-size: 20px;
    border: 3px solid rgba(102, 126, 234, 0.2);
    border-block-start-color: #49e0af;
    border-radius: 50%;
    animation: OAuthspin 0.8s linear infinite;
    flex-shrink: 0;
  }
  .element-pack-dashboard .ep-dashboard-panel .dashicons.dashicons-no #ep-oauth-status .ep-oauth-loading .ep-oauth-message {
    color: #49e0af;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  @keyframes OAuthspin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes OAuthslideInDown {
    0% {
      opacity: 0;
      transform: translate(0, -20px);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
    }
  }
  .element-pack-dashboard #element_pack_extra_options_page .ep-white-label-options .ep-option-item-inner {
    background: #fefefe;
    padding: 30px;
  }
  .element-pack-dashboard #element_pack_extra_options_page .ep-dashboard-panel .dashicons.dashicons-heart {
    color: #ea355f;
  }
  .element-pack-dashboard #element_pack_extra_options_page .ep-dashboard-panel .ep-comparision {
    padding-inline-start: 0;
  }
  .element-pack-dashboard #element_pack_extra_options_page .ep-dashboard-panel h1 {
    font-weight: 700;
  }
  .element-pack-dashboard #element_pack_extra_options_page .ep-purchase-button a {
    color: #ffffff;
    border-style: none;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0px 10px 40px 0px rgba(0, 130, 117, 0.29);
    padding: 18px 45px 18px 45px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    outline: none;
    position: relative;
    transition: all 0.3s ease-out;
    text-align: center;
    overflow: hidden;
    background-color: transparent;
    background-image: linear-gradient(145deg, #20e2ad 0%, #08aeec 100%);
    text-decoration: none;
    letter-spacing: 1px;
  }
  .element-pack-dashboard #element_pack_extra_options_page .ep-purchase-button a:hover {
    background-image: linear-gradient(145deg, #08aeec 0%, #20e2ad 100%);
    box-shadow: 0px 10px 40px 0px rgba(0, 130, 117, 0.46);
  }
  .element-pack-dashboard #element_pack_license_settings_page .el-license-container p.submit {
    margin: 0;
    padding: 0;
  }
  .element-pack-dashboard #element_pack_license_settings_page h3.el-license-title,
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management-title {
    font-size: 22px;
    margin-block-start: 0;
    margin-block-end: 50px;
  }
  .element-pack-dashboard #element_pack_license_settings_page ol {
    margin-block-end: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-ep-license-field {
    display: block;
    margin-block-end: 15px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-ep-license-field input {
    font-size: 200%;
    padding-inline: 10px;
    display: block;
    margin-block-start: 10px;
    border-radius: 6px;
    border-color: #ddd;
    inline-size: 100%;
    max-inline-size: 650px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-ep-license-field label {
    display: inline-block;
    margin-block-end: 5px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-ep-license-active-btn {
    margin-block-start: 25px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .element-pack-license-info {
    font-size: 14px;
    line-height: 24px;
    max-inline-size: 850px;
    margin-block-end: 50px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .element-pack-license-info .license-info-title {
    inline-size: 150px;
    display: inline-block;
    position: relative;
    padding-inline-end: 5px;
    margin-inline-end: 10px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .element-pack-license-info .license-info-title:after {
    content: ":";
    position: absolute;
    inset-inline-end: 2px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .element-pack-license-info .license-valid,
  .element-pack-dashboard #element_pack_license_settings_page .element-pack-license-info .license-invalid {
    padding: 4px 8px;
    color: #fff;
    background-color: var(--ep-green-color);
    border-radius: 3px;
    font-size: 14px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .element-pack-license-info .license-invalid {
    background-color: #f44336;
  }
  .element-pack-dashboard #element_pack_license_settings_page .element-pack-license-info .license-key {
    font-weight: 700;
    opacity: 0.8;
  }
  .element-pack-dashboard #element_pack_license_settings_page .button {
    padding: 14px 16px;
    font-size: 14px;
    block-size: auto;
    border: 0;
    border-radius: 6px;
    min-block-size: auto;
    font-weight: 600;
    line-height: 1;
  }
  .element-pack-dashboard #element_pack_license_settings_page .button-primary {
    background: var(--ep-global-link-color);
    color: #fff;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
  }
  .element-pack-dashboard #element_pack_license_settings_page .button-primary:active,
  .element-pack-dashboard #element_pack_license_settings_page .button-primary:hover {
    background: #0e6dcd;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-subsite-header {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-feature-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-status-icon {
    background: #3ab981;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-status-icon svg {
    fill: #fff;
    inline-size: 24px;
    block-size: 24px;
    display: block;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-status-success {
    margin-block-end: var(--ep-dashboard-gap-size);
    padding: 20px;
    border-radius: 5px;
    background: rgba(78, 255, 177, 0.071);
    border-inline-start: 4px solid #10b981;
    margin-block-start: 30px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-status-success h3,
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-status-warning h3 {
    margin: 0 0 20px;
    font-size: 20px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-status-warning {
    margin-block-end: var(--ep-dashboard-gap-size);
    padding: 15px;
    border-radius: 5px;
    background: #fffbeb;
    border-inline-start: 4px solid #f59e0b;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-details,
  .element-pack-dashboard #element_pack_license_settings_page .ep-network-info {
    margin: 15px 0;
    font-size: 16px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-details ul,
  .element-pack-dashboard #element_pack_license_settings_page .ep-network-info ul {
    margin-block: 10px 0;
    padding-inline-start: 0;
    list-style: inside;
    font-size: 14px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-details li,
  .element-pack-dashboard #element_pack_license_settings_page .ep-network-info li {
    margin: 8px 0;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-instructions {
    margin: 15px 0;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-instructions ol {
    margin-block: 10px 0;
    padding-inline-start: 20px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-license-instructions ol li {
    margin: 8px 0;
  }
  .element-pack-dashboard #element_pack_license_settings_page .ep-admin-actions {
    margin-block-start: 20px;
    padding-block-start: 15px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .license-valid {
    color: #10b981;
    font-weight: bold;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management-title {
    gap: 10px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-actions-buttons {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .bdt-actions-buttons .bdt-button {
    padding: 10px 18px;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 6px;
    font-weight: 600;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .bdt-subsite-license-management-table {
    border-radius: 6px;
    overflow: hidden;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table {
    border-collapse: collapse;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table thead td,
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table thead th {
    border-block-end: 1px solid rgba(0, 0, 0, 0.059);
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table td,
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table th {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.059);
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table th {
    border-block-end: 1px solid rgba(0, 0, 0, 0.1);
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table .bdt-badge {
    block-size: 24px;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table tbody tr td:nth-last-child(1) a {
    background: rgba(65, 75, 255, 0.251);
    border: 1px solid rgba(65, 75, 255, 0.251);
    color: #414bff;
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table tbody tr td:nth-last-child(1) a:hover {
    background: rgba(54, 64, 243, 0.325);
  }
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table .striped > tbody > :nth-child(odd),
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table ul.striped > :nth-child(odd),
  .element-pack-dashboard #element_pack_license_settings_page .bdt-subsite-license-management .wp-list-table tbody > tr:nth-child(odd) {
    background-color: transparent;
  }
  .element-pack-dashboard .ep-widget-count-text {
    font-size: 11px;
    color: #b7b7b7;
    margin-block-start: 7px;
    display: block;
    text-transform: uppercase;
  }
  .element-pack-dashboard .ep-go-pro {
    font-weight: bold;
    color: #f44336;
    text-shadow: 1px 1px 1px #eee;
  }
  .element-pack-dashboard #bdt-element_pack_get_pro {
    letter-spacing: 1px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(to right, #49e0af, var(--ep-shape-secondary-color));
    margin: 16px 30px;
    border-radius: 6px;
    justify-content: center;
  }
  .element-pack-dashboard #bdt-element_pack_get_pro:after {
    display: none;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-row {
    margin-block-end: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard .ep-custom-code-section .CodeMirror-placeholder {
    opacity: 0.5;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-code-editor-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-block-end: 15px;
    padding-block-end: 10px;
    border-block-end: 2px solid #f0f0f0;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-code-editor {
    inline-size: 100%;
    min-block-size: 200px;
    font-family: "Monaco", "Consolas", "Courier New", monospace;
    font-size: 13px;
    line-height: 1.5;
    border: 1px solid var(--ep-dashboard-border-color);
    border-radius: 4px;
    padding: 15px;
    color: #333;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fefefe;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-code-editor:focus {
    border-color: var(--ep-blue-color);
    box-shadow: 0 0 0 1px var(--ep-blue-color);
    outline: none;
    background: #fff;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-code-editor::placeholder {
    color: #999;
    font-style: italic;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section {
    padding: 20px 0;
    border-block-start: 1px solid #f0f0f0;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button {
    color: var(--ep-shape-primary-color);
    padding: 16px 24px;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: normal;
    border: 2px solid var(--ep-shape-primary-color);
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button .dashicons {
    font-size: 16px;
    inline-size: 16px;
    block-size: 16px;
    line-height: 1;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button:hover {
    transform: translate(0, -1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button:active {
    transform: translate(0, 0);
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button.bdt-btn-blue {
    background: var(--ep-blue-color);
    color: #fff;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button.bdt-btn-blue:hover {
    background: #097396;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button.bdt-btn-grey {
    background: #e3e8eb;
    color: #1d2327;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button.bdt-btn-grey:hover {
    background: #1d2327;
    color: #fff;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-message .bdt-alert {
    border-radius: 6px;
    padding: 15px;
    position: relative;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-message .bdt-alert.bdt-alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-message .bdt-alert.bdt-alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-message .bdt-alert p {
    margin: 0;
    font-weight: 500;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-message .bdt-alert .bdt-alert-close {
    position: absolute;
    inset-block-start: 5px;
    inset-inline-end: -5px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-message .bdt-alert .bdt-alert-close:hover {
    opacity: 1;
  }
  .element-pack-dashboard .ep-code-editor.scrolling {
    border-color: var(--ep-blue-color);
    box-shadow: 0 0 0 1px rgba(6, 128, 214, 0.3);
  }
  .element-pack-dashboard .ep-code-editor:focus::selection {
    background-color: rgba(6, 128, 214, 0.2);
  }
  .element-pack-dashboard .bdt-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }
  .element-pack-dashboard .bdt-button:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .element-pack-dashboard .ep-code-editor::-webkit-scrollbar {
    inline-size: 8px;
  }
  .element-pack-dashboard .ep-code-editor::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  .element-pack-dashboard .ep-code-editor::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
  }
  .element-pack-dashboard .ep-code-editor::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner {
    position: relative;
    background: #fff;
    z-index: 1;
    border-radius: 6px;
    border: 1px solid var(--ep-dashboard-border-color);
    padding-block: 20px 0;
    overflow: hidden;
    min-block-size: 100vh;
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner.bdt-sticky-fixed {
    inset-block-start: 115px !important;
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements {
    position: absolute;
    inset: 0;
    inline-size: 100%;
    block-size: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element {
    position: absolute;
    display: block;
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-circle {
    inline-size: 180px;
    block-size: 180px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(73, 221, 180, 0.05), rgba(73, 221, 180, 0.1));
    inset-block-start: -90px;
    inset-inline-end: -90px;
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-dots {
    inset-block-end: 40px;
    inset-inline-start: 20px;
    inline-size: 60px;
    block-size: 60px;
    background-image: radial-gradient(rgba(73, 221, 180, 0.15) 2px, transparent 2px);
    background-size: 10px 10px;
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-line {
    inline-size: 100px;
    block-size: 2px;
    background: linear-gradient(90deg, rgba(73, 221, 180, 0), rgba(73, 221, 180, 0.2));
    transform: rotate(-45deg);
    inset-block-end: 100px;
    inset-inline-end: 20px;
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-square {
    inline-size: 40px;
    block-size: 40px;
    border: 2px solid rgba(73, 221, 180, 0.1);
    inset-block-start: 40px;
    inset-inline-start: 30px;
    transform: rotate(15deg);
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-triangle {
    inline-size: 0;
    block-size: 0;
    border-inline-start: 25px solid transparent;
    border-inline-end: 25px solid transparent;
    border-block-end: 40px solid rgba(73, 221, 180, 0.08);
    inset-block-start: 60%;
    inset-inline-end: 40px;
    transform: rotate(15deg);
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-plus {
    inline-size: 30px;
    block-size: 30px;
    inset-block-start: 30%;
    inset-inline-start: 40px;
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-plus:before,
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-plus:after {
    content: "";
    position: absolute;
    background: rgba(73, 221, 180, 0.15);
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-plus:before {
    inline-size: 100%;
    block-size: 2px;
    inset-block-start: 50%;
    transform: translate(0, -50%);
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-plus:after {
    inline-size: 2px;
    block-size: 100%;
    inset-inline-start: 50%;
    transform: translate(-50%, 0);
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .ep-nav-elements .ep-nav-element.ep-nav-wave {
    inline-size: 100px;
    block-size: 20px;
    inset-block-end: 30px;
    inset-inline-end: 40px;
    background: linear-gradient(45deg, rgba(73, 221, 180, 0) 45%, rgba(73, 221, 180, 0.1) 50%, rgba(73, 221, 180, 0) 55%);
    background-size: 15px 15px;
    transform: rotate(-10deg);
  }
  .element-pack-dashboard .ep-dashboard-nav-container-inner .bdt-dashboard-navigation {
    position: relative;
    z-index: 1;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper {
    position: relative;
    background: #fff;
    overflow: hidden;
    z-index: 98;
    border-radius: 6px;
    border: 1px solid var(--ep-dashboard-border-color);
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper.bdt-sticky-fixed {
    z-index: 998;
    border-start-start-radius: 0 !important;
    border-start-end-radius: 0 !important;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper.bdt-sticky-fixed .ep-filter-elements {
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper.bdt-sticky-fixed:hover .ep-filter-elements {
    opacity: 1;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-used-unused-widgets {
    margin-inline-start: 10px;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-used-unused-widgets li:first-child {
    padding-inline-start: 0 !important;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements {
    position: absolute;
    inset: 0;
    inline-size: 100%;
    block-size: 100%;
    pointer-events: none;
    z-index: 1;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements .ep-filter-element {
    position: absolute;
    display: block;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements .ep-filter-element.ep-filter-circle {
    inline-size: 140px;
    block-size: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(73, 221, 180, 0.05), rgba(63, 184, 225, 0.08));
    inset-block-start: -70px;
    inset-inline-end: 5%;
    animation: floatingShape 6s ease-in-out infinite;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements .ep-filter-element.ep-filter-dots {
    inset-block-end: 10px;
    inset-inline-start: 10px;
    inline-size: 70px;
    block-size: 35px;
    background-image: radial-gradient(rgba(73, 221, 180, 0.15) 2px, transparent 2px);
    background-size: 8px 8px;
    animation: fadeInOut 4s ease-in-out infinite;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements .ep-filter-element.ep-filter-wave {
    inline-size: 120px;
    block-size: 20px;
    inset-block-end: 25px;
    inset-inline-end: 10%;
    background: repeating-linear-gradient(45deg, rgba(73, 221, 180, 0) 0px, rgba(73, 221, 180, 0.1) 2px, rgba(73, 221, 180, 0) 4px);
    transform: rotate(-15deg);
    animation: waveMotion 3s ease-in-out infinite;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements .ep-filter-element.ep-filter-hexagon {
    inset-block-start: 20%;
    inset-inline-start: 15px;
    inline-size: 35px;
    block-size: 20px;
    background: rgba(63, 184, 225, 0.1);
    position: absolute;
    transform: rotate(30deg);
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements .ep-filter-element.ep-filter-hexagon:before,
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements .ep-filter-element.ep-filter-hexagon:after {
    content: "";
    position: absolute;
    inline-size: 0;
    block-size: 0;
    border-inline-start: 18px solid transparent;
    border-inline-end: 18px solid transparent;
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements .ep-filter-element.ep-filter-hexagon:before {
    inset-block-end: 100%;
    border-block-end: 10px solid rgba(63, 184, 225, 0.1);
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements .ep-filter-element.ep-filter-hexagon:after {
    inset-block-start: 100%;
    border-block-start: 10px solid rgba(63, 184, 225, 0.1);
  }
  .element-pack-dashboard .bdt-widget-filter-wrapper .ep-filter-elements .ep-filter-element.ep-filter-zigzag {
    inset-block-start: 40%;
    inset-inline-end: 20px;
    inline-size: 50px;
    block-size: 25px;
    background: linear-gradient(45deg, transparent 45%, rgba(73, 221, 180, 0.1) 45%, rgba(73, 221, 180, 0.1) 55%, transparent 55%);
    background-size: 10px 10px;
    animation: zigzagFloat 5s ease-in-out infinite;
  }
  .element-pack-dashboard #ep-extra-options-tab-content {
    margin-block-start: 30px;
  }
  .element-pack-dashboard .ep-extra-options-tabs .bdt-tab {
    border-block-end: 2px solid #f1f1f1;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard .ep-extra-options-tabs .bdt-tab li {
    margin: 0;
    padding: 0;
    display: inline-block;
  }
  .element-pack-dashboard .ep-extra-options-tabs .bdt-tab li a {
    padding: 15px 0;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
  }
  .element-pack-dashboard .ep-extra-options-tabs .bdt-tab li a:after {
    content: "";
    position: absolute;
    inset-block-end: -2px;
    inset-inline-start: 0;
    inline-size: 0;
    block-size: 2px;
    background: var(--ep-shape-primary-color);
    transition: inline-size 0.3s ease;
  }
  .element-pack-dashboard .ep-extra-options-tabs .bdt-tab li a:hover {
    color: #333;
  }
  .element-pack-dashboard .ep-extra-options-tabs .bdt-tab li.bdt-active a {
    color: var(--ep-shape-primary-color);
  }
  .element-pack-dashboard .ep-extra-options-tabs .bdt-tab li.bdt-active a:after {
    inline-size: 100%;
  }
  .element-pack-dashboard .ep-option-page .bdt-widget-filter-wrapper ul {
    display: none;
    gap: 10px;
  }
  .element-pack-dashboard .ep-white-label-options .slider:before {
    block-size: 18px;
    inline-size: 18px;
    inset-inline-start: 2px;
    inset-block-end: 1px;
  }
  .element-pack-dashboard .ep-white-label-options .switch:after {
    display: none;
  }
  .element-pack-dashboard .ep-white-label-options input:checked + .slider:before {
    transform: translate(18px, 0);
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-row {
    margin-block-end: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-code-editor-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-block-end: 15px;
    padding-block-end: 10px;
    border-block-end: 2px solid #f0f0f0;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container {
    position: relative;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .ep-code-editor {
    min-block-size: 200px;
    inline-size: 100%;
    font-family: "Monaco", "Consolas", "Courier New", monospace;
    font-size: 13px;
    line-height: 1.5;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fefefe;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror {
    min-block-size: 200px;
    inline-size: 100% !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Monaco", "Consolas", "Courier New", monospace;
    font-size: 13px;
    line-height: 1.5;
    background: #fff;
    box-sizing: border-box;
    display: block;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror.CodeMirror-focused {
    border-color: var(--ep-blue-color);
    box-shadow: 0 0 0 1px rgba(6, 128, 214, 0.25);
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror .CodeMirror-scroll {
    min-block-size: 200px;
    padding: 0;
    box-sizing: border-box;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror .CodeMirror-lines {
    padding: 4px 0;
    cursor: text;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror .CodeMirror-gutters {
    border-inline-end: 1px solid #ddd;
    background: #fefefe;
    white-space: nowrap;
    min-inline-size: 40px;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror .CodeMirror-linenumber {
    color: #999;
    padding-inline: 8px;
    white-space: nowrap;
    text-align: end;
    min-inline-size: 20px;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror .CodeMirror-line {
    padding: 0 4px;
    line-height: inherit;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror .CodeMirror-cursor {
    border-inline-start: 1px solid #333;
    block-size: auto;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror .CodeMirror-code {
    font-family: "Monaco", "Consolas", "Courier New", monospace;
    font-size: 13px;
    outline: none;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror.CodeMirror-wrap {
    inline-size: 100%;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper .ep-codemirror-editor-container .CodeMirror.CodeMirror-empty .CodeMirror-scroll {
    min-height: 200px;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section {
    padding-block: 20px 0;
    border-block-start: 1px solid #f0f0f0;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button .dashicons {
    font-size: 16px;
    line-height: 1;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button:hover {
    transform: translate(0, -1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button:active {
    transform: translate(0, 0);
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button.bdt-btn-blue {
    background: var(--ep-blue-color);
    color: #fff;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button.bdt-btn-blue:hover {
    background: #097396;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button.bdt-btn-grey {
    background: #e3e8eb;
    color: #1d2327;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-save-section .bdt-button.bdt-btn-grey:hover {
    background: #1d2327;
    color: #fff;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-message .bdt-alert {
    border-radius: 5px;
    padding: 15px;
    padding-inline-end: 40px;
    position: relative;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-message .bdt-alert.bdt-alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-message .bdt-alert.bdt-alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
  }
  .element-pack-dashboard .ep-custom-code-section .ep-code-message .bdt-alert p {
    margin: 0;
    font-weight: 500;
  }
  .element-pack-dashboard .ep-code-editor.scrolling {
    border-color: var(--ep-blue-color);
    box-shadow: 0 0 0 1px rgba(6, 128, 214, 0.3);
  }
  .element-pack-dashboard .ep-code-editor:focus::selection {
    background-color: rgba(6, 128, 214, 0.2);
  }
  .element-pack-dashboard .bdt-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }
  .element-pack-dashboard .bdt-button:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .element-pack-dashboard .ep-code-editor::-webkit-scrollbar {
    inline-size: 8px;
  }
  .element-pack-dashboard .ep-code-editor::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  .element-pack-dashboard .ep-code-editor::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
  }
  .element-pack-dashboard .ep-code-editor::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
  .element-pack-dashboard #element_pack_extra_options_page .switch {
    position: relative;
    display: inline-block;
    inline-size: 46px;
    block-size: 24px;
  }
  .element-pack-dashboard #element_pack_extra_options_page .switch input {
    opacity: 0;
    inline-size: 0;
    block-size: 0;
  }
  .element-pack-dashboard .ep-filter-elements {
    position: absolute;
    inset: 0;
    inline-size: 100%;
    block-size: 100%;
    pointer-events: none;
    z-index: 1;
  }
  .element-pack-dashboard .ep-filter-elements .ep-filter-element {
    position: absolute;
    display: block;
  }
  .element-pack-dashboard .ep-filter-elements .ep-filter-element.ep-filter-circle {
    inline-size: 140px;
    block-size: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(73, 221, 180, 0.05), rgba(63, 184, 225, 0.08));
    inset-block-start: -70px;
    inset-inline-end: 5%;
    animation: floatingShape 6s ease-in-out infinite;
  }
  .element-pack-dashboard .ep-filter-elements .ep-filter-element.ep-filter-dots {
    inset-block-end: 10px;
    inset-inline-start: 10px;
    inline-size: 70px;
    block-size: 35px;
    background-image: radial-gradient(rgba(73, 221, 180, 0.15) 2px, transparent 2px);
    background-size: 8px 8px;
    animation: fadeInOut 4s ease-in-out infinite;
  }
  .element-pack-dashboard .ep-filter-elements .ep-filter-element.ep-filter-wave {
    inline-size: 120px;
    block-size: 20px;
    inset-block-end: 25px;
    inset-inline-end: 10%;
    background: repeating-linear-gradient(45deg, rgba(73, 221, 180, 0) 0px, rgba(73, 221, 180, 0.1) 2px, rgba(73, 221, 180, 0) 4px);
    transform: rotate(-15deg);
    animation: waveMotion 3s ease-in-out infinite;
  }
  .element-pack-dashboard .ep-filter-elements .ep-filter-element.ep-filter-hexagon {
    inset-block-start: 20%;
    inset-inline-start: 15px;
    inline-size: 35px;
    block-size: 20px;
    background: rgba(63, 184, 225, 0.1);
    position: absolute;
    transform: rotate(30deg);
  }
  .element-pack-dashboard .ep-filter-elements .ep-filter-element.ep-filter-hexagon:before,
  .element-pack-dashboard .ep-filter-elements .ep-filter-element.ep-filter-hexagon:after {
    content: "";
    position: absolute;
    inline-size: 0;
    block-size: 0;
    border-inline-start: 18px solid transparent;
    border-inline-end: 18px solid transparent;
  }
  .element-pack-dashboard .ep-filter-elements .ep-filter-element.ep-filter-hexagon:before {
    inset-block-end: 100%;
    border-block-end: 10px solid rgba(63, 184, 225, 0.1);
  }
  .element-pack-dashboard .ep-filter-elements .ep-filter-element.ep-filter-hexagon:after {
    inset-block-start: 100%;
    border-block-start: 10px solid rgba(63, 184, 225, 0.1);
  }
  .element-pack-dashboard .ep-filter-elements .ep-filter-element.ep-filter-zigzag {
    inset-block-start: 40%;
    inset-inline-end: 20px;
    inline-size: 50px;
    block-size: 25px;
    background: linear-gradient(45deg, transparent 45%, rgba(73, 221, 180, 0.1) 45%, rgba(73, 221, 180, 0.1) 55%, transparent 55%);
    background-size: 10px 10px;
    animation: zigzagFloat 5s ease-in-out infinite;
  }
  .element-pack-dashboard #ep-extra-options-tab-content {
    margin-block-start: 30px;
  }
  .element-pack-dashboard .ep-extra-options-tabs .bdt-tab {
    border-block-end: 2px solid #f1f1f1;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: var(--ep-dashboard-gap-size);
  }
  .element-pack-dashboard .ep-extra-options-tabs .bdt-tab li {
    margin: 0;
    padding: 0;
    display: inline-block;
  }
  .element-pack-dashboard .ep-extra-options-tabs .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 34px;
  }
  .element-pack-dashboard .ep-extra-options-tabs .slider:before {
    position: absolute;
    content: "";
    block-size: 20px;
    inline-size: 20px;
    inset-inline-start: 3px;
    inset-block-end: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
  }
  .element-pack-dashboard .ep-extra-options-tabs input:checked + .slider {
    background-color: #2196f3;
  }
  .element-pack-dashboard .ep-extra-options-tabs input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
  }
  .element-pack-dashboard .ep-extra-options-tabs input:checked + .slider:before {
    transform: translate(22px, 0);
  }
  .element-pack-dashboard .ep-option-item-inner {
    background: #fff;
    border-radius: 8px;
  }
  .element-pack-dashboard .ep-option-title {
    margin-block-end: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1e1e1e;
  }
  .element-pack-dashboard .ep-option-description {
    margin: 0;
    color: #666;
    font-size: 14px;
  }
  .element-pack-dashboard .element-pack-white-label-save-btn,
  .element-pack-dashboard .element-pack-custom-code-save-btn,
  .element-pack-dashboard .element-pack-custom-code-reset-btn {
    padding: 3px 30px;
    color: #fff;
    background: linear-gradient(to right, #49e0af, var(--ep-shape-secondary-color));
    border: 0;
    border-radius: 6px;
    line-height: 40px;
    font-size: 16px;
  }
  .element-pack-dashboard .element-pack-white-label-save-btn:hover,
  .element-pack-dashboard .element-pack-custom-code-save-btn:hover,
  .element-pack-dashboard .element-pack-custom-code-reset-btn:hover {
    background: linear-gradient(to right, var(--ep-shape-secondary-color), #49e0af);
  }
  .element-pack-dashboard .element-pack-custom-code-save-btn {
    margin-inline-end: 12px;
  }
  .element-pack-dashboard .element-pack-custom-code-reset-btn,
  .element-pack-dashboard .element-pack-white-label-save-btn {
    background: linear-gradient(to right, #fa6336, #ff3c3c);
    color: #fff;
  }
  .element-pack-dashboard .element-pack-custom-code-reset-btn:hover,
  .element-pack-dashboard .element-pack-white-label-save-btn:hover {
    background: linear-gradient(to right, #ff3c3c, #fa6336);
  }
  .element-pack-dashboard .ep-code-message,
  .element-pack-dashboard .ep-white-label-message {
    position: fixed;
    inset-block-start: -100px;
    /* Start hidden above viewport */
    inset-inline-start: 50%;
    transform: translate(-50%, 0);
    z-index: 999;
    border-radius: 4px;
    opacity: 0;
    animation: slideDown 0.5s ease-out forwards;
  }
  .element-pack-dashboard .ep-code-message .bdt-alert,
  .element-pack-dashboard .ep-white-label-message .bdt-alert {
    padding-inline-end: 40px;
  }
  @keyframes slideDown {
    to {
      inset-block-start: 20px;
      /* End position slightly from top */
      opacity: 1;
    }
  }
  .element-pack-dashboard .bdt-alert {
    padding: 15px;
    margin-block-end: var(--ep-dashboard-gap-size);
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
  }
  .element-pack-dashboard .bdt-alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
  }
  .element-pack-dashboard .bdt-alert-close {
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: 0;
    padding: 15px;
    color: inherit;
    text-decoration: none;
  }
  .element-pack-dashboard .dashicons {
    font-family: dashicons;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    speak: none;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    inline-size: 20px;
    block-size: 20px;
    font-size: 20px;
    vertical-align: top;
  }
  .element-pack-dashboard .ep-white-label-input {
    inline-size: 100%;
    max-inline-size: 400px;
    padding: 12px 16px;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    background-color: var(--ep-card-background);
    transition: border-color 0.3s ease;
  }
  .element-pack-dashboard .ep-white-label-input:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
  }
  .element-pack-dashboard .ep-white-label-input-wrapper {
    position: relative;
    margin: 20px 0;
  }
  .element-pack-dashboard .ep-input-help {
    margin: 12px 0 0 0 !important;
    color: #666 !important;
    font-size: 14px !important;
    font-style: italic;
  }
  .element-pack-dashboard .ep-white-label-title-section {
    inline-size: 100%;
  }
  .element-pack-dashboard .ep-white-label-fields {
    transition: all 0.3s ease;
    margin-block-start: 20px;
  }
  .element-pack-dashboard .ep-white-label-locked {
    opacity: 0.6;
    pointer-events: none;
  }
  .element-pack-dashboard .ep-white-label-locked .ep-option-item {
    background-color: #fefefe;
  }
  .element-pack-dashboard .ep-white-label-locked .switch input:disabled + .slider {
    background-color: #ddd;
    cursor: not-allowed;
  }
  .element-pack-dashboard .ep-white-label-locked .switch input:disabled + .slider:before {
    background-color: #f0f0f0;
  }
  .element-pack-dashboard .ep-white-label-locked .ep-white-label-input:disabled {
    background-color: #fefefe;
    color: #999;
    cursor: not-allowed;
  }
  .element-pack-dashboard .bdt-btn-blue:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
  }
  .element-pack-dashboard .bdt-alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
    padding: 20px;
    border: 1px solid;
    border-radius: 8px;
  }
  .element-pack-dashboard .bdt-alert-warning strong {
    display: block;
    margin-block-end: 8px;
    font-size: 16px;
  }
  .element-pack-dashboard .bdt-others-plugin-rating .bdt-others-plugin-rating-stars i {
    color: #e26f56;
    font-size: 17px;
  }
  .element-pack-dashboard .bdt-others-plugin-rating .bdt-others-plugin-rating-text {
    font-size: 13px;
    color: #656a71;
  }
  .element-pack-dashboard .ep-dashboard-new-page-wrapper {
    gap: 15px;
  }
  .element-pack-dashboard .ep-install-plugin.bdt-installing {
    opacity: 0.7;
    cursor: not-allowed;
  }
  .element-pack-dashboard .ep-install-plugin.bdt-installing:before {
    content: "";
    display: inline-block;
    inline-size: 12px;
    block-size: 12px;
    border: 2px solid #ffffff;
    border-block-start: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-inline-end: 5px;
  }
  .element-pack-dashboard .ep-install-plugin.bdt-installed {
    background-color: #28a745;
    border-color: #28a745;
  }
  .element-pack-dashboard .ep-white-label-icon-section {
    margin: 25px 0;
  }
  .element-pack-dashboard .ep-icon-upload-wrapper-inner {
    background: #dddddd21;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px dashed #a5aab5;
    position: relative;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    margin-block-start: 20px;
  }
  .element-pack-dashboard .ep-icon-upload-wrapper-inner button#ep-remove-icon,
  .element-pack-dashboard .ep-icon-upload-wrapper-inner button#ep-remove-logo {
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: 0;
    margin: 20px;
  }
  .element-pack-dashboard .ep-icon-upload-wrapper-inner .ep-icon-upload-wrapper,
  .element-pack-dashboard .ep-icon-upload-wrapper-inner .ep-logo-upload-wrapper {
    margin-block-start: 0 !important;
  }
  .element-pack-dashboard .ep-icon-upload-wrapper-inner button#ep-upload-icon,
  .element-pack-dashboard .ep-icon-upload-wrapper-inner button#ep-upload-logo {
    margin-block-start: 0 !important;
    background: linear-gradient(to right, #49e0af, var(--ep-shape-secondary-color));
  }
  .element-pack-dashboard .ep-icon-upload-wrapper-inner button#ep-upload-icon:hover,
  .element-pack-dashboard .ep-icon-upload-wrapper-inner button#ep-upload-logo:hover {
    background: linear-gradient(to right, var(--ep-shape-secondary-color), #49e0af);
  }
  .element-pack-dashboard .ep-icon-upload-wrapper-inner img#ep-logo-preview-img,
  .element-pack-dashboard .ep-icon-upload-wrapper-inner img#ep-icon-preview-img {
    margin-block-end: 14px;
  }
  .element-pack-dashboard .toplevel_page_element_pack_options .bdt-notification {
    inset-block-start: 43px;
    inline-size: 400px;
  }
  .element-pack-dashboard .toplevel_page_element_pack_options .bdt-notification .bdt-notification-message {
    line-height: 1;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 0 2px var(--ep-green-color), 0 15px 22px 2px rgba(0, 0, 0, 0.2);
    background: #fff;
    font-size: 18px;
    color: var(--ep-green-color);
    border-color: transparent;
  }
  .element-pack-dashboard .toplevel_page_element_pack_options .bdt-notification .bdt-notification-message > div {
    display: flex;
    align-items: center;
  }
  .element-pack-dashboard .toplevel_page_element_pack_options .bdt-notification .bdt-notification-message > div .bdt-spinner {
    margin-inline-end: 15px;
  }
  .element-pack-dashboard .toplevel_page_element_pack_options .bdt-notification .bdt-notification-message .bdt-notification-close {
    inset-block-start: 50%;
    inset-inline-end: 10px;
    transform: translate(0, -50%);
    block-size: 30px;
    inline-size: 30px;
    line-height: 32px;
    background: #fff0f3;
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .element-pack-dashboard .toplevel_page_element_pack_options .bdt-notification .bdt-notification-message .dashicons {
    margin-inline-end: 5px;
  }
  .element-pack-dashboard .toplevel_page_element_pack_options .bdt-notification .bdt-notification-message svg {
    display: inline-flex;
    color: var(--ep-red-color);
    inline-size: 12px;
  }
  .element-pack-dashboard .toplevel_page_element_pack_options .bdt-lightbox-toolbar {
    padding: 45px 15px;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
  }
  #adminmenu #toplevel_page_element_pack_options a[href="admin.php?page=element_pack_options_upgrade"] {
    font-weight: 600;
    color: #20e2ad;
    transition: color 0.3s ease;
  }
  #adminmenu #toplevel_page_element_pack_options a[href="admin.php?page=element_pack_options_upgrade"]:hover {
    color: #08aeec;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes floatingShape {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, -10px);
    }
  }
  @keyframes fadeInOut {
    0%,
    100% {
      opacity: 0.3;
    }
    50% {
      opacity: 1;
    }
  }
  @keyframes waveMotion {
    0%,
    100% {
      transform: rotate(-15deg) translate(0, 0);
    }
    50% {
      transform: rotate(-15deg) translate(5px, 0);
    }
  }
  @keyframes zigzagFloat {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(5px, 0);
    }
  }
  @media (min-width: 1400px) {
    .element-pack-dashboard .ep-dashboard-panel .bdt-card.ep-welcome-content p {
      margin-inline-end: 160px;
    }
    .element-pack-dashboard .ep-dashboard-panel .bdt-card.ep-facebook-community p {
      margin-inline-end: 160px;
    }
    .element-pack-dashboard .ep-system-requirement .check-system-status {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 960px) {
    .element-pack-dashboard .ep-widget-onoff {
      margin: 0;
    }
  }
  @media (min-width: 960px) {
    .element-pack-dashboard.wrap {
      padding: 0 15px 15px 15px;
    }
    .element-pack-dashboard.wrap .element-pack-footer-info p {
      text-align: end;
      margin-block-start: 0;
    }
  }
  @media (max-width: 639px) {
    .element-pack-dashboard.wrap .ep-option-item-inner {
      padding: 0;
    }
    .element-pack-dashboard.wrap .ep-option-item-inner [class^="bdt-wi-"] {
      display: none;
    }
    .element-pack-dashboard.wrap .bdt-search-active-wrap {
      display: block;
    }
    .element-pack-dashboard.wrap .bdt-search-active-wrap .bdt-subnav {
      margin-block-start: 20px;
      margin-inline-start: -20px;
    }
    .element-pack-dashboard.wrap .bdt-card {
      background-image: none;
    }
    .element-pack-dashboard.wrap .bdt-button {
      inline-size: 100%;
    }
  }
  @media (max-width: 959px) {
    .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper {
      margin-block-end: var(--ep-dashboard-gap-size);
    }
  }
  @media (min-width: 768px) {
    .element-pack-dashboard.wrap .ep-dashboard-item {
      grid-column: span 6 / auto;
    }
    .element-pack-dashboard.wrap #element_pack_api_settings_page .ep-options {
      columns: 2;
    }
    .element-pack-dashboard.wrap .ep-option-page .ep-options {
      grid-template-columns: repeat(2, 1fr);
    }
    .element-pack-dashboard.wrap .ep-option-page .bdt-widget-filter-wrapper ul {
      display: flex;
    }
    .element-pack-dashboard.wrap .ep-content-type-filter {
      display: block;
    }
    .element-pack-dashboard.wrap .ep-dashboard-panel .bdt-card .bdt-others-plugin-content {
      flex-direction: row;
      align-items: center;
    }
  }
  @media (min-width: 1200px) {
    .element-pack-dashboard.wrap .ep-dashboard-nav-container-wrapper {
      display: block;
    }
    .element-pack-dashboard.wrap .ep-dashboard-item:nth-child(1),
    .element-pack-dashboard.wrap .ep-dashboard-item:nth-child(3) {
      grid-column: span 7 / auto;
    }
    .element-pack-dashboard.wrap .ep-dashboard-item:nth-child(2) {
      grid-column: span 5 / auto;
    }
    .element-pack-dashboard.wrap .ep-dashboard-panel .ep-dashboard-others-plugin .bdt-card {
      flex-direction: row;
    }
    .element-pack-dashboard.wrap .ep-dashboard-panel .ep-dashboard-others-plugin .bdt-card .bdt-others-plugins-link {
      justify-content: flex-end;
    }
  }
  @media (min-width: 1440px) {
    .element-pack-dashboard.wrap .ep-dashboard-container {
      gap: 30px;
    }
    .element-pack-dashboard.wrap .ep-dashboard-nav-container-wrapper {
      margin-block-start: 30px;
    }
    .element-pack-dashboard.wrap .ep-option-page {
      margin-block-start: 30px;
    }
    .element-pack-dashboard.wrap .bdt-dashboard-navigation {
      min-inline-size: 300px;
      max-inline-size: 300px;
    }
    .element-pack-dashboard.wrap .ep-dashboard-header .ep-logo {
      inline-size: 300px;
    }
    .element-pack-dashboard.wrap .ep-dashboard-welcome-container {
      grid-row-gap: 30px;
      grid-column-gap: 30px;
    }
    .element-pack-dashboard.wrap .bdt-widget-filter-wrapper {
      margin-block-end: 30px;
    }
    .element-pack-dashboard.wrap .ep-dashboard-item:nth-child(1),
    .element-pack-dashboard.wrap .ep-dashboard-item:nth-child(3) {
      grid-column: span 8 / auto;
    }
    .element-pack-dashboard.wrap .ep-dashboard-item:nth-child(2) {
      grid-column: span 4 / auto;
    }
    .element-pack-dashboard.wrap #element_pack_api_settings_page .ep-options {
      gap: 30px !important;
    }
    .element-pack-dashboard.wrap #element_pack_api_settings_page .ep-options .ep-option-item {
      margin-block-end: 30px !important;
    }
  }
  @media (min-width: 1600px) {
    .element-pack-dashboard.wrap #element_pack_api_settings_page .ep-options {
      columns: 3;
    }
    .element-pack-dashboard.wrap .ep-dashboard-item {
      grid-column: span 3 / auto;
    }
    .element-pack-dashboard.wrap .bdt-subnav > * {
      padding-inline-start: 20px;
    }
    .element-pack-dashboard.wrap .ep-option-page .ep-options {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 959px) {
    .element-pack-dashboard .ep-custom-code-section .ep-code-editor-wrapper {
      margin-block-end: var(--ep-dashboard-gap-size);
    }
  }
  @media (max-width: 768px) {
    .element-pack-dashboard.wrap .ep-white-label-input {
      max-inline-size: 100%;
    }
  }
  [dir="rtl"] .element-pack-dashboard input[type="checkbox"]:checked + .switch::after {
    transform: translateX(-18px);
  }
  [dir="rtl"] .element-pack-dashboard .ep-extra-options-tabs input:checked + .slider:before {
    transform: translateX(-22px);
  }
  [dir="rtl"] .element-pack-dashboard.wrap .ep-option-page .ep-option-item[data-content-type~="update"] > .ep-option-item-inner:before,
  [dir="rtl"] .element-pack-dashboard.wrap .ep-option-page .ep-option-item[data-content-type~="new"] > .ep-option-item-inner:before {
    transform: rotate(45deg);
  }
  /* RTL: success/error notice (ep-code-message, ep-white-label-message) centering and alignment */
  [dir="rtl"] .element-pack-dashboard .ep-code-message,
  [dir="rtl"] .element-pack-dashboard .ep-white-label-message {
    inset-inline-start: auto;
    inset-inline-end: 50%;
    transform: translate(50%, 0);
  }
  [dir="rtl"] .element-pack-dashboard .ep-code-message .bdt-alert,
  [dir="rtl"] .element-pack-dashboard .ep-white-label-message .bdt-alert {
    text-align: right;
  }
  