.has-overlay {
    overflow: inherit;
}
body:not(.page-loaded) .electron-canvas-menu {
    display: none;
}
header.header-fixed {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.electron-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: auto;
    min-height: 70px;
    z-index: 105;
    background: var(--electron-light);
    display: flex;
    align-items: center;
    transform: translateY(-100%);
    -webkit-box-shadow: 0 15px 30px -4px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 15px 30px -4px rgba(0,0,0,.09);
    box-shadow: 0 15px 30px -4px rgb(0 0 0 / 17%);
    transition: opacity 0.4s cubic-bezier(.19,1,.22,1),transform 0.4s cubic-bezier(.19,1,.22,1);
}

.scroll-start .electron-header-sticky.sticky-start  {
    opacity: 1;
    transform: none;
}

body.admin-bar.scroll-start .electron-header-sticky.sticky-start {
    top: 32px;
}

.electron-header-part:not(.electron-header-sticky) {
    position: relative;
}

.electron-header-top {
    font-size: 12px;
    border-bottom: 1px solid var(--electron-border);
    width: 100%;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.electron-header-bottom {
    border: 1px solid var(--electron-border);
    border-right: 0;
    border-left: 0;
}

.electron-header-bottom.bg-trans-light {
    border-bottom: 1px solid var(--electron-border);
}

.electron-header-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1580px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    min-height: 40px;
    height: 100%;
    gap: 20px;
    position: relative;
}

.electron-header-middle .electron-header-inner {
    min-height: 100px;
}

.electron-header-bottom .electron-header-inner {
    min-height: 50px;
}

.header-col {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-col.col-left {
    justify-content: flex-start;
}

.header-col.col-center {
    justify-content: center;
    flex: 1 1 auto;
}

.header-col.col-right {
    justify-content: flex-end;
}

.type-minimenu>.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    list-style: none;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
}

.type-minimenu>.nav li:nth-child(1) a {
    color: var(--electron-green);
}
.type-minimenu>.nav li:nth-child(2) a {
    color: var(--electron-blue-soft);
}
.type-minimenu>.nav li:nth-child(3) a {
    color: var(--electron-blue);
}
.type-minimenu>.nav li:nth-child(4) a {
    color: var(--electron-red);
}

.type-dropdown {
    position: relative;
    height: 100%;
}

.type-dropdown>.nav {
    height: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    gap: 15px;
}

.type-dropdown ul.submenu {
    list-style: none;
    font-size: 10px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--electron-light);
    padding: 15px;
    position: absolute;
    top: 100%;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    min-width: 100px;
    width: max-content;
    gap: 10px;
}

.col-right .type-dropdown ul.submenu {
    left: auto;
    right: 0;
}

.type-dropdown .has-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.type-dropdown ul.submenu a {
    color: var(--electron-dark);
}

.type-dropdown .dropdown-btn {
    font-size: 8px;
    transform: rotate(180deg);
}

.type-dropdown .has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.electron-header-inner .top-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.electron-header-top .top-action-btn svg {
    width: 18px;
    height: 18px;
}

.electron-header-top .electron-wc-count {
    left: 10px;
}

.header-text,
.electron-header-top .top-action-btn {
    line-height: 1;
}

.account-page-link {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-shortcode {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height:0;
}

.header-shortcode a {
    font-size: 14px;
}

.bg-light .header-shortcode .ht-c-url {
    font-size: 12px;
    color: var(--electron-text);
}

.electron-header-middle {
    width: 100%;
    display: flex;
    align-items: center;
}

.header-mainmenu.type-menu {
    height: 100%;
}

.header-mainmenu ul.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.header-mainmenu .nav>li>.submenu,
.header-mainmenu .nav>li>.submenu .submenu {
    list-style: none;
    font-size: 13px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--electron-light);
    padding: 20px 0;
    position: absolute;
    top: 100%;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    min-width: 240px;
    width: max-content;
    border-radius: 0 0 5px 5px;
}

.mega-container {
    position: absolute;
    top: 100%;
    left: 20px;
    width: 98%;
    max-width: 1540px;
    border-top: 1px solid var(--electron-gray);
    background-color: var(--electron-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.mega-container>li {
    display: flex;
    justify-content: center;
}

.header-mainmenu .mega-container>.submenu {
    flex-direction: row;
    max-width: 1580px;
    display: flex;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    font-size: 12px;
    gap: 20px;
}

.header-mainmenu .mega-container .submenu .submenu {
    list-style: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-mainmenu .mega-container .column-title {
    font-size: 14px;
    border-bottom: 1px solid var(--electron-border);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.header-mainmenu .nav>li>.submenu .submenu {
    left: 100%;
    top: calc(-100% - -15px);
}

.col-right .header-mainmenu .nav>li>.submenu {
    left: auto;
    right: 0;
}

.col-right .header-mainmenu .nav>li>.submenu .submenu {
    left: auto;
    right: 100%;
}

.col-right .header-mainmenu .submenu li.has-dropdown .dropdown-btn {
    transform: rotate(-90deg);
}
.menu-item.has-icon>a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: -webkit-fill-available;
}
.header-mainmenu>.nav>li:not(.mega-parent) {
    display: flex;
    position: relative;
    align-items: center;
    height: 100%;
}

.header-mainmenu>.nav>li.mega-parent {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-mainmenu>.nav>li>a {
    font-size: 13px;
    font-weight: 500;
    color: var(--electron-gray-dark);
    text-transform: uppercase;
    padding: 0;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}
.menu-item>a>svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.header-mainmenu>.nav>li>.submenu>li,
.header-mainmenu>.nav>li>.submenu .submenu>li {
    width: 100%;
    position: relative;
    /* padding: 0 15px; */
}

.header-mainmenu .submenu>li>a {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 20px;
}

.header-mainmenu .menu-item .menu-label {
    position: absolute;
    top: -26px;
    max-height: 16px;
    display: flex;
    right: -1px;
    font-size: 8px;
    padding: 4px 5px;
    color: var(--electron-light);
    background-color: var(--electron-blue-soft);
    border-radius: 3px;
    letter-spacing: 0.5px;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-transform: uppercase;
    font-weight: 500;
}
.header-mainmenu .menu-item .submenu .menu-label {
    top: 8px;
    right: 15px;
    left: auto;
}
.menu-item-mega-parent {
    position: static;
}


.mega-parent.column-5>.mega-container>ul.submenu>li {
    width: 20%;
    flex: 0 0 20%;
}

.header-mainmenu .dropdown-btn {
    display: block;
    transform: rotate(180deg);
    font-size: 7px;
    font-weight: bold;
    color: var(--electron-text);
}

.header-mainmenu .submenu li.has-dropdown .dropdown-btn {
    transform: rotate(90deg);
    position: absolute;
    right: 15px;
}

.electron-category-menu {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.electron-category-menu .menu-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--electron-light);
    background: var(--electron-primary);
    padding: 10px 15px;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 10px;
}

.electron-category-menu .title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.electron-header-bottom .menu-title {
    min-width: 230px;
}

.electron-category-menu .menuBars {
    width: 18px;
    height: 18px;
}

.electron-category-menu .icon-arrow {
    display: block;
    transform: rotate(180deg);
    font-size: 10px;
}

.electron-category-menu .submenu {
    min-width: 230px;
    position: absolute;
    padding: 0;
    background-color: var(--electron-light);
    border-radius: 0 0 5px 5px;
    border: none;
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 100%;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: space-between;
    align-content: flex-start;
}

.electron-category-menu.always-open>.submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: unset;
}

.electron-category-menu .submenu .submenu {
    right: auto;
    left: 100%;
    top: 0px;
}

.col-right .electron-category-menu .submenu {
    left: auto;
    right: 0;
}

.col-right .electron-category-menu .submenu .submenu {
    right: 100%;
    left: auto;
}

.electron-category-menu .primary-cats>li,
.electron-category-menu .submenu>li {
    margin-left: 0;
    text-align: left;
    display: flex;
    position: relative;
    padding: 8px 15px;
    align-items: center;
    flex-direction: row;
}

.electron-category-menu .primary-cats>li:not(last-child),
.electron-category-menu .submenu>li:not(last-child) {
    border-bottom: 1px solid var(--electron-border);
}

.electron-category-menu .product_cat {
    width: 100%;
    display: flex;
    text-transform: capitalize;
    line-height: 1;
    align-items: center;
    gap: 10px;
}
header .electron-vertical-catmenu-primary.submenu .menu-item-has-children> .product_cat:after {
    font-family: 'ninetheme-font';
    content: "\f115";
    position: absolute;
    right: 18px;
    transform: rotate(90deg);
    font-size: 7px;
}
.bg-light .electron-category-menu > .submenu li:hover> .product_cat:after {
    color: var(--electron-light);
}
.electron-category-menu .submenu .dropdown-btn {
    display: block;
    position: relative;
    font-size: 10px;
    color: currentColor;
}

.col-right .electron-category-menu .submenu .dropdown-btn {
    transform: rotate(180deg);
}

.type-dropdown ul.submenu,
.header-mainmenu .nav>li>.submenu,
.header-mainmenu .nav>li>.submenu .submenu,
.header-mainmenu .mega-container,
.electron-category-menu .submenu {
    -webkit-box-shadow: 0 15px 30px -4px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 15px 30px -4px rgba(0,0,0,.09);
    box-shadow: -4px -2px 30px 2px rgb(0 0 0 / 17%);
    transform: translateY(15px) translateZ(0);
    transition: opacity 0.4s cubic-bezier(.19,1,.22,1),visibility 0.4s cubic-bezier(.19,1,.22,1),transform 0.4s cubic-bezier(.19,1,.22,1);
    pointer-events: none;
}

.header-mainmenu .nav>li:hover>.submenu,
.header-mainmenu .nav .submenu li:hover>.submenu,
.header-mainmenu .nav>li:hover>.mega-container,
.type-dropdown ul>li.open>.submenu,
.electron-category-menu:hover>.submenu,
.electron-category-menu.active>.submenu,
.electron-category-menu .submenu li:hover>.submenu,
.electron-category-menu.fixed-submenu.active li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: unset;
}

.bg-light:not(.bg-trans-light) {
    background-color: var(--electron-light);
}

.bg-dark:not(.bg-trans-dark) {
    background-color: var(--electron-dark);
    color: var(--electron-light);
}

.bg-dark .top-action-btn svg,
.bg-dark .electron-svg-icon,
.bg-trans-light .electron-svg-icon {
    fill: var(--electron-light);
}

.bg-light .electron-svg-icon {
    fill: var(--electron-text);
}

.bg-dark .menuBars,
.bg-trans-light .menuBars {
    stroke: var(--electron-light);
}

.bg-light .menuBars {
    stroke: var(--electron-light);
}

.top-action-btn .shopCompare.electron-svg-icon {
    max-width: 28px !important;
    max-height: 28px !important;
}

.bg-dark .header-text,
.bg-dark .header-text a,
.bg-dark .account-page-link,
.bg-dark .nav >li> a,
.bg-dark .header-mainmenu>ul>li>a,
.bg-dark .header-mainmenu .submenu>li>a,
.bg-dark .electron-ajax-product-title,
.bg-dark .electron-btn-text,
.bg-dark .electron-ajax-product-price,
.bg-dark .header-shortcode a,
.bg-dark .electron-ajax-selected,
.bg-dark .electron-category-menu .submenu a,
.bg-dark .electron-category-menu li,
.bg-dark .type-dropdown ul.submenu a,
.bg-trans-light .header-text,
.bg-trans-light .header-text a,
.bg-trans-light .account-page-link,
.bg-trans-light .nav >li> a,
.bg-trans-light .header-mainmenu>ul>li>a,
.bg-trans-light .header-shortcode a ,
.bg-trans-light .electron-ajax-selected,
.bg-trans-light .header-mainmenu .submenu>li>a,
.bg-trans-light .electron-ajax-product-title,
.bg-trans-light .electron-btn-text,
.bg-trans-light .electron-ajax-product-price,
.bg-trans-light .electron-category-menu .submenu a,
.bg-trans-light .electron-category-menu li,
.bg-trans-light .type-dropdown ul.submenu a {
    color: var(--electron-light);
}

.bg-light .header-text, .bg-light .header-text a, .bg-light .account-page-link, .bg-light .nav >li> a, .bg-light .header-mainmenu>ul>li>a, .bg-light .header-mainmenu .submenu>li>a, .bg-light .electron-ajax-product-title, .bg-light .electron-btn-text, .bg-light .electron-ajax-product-price, .bg-light .header-shortcode a, .bg-light .electron-category-menu .submenu a, .bg-light .electron-category-menu li, .bg-light .type-dropdown ul.submenu a, .bg-trans-dark .header-text, .bg-trans-dark .header-text a, .bg-trans-dark .account-page-link, .bg-trans-dark .nav >li> a, .bg-trans-dark .header-mainmenu>ul>li>a, .bg-trans-dark .header-shortcode a, .bg-trans-dark .electron-ajax-selected, .bg-trans-dark .header-mainmenu .submenu>li>a, .bg-trans-dark .electron-ajax-product-title, .bg-trans-dark .electron-btn-text, .bg-trans-dark .electron-ajax-product-price, .bg-trans-dark .electron-category-menu .submenu a, .bg-trans-dark .electron-category-menu li, .bg-trans-dark .type-dropdown ul.submenu a {
    color: var(--electron-dark);
}

.bg-trans-dark,
.bg-trans-light {
    background-color: transparent;
}

.bg-dark .type-dropdown ul.submenu,
.bg-dark .header-mainmenu ul.submenu,
.bg-dark .category-select-wrapper .category-list,
.bg-dark .electron-category-menu .submenu {
    background-color: var(--electron-dark);
}


.electron-header .panel-open .menuBars {
    stroke: var(--electron-dark);
}

.electron-header .panel-open {
    display: flex;
    align-items: center;
    align-content: center;
}

.bg-light .electron-category-menu img {
    max-width: 28px;
    border: 1px solid;
    border-color:var(--electron-border);
    padding: 4px;
    border-radius: 5px;
    background: #eee;
}

.bg-light .electron-category-menu .category-title {font-weight: 500;}

.bg-light .electron-category-menu > ul > li:hover > a img {
    background: var(--electron-blue-bg);
    border-color: var(--electron-blue-bg);
}

.bg-light .electron-category-menu .submenu>li:hover {
    background: var(--electron-primary);
}
.bg-light .electron-category-menu li.current-cat {
    background: var(--electron-secondary);
}

.bg-light .electron-category-menu .submenu > li:hover>a,
.bg-light .electron-category-menu .submenu > li.current-cat>a,
.bg-light .electron-category-menu > .submenu li.current-cat,
.bg-light .electron-category-menu > .submenu li:hover {
    color: var(--electron-light);
}

.electron-header-middle .nt-header-callus-container {
    margin: 0 10px;
}
.electron-header-middle .nt-header-callus-icon i {
    font-size: 30px;
    color: var(--electron-green);
}

.electron-header-middle .nt-header-callus {
    display: flex;
    gap: 15px;
    align-items: center;
}

.electron-header-middle .nt-header-callus-text {
    display: flex;
    flex-direction: column-reverse;
    gap: 3px;
}

.electron-header-middle .nt-header-phone-text {
    color: var(--electron-text);
    text-transform: uppercase;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.electron-header-middle .nt-header-phone-number {
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: #222529;
}

.nt-header-type-2 .header-text {
    min-width: 210px;
}

.nt-header-type-2 .electron-header-middle .nt-header-callus-container {
    border: 1px solid;
    border-color: var(--electron-red);
    border-radius: 50px;
    padding: 5px;
}
.nt-header-type-2 .electron-header-middle .nt-header-callus-icon i {
    font-size: 20px;
}
.nt-header-type-2 .electron-header-middle .nt-header-callus-icon {
    background: var(--electron-red);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}


.electron-header-top .nt-header-callus {
    display: flex;
    gap: 10px;
    align-items: center;
}

.electron-header-top .nt-header-callus-container {
    font-size: 12px;
    background: var(--electron-blue);
    padding: 7px 10px;
    color: var(--electron-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5px;
}

.electron-header-top .nt-header-phone-number {
    font-size: 13px;
    color: white;
}

.electron-header-top .nt-header-callus-text {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.electron-header-top .nt-header-callus-container * {
    color: var(--electron-light);;
}


/* popup search */

.electron-popup-search {
    position: fixed;
    top: -100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--electron-light);
    z-index: 106;
    padding: 100px;
}
.electron-popup-search.active {
    top: 0;
    visibility: visible;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(.19,1,.22,1),visibility 0.4s cubic-bezier(.19,1,.22,1),top 0.4s cubic-bezier(.19,1,.22,1);
}
.electron-popup-search.active .search-form-found {
    position: relative;
    z-index: 9;
}
.search-container {
    max-width: 1200px;
}
.search-col {
    flex: 0 0 100%;
    width: 100%;
}
.search-col .electron-ajax-product-search {
    max-width: 100%;
    z-index: 1;
}
.search-col .electron-ajax-product-search form {
    border: 0;
    border-bottom: 2px solid var(--electron-border);
    border-radius: 0;
}
.search-col .electron-ajax-search-results {
    max-width: 100%;
}
.search-col .electron-ajax-search-results ul {
    flex-direction: row;
    flex-wrap: wrap;
}
.search-col .electron-ajax-search-results ul li {
    padding: 10px 20px;
    flex: 0 0 50%;
}
.search-col .electron-ajax-search-results ul li:nth-child(2n+1) {
    border-right: 1px dashed var(--electron-border);
}
.search-col .electron-scrollbar {
    padding-right: 0;
    padding-left: 0;
}
.search-col .electron-ajax-product-search .category-select-wrapper {
    border: 0;
}
.search-col .electron-ajax-product-search button.electron-ajax-search-submit,
.search-col .electron-ajax-product-search button.electron-ajax-search-submit:hover,
.search-col .electron-ajax-close-search-results {
    color: var(--electron-dark);
    background-color: transparent;
}
.search-col .electron-ajax-product-search button.electron-ajax-search-submit svg,
.search-col .electron-ajax-product-search button.electron-ajax-search-submit:hover svg {
    fill: var(--electron-dark);
}
.search-col .cat-heading {
    font-size: 18px;
    margin-top: 40px;
    position: relative;
    display: block;
    padding-bottom: 0;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 500;
}
.search-col .electron-category-menu {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.search-col .electron-vertical-catmenu-primary.submenu {
    position: relative;
    opacity: 1;
    visibility: visible;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    border: 0;
    transform: none;
    gap: 1px;
    flex-wrap: wrap;
}
.search-col .electron-category-menu .submenu>li {
    border: 1px solid var(--electron-border);
    flex: 1 0 20%;
}
.search-col .electron-category-menu .submenu .submenu {
    right: auto;
    left: 0;
    top: 100%;
    width: 100%;
    display: none;
}
.electron-popup-search .panel-close {
    position: absolute;
    top: 10px;
    right: 20px;
}
body.admin-bar .electron-popup-search .panel-close {
	top: 15px;
	right: 20px;
}

.electron-popup-search .cat-item:hover {
    background-color: var(--electron-primary);
    border-color: var(--electron-primary);
    -webkit-box-shadow: 0 15px 30px -4px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 15px 30px -4px rgba(0,0,0,.09);
    box-shadow: -4px -2px 30px 2px rgb(0 0 0 / 17%);
}
.electron-popup-search .cat-item:hover,
.electron-popup-search .cat-item:hover > a {
    color: var(--electron-light);
    opacity: 1;
}
.electron-popup-search .nt-icon-up-chevron.dropdown-right {
    transform: rotate(90deg);
    font-size: 10px;
}

/* promotion top bar */
.electron-promotion-bar .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    min-height: 30px;
    max-width: 1420px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    color: #fff;
    transition: height 0.5s, padding 0.5s;
    background: none;
    position: relative;
}
#promotionBar.closed {
  height: 0;
  padding: 0;
  overflow: hidden;
}
.electron-promotion-bar .panel-close {
    position: absolute;
    right: 15px;
    top: 6px;
    width: 20px;
    height: 20px;
    border-width: 5px;
    background-color: transparent;
}
.electron-promotion-bar.grad-anim-1 {
    background: linear-gradient(270deg, #000fe8, #e80027);
}
.grad-anim-1 {
    background-size: 400% 400%;
    -webkit-animation: grad-anim-1 22s ease infinite;
    -moz-animation: grad-anim-1 22s ease infinite;
    animation: grad-anim-1 22s ease infinite;
}

@-webkit-keyframes grad-anim-1 {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes grad-anim-1 {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes grad-anim-1 {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

/* Header style-2 */

.electron-header.bg-light.style-2 .electron-header-bottom {
    background: var(--electron-blue-dark);
}

.electron-header.bg-light.style-2 .electron-header-bottom .header-mainmenu .nav >li> a,
.electron-header.bg-light.style-2 .electron-header-bottom .account-page-link,
.electron-header.bg-light.style-2 .electron-header-bottom svg,
.electron-header.bg-light.style-2 .header-text a,
.electron-header.bg-light.style-2 .electron-header-bottom .electron-ajax-selected {
    color: var(--electron-light);
    fill: var(--electron-light);
}
.electron-header.bg-light.style-2 .electron-header-bottom .panel-open svg {
    stroke: var(--electron-light);
}
.electron-header.bg-light.style-2 .electron-header-bottom .electron-ajax-product-search .category-select-wrapper,
.electron-header.bg-light.style-2 .electron-header-bottom .electron-ajax-product-search form {
    border-width: 2px solid;
    border-color: var(--electron-primary);
}
.electron-header.bg-light.style-2 .electron-header-bottom .electron-ajax-product-search form {
    height: 38px;
}
.electron-header.bg-light.style-2 .electron-header-bottom .type-minimenu>.nav li:nth-child(3) a {
    color: var(--electron-yellow);
}
.electron-header.bg-light.style-2 .electron-header-bottom .header-minimenu.type-dropdown > ul > li > a {
    color: var(--electron-light);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.electron-header.style-2 .electron-header-bottom .nt-header-callus {
    text-transform: uppercase;
    font-size: 12px;
}
.electron-header.style-2 .electron-header-bottom .nt-header-callus-icon i {
    font-size: 10px;
    margin-right: 5px;
}
.electron-header.bg-light.style-2 .electron-header-middle .header-text {
    background-color: var(--electron-green);
    padding: 8px;
    border-radius: 5px;
}
.electron-header.bg-light.style-2 .electron-header-middle .header-text:hover {
    background-color: var(--electron-primary);
}
.electron-header.bg-light.style-2 .electron-header-middle .header-text i {
    color: var(--electron-light);
}

.electron-header.bg-light.style-2 .electron-header-middle .nt-header-phone-text {
    color: var(--electron-green-bg);
}
.electron-header.bg-light.style-2 .electron-header-middle .nt-header-phone-number {
    color: var(--electron-light);
}

/* Header style-2 end */

/* Header style-3 */

.electron-header.style-3 .electron-header-top {
    background: var(--electron-primary);
}

.electron-header.style-3 .electron-header-top .nt-header-callus-container {
    background: var(--electron-blue);
    color: var(--electron-light);
}

.electron-header.style-3 .electron-header-top .header-mainmenu .nav >li> a,
.electron-header.style-3 .electron-header-top .account-page-link,
.electron-header.style-3 .electron-header-top svg,
.electron-header.style-3 .header-text a,
.electron-header.style-3 .electron-header-top .header-shortcode a {
    color: var(--electron-light);
    fill: var(--electron-light);
}
.electron-header.style-3 .electron-header-top .panel-open svg {
    stroke: var(--electron-light);
}

.electron-header.style-3 .electron-header-top .type-minimenu>.nav li:nth-child(3) a {
    color: var(--electron-yellow);
}
.electron-header.style-3 .electron-header-top .header-minimenu.type-dropdown > ul > li > a {
    color: var(--electron-light);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.electron-header.style-3 .electron-header-top .nt-header-callus {
    text-transform: uppercase;
    font-size: 10px;
}
.electron-header.style-3 .electron-header-top .nt-header-callus-icon i {
    font-size: 15px;
    margin-right: 0px;
}
.electron-header.style-3 .electron-header-middle .header-text {
    background-color: var(--electron-green);
    padding: 8px;
    border-radius: 5px;
}
.electron-header.style-3 .electron-header-middle .header-text:hover {
    background-color: var(--electron-primary);
}
.electron-header.style-3 .electron-header-middle .header-text i {
    color: var(--electron-light);
}

.electron-header.style-3 .electron-header-middle .nt-header-phone-text {
    color: var(--electron-green-bg);
}
.electron-header.style-3 .electron-header-middle .nt-header-phone-number {
    color: var(--electron-light);
}

/* Header style-3 end */

/* Header style-4 */

.electron-header.style-4 .electron-header-top {
    background: var(--electron-gray-soft);
}
.electron-header.style-4 .electron-header-top .nt-header-callus-container {
    background: var(--electron-primary);
}
.electron-header.style-4 .electron-category-menu .menu-title,
.electron-header.style-4 .electron-ajax-product-search button.electron-ajax-search-submit,
.electron-header.style-4 .electron-ajax-product-search button.electron-ajax-search-submit:hover,
.electron-header.style-4 .electron-ajax-close-search-results,
.electron-header.style-4 .electron-wc-count {
    background-color: var(--electron-red);
    border-radius: 3px;
}

.electron-header.style-4 .electron-header-bottom {
    border: 0;
    border-top: 1px solid;
    border-color: var(--electron-border);
    border-right: 0;
    border-left: 0;
    padding-top: 15px;
}
.electron-header.style-4 .electron-header-middle .nt-header-callus-icon i {
    font-size: 24px;
    color: var(--electron-light);
}
.electron-header.style-4 .electron-header-middle .nt-header-callus {
    gap: 10px;
}
.electron-header.style-4 .electron-header-middle .nt-header-callus-icon {
    background-color: var(--electron-green);
    color: var(--electron-light);
    padding: 5px 7px;
    border-radius: 3px;
}

/* Header style-4 end */

/* Header style-5 start */


.style-5 .header-mainmenu > ul > li > a > .dropdown-btn {
    color: var(--electron-light);
}

.style-5 .electron-header-bottom {
    border: 0;
    background-color: var(--electron-red-dark);
}

.style-5 .electron-header-top {
    background-color: var(--electron-gray-soft);
}

.style-5 .electron-header-middle .nt-header-callus {
    border: 2px solid #009367;
    padding: 10px;
    border-radius: 5px;
}

.style-5 .electron-ajax-product-search button.electron-ajax-search-submit,
.style-5 .electron-ajax-product-search button.electron-ajax-search-submit:hover,
.style-5 .electron-ajax-close-search-results {
    background-color: var(--electron-red);
}

.style-5 .electron-wc-count {
    background: var(--electron-red-soft);
    color: var(--electron-red-dark);
}

.style-5 .electron-category-menu .menu-title,
.style-5 .electron-category-menu .submenu>li:hover {
    background: var(--electron-red);
}

.style-5 .electron-header-bottom .header-mainmenu .nav >li> a,
.style-5 .electron-header-bottom .account-page-link,
.style-5 .electron-header-bottom svg,
.style-5 .header-text a,
.style-5 .type-minimenu>.nav li a,
.style-5 .electron-header-bottom .header-shortcode a {
    color: var(--electron-light);
    fill: var(--electron-light);
}

/* Header style-5 end */



@media(max-width:1200px) {

    .electron-category-menu.always-open>.submenu {
        opacity: 0;
        visibility: hidden;
    }
    .electron-category-menu.always-open.show>.submenu,
	.search-col .electron-category-menu.always-open>.submenu {
	    opacity: 1;
	    visibility: visible;
	}
}

@media(min-width:1024px) {
    body.page-loaded.has-minibar,
    body.page-loaded.has-minibar .electron-header-sticky {
        margin-left: 50px;
        transition: margin-left 0.4s cubic-bezier(.19,1,.22,1);
    }
    .type-dropdown ul>li:hover>.submenu {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: unset;
    }
}

@media(max-width:1024px) {
    .electron-header .hidden-mobile {
        display: none;
    }

    .search-col .electron-category-menu .submenu>li {
        flex: 1 0 calc((100% / 3) - 1px);
    }

    .electron-header-top .electron-header-inner {
        gap: 0;
    }

    .electron-header-top .header-col.col-center {
        justify-content: flex-start;
    }
    .electron-header-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* wp admin-bar mobile */

@media(max-width:782px) {

    .admin-bar .electron-side-panel {
        top: 46px;
    }

    .admin-bar .electron-promotion-bar .panel-close {
        top: 5px;
    }
}

@media(max-width:768px) {
    .electron-popup-search {
        padding: 60px 30px;
    }
    .search-col .electron-category-menu .submenu>li {
        flex: 1 0 calc((100% / 2) - 1px);;
    }
}
@media(max-width:480px) {
    .electron-popup-search {
        padding: 25px 20px;
    }
    .search-col .electron-ajax-product-search {
        margin-top: 30px;
    }
    .search-col .electron-vertical-catmenu-primary {
        max-height: calc(100vh - 200px);
        overflow: auto;
        padding-bottom: 10px;
    }
    .search-col .electron-category-menu .submenu>li {
        flex: 0 0 100%;
    }
    .search-col .electron-ajax-search-results {
        min-width: auto;
    }
    .search-col .electron-ajax-search-results ul li {
        flex: 0 0 100%;
    }
    .search-col .electron-ajax-search-results ul li:nth-child(2n+1) {
        border-right: 0;
    }
    .search-col .electron-scrollbar {
        padding-right: 0;
        padding-left: 0px;
        gap: 5px;
    }
    .header-shortcode {
        gap: 7px;
    }
	body.admin-bar.scroll-start .electron-header-sticky.sticky-start {
	    top: -6px;
	}
	body.admin-bar .electron-popup-search .panel-close {
		top: 15px;
		right: 25px;
	}
}

/* mobile header */
.electron-header-mobile {
    min-height: 80px;
    display: none;
    align-items: center;
    width: 100%;
    height: auto;
    z-index: 99;
    -webkit-box-shadow: 0 15px 30px -4px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 15px 30px -4px rgba(0,0,0,.09);
    box-shadow: 0 0px 30px -4px rgb(0 0 0 / 17%);
    transition: opacity 0.4s cubic-bezier(.19,1,.22,1),top 0.4s cubic-bezier(.19,1,.22,1);
}
.electron-header-mobile>div {
    flex: 0 0 100%;
}
.electron-header-mobile-fixed {
    min-height: 80px;
    display: none;
}
.electron-header-mobile .search-form-found {
    padding: 0 15px;
    min-height: 46px;
}
.electron-header-mobile.sticky-ready .search-form-found {
    display: none;
}
.electron-header-mobile .electron-ajax-search-results {
    max-width: 100%;
}
.electron-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    max-width: 450px;
    z-index: 99999;
    background-color: var(--electron-light);
    visibility: hidden;
    -webkit-box-shadow: 0 15px 30px -4px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 15px 30px -4px rgba(0,0,0,.09);
    box-shadow: 0 15px 30px -4px rgb(0 0 0 / 17%);
    transition: opacity 0.4s cubic-bezier(.19,1,.22,1),visibility 0.4s cubic-bezier(.19,1,.22,1),left 0.4s cubic-bezier(.19,1,.22,1);
}
.admin-bar .electron-mobile-menu {
    top: 0px;
    height: 100%;
    z-index: 99999;
}
.electron-mobile-menu.active {
    transform: none;
    left: 0;
    visibility: visible;
    transition: opacity 0.4s cubic-bezier(.19,1,.22,1),visibility 0.4s cubic-bezier(.19,1,.22,1),left 0.4s cubic-bezier(.19,1,.22,1);
}
.electron-mobile-menu .panel-close {
    border-radius: 0;
    width: 40px;
    height: 40px;
    right: -40px;
    top: 0;
    z-index: 5;
}
.mobile-menu-inner {
    display: flex;
    height: calc(100% - 55px);
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
    flex: 0 0 100%;
    flex-wrap: wrap;
    position: relative;
}
.mobile-menu-inner.electron-scrollbar {
    padding-right: 0;
}
.mobile-menu-tabs {
    display: flex;
    align-items: center;
    gap: 1px;
    width: 100%;
}
.mobile-menu-tab {
    flex: 1 0 auto;
    padding: 16px 10px;
    text-align: center;
    background-color: var(--electron-light);
    color: var(--electron-dark);
    text-transform: uppercase;
    cursor: pointer;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid;
    border-color: var(--electron-border);
    font-weight: 500;
    letter-spacing: 0.1px;
}
.mobile-menu-tab:hover,
.mobile-menu-tab.active {
    background-color: var(--electron-gray-soft);
    border-color: var(--electron-gray);
}
.mobile-menu .menu-item .menu-label {
    display: none;
}

.mobile-menu .menu-divider {
    border-top: 1px dashed var(--electron-border);
    margin: 30px 0;
}
.mobile-menu .nav.cloned {
    border-top: 1px solid var(--electron-border);
}
.mobile-menu .submenu,
.mobile-category-menu .submenu {
    display: none;
    flex-direction: column;
}

.has-tab .mobile-menu, .has-tab .mobile-category-menu {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(.19,1,.22,1),transform 0.4s cubic-bezier(.19,1,.22,1);
}
.mobile-menu.menu-active, .mobile-category-menu.menu-active {
    transform: translateX(0);
    opacity: 1;
}
.mobile-menu li,
.mobile-category-menu li {
    list-style: none;
}
.mobile-menu li>a, .mobile-category-menu li>a {
    padding: 0 20px;
    border-bottom: 1px solid var(--electron-border);
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    width: -webkit-fill-available;
    min-height: 52px;
    font-weight: 500;
    font-size: 13px;
}
.mobile-menu li.open>a,
.mobile-menu li>a:hover,
.mobile-category-menu li.open>a,
.mobile-category-menu li>a:hover {
    background-color: var(--electron-gray-soft);
    color: var(--electron-dark);
    opacity: 1;
}
.mobile-menu li.open>a, .mobile-menu li>a:hover,
.mobile-category-menu li.open>a,
.mobile-category-menu li>a:hover .mobile-menu-tab:hover,
.mobile-menu-tab.active {
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu li>.submenu>li>a,
.mobile-category-menu li>.submenu>li>a {
    padding-left: 40px;
    color: var(--electron-text);
    font-size: 12px;
}
.mobile-menu span.dropdown-btn,
.mobile-category-menu span.dropdown-btn {
    position: absolute;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border-left: 1px solid var(--electron-border);
    font-size: 11px;
}
.mobile-menu li.open>a>.dropdown-btn,
.mobile-menu span.dropdown-btn:hover,
.mobile-category-menu li.open>a>.dropdown-btn,
.mobile-category-menu span.dropdown-btn:hover {
    background-color: var(--electron-gray-soft);
    color: var(--electron-dark);
}
.mobile-menu li>a>.dropdown-btn:before,
.mobile-category-menu li>a>.dropdown-btn:before {
    transform: rotate(180deg);
}
.mobile-menu li.open>a>.dropdown-btn:before,
.mobile-category-menu li.open>a>.dropdown-btn:before {
    transform: rotate(0deg);
}
body.admin-bar.scroll-start .electron-header-mobile.sticky-start {
    top: 32px;
}
@media(max-width:1024px) {

    .electron-header-mobile {
        display: flex;
        flex-wrap: wrap;
        padding: 20px 0px;
        gap: 20px;
    }

    .electron-header-mobile .electron-ajax-product-search {
        max-width: 100%;
    }

    .electron-header-mobile.search-before {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .electron-header-mobile.sticky-ready {
        position: fixed;
        top: -100%;
        left: 0;
        opacity: 0;
        z-index: 999;
    }

    .electron-header-mobile.sticky-ready.sticky-start {
        top: 0;
        opacity: 1;
    }

    .electron-header-mobile-fixed.sticky-ready {
        display: block;
    }

    .electron-header .hidden-mobile {
        display: none;
    }
}
@media(max-width:782px) {
    .admin-bar .electron-mobile-menu .panel-close {
        top: 0;
        right: -40px;
    }
}

@media(max-width:480px) {
    .admin-bar .electron-header-mobile.sticky-ready {
        top: -100%;
        opacity: 0;
    }
	body.admin-bar.scroll-start .electron-header-mobile.sticky-ready.sticky-start {
	    top: 0px;
	    opacity: 1;
	}
    .electron-mobile-menu {
        max-width: calc(100% - 50px);
    }
}
.header-notices.top-action-btn.has-panel>i,
.header-notices.top-action-btn.has-panel>a>i {
    font-size: 24px;
    cursor: pointer;
}/* 1. Theme default css */

:root {
	--electron-font: "Roboto", Sans-serif;
	--electron-font-heading: 'Roboto', sans-serif;

	--electron-primary: #2252d1;
	--electron-secondary:#B20808;

	--electron-text: #4e4e4e;
	--electron-text-soft: #949494;

	--electron-dark: #161616;
	--electron-dark-soft: #343131;

	--electron-light: #FFFFFF;
	--electron-light-soft: #bdbdbd;

	--electron-gray: #E1E2E3;
	--electron-gray-dark: #595959;
	--electron-gray-soft: #F7F7F8;

	--electron-border: #EAEBED;
    --electron-dark-border: #060606;
    --electron-trans-border: #f7f7f833;

	--electron-success: #398f14;
	--electron-success-bg: #d4ffe7;
	--electron-success-border: #b5fdb0;

	--electron-warning: #c28e00;
	--electron-warning-bg: #fffcf2;
	--electron-warning-border: #faeecf;

	--electron-info: #1e73be;
	--electron-info-bg: #daedfd;
	--electron-info-border: #b0daff;

	--electron-red: #ED4B4B;
    --electron-red-dark: #B20808;
	--electron-red-soft: #FFB1B1;
	--electron-red-softer: #FFF5F5;
	--electron-red-text: #B20808;
	--electron-red-bg: #FFD9D9;
	--electron-red-border: #FFBFC1;

	--electron-green: #019267;
	--electron-green-soft: #0ECEA6;
	--electron-green-bg: #9BE8D8;

	--electron-purple: #6C5EBC;
	--electron-purple-soft: #BDB3FF;
	--electron-purple-bg: #DFDBFD;

	--electron-yellow: #ffdc00;
	--electron-yellow-soft: #FFE331;
	--electron-yellow-bg: #FFFABC;

	--electron-brown: #6C3428;
	--electron-cream: #F4EAD5;

	--electron-blue-dark: #011962;
	--electron-blue: #072AC8;
	--electron-blue-soft: #1E96FC;
	--electron-blue-bg: #CEE8FF;

	--electron-border-radius: 5px;
}

/* default css */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

main {
	display: block;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

li::marker {
    display: none;
    content: "";
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	outline: 0;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
textarea::-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
textarea::placeholder,
::placeholder {
	  color: var(--electron-gray-dark) !important;
}


.has-default-header-type-dark ::-webkit-input-placeholder,
.has-default-header-type-dark ::-moz-placeholder,
.has-default-header-type-dark :-ms-input-placeholder,
.has-default-header-type-dark :-moz-placeholder,
.has-default-header-type-dark textarea::-webkit-input-placeholder,
.has-default-header-type-dark textarea:-moz-placeholder,
.has-default-header-type-dark textarea::-moz-placeholder,
.has-default-header-type-dark textarea:-ms-input-placeholder,
.has-default-header-type-dark textarea::placeholder,
.has-default-header-type-dark ::placeholder {
  color: #bbbbbb !important;
}

button,
input {
	overflow: visible;
}

input[type="submit"] {
    cursor: pointer;
}

button,
select {
	text-transform: none;
	cursor:pointer;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='%237a7a7a' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 50%;
}

blockquote {
	margin: 0 0 1rem;
	background-color: var(--electron-gray);
	padding: 60px;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}
fieldset {
	padding: 0.35em 0.75em 0.625em;
}
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
	  -o-transition: height .3s ease-in-out;
    -webkit-transition: height .3s ease-in-out;
    transition: height .3s ease-in-out;
}

textarea:focus {
    -o-transition: height .3s ease-in-out;
    -webkit-transition: height .3s ease-in-out;
    transition: height .3s ease-in-out;
}


input:focus, textarea:focus,
textarea:focus::placeholder {
    color: var(--electron-dark);
    border-color: var(--electron-primary) !important;
}

::placeholder,
::-moz-placeholder,
::-webkit-input-placeholder,
:-ms-input-placeholder {
	color: var(--electron-gray-dark);
	-o-transition: color .3s ease-in-out;
	-webkit-transition: color .3s ease-in-out;
	transition: color .3s ease-in-out;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

@media print {
	*,
	*::before,
	*::after {
		text-shadow: none;
		box-shadow: none;
	}
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

html {
	font-size: var(--font-size);
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

a:hover {
	color: var(--color-primary-tint);
}

p {
	margin-top: 0;
	margin-bottom: 30px;
}
p:empty {
	display: none;
}

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

hr {
	margin-top: 30px;
	margin-bottom: 30px;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: var(--color-grey2);
}

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

img {
	max-width: 100%;
	vertical-align: middle;
	height: auto;
}

b, strong {
    font-weight: 500;
}

nav ol,
nav ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

iframe {
	display: block;
	width: 100%;
	border: 0;
	overflow: hidden;
}

canvas {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

blockquote {
	margin: 0;
	border-left: 5px solid var(--color-grey2);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-align: left;
	background-color: var(--color-grey1);
}

blockquote:not(:first-child) {
	margin-top: 30px;
}

blockquote:not(:last-child) {
	margin-bottom: 30px;
}

blockquote footer {
	color: var(--color-primary-tint);
}

@media (max-width: 991px) {
	blockquote {
		padding: 30px;
	}
}

@media (min-width: 992px) {
	blockquote {
		position: relative;
		padding: 60px 15%;
		font-size: 24px;
		overflow: hidden;
	}

	blockquote:before {
		position: absolute;
		top: -30px;
		left: 0;
		content: "\"";
		font-size: 200px;
		line-height: 1;
		-webkit-opacity: 0.2;
		-khtml-opacity: 0.2;
		-moz-opacity: 0.2;
		opacity: 0.2;
	}
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    width: 100%;
    font-weight: inherit;
    font-size: inherit;
    display: flex;
    align-content: center;
    align-items: center;
}

label span {
    line-height: 0;
}

mark {
	color: var(--color-primary);
	background-color: #fcf8e3;
}

code {
	padding: 2px 4px;
	background-color: var(--color-grey1);
	white-space: normal;
}

kbd {
	padding: 2px 4px;
	font-weight: 600;
	color: var(--color-white);
	background-color: var(--color-primary);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

pre {
    display: block;
    margin-top: 0;
    font-size: 90%;
    border: 1px solid var(--electron-gray);
    overflow: auto;
	margin-bottom: 20px;
	padding: 15px;
	word-break: break-all;
	word-wrap: break-word;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

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

dt {
	font-weight: 600;
}

dt:not(:last-child) {
	margin-bottom: 5px;
}

dd {
	margin-left: 0;
	margin-bottom: 20px !important;
}

dd:not(:last-child) {
	margin-bottom: 5px;
}

address {
	margin-bottom: 20px;
	font-style: normal;
	line-height: inherit;
}

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

cite {
	font-style: normal;
}

table {
	border-collapse: collapse;
	background-color: transparent;
}

th {
	text-align: left;
	font-weight: 500;
	color: var(--electron-dark);
}

fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}
input[type=checkbox], input[type=radio] {
    margin: 0;
    margin-right: 5px;
    font-size: 16px;
}
input[type="search"] {
	-webkit-appearance: none;
}

input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
	cursor: not-allowed;
}

textarea {
	resize: vertical;
}

input,
select,
textarea,
input[type="radio"],
input[type="checkbox"] {
	background-color: transparent;
}

input,
select,
textarea,
input[type="checkbox"] {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: var(--electron-gray-dark);
}

textarea {
	min-height: 110px;
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
	padding: 12px 10px;
    min-height: 45px;
    border: 1px solid var(--electron-border);
	max-width: 100%;
}

input[type="radio"],
input[type="checkbox"] {
	vertical-align: middle;
}

.select2-search--dropdown {
    padding: 0 !important;
    margin: 10px 10px 15px 10px;
}

.select2-dropdown {
    border: 1px solid var(--electron-border) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--electron-border) !important;
    max-height: 36px;
}
.vehicle-search-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
}
.vehicle-search-form .select2-container--default .select2-selection--single,
.vehicle-search-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px !important;
}
.vehicle-search-form button {
    border: 0;
    outline: none;
    min-height: 45px;
}
.vehicle-search-form:not(.loading) .filter-loader {
    display: none;
}
.vehicle-search-form.loading .filter-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
/* default css */

html {
    margin-right: 0 !important;
}

body {
	font-family: var(--electron-font);
	font-weight: 400;
	font-style: normal;
	font-size: 13px;
	color: var(--electron-text);
	line-height: 1.6;
    overflow-x: hidden;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	margin: 0;
    -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	overflow-y: scroll;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a,
.button {
	-webkit-transition: all 0.25s ease-out 0s;
	-moz-transition: all 0.25s ease-out 0s;
	-ms-transition: all 0.25s ease-out 0s;
	-o-transition: all 0.25s ease-out 0s;
	transition: all 0.25s ease-out 0s;
	color: var(--electron-dark);
	outline: medium none;
}

a {
	background-color: transparent;
	text-decoration: none;
}

a:focus,
.btn:focus,
.button:focus {
	text-decoration: none;
	outline: none;
	box-shadow: none;
}

a:hover {
	color: var(--electron-dark);
	text-decoration: none;
	opacity: 0.8;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
	outline: 0;
	color: var(--electron-text);
}

.nt-font-main {
	font-family: var(--electron-font);
}
.nt-font-primary {
	font-family: var(--electron-font-heading);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--electron-font-heading);
	color: var(--electron-dark);
	margin-top: 0px;
	font-style: normal;
	font-weight: 500;
	word-spacing: 0px;
	margin-bottom: 20px;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h1, h1.elementor-heading-title {
	font-size: 44.8px;
	line-height: 1.2;
}

h2, h2.elementor-heading-title {
	font-size: 37.3px;
	line-height: 1.2;
}

h3, h3.elementor-heading-title {
	font-size: 31.1px;
	line-height: 1.3;
}

h4, h4.elementor-heading-title {
	font-size: 25.9px;
	line-height: 1.3;
}

h5, h5.elementor-heading-title {
	font-size: 21.6px;
	line-height: 1.4;
}

h6, h6.elementor-heading-title {
	font-size: 18px;
	line-height: 1.4;
}


@media(max-width:767px) {

	h1, h1.elementor-heading-title {
		font-size: 32px;
		line-height: 1.2;
	}

	h2, h2.elementor-heading-title {
		font-size: 28px;
		line-height: 1.2;
	}

	h3, h3.elementor-heading-title {
		font-size: 23px;
		line-height: 1.3;
	}

	h4, h4.elementor-heading-title {
		font-size: 19px;
		line-height: 1.3;
	}

	h5, h5.elementor-heading-title {
		font-size: 17px;
		line-height: 1.2;
	}

	h6, h6.elementor-heading-title {
		font-size: 15px;
		line-height: 1.2;
	}

}


ul {
	margin: 0px;
	padding: 0px;
}

p {
	margin-bottom: 15px;
}

p.elementor-heading-title {
	line-height: 1.8;
}

hr {
	border-bottom: 1px solid var(--electron-dark);
	border-top: 0 none;
	margin: 30px 0;
	padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
*::-moz-selection {
	background: var(--electron-gray-dark);
	color:var(--electron-light);
	text-shadow: none;
}

::-moz-selection {
	background: var(--electron-dark);
	color:var(--electron-light);
	text-shadow: none;
}

::selection {
	background: var(--electron-dark);
	color:var(--electron-light);
	text-shadow: none;
}

*::-moz-placeholder {
	color: var(--electron-gray-dark);
	font-size: 14px;
	opacity: 1;
}

*::placeholder {
	color: var(--electron-text);
	font-size: 13px;
	opacity: 1;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}
.electron-header .electron-header-part:not(.electron-header-sticky) .has-sticky-logo .sticky-logo,
.electron-header .electron-header-sticky .has-sticky-logo .main-logo:not(.sticky-logo),
.electron-header .electron-header-mobile:not(.sticky-start) .has-sticky-logo .sticky-logo,
.electron-header .electron-header-mobile.sticky-start .has-sticky-logo .main-logo:not(.sticky-logo) {
    display: none;
}
.electron-header .electron-header-mobile.sticky-start .has-sticky-logo .main-logo.sticky-logo {
    display: block;
}


/* skeleton */
.loading li .electron-ajax-product-data {
    width: 100%;
}
.loading .electron-product-type-6 .electron-product-details-wrapper {
    border-top: 0;
}
.electron-swiper-container:not(.swiper-initialized){
    height: 100%;
}
.loading li .electron-ajax-product-image,
.loading li .electron-ajax-product-title,
.loading li .electron-ajax-product-price,
.loading li .electron-stock-status,
.loading .electron-loop-product .thumb-wrapper,
.loading .electron-loop-product .product-name,
.loading .electron-loop-product .product-price,
.loading .electron-loop-product .stock-rating,
.loading .electron-loop-product .product-features,
.loading .electron-loop-product .product-cart-wrapper,
.loading .electron-loop-product .electron-product-buttons,
.loading .electron-loop-product .product-desc,
.loaded.loading .quick-details>*,
.electron-swiper-container:not(.swiper-initialized),
.loading .list-inner .cart-actions,
.loading .product-footer a{
    position: relative;
    overflow: hidden;
}

.loading li .electron-ajax-product-title,
.loading li .electron-ajax-product-price,
.loading li .electron-stock-status,
.loading .electron-loop-product .thumb-wrapper,
.loading .electron-loop-product .product-name,
.loading .electron-loop-product .product-price,
.loading .electron-loop-product .stock-rating,
.loading .electron-loop-product .product-features,
.loading .electron-loop-product .product-cart-wrapper,
.loading .electron-loop-product .electron-product-buttons,
.loading .electron-loop-product .product-desc,
.loaded.loading .quick-details>*,
.loading .list-inner .cart-actions
{
    min-width: 100%;
    max-width: 100%;
}
.loading .electron-loop-product.type-1 .product-inner {
    padding-bottom: 0;
}
.loading .electron-loop-product.type-1 .product-cart-wrapper {
    bottom: 15px;
    max-width: calc(100% - 30px);
    min-width: auto;
    left: 15px;
}
.loading .electron-loop-product {
    pointer-events: none;
}
.loading .electron-ajax-product-link,
.loading .ribbon {
    display: none;
}

.loading li .electron-ajax-product-image::before,
.loading li .electron-ajax-product-title::before,
.loading li .electron-ajax-product-price::before,
.loading li .electron-stock-status::before,
.loading li .electron-btn-text::before,
.loading .electron-loop-product .thumb-wrapper::before,
.loading .electron-loop-product .product-name::before,
.loading .electron-loop-product .product-price::before,
.loading .electron-loop-product .stock-rating::before,
.loading .electron-loop-product .product-features::before,
.loading .electron-loop-product .product-cart-wrapper::before,
.loading .electron-loop-product .electron-product-buttons::before,
.loading .electron-loop-product .product-desc::before,
.loaded.loading .electron-swiper-container:before,
.loaded.loading .quick-thumbs:before,
.loaded.loading .quick-details>*:before,
.electron-swiper-container:not(.swiper-initialized):before,
.loading .list-inner .cart-actions:before,
.loading .product-footer a:before
{
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 98;
    background: #f4f4f4;
    width: 100%;
    height: 100%;
}
.loading li .electron-ajax-product-image::after,
.loading li .electron-ajax-product-title::after,
.loading li .electron-ajax-product-price::after,
.loading li .electron-stock-status::after,
.loading li .electron-btn-text::after,
.loading .electron-loop-product .thumb-wrapper::after,
.loading .electron-loop-product .product-name::after,
.loading .electron-loop-product .product-price::after,
.loading .electron-loop-product .stock-rating::after,
.loading .electron-loop-product .product-features::after,
.loading .electron-loop-product .product-cart-wrapper::after,
.loading .electron-loop-product .electron-product-buttons::after,
.loading .electron-loop-product .product-desc::after,
.loaded.loading .electron-swiper-container::after,
.loaded.loading .quick-thumbs::after,
.loaded.loading .quick-details>*::after,
.electron-swiper-container:not(.swiper-initialized):after,
.loading .list-inner .cart-actions:after,
.loading .product-footer a:after
{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(
        to right,
        #f6f7f9 0%,
        #e9ebee 20%,
        #f6f7f9 40%,
        #f6f7f9 100%
    );
    background-repeat: no-repeat;
    background-size: 450px 400px;
    animation: shimmer 2s linear infinite;
    z-index: 99;
}
.electron-swiper-container:not(.swiper-initialized):after
{
    background-size: 100%;
}
@keyframes shimmer {
    0% {
        background-position: -450px 0;
    }
    100% {
        background-position: 450px 0;
    }
}
/* skeleton */

/* nt font icon */
/* icon font */
@font-face {
  font-family: 'ninetheme-font';
  src:  url(//shodi-fashion.com/wp-content/themes/iprofimagazin/fonts/ninetheme-font.eot?ksdru7);
  src:  url(//shodi-fashion.com/wp-content/themes/iprofimagazin/fonts/ninetheme-font.eot?ksdru7#iefix) format('embedded-opentype'),
    url(//shodi-fashion.com/wp-content/themes/iprofimagazin/fonts/ninetheme-font.ttf?ksdru7) format('truetype'),
    url(//shodi-fashion.com/wp-content/themes/iprofimagazin/fonts/ninetheme-font.woff?ksdru7) format('woff'),
    url(//shodi-fashion.com/wp-content/themes/iprofimagazin/fonts/ninetheme-font.svg?ksdru7#ninetheme-font) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="nt-icon-"], [class*=" nt-icon-"] {
  font-family: 'ninetheme-font';
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nt-icon-alert:before {
  content: "\f100";
}
.nt-icon-button-play-2:before {
  content: "\f101";
}
.nt-icon-360-deg:before {
  content: "\f102";
}
.nt-icon-note:before {
  content: "\f103";
}
.nt-icon-statik:before {
  content: "\f104";
}
.nt-icon-altcart:before {
  content: "\f105";
}
.nt-icon-shapes:before {
  content: "\f106";
}
.nt-icon-check:before {
  content: "\f107";
}
.nt-icon-logout:before {
  content: "\f108";
}
.nt-icon-moredots:before {
  content: "\f109";
}
.nt-icon-arrowaroundleft:before {
  content: "\f110";
}
.nt-icon-arrowaroundright:before {
  content: "\f111";
}
.nt-icon-cross:before {
  content: "\f112";
}
.nt-icon-right-arrow-chevron:before {
  content: "\f113";
}
.nt-icon-left-arrow-chevron:before {
  content: "\f114";
}
.nt-icon-up-chevron:before {
  content: "\f115";
}
.nt-icon-edit:before {
  content: "\f116";
}
.nt-icon-symbol:before {
  content: "\f117";
}
.nt-icon-filters:before {
  content: "\f118";
}
.nt-icon-sort-by:before {
  content: "\f119";
}
.nt-icon-eye:before {
  content: "\f11a";
}
.nt-icon-arrow-next:before {
  content: "\f120";
}
.nt-icon-arrow-back:before {
  content: "\f121";
}
.nt-icon-layout:before {
  content: "\f122";
}
.nt-icon-cart:before {
  content: "\f123";
}
.nt-icon-user:before {
  content: "\f124";
}
.nt-icon-newlatter:before {
  content: "\f125";
}
.nt-icon-bag:before {
  content: "\f126";
}
.nt-icon-scaleerrows:before {
  content: "\f127";
}
.nt-icon-compare:before {
  content: "\f128";
}
.nt-icon-arrows:before {
  content: "\f129";
}
.nt-icon-lup:before {
  content: "\f130";
}
.nt-icon-quote_right:before {
  content: "\f131";
}
.nt-icon-envelope-o:before {
  content: "\f132";
}
.nt-icon-wishlist:before {
  content: "\f134";
}
.nt-account-details:before {
  content: "\f135";
}
.nt-icon-account-download:before {
  content: "\f136";
}
.nt-icon-account-exit:before {
  content: "\f137";
}
.nt-icon-account-orders:before {
  content: "\f138";
}
.nt-icon-account-address:before {
  content: "\f139";
}
.nt-icon-size-ruler:before {
  content: "\f13f";
}
.nt-icon-account-other:before {
  content: "\f140";
}
.nt-icon-account-payment:before {
  content: "\f142";
}
.nt-icon-plus:before {
  content: "\f143";
}
.nt-icon-home-page:before {
  content: "\f144";
}
.nt-icon-blog:before {
  content: "\f145";
}
.nt-icon-shop-page:before {
  content: "\f146";
}
.nt-icon-cart-empty:before {
  content: "\f147";
}
.nt-icon-star:before {
  content: "\f148";
}
.nt-icon-star_empty:before {
  content: "\f149";
}
.nt-icon-caret_down:before {
  content: "\f150";
}
.nt-icon-caret_up:before {
  content: "\f151";
}
.nt-caret_left:before {
  content: "\f152";
}
.nt-caret_right:before {
  content: "\f153";
}
.nt-icon-env:before {
  content: "\f157";
}
.nt-icon-mobile-alt-solid:before {
  content: "\f159";
}
.nt-icon-menu:before {
  content: "\f15a";
}
.nt-icon-menu-active:before {
  content: "\f15b";
}
.nt-icon-menu-filters:before {
  content: "\f15c";
}
.nt-icon-location-arrow-solid:before {
  content: "\f160";
}
/* brands */
.nt-icon-tik-tok:before {
  content: "\f133";
}
.nt-icon-twitter:before {
  content: "\f154";
}
.nt-icon-github:before {
  content: "\f155";
}
.nt-icon-pinterest:before {
  content: "\f156";
}
.nt-icon-linkedin:before {
  content: "\f158";
}
.nt-icon-youtube:before {
  content: "\f162";
}
.nt-icon-instagram:before {
  content: "\f163";
}
.nt-icon-flickr:before {
  content: "\f164";
}
.nt-icon-tumblr:before {
  content: "\f165";
}
.nt-icon-dribbble:before {
  content: "\f166";
}
.nt-icon-skype:before {
  content: "\f167";
}
.nt-icon-vk:before {
  content: "\f168";
}
.nt-icon-google:before {
  content: "\f169";
}
.nt-icon-behance:before {
  content: "\f170";
}
.nt-icon-spotify:before {
  content: "\f171";
}
.nt-icon-soundcloud:before {
  content: "\f172";
}
.nt-icon-copyright-regular:before {
  content: "\f173";
}
.nt-icon-facebook-square:before {
  content: "\f174";
}
.nt-icon-whatsapp:before {
  content: "\f175";
}
.nt-icon-odnoklassniki-square:before {
  content: "\f176";
}
.nt-icon-vimeo:before {
  content: "\f177";
}
.nt-icon-snapchat-ghost:before {
  content: "\f178";
}
.nt-icon-telegram:before {
  content: "\f179";
}
.nt-icon-facebook:before {
  content: "\f180";
}
.nt-icon-viber:before {
  content: "\f181";
}
/* nt font icon */


/*
* Theme General Start
/////////////////////////////////*/
body.admin-bar {
	padding-top: 32px;
}

@media(max-width:782px) {
	body.admin-bar {
		padding-top: 46px;
	}
}

.layout-boxed .electron-header-default {
    width: 100%;
    max-width: 1600px;
}



body.layout-boxed {
    background : #eee;
}

.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1580px;
	}
}

.electron-row {
	display: flex;
	flex-direction: column;
}

#wrapper {
    position: relative;
    width: 100%;
    scroll-behavior: smooth;
}

.layout-boxed:not(.has-header-sidebar) #wrapper {
    max-width: 1380px;
    margin: 0px auto 40px;
    background: var(--electron-light);
}

.layout-boxed:not(.has-header-sidebar) .electron-header {
    max-width: 1380px;
    margin: 40px auto 0;
    background: var(--electron-light);
}

.layout-boxed:not(.has-header-sidebar) .electron-header-bottom .electron-header-inner {
    padding-left: 0;
    max-width: 100%;
}

@media(max-width: 767px) {

	.layout-boxed:not(.has-header-sidebar) #wrapper {
		margin: 0px auto;
	}

}



.jarallax.parallax-yes {
    transition: none;
    position: relative;
    z-index: 0;
}

.jarallax > div[id^="jarallax-"] > img {
  position: fixed;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.elementor-editor-active .page-loaded .electron-main-sidebar-header {
    display: none;
}

.elementor-editor-active .has-header-sidebar .site-content {
    width: auto;
    margin-left: 0;
}

.page-wrapper .elementor-edit-area {
	z-index: 3;
}

.elementor-editor-active header.electron-header-default {
	z-index: 0;
}

.elementor-editor-active.scroll-start header.electron-header-default,
.elementor-editor-active header.electron-header-default:hover {
	z-index: 9;
}

body.single-elementor_library.elementor-editor-active .electron-main-header,
body.single-elementor_library.elementor-editor-active #nt-footer{
    display: none;
}

[class^="elementor-widget-electron-"] .elementor-widget-empty-icon,
[class*="elementor-widget-electron-"] .elementor-widget-empty-icon{
    display: none!important;
}

.elementor-editor-active .loading {
    display: none!important;
}

.logo.logo-type-sitename {
	max-width: 450px;
}


.electron-hidden {
    display: none;
}

.electron-small-title,
.electron-small-title a {
    color: var(--electron-dark);
}

.elementor-widget-heading a.title-link {
    color: var(--electron-dark) !important;
}


#particles-js {
    position:absolute;
    width: 100%;
    height: 100vh;
    top:0;
    left:0;
}

canvas {
    display: block;
    vertical-align: bottom;
}

.electron-particles:not(.particles-none) div.electron-particles-effect {
    position:absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
}

.electron-particles:not(.particles-none) div.electron-particles-effect canvas {
    display: block;
    vertical-align: bottom;
}


/* section-padding helpers */

@media(max-width: 576px) {
	.section-padding {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media(min-width:768px) {
	.section-padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

@media(min-width:1200px) {
	.section-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.nt-section.section-padding.pt-0 {
	padding-top: 0;
}

.nt-section.section-padding.pb-0 {
	padding-bottom: 0;
}
/* section-padding helpers */


.electron-flex-center {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.electron-inline-two-block,
.electron-flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

.electron-inline-two-block {
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.electron-align-center {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.electron-justify-center {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.electron-block-left,
.electron-flex-left {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	text-align: left;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.electron-block-right,
.electron-flex-right {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	text-align: right;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

/* theme overlay  */
.page-overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    cursor: pointer;
    cursor: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 512 512'%3e%3cg transform='rotate(45 256 256)'%3e%3crect id='r' x='16' y='216' width='480' height='80' rx='14'/%3e%3cuse href='%23r' transform='rotate(90 256 256)'/%3e%3c/g%3e%3c/svg%3e") 16 16,pointer;
    right: 0;
    width: 0;
    height: 0;
    background: var(--electron-light);
    opacity: 0;
    -moz-transition: opacity .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: opacity .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: opacity .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
    pointer-events: none;
}

.has-overlay .page-overlay {
	width: 100%;
	height: 100%;
	opacity: 0.7;
	visibility: visible;
	pointer-events: unset;
}

/* theme overlay  */


/* theme svg icon */
.electron-svg-icon {
	max-width: 24px;
	max-height: 24px;
	cursor: pointer;
	fill: var(--electron-dark);
}

.electron-svg-icon.mini-icon {
	max-width: 15px;
	max-height: 15px;
}
/* theme svg icon */


/* scroll to top */
.scroll-to-top {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: var(--electron-dark);
	position: fixed;
	color:var(--electron-light);
	bottom: 60px;
	right: 40px;
	z-index: 99;
	font-size: 15px;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: none;
	border-radius: 4px;
	transition: all 0.4s ease;
}

.scroll-to-top:hover {
	background: var(--electron-primary);
	color: var(--electron-dark);
}
/* scroll to top */


/* input helper class*/
.electron-input {
    padding: 0 15px;
}

.electron-input-large {
    height: 48px;
}

.electron-input-medium {
    height: 38px;
    font-size: 14px;
}

.electron-input-small {
    height: 33px;
    font-size: 13px;
    min-width: 160px;
}


/* theme list style */
.electron-list-disc ul,
ul.electron-list-disc {
	list-style: none;
}

.electron-list-disc li,
ul.electron-list-disc li {
	position: relative;
}

.electron-list-disc li:before,
ul.electron-list-disc li:before {
	position: absolute;
	top: 10px;
	left: -20px;
	padding: 0;
	border: 1px solid var(--electron-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	line-height: 1;
	width: 8px;
	height: 8px;
	content: "";
}

.electron-list-disc li:after,
ul.electron-list-disc li:after {
	position: absolute;
	top: 13px;
	left: -17px;
	padding: 0;
	background: var(--electron-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	line-height: 1;
	width: 2px;
	height: 2px;
	content: "";
}
/* theme list style */


/* Breadcrumb */
.electron-breadcrumb li {
	list-style: none;
}

.electron-breadcrumb li, .electron-breadcrumb li a {
    display: inline-block;
    color: var(--electron-dark);
    padding: 0;
    max-width: 100%;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.woocommerce-breadcrumb,
.yoast-breadcrumb,
.rank-math-breadcrumb {
    color: var(--electron-dark);
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.electron-breadcrumb li.active {
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before,
.woocommerce-breadcrumb a::after {
    content: "";
    display: inline-block;
    padding-right: 0;
    width: 4px;
    height: 4px;
    background-color: var(--electron-gray);
    border-radius: 50%;
    margin-bottom: 2px;
    margin-right: 8px;
    margin-left: 8px;
}
.rank-math-breadcrumb .separator {
    margin-right: 4px;
    margin-left: 4px;
}
@media (max-width: 576px) {
    .has-default-header-type-default:not(.elementor-page) .section-padding {
        padding-bottom: 90px;
    }
    .electron-page-hero-content .page-title {
        font-size: 19px;
    }
    .electron-breadcrumb li,
    .electron-breadcrumb li a {
        font-size: 11px;
    }
    .breadcrumb-item+.breadcrumb-item::before {
        margin-right: 5px;
        margin-left: 5px;
    }
}
/* Breadcrumb */

/* logo */
.nav-logo img {
    max-width: 150px;
}

a.nt-logo.logo-type-text {
	position: relative;
	display: block;
	line-height: 1;
}

.header-text-logo {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    display: block;
    color: var(--electron-dark);
    font-family: var(--electron-font-heading);
    text-transform: uppercase;
}

@media(max-width:768px) {
	.header-text-logo {
		line-height: 1;
	}
	.nt-logo img,
	.nav-logo img {
        max-width: 110px;
    }
}
/* logo */


img[data-lazy-src] {
   opacity: 0;
}
img.lazyloaded {
   -webkit-transition: opacity .5s linear 0.2s;
       -moz-transition: opacity .5s linear 0.2s;
                 transition: opacity .5s linear 0.2s;
   opacity: 1;
}

/* 11. super-deal-area */
.electron-viewed-offer-time {
    margin-top: 20px;
    display: flex;
    border-radius: 4px;
    align-items: center;
    align-content: center;
    padding: 5px 15px;
    background-color: var(--electron-red-bg);
    border: 1px solid var(--electron-red-soft);
    gap: 30px;
    justify-content: space-between;
}
.electron-viewed-offer-time .offer-time-text {
    margin-bottom: 0;
    color: var(--electron-red-dark);
    font-weight: 600;
    font-size: 12px;
}
.electron-cart-timer {
    color: var(--electron-red-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.electron-viewed-offer-time .offer-time-text span {
	color: var(--electron-primary);
}

.electron-summary-item .electron-coming-time {
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
}
.electron-summary-item:not(.has-text) .electron-coming-time {
	justify-content: center;
}

.electron-viewed-offer-time.type-default .electron-coming-time {
    min-width: 240px;
}

.electron-viewed-offer-time.type-default:not(.has-icon) .electron-coming-time {
	margin-bottom: 30px;
}

.electron-viewed-offer-time.electron-summary-item:not(.type-default),
.electron-viewed-offer-time.type-default .electron-coming-time {
	background-color: var(--electron-red-bg);
	padding: 10px 15px;
	border-radius: 4px;
}

.electron-viewed-offer-time.has-icon .electron-svg-icon {
    max-width: 50px;
    max-height: 50px;
}

.electron-product-summary .electron-viewed-offer-time.has-icon .electron-coming-time,
.electron-product-summary .electron-viewed-offer-time.has-icon .offer-time-icon,
.electron-product-summary .electron-viewed-offer-time.has-icon .offer-time-inner {
    margin: 0;
}

.offer-time-text-after {
    margin-top: 5px;
    font-size: 12px;
}

.electron-viewed-offer-time.electron-summary-item.type-2 {
    background: var(--electron-yellow-soft);
    border: 1px solid var(--electron-yellow);
    padding: 15px;
    border-radius: 5px;
}

.electron-viewed-offer-time.electron-summary-item.type-3,
.electron-viewed-offer-time.electron-summary-item.type-4 {
    background: transparent;
    border: 1px solid var(--electron-dark);
    padding: 15px;
    border-radius: 5px;
}

.electron-viewed-offer-time.electron-summary-item.type-4 {
    border-color: var(--electron-gray);;
}

.electron-viewed-offer-time.type-2 .electron-coming-time {
    background-color: transparent;
    padding: 0;
    max-width: 100%;
    margin-bottom: 0;
}

.electron-viewed-offer-time.type-2 .offer-time-icon {
    margin-left: -50px;
}

.electron-viewed-offer-time.type-2 .offer-time-text {
    margin-bottom: 5px;
    color: var(--electron-dark-soft);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 15px;
}

.electron-viewed-offer-time.type-2 .time-count,
.electron-viewed-offer-time.type-3 .time-count,
.electron-viewed-offer-time.type-4 .time-count {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-width: 10px;
    letter-spacing: 1px;
    color: var(--electron-light);
    background-color: var(--electron-red);
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.electron-viewed-offer-time.type-2 .time-count {
	min-width: 40px;
}

.electron-viewed-offer-time.type-3 .time-count {
    color: var(--electron-red);
    background-color: transparent;
    border: 1px solid var(--electron-gray);
}

.electron-viewed-offer-time.type-4 .time-count {
    background: var(--electron-success-bg);
    border: 1px solid var(--electron-success-border);
    color: var(--electron-success);
}

.electron-viewed-offer-time.type-4 .time-count:last-child {
    color: var(--electron-red);
    background-color: var(--electron-red-bg);
    border-color: var(--electron-red-border);
}

.electron-viewed-offer-time.type-2 .time-count {
    padding: 12px 10px;
}

.electron-viewed-offer-time .separator {
    margin: 0 5px;
    color: var(--electron-dark);
}

.electron-countdown-title-wrapper.electron-display-inline {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.electron-countdown-title-wrapper.electron-display-inline .electron-super-deal-title {
	margin: 0;
	margin-right: 30px;
}

.electron-coming-time {
	gap: 1px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.electron-coming-time .time-count {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	min-width: 10px;
	padding: 0;
	letter-spacing: 1px;
	position: relative;
	color: var(--electron-dark);
	font-weight: 500;
	font-size: 21px;
}

.electron-coming-time:not(.separator-none) .time-count+.time-count:before {
	position: relative;
	content: ":";
	margin: 0 7px;
	color: currentColor;
	font-size: 13px;
	font-weight: 500;
}

/* super-deal-area */





.nt-electron-content blockquote .quote-icon {
	margin-right: 25px;
}

.nt-electron-content blockquote {
	margin: 30px 0 30px;
	font-size: 18px;
	color: var(--electron-dark);
	font-weight: 500;
	line-height: 1.9;
	background: var(--electron-gray-soft);
}

.nt-electron-content blockquote p {
	margin: 0;
}

.nt-electron-content .electron-post-content-wrapper>ul:last-child {
	margin-bottom: 0;
}

.electron-post-thumb-wrapper {
	margin-bottom: 25px;
}

.electron-blog-post-meta-bottom {
	margin-top: 20px;
	padding-top: 50px;
	border-top: 1px solid var(--electron-gray);
}

.electron-blog-post-meta-bottom .electron-meta-label {
	font-weight: 500;
	color: var(--electron-dark);
}

.electron-blog-post-meta-bottom a {
	color: var(--electron-gray-dark);
}

.electron-blog-post-meta-bottom .electron-post-meta+.electron-post-meta {
	margin-top: 5px;
}

.electron-blog-post-meta-top {
	margin-bottom: 20px;
}

.single .electron-blog-post-meta-top {
	margin-bottom: 20px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.3px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.single .electron-blog-post-meta-top a {
	margin-right: 15px;
	color: var(--electron-dark-soft);
}



/*
01 Theme Main End
/////////////////////////////////*/
/*
01 Animation Start
/////////////////////////////////*/
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

/* text-marquee */
.electron-text-marquee .elementor-heading-title {
	display: flex;
	align-items: baseline;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.electron-text-marquee .elementor-heading-title span {
	-webkit-animation: electronMarquee 20s linear infinite;
	animation: electronMarquee 5s linear infinite;
	padding-left: 20px;
}

@-webkit-keyframes electronMarquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

@keyframes electronMarquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

/* text-marquee */
.compare-area:not(.has-product) .electron-panel-content-items,
.wishlist-area:not(.has-product) .electron-panel-content-items {
	min-height: auto;
}

.electron-wishlist-content-notice.electron-empty-content {
	color: var(--electron-dark);
}

.electron-panel-content {
	width: 100%;
	max-width: 600px;
}





@media(max-width:768px) {

	.electron-sm-flex-left,
	.flex-sm-left-items {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		text-align: left;
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.electron-sm-flex-column {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		flex: 0 0 100%;
		width: 100%;
		align-items: flex-start;
	}

	.electron-toggle-hidden-sidebar span,
	.electron-open-fixed-sidebar span {
		margin-right: 10px;
		cursor: pointer;
	}

	.electron-before-loop .electron-svg-icon,
	.electron-toggle-hidden-sidebar svg,
	.electron-open-fixed-sidebar svg,
	.electron-filter-action svg {
		max-width: 16px;
		max-height: 16px;
	}

	.electron-toggle-hidden-sidebar span,
	.electron-open-fixed-sidebar span,
	.electron-filter-action {
		font-size: 13px;
	}
    p.electron-newsletter-bottom {
		max-width: 100%;
        max-width: 100% !important;
	}
}


/*
06 Theme General End
/////////////////////////////////*/


/* bottom social icons */
/* action-content */
.action-content {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	left: 0;
	padding: 35px 50px;
	background: var(--electron-light);
	max-height: 100%;
	z-index: 3;
	overflow: hidden;
	opacity: 0;
	-moz-transform: translateX(-150%);
	-ms-transform: translateX(-150%);
	-webkit-transform: translateX(-150%);
	transform: translateX(-150%);
	will-change: transform;
	-webkit-transition: opacity 0.15s ease, transform 0.75s ease;
	transition: opacity 0.15s ease, transform 0.75s ease;
}

.action-content.active {
	opacity: 1;
	-moz-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	overflow-y: auto;
}

.action-content.checkout-area {
	max-height: 100vh;
}

/* action-content */
/* contact-area */
.contact-area form>label {
	margin-bottom: 10px;
	width: 100%;
}

.contact-area.action-content textarea {
	height: 120px;
	max-height: 120px;
}



.contact-area.action-content input,
.contact-area.action-content select,
.contact-area.action-content label,
.contact-area.action-content textarea {
	width: 100%;
	margin-bottom: 10px;
}

.contact-area.action-content label {
	margin-bottom: 5px;
}

.header-left-side-menu-form-container-title h6 {
	margin: 25px 0 0;
}

.header-left-side-menu-form-container-title {
	margin: 30px 0 20px;
}

.header-left-side-menu-form-container-title .electron-meta-title {
	text-transform: uppercase;
	font-weight: 500;
	display: block;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--electron-dark);
	margin-top: 25px;
}

.header-left-side-menu-form-container-title address {
	margin: 0;
}

/* contact-area */
/* category-area */
.category-area .row-cols-2>* {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.category-area .row-cols-3>* {
	-ms-flex: 0 0 33.33333%;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.category-area .product-category a {
	text-align: center;
	margin-bottom: 20px;
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.category-area .category-title {
    font-size: 12px;
    margin-top: 10px;
    color: var(--electron-dark);
    text-transform: capitalize;
}

.category-area .cat-count {
	position: absolute;
	top: 8px;
	left: 18px;
	width: 18px;
	height: 18px;
	color: var(--electron-light);
	font-size: 11px;
	background: var(--electron-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
}

/* category-area */
.electron-header-mobile-top {
	display: none;
}

@media only screen and (min-width: 1280px) {
	.header-text-logo-special {
		margin-top: 15px;
		display: block;
	}

	.header-text-logo-mini {
		display: block;
		line-height: 1;
		font-size: 10px;
		text-align: center;
	}
}

@media only screen and (max-width: 1280px) {
	.electron-header-mobile-top {
		position: relative;
		top: 0;
		min-height: 80px;
		padding: 0 20px;
		width: 100%;
		z-index: 100;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		justify-content: space-between;
		background: var(--electron-light);
        border-bottom: 1px solid #f0f0f1;
		-moz-transition: height .15s linear, box-shadow .15s linear, background-color .15s cubic-bezier(.2, .06, .05, .95);
		-o-transition: height .15s linear, box-shadow .15s linear, background-color .15s cubic-bezier(.2, .06, .05, .95);
		-webkit-transition: height .15s linear, box-shadow .15s linear, background-color .15s cubic-bezier(.2, .06, .05, .95);
		transition: height .15s linear, box-shadow .18s linear, background-color .15s cubic-bezier(.2, .06, .05, .95);
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	}

	.has-sticky-header.scroll-start .electron-header-mobile-top.sticky-ready {
		position: fixed;
		-webkit-box-shadow: -2px 2px 45px -20px rgba(0, 0, 0, .3);
		-moz-box-shadow: -2px 2px 45px -20px rgba(0, 0, 0, .3);
		box-shadow: -2px 2px 45px -20px rgba(0, 0, 0, .3);
		transition-delay: .2s;
	}

	.electron-header-mobile-top .mobile-toggle {
		display: inline-flex;
		align-items: center;
		cursor: pointer;
	}

	.electron-header-mobile-top .mobile-toggle {
		color: var(--electron-dark);
	}

	.electron-header-mobile-top-actions {
		display: flex;
		align-items: center;
	}

	.electron-header-mobile-top .top-action-btn {
		position: relative;
		display: inline-flex;
		align-items: center;
		margin-right: 10px;
	}

	.electron-header-mobile-top .top-action-btn:last-child {
		margin-right: 0;
	}

	.electron-header-mobile-top .top-action-btn .electron-wc-count {
		left: auto;
		top: auto;
		position: relative;
	}
}

@media only screen and (max-width: 600px) {

    .electron-overlay-open {
        overflow: hidden;
    }
}

@media only screen and (max-width: 490px) {
	.electron-sidemenu-copyright {
		bottom: 20px;
		width: calc(100% - 50px);
	}

	.electron-header-mobile.has-bar {
		flex-direction: column;
		width: 100%;
	}

	.electron-panel-close {
		margin-bottom: 0px;
	}

	.electron-header-mobile-sidebar {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		height: 70px;
		padding-left: 25px;
		padding-right: 25px;
		align-items: center;
		position: relative;
		z-index: 1;
	}

	.electron-mfp-close, .electron-filter-close, .electron-panel-close-button {
		border-width: 8px;
		width: 35px;
		height: 35px;
		padding: 0;
	}

	.electron-header-mobile-content {
		padding-left: 35px;
		padding-right: 35px;
	}

	.electron-header-mobile-sidebar-top {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}

	.action-content {
		padding: 25px;
	}

	.electron-header-mobile-sidebar-inner {
		align-items: flex-end;
		flex: 1;
	}

	.sidebar-top-action .top-action-btn {
		margin: 0px;
	}

	.sidebar-top-action {
		display: flex;
		flex: 0 0 90%;
		width: 90%;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
		margin-top: 1px;
	}

	.sidebar-top-action .top-action-btn {
		height: 35px;
		width: 35px;
	}

	.top-action-btn .electron-wc-count {
		width: 16px;
		height: 16px;
		left: 14px;
		top: -6px;
		font-size: 8px;
	}

	.top-action-btn[data-name="menu"] {
		flex: 0 0 20%;
		width: 20%;
		text-align: left;
	}

	.electron-header-mobile-sidebar-bottom {
		position: absolute;
		top: 70px;
		background: var(--electron-bg-soft);
		width: 100%;
		left: 0;
		padding: 10px;
		opacity: 0;
		visibility: hidden;
		border-top: 1px solid var(--electron-gray);
		-moz-transform: translateX(-150%);
		-ms-transform: translateX(-150%);
		-webkit-transform: translateX(-150%);
		transform: translateX(-150%);
		will-change: transform;
	}

	.electron-header-mobile-sidebar-bottom.active {
		opacity: 1;
		visibility: visible;
		-moz-transform: translateX(0%);
		-ms-transform: translateX(0%);
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		-webkit-transition: opacity 0.75s ease, transform 0.75s ease;
		transition: opacity 0.75s ease, transform 0.75s ease;
	}

	.sidebar-bottom-socials a {
		margin: 0 10px;
	}

	.sidebar-top-action .share {
		display: flex;
	}

	.electron-header-mobile .electron-header-mobile-sidebar-logo {
		display: none;
	}

	.sidebar-bottom-socials {
		flex-direction: row;
		margin-top: 0;
		justify-content: center;
	}

	.sidebar-bottom-socials i {
		font-size: 18px;
	}

	.cart-empty-actions .electron-btn {
		margin-bottom: 10px;
	}

	.category-area .cat-count {
		top: 0px;
		left: 10px;
		width: 16px;
		height: 16px;
		font-size: 10px;
	}
}

/*
06 Theme Mobile Side Menu End
/////////////////////////////////*/
/*


/*
06 Theme Top Menu End
/////////////////////////////////*/


.wps-form-row input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.wps-form-row textarea {
	width: 100%;
	background-color: #f2f4ec;
	border: none;
	padding: 15px;
}

input[type=checkbox],
input[type=radio] {
	margin: 0;
	line-height: 0;
	margin-right: 5px;
}

/* remove line from nav link */
nav.navbar.transparent-white ul.ul-h.nav-menu>li>a {
	text-decoration: none;
}

/* remove spacing from nav column */
nav.navbar .container .row>div {
	padding: 0;
}

body:not(.edlementor-page) .nav-menu.nav-social i {
	font-family: 'FontAwesome';
}

/*
06 Theme Product End
/////////////////////////////////*/

/*
06 Theme Single Post Page End
/////////////////////////////////*/


.zoom-in .mfp-img {
	opacity: 0;
}

.mfp-product-gallery .mfp-figure figure {
	max-width: 430px;
}

.item-shortcode-wrapper>div {
	width: 100%;
}

.gallery-menu {
	text-align: center;
	margin-bottom: 40px;
}

.gallery-menu span {
	cursor: pointer;
	position: relative;
}

.gallery-menu span+span {
	margin-left: 15px;
}

.gallery-menu span:hover,
.gallery-menu span.active {
	color: var(--electron-primary);
}

.gallery-menu span:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: currentColor;
	-webkit-transition: width 0.25s ease;
	transition: width 0.25s ease;
}

.gallery-menu span:hover:before {
	width: 100%;
}

.elementor-social-icons-wrapper .elementor-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}


/* panel close button */
.panel-close {
    border-radius: 5px;
    background-color: var(--electron-blue-dark);
    border: 9px solid transparent;
    color: var(--electron-light);
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 40px;
    z-index: 5;
}
.panel-close:before,
.panel-close:after{
	content: '';
	position: absolute;
	height: 2px;
	width: 9px;
	top: 39%;
	left: auto;
	transform-origin: 50% 50%;
	background-color: var(--electron-light);
	opacity: 1;
	-moz-transition: -moz-transform ease 0.25s;
	-webkit-transition: -webkit-transform ease 0.25s;
	-o-transition: -o-transform ease 0.25s;
	-ms-transition: -ms-transform ease 0.25s;
	transition: transform ease 0.25s;
}
.panel-close:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.panel-close:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.panel-close:hover:after {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}
.panel-close:hover:before {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

/* theme panel close button */
.electron-mfp-close,
.electron-filter-close {
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	border: 9px solid transparent;
	color: var(--electron-dark);
	width: 36px;
	height: 36px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
}
.electron-filter-close {
	background: var(--electron-gray-soft);
	width: 30px;
	height: 30px;
}
.electron-mfp-close {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 999999;
	opacity: 1;
}

.electron-mfp-close:before,
.electron-mfp-close:after,
.electron-filter-close:before,
.electron-filter-close:after {
	content: '';
	position: absolute;
	height: 2px;
	width: 90%;
	top: 46%;
	left: 1px;
	transform-origin: 50% 50%;
	background-color: var(--electron-light);
	opacity: 1;
	-moz-transition: -moz-transform ease 0.25s;
	-webkit-transition: -webkit-transform ease 0.25s;
	-o-transition: -o-transform ease 0.25s;
	-ms-transition: -ms-transform ease 0.25s;
	transition: transform ease 0.25s;
}

.electron-mfp-close:before,
.electron-filter-close:before,
.electron-panel-close.no-bar:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.electron-mfp-close:after,
.electron-filter-close:after,
.electron-panel-close.no-bar:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.electron-mfp-close:hover:after,
.electron-filter-close:hover:after,
.electron-panel-close.no-bar:hover:after {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

.electron-mfp-close:hover:before,
.electron-filter-close:hover:before,
.electron-panel-close.no-bar:hover:before {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}
/* theme panel close button */


/* theme messages box */
.electron-success,
.electron-label.electron-success {
	color:var(--electron-success);
	background-color:var(--electron-success-bg);
	border-color:var(--electron-success-border);
}

.electron-warning,
.electron-label.electron-warning {
	color:var(--electron-warning);
	background-color:var(--electron-warning-bg);
	border-color:var(--electron-warning-border);
}

.electron-red,
.electron-label.electron-red {
	color:var(--electron-red);
	background-color:var(--electron-red-bg);
	border-color:var(--electron-red-border);
}

.electron-info,
.electron-label.electron-info {
	color:var(--electron-info);
	background-color:var(--electron-info-bg);
	border-color:var(--electron-info-border);
}

.electron-success .electron-svg-icon {
	fill:var(--electron-success);
}

.electron-warning .electron-svg-icon {
	fill:var(--electron-warning);
}

.electron-red .electron-svg-icon {
	fill:var(--electron-red);
}

.electron-info .electron-svg-icon {
	fill:var(--electron-info);
}

.electron-warning svg {
    fill: var(--electron-warning);
}
/* theme messages box */


/* theme label */
.electron-label {
	color: var(--electron-light);
	background-color: var(--electron-blue-soft);
	height: 20px;
	padding: 0px 7px;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}

.electron-widget-label {
    padding: 3px 7px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    line-height: 1.4;
    background-color: var(--electron-dark);
    color: var(--electron-light);

}

.electron-widget-label.label-border {
	background-color: transparent;
	border-width: 1px;
	border-style: solid;
}

.electron-widget-label.label-radius {
	border-radius: 30px;
}

.electron-widget-label.label-large {
	padding: 11px 25px;
	font-size: 14px;
}

.electron-widget-label.label-medium {
	padding: 5px 20px;
	font-size: 12px;
}

.electron-widget-label.label-small {
	padding: 5px 15px;
}

.electron-label.electron-in-stock {
	background-color: var(--electron-green);
}

.electron-label.electron-out-stock {
	color: var(--electron-red-dark);
	background-color: var(--electron-red-bg);
}

.electron-label.badge-def {
    color: var(--electron-light);
    background-color: var(--electron-red);
    border-color: var(--electron-red-border);
}
.electron-label.badge-NEW {
    color: var(--electron-light);
}
/* theme label */

/* theme buttons */
.electron-btn.is-full {
    width: 100%;
    display: block;
}

.electron-btn-fullwidth,
.electron-fullwidth {
    width:100%;
}

.electron-btn {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    color:var(--electron-light);
    fill:var(--electron-light);
    padding: 10px 15px;
    letter-spacing: 0.3px;
    line-height: 1;
    display: inline-block;
    position: relative;
    cursor: pointer;
    border: 0;
    border-radius: 5px;
}

.electron-button-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-top .electron-button-inner,
.btn-icon-bottom .electron-button-inner {
    flex-direction: column;
}


.electron-btn svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.electron-btn * {
    fill: currentColor;
}

.btn-icon-right .electron-button-icon {
    display: inline-flex;
    align-items: center;
}

.btn-icon-right .electron-button-icon {
    margin-left: 6px;
}

.btn-icon-top .electron-button-icon {
    margin-bottom: 6px;
}

.btn-icon-bottom .electron-button-icon {
    margin-top: 6px;
}

.btn-icon-left .electron-button-icon {
    margin-right: 6px;
}

.electron-btn-text .electron-btn,
.electron-btn-text.electron-btn,
.electron-btn-text .electron-btn:hover,
.electron-btn-text.electron-btn:hover {
    font-size: 13px;
    font-weight: 400;
    color: var(--electron-dark);
    padding: 0;
    min-width: auto;
    text-transform: capitalize;
    letter-spacing: 0px;
    background: transparent;
    border: none;
    height: auto;
}

.electron-btn-text .electron-btn:hover,
.electron-btn-text.electron-btn:hover {
    color: var(--electron-primary);
}

.electron-input-large,
.electron-btn-large {
    padding: 18px 30px;
    font-size:16px;
}
.electron-input-medium,
.electron-btn-medium {
    padding: 12px 24px;
}

.electron-input-small,
.electron-btn-small {
    padding: 6px 12px;
    letter-spacing: 0;
}

.electron-color.electron-red {
    color: var(--electron-red-soft);
    border-color: var(--electron-red);
    background-color: var(--electron-red);
}

.electron-btn:hover {
    opacity: 1;
}

/* background color */
.electron-bg-primary,
.electron-btn-primary {
    color: var(--electron-light);
    border-color: var(--electron-primary);
    background-color: var(--electron-primary);
}

.electron-btn-primary:hover {
    color: var(--electron-light);
    background-color: var(--electron-blue-dark);
}

.electron-bg-secondary,
.electron-btn-secondary {
    color: var(--electron-light);
    border-color: var(--electron-secondary);
    background-color: var(--electron-secondary);
}
.electron-btn-secondary:hover {
    color: var(--electron-light);
    background-color: var(--electron-red-dark);
}

.electron-bg-success,
.electron-btn-success {
    color: var(--electron-light);
    border-color: var(--electron-success);
    background-color: var(--electron-success);
}
.electron-btn-success:hover {
    color: var(--electron-light);
    background-color: var(--electron-green);
}

.electron-bg-dark,
.electron-btn-dark {
	color: var(--electron-light);
	background-color: var(--electron-dark);
}
.electron-btn-dark:hover {
	color: var(--electron-light);
	background-color: var(--electron-primary);
}

.electron-bg-dark-soft,
.electron-btn-dark-soft {
	color: var(--electron-light);
	background-color: var(--electron-dark-soft);
}
.electron-btn-dark-soft:hover {
	color: var(--electron-light);
	background-color: var(--electron-dark);
}

.electron-bg-light,
.electron-btn-light {
	color: var(--electron-dark);
	background-color: var(--electron-light);
}
.electron-btn-light:hover {
	color: var(--electron-dark);
	background-color: var(--electron-light);
}

.electron-bg-light-soft,
.electron-btn-light-soft {
	color: var(--electron-dark);
	background-color: var(--electron-light-soft);
}
.electron-btn-light-soft:hover {
	color: var(--electron-dark);
	background-color: var(--electron-light);
}

.electron-bg-gray,
.electron-btn-gray {
	color: var(--electron-dark);
	background-color: var(--electron-gray);
}
.electron-btn-gray:hover {
	color: var(--electron-light);
	background-color: var(--electron-dark);
}

.electron-bg-gray-soft,
.electron-btn-gray-soft {
	color: var(--electron-dark);
	background-color: var(--electron-gray-soft);
}
.electron-btn-gray-soft:hover {
	color: var(--electron-light);
	background-color: var(--electron-dark);
}

.electron-bg-gray-dark,
.electron-btn-gray-dark {
	color: var(--electron-light);
	background-color: var(--electron-gray-dark);
}
.electron-btn-gray-dark:hover {
	color: var(--electron-light);
	background-color: var(--electron-dark);
}
.electron-bg-green,
.electron-btn-green {
	color: var(--electron-light);
	background-color: var(--electron-green);
}
.electron-green-bg,
.electron-bg-green,
.electron-btn-green-bg {
	color: var(--electron-light);
	background-color: var(--electron-green-bg);
}
.electron-green-bg:hover,
.electron-btn-green-bg:hover {
	color: var(--electron-light);
	background-color: var(--electron-green);
}
.electron-btn-green:hover {
    color: var(--electron-light);
	background-color: var(--electron-green-soft);
}
.electron-bg-green-soft,
.electron-btn-green-soft {
	color: var(--electron-light);
	background-color: var(--electron-green-soft);
}
.electron-btn-green-soft:hover {
    color: var(--electron-light);
	background-color: var(--electron-green);
}

.electron-bg-red,
.electron-btn-red {
	color: var(--electron-light);
	background-color: var(--electron-red);
}
.electron-btn-red:hover {
    color: var(--electron-light);
	background-color: var(--electron-red-dark);
}

.electron-bg-red-soft,
.electron-btn-red-soft {
	color: var(--electron-red-dark);
	background-color: var(--electron-red-soft);
}
.electron-btn-red-soft:hover {
    color: var(--electron-light);
	background-color: var(--electron-red-dark);
}

.electron-red-bg,
.electron-btn-red-bg {
	color: var(--electron-red-dark);
	background-color: var(--electron-red-bg);
}

.electron-red-bg-dark,
.electron-bg-red-dark,
.electron-btn-red-dark {
	color: var(--electron-light);
	background-color: var(--electron-red-dark);
}
.electron-btn-red-bg:hover,
.electron-bg-red-dark:hover {
    color: var(--electron-red-dark);
	background-color: var(--electron-red-bg);
}

.electron-bg-brown,
.electron-btn-brown {
    color: var(--electron-light);
    background-color: var(--electron-brown);
}
.electron-btn-brown:hover {
    color: var(--electron-light);
	background-color: var(--electron-secondary);
}

.electron-bg-blue,
.electron-btn-blue {
    color: var(--electron-light);
	background-color: var(--electron-blue);
}
.electron-btn-blue:hover {
    color: var(--electron-light);
	background-color: var(--electron-blue-soft);
}

.electron-bg-blue-soft,
.electron-btn-blue-soft {
    color: var(--electron-light);
	background-color: var(--electron-blue-soft);
}
.electron-btn-blue-soft:hover {
    color: var(--electron-light);
	background-color: var(--electron-blue-dark);
}

.electron-bg-blue-dark,
.electron-btn-blue-dark {
    color: var(--electron-light);
	background-color: var(--electron-blue-dark);
}
.electron-btn-blue-dark:hover {
    color: var(--electron-light);
	background-color: var(--electron-blue-soft);
}

.electron-blue-bg,
.electron-btn-blue-bg {
    color: var(--electron-blue-dark);
	background-color: var(--electron-blue-bg);
}
.electron-btn-blue-bg:hover {
    color: var(--electron-light);
	background-color: var(--electron-blue);
}

.electron-bg-purple,
.electron-btn-purple {
    color: var(--electron-light);
	background-color: var(--electron-purple);
}
.electron-btn-purple:hover {
    color: var(--electron-dark);
	background-color: var(--electron-purple-soft);
}

.electron-bg-purple-soft,
.electron-btn-purple-soft {
    color: var(--electron-light);
	background-color: var(--electron-purple-soft);
}
.electron-btn-purple-soft:hover {
    color: var(--electron-light);
	background-color: var(--electron-purple);
}

.electron-purple-bg,
.electron-btn-purple-bg {
    color: var(--electron-purple);
	background-color: var(--electron-purple-bg);
}
.electron-btn-purple-bg:hover {
    color: var(--electron-light);
	background-color: var(--electron-purple);
}

.electron-bg-yellow,
.electron-btn-yellow {
    color: var(--electron-dark);
	background-color: var(--electron-yellow);
}
.electron-btn-yellow:hover {
    color: var(--electron-light);
    background-color: var(--electron-primary);
}

.electron-bg-yellow-soft,
.electron-btn-yellow-soft {
    color: var(--electron-dark);
	background-color: var(--electron-yellow-soft);
}
.electron-btn-yellow-soft:hover {
    color: var(--electron-dark);
	background-color: var(--electron-yellow);
}

.electron-yellow-bg,
.electron-btn-yellow-bg {
    color: var(--electron-dark);
	background-color: var(--electron-yellow-bg);
}
.electron-btn-yellow-bg:hover {
    color: var(--electron-dark);
	background-color: var(--electron-yellow);
}

.electron-bg-cream,
.electron-btn-cream {
    color: var(--electron-dark);
	background-color: var(--electron-cream);
}
.electron-btn-cream:hover {
    color: var(--electron-light);
	background-color: var(--electron-dark);
}


/* gradient button */
.electron-grad-green {
    background: hsla(152, 100%, 50%, 1);
    background: linear-gradient(90deg, hsla(152, 100%, 50%, 1) 0%, hsla(186, 100%, 69%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(152, 100%, 50%, 1) 0%, hsla(186, 100%, 69%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(152, 100%, 50%, 1) 0%, hsla(186, 100%, 69%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#00FF87", endColorstr="#60EFFF", GradientType=1 );
}
.electron-grad-blue {
    background: hsla(217, 100%, 50%, 1);
    background: linear-gradient(90deg, hsla(217, 100%, 50%, 1) 0%, hsla(186, 100%, 69%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(217, 100%, 50%, 1) 0%, hsla(186, 100%, 69%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(217, 100%, 50%, 1) 0%, hsla(186, 100%, 69%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#0061FF", endColorstr="#60EFFF", GradientType=1 );
}
.electron-grad-purple {
    background: hsla(252, 40%, 29%, 1);
    background: linear-gradient(90deg, hsla(252, 40%, 29%, 1) 0%, hsla(270, 77%, 71%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(252, 40%, 29%, 1) 0%, hsla(270, 77%, 71%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(252, 40%, 29%, 1) 0%, hsla(270, 77%, 71%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#392D69", endColorstr="#B57BEE", GradientType=1 );
}
.electron-grad-orange {
    background: hsla(4, 93%, 67%, 1);
    background: linear-gradient(90deg, hsla(4, 93%, 67%, 1) 0%, hsla(29, 86%, 52%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(4, 93%, 67%, 1) 0%, hsla(29, 86%, 52%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(4, 93%, 67%, 1) 0%, hsla(29, 86%, 52%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F9655B", endColorstr="#EE821A", GradientType=1 );
}
.electron-grad-red {
    background: hsla(356, 76%, 50%, 1);
    background: linear-gradient(90deg, hsla(356, 76%, 50%, 1) 0%, hsla(14, 63%, 36%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(356, 76%, 50%, 1) 0%, hsla(14, 63%, 36%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(356, 76%, 50%, 1) 0%, hsla(14, 63%, 36%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#E01F2D", endColorstr="#943C22", GradientType=1 );
}
.electron-grad-dark {
    background: hsla(0, 0%, 0%, 1);
    background: linear-gradient(90deg, hsla(0, 0%, 0%, 1) 0%, hsla(0, 2%, 12%, 1) 50%, hsla(0, 0%, 23%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(0, 0%, 0%, 1) 0%, hsla(0, 2%, 12%, 1) 50%, hsla(0, 0%, 23%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(0, 0%, 0%, 1) 0%, hsla(0, 2%, 12%, 1) 50%, hsla(0, 0%, 23%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#201F1F", GradientType=1 );
}
/* gradient button */


/* bordered button */
.electron-btn.electron-bordered {
	background-color: transparent;
	border: 2px solid var(--electron-primary);
	color: var(--electron-primary);
}

.electron-bordered.electron-bg-primary,
.electron-bordered.electron-btn-primary {
	color: var(--electron-primary);
	border-color: var(--electron-primary);
}
.electron-bordered.electron-btn-primary:hover {
	color: var(--electron-light);
	background-color: var(--electron-primary);
}

.electron-bordered.electron-bg-secondary,
.electron-bordered.electron-btn-secondary {
	color: var(--electron-secondary);
	border-color: var(--electron-secondary);
}
.electron-bordered.electron-btn-secondary:hover {
	color: var(--electron-light);
	background-color: var(--electron-red);
	border-color: var(--electron-red);
}

.electron-bordered.electron-bg-success,
.electron-bordered.electron-btn-success {
	color: var(--electron-success);
	border-color: var(--electron-success);
}
.electron-bordered.electron-btn-success:hover {
	color: var(--electron-light);
	background-color: var(--electron-green);
}

.electron-bordered.electron-bg-light,
.electron-bordered.electron-btn-light {
	color: var(--electron-light);
	border-color: var(--electron-light);
}
.electron-bordered.electron-btn-light:hover {
	color: var(--electron-dark);
	background-color: var(--electron-light);
}

.electron-bordered.electron-bg-light-soft,
.electron-bordered.electron-btn-light-soft {
	color: var(--electron-dark);
	border-color: var(--electron-light-soft);
}
.electron-bordered.electron-btn-light-soft:hover {
	color: var(--electron-dark);
	background-color: var(--electron-light-soft);
}

.electron-bordered.electron-bg-dark,
.electron-bordered.electron-btn-dark {
	color: var(--electron-dark);
    border-color: var(--electron-dark);
}
.electron-bordered.electron-btn-dark:hover {
	color: var(--electron-light);
	background-color: var(--electron-dark);
}

.electron-bordered.electron-bg-dark-soft,
.electron-bordered.electron-btn-dark-soft {
	color: var(--electron-dark-soft);
    border-color: var(--electron-dark-soft);
}
.electron-bordered.electron-btn-dark-soft:hover {
	color: var(--electron-light);
	background-color: var(--electron-dark-soft);
}

.electron-bordered.electron-bg-gray, .electron-bordered.electron-btn-gray {
    color: var(--electron-dark-soft);
    border-color: var(--electron-gray);
}
.electron-bordered.electron-btn-gray:hover {
    color: var(--electron-light);
    background-color: var(--electron-gray-dark);
    border-color: var(--electron-gray-dark);
}

.electron-bordered.electron-bg-gray-dark,
.electron-bordered.electron-btn-gray-dark {
	color: var(--electron-dark);
	border-color: var(--electron-gray-dark);
}
.electron-bordered.electron-btn-gray-dark:hover {
	color: var(--electron-dark);
	background-color: var(--electron-gray-dark);
}

.electron-bordered.electron-bg-gray-soft,
.electron-bordered.electron-btn-gray-soft {
	color: var(--electron-dark);
	border-color: var(--electron-gray-soft);
}
.electron-bordered.electron-btn-gray-soft:hover {
	color: var(--electron-dark);
	background-color: var(--electron-gray-soft);
}

.electron-bordered.electron-bg-green,
.electron-bordered.electron-btn-green {
	color: var(--electron-green);
	border-color: var(--electron-green);
}
.electron-bordered.electron-btn-green:hover {
	color: var(--electron-light);
	background-color: var(--electron-green);
}

.electron-bordered.electron-bg-green-soft,
.electron-bordered.electron-btn-green-soft {
	color: var(--electron-green-soft);
	border-color: var(--electron-green-soft);
}
.electron-bordered.electron-btn-green-soft:hover {
	color: var(--electron-light);
	background-color: var(--electron-green-soft);
}

.electron-bordered.electron-green-bg,
.electron-bordered.electron-btn-green-bg {
	color: var(--electron-green-bg);
	border-color: var(--electron-green-bg);
}
.electron-bordered.electron-btn-green-bg:hover {
	color: var(--electron-dark);
	background-color: var(--electron-green-bg);
}

.electron-bordered.electron-bg-red,
.electron-bordered.electron-btn-red {
	color: var(--electron-red);
	border-color: var(--electron-red);
}
.electron-bordered.electron-btn-red:hover {
	color: var(--electron-light);
	background-color: var(--electron-red);
}

.electron-bordered.electron-btn-red-dark {
	color: var(--electron-red-dark);
	border-color: var(--electron-red-dark);
}
.electron-bordered.electron-btn-red-dark:hover {
	color: var(--electron-light);
	background-color: var(--electron-red-dark);
}

.electron-bordered.electron-bg-red-soft,
.electron-bordered.electron-btn-red-soft {
	color: var(--electron-red);
	border-color: var(--electron-red-soft);
}
.electron-bordered.electron-btn-red-soft:hover {
	color: var(--electron-red-dark);
	background-color: var(--electron-red-soft);
}

.electron-bordered.electron-red-bg,
.electron-bordered.electron-btn-red-bg {
	color: var(--electron-red-dark);
	border-color: var(--electron-red-bg);
}
.electron-bordered.electron-btn-red-bg:hover {
	color: var(--electron-red-dark);
	background-color: var(--electron-red-bg);
}

.electron-bordered.electron-bg-brown,
.electron-bordered.electron-btn-brown {
	color: var(--electron-brown);
	border-color: var(--electron-brown);
}
.electron-bordered.electron-btn-brown:hover {
	color: var(--electron-light);
	background-color: var(--electron-brown);
}

.electron-bordered.electron-bg-cream,
.electron-bordered.electron-btn-cream {
	color: var(--electron-cream);
	border-color: var(--electron-cream);
}
.electron-bordered.electron-btn-cream:hover {
	color: var(--electron-light);
	background-color: var(--electron-cream);
}

.electron-bordered.electron-bg-blue,
.electron-bordered.electron-btn-blue {
	color: var(--electron-blue);
	border-color: var(--electron-blue);
}
.electron-bordered.electron-btn-blue:hover {
	color: var(--electron-light);
	background-color: var(--electron-blue);
}

.electron-bordered.electron-bg-blue-dark,
.electron-bordered.electron-btn-blue-dark {
	color: var(--electron-blue-dark);
	border-color: var(--electron-blue-dark);
}
.electron-bordered.electron-btn-blue-dark:hover {
	color: var(--electron-light);
	background-color: var(--electron-blue-dark);
}

.electron-bordered.electron-bg-blue-soft,
.electron-bordered.electron-btn-blue-soft {
	color: var(--electron-blue-dark);
	border-color: var(--electron-blue-soft);
}
.electron-bordered.electron-btn-blue-soft:hover {
	color: var(--electron-blue-light);
	background-color: var(--electron-blue-soft);
}

.electron-bordered.electron-blue-bg,
.electron-bordered.electron-btn-blue-bg {
	color: var(--electron-blue-dark);
	border-color: var(--electron-blue-bg);
}
.electron-bordered.electron-btn-blue-bg:hover {
	color: var(--electron-blue-dark);
	background-color: var(--electron-blue-bg);
	border-color: var(--electron-blue-bg);
}

.electron-bordered.electron-bg-purple,
.electron-bordered.electron-btn-purple {
	color: var(--electron-purple);
	border-color: var(--electron-purple);
}
.electron-bordered.electron-btn-purple:hover {
	color: var(--electron-light);
	background-color: var(--electron-purple);
	border-color: var(--electron-purple);
}

.electron-bordered.electron-bg-purple-soft,
.electron-bordered.electron-btn-purple-soft {
	color: var(--electron-primary);
	border-color: var(--electron-purple-soft);
}
.electron-bordered.electron-btn-purple-soft:hover {
	color: var(--electron-purple);
	background-color: var(--electron-purple-soft);
	border-color: var(--electron-purple-soft);
}

.electron-bordered.electron-purple-bg,
.electron-bordered.electron-btn-purple-bg {
	color: var(--electron-purple);
	border-color: var(--electron-purple-bg);
}
.electron-bordered.electron-btn-purple-bg:hover {
	color: var(--electron-light);
	background-color: var(--electron-purple-bg);
	border-color: var(--electron-purple-bg);
}

.electron-bordered.electron-bg-yellow,
.electron-bordered.electron-btn-yellow {
	color: var(--electron-dark);
	border-color: var(--electron-yellow);
}
.electron-bordered.electron-btn-yellow:hover {
	color: var(--electron-dark);
	background-color: var(--electron-yellow);
}

.electron-bordered.electron-bg-yellow-soft,
.electron-bordered.electron-btn-yellow-soft {
	color: var(--electron-dark);
	border-color: var(--electron-yellow-soft);
}
.electron-bordered.electron-btn-yellow-soft:hover {
	color: var(--electron-dark);
	background-color: var(--electron-yellow-soft);
}

.electron-bordered.electron-yellow-bg,
.electron-bordered.electron-btn-yellow-bg {
	color: var(--electron-dark);
	border-color: var(--electron-yellow-bg);
}
.electron-bordered.electron-btn-yellow-bg:hover {
	color: var(--electron-dark);
	background-color: var(--electron-yellow);
}


.electron-radius {
	border-radius: 30px;
}
.electron-radius-soft {
	border-radius: 5px;
}
.electron-square {
	border-radius: 0;
}

.electron-button-wrapper .electron-btn.electron-btn-text,
.electron-btn.electron-btn-text.electron-btn-dark,
.electron-btn-text .electron-btn,
.electron-btn-text.electron-btn {
    font-size: 13px;
    font-weight: 400;
    color: var(--electron-dark);
    padding: 0;
    min-width: auto;
    text-transform: capitalize;
    letter-spacing: 0px;
    background: transparent;
    border: none;
    height: auto;
}
.electron-button-wrapper .electron-btn.electron-btn-text:hover,
.electron-btn.electron-btn-text.electron-btn-dark:hover,
.electron-btn-text .electron-btn:hover,
.electron-btn-text.electron-btn:hover {
    background: transparent;
    color: var(--electron-dark);
}
.electron-btn.electron-btn-text.electron-btn-primary {
	color: var(--electron-primary);
}
.electron-btn.electron-btn-text.electron-btn-secondary {
	color: var(--electron-secondary);
}
.electron-btn.electron-btn-text.electron-btn-success {
	color: var(--electron-success);
}
.electron-btn.electron-btn-text.electron-btn-light {
	color: var(--electron-light);
}
.electron-btn.electron-btn-text.electron-btn-cream {
	color: var(--electron-cream);
}
.electron-btn.electron-btn-text.electron-btn-light-soft {
	color: var(--electron-light-soft);
}
.electron-btn.electron-btn-text.electron-btn-dark-soft {
	color: var(--electron-dark-soft);
}
.electron-btn.electron-btn-text.electron-btn-gray {
	color: var(--electron-gray);
}
.electron-btn.electron-btn-text.electron-btn-gray-soft {
	color: var(--electron-gray-soft);
}
.electron-btn.electron-btn-text.electron-btn-green {
	color: var(--electron-green);
}
.electron-btn.electron-btn-text.electron-btn-green-soft,
.electron-btn.electron-btn-text.electron-btn-green-bg {
	color: var(--electron-green-soft);
}
.electron-btn.electron-btn-text.electron-btn-brown {
	color: var(--electron-brown);
}
.electron-btn.electron-btn-text.electron-btn-red {
	color: var(--electron-red);
}
.electron-btn.electron-btn-text.electron-btn-red-dark {
	color: var(--electron-red-dark);
}
.electron-btn.electron-btn-text.electron-btn-red-dark-soft {
	color: var(--electron-red-dark-soft);
}
.electron-btn.electron-btn-text.electron-btn-yellow {
	color: var(--electron-yellow);
}
.electron-btn.electron-btn-text.electron-btn-yellow-soft,
.electron-btn.electron-btn-text.electron-btn-yellow-soft {
	color: var(--electron-yellow-soft);
}
.electron-btn.electron-btn-text.electron-btn-blue {
	color: var(--electron-blue);
}
.electron-btn.electron-btn-text.electron-btn-blue-dark {
	color: var(--electron-blue-dark);
}
.electron-btn.electron-btn-text.electron-btn-blue-bg,
.electron-btn.electron-btn-text.electron-btn-blue-soft {
	color: var(--electron-blue-soft);
}
.electron-btn.electron-btn-text.electron-btn-purple {
	color: var(--electron-purple);
}
.electron-btn.electron-btn-text.electron-btn-purple-bg,
.electron-btn.electron-btn-text.electron-btn-purple-soft {
	color: var(--electron-purple-soft);
}
.electron-button-wrapper .electron-btn.electron-btn-text:hover,
.electron-btn-text .electron-btn:hover,
.electron-btn-text.electron-btn:hover {
    color: var(--electron-primary);
}

span[data-hover]{
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    line-height: normal;
}

span[data-hover]:before {
    content: attr(data-hover);
    transition: transform 0.35s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

span[data-hover]:after {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
    transition: transform 0.35s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

a:hover span[data-hover]:before {
    -webkit-transform: translateY(-101%);
    -moz-transform: translateY(-101%);
    transform: translateY(-101%);
}

a:hover span[data-hover]:after {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}
/* theme buttons */

@media(max-width: 800px) {
    .electron-btn {
	    font-size: 12px;
	    padding: 10px 15px;
	}
}

/* theme scrollbar */
.electron-scrollbar {
    padding-right: 10px;
}
.electron-scrollbar.horizontal {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    gap: 20px;
}
.electron-scrollbar.horizontal>div {
    flex: 0 0 100%;
}
.electron-scrollbar>.elementor-container::-webkit-scrollbar,
.electron-scrollbar::-webkit-scrollbar {
    width: 2px;
}

.electron-scrollbar>.elementor-container::-webkit-scrollbar-thumb,
.electron-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--electron-dark);
}

.electron-scrollbar>.elementor-container::-webkit-scrollbar-track,
.electron-scrollbar::-webkit-scrollbar-track {
    background-color: var(--electron-gray);
}

.electron-scrollbar.horizontal>.elementor-container::-webkit-scrollbar,
.electron-scrollbar.horizontal::-webkit-scrollbar {
    height: 4px;
}
.electron-scrollbar.horizontal>.elementor-container::-webkit-scrollbar-thumb,
.electron-scrollbar.horizontal::-webkit-scrollbar-thumb,
.electron-scrollbar.horizontal>.elementor-container::-webkit-scrollbar-track,
.electron-scrollbar.horizontal::-webkit-scrollbar-track {
    border-radius: 6px;
}

/* theme scrollbar */


/* popup newsletter panel */
div#promotionBar.closed {
    height: 0;
    visibility: hidden;
    transition: height 0.25s visibility 0.25s opacity 0.25s;;
}
/* popup newsletter panel */
.electron-newsletter-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.25s opacity 0.25s;;
}
.electron-newsletter-wrapper.active {
    visibility: visible;
    opacity: 1;
}
.electron-newsletter-wrapper.closed {
	opacity: 0;
	display: none;
	visibility: hidden;
}

span#newsletterClose {
    position: absolute;
    top: 10px;
    right: 10px;
}
.electron-newsletter-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0;
	max-width: 720px;
	position: relative;
	z-index: 9999;
    opacity: 0;
    transform: scale(0);
    transition: transform .25s, opacity .25s;
}
.electron-newsletter-inner.active {
	opacity: 1;
    transform: scale(1);
    transition: transform .5s, opacity .5s;
}
.electron-newsletter-bottom label {
    background: var(--electron-light);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    min-height: 25px;
}

.type-default div#newsletterInner {
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    background-color: var(--electron-light);
    box-shadow: 5px 5px 30px rgb(0 0 0 / 31%);
    border-radius: 5px;
}
.type-default .wpcf7 {
    margin-bottom: 15px;
}
.type-default .subtitle {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}
.type-default .electron-newsletter-content {
    display: block;
    max-width: 100%;
}
.type-default .electron-footer-newsletter-form-2 {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}
.type-default .electron-footer-newsletter-form-2-input {
    max-width: 60%;
}
.type-default .electron-footer-newsletter-form-2-button {
    flex: 1;
}
.type-default input:not([type="checkbox"]):not([type="radio"]) {
    width: 100%;
    border-radius: 3px;
    position: relative;
}
.panel-close.hint-left:hover .electron-hint{
    opacity: 1;
    visibility: visible;
}
@media(max-width: 480px) {
.type-default div#newsletterInner {
    flex-direction: column;
    max-width: 320px;
}
.type-default .subtitle {
    font-size: 14px;
}
}
/* GDPR */
.site-gdpr {
    position: fixed;
    max-width: 100%;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background-color: var(--electron-light);
    box-shadow: 5px 5px 30px rgb(0 0 0 / 31%);
    border-radius: 8px;
    z-index: 100;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    will-change: transform;
    -webkit-transition: opacity 0.25s ease, ease;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-gdpr.active {
	pointer-events: auto;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
}
.site-gdpr.closed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}

.gdpr-icon svg {
	width: 66px;
	height: 66px;
}

.gdpr-text {
	font-size: 13px;
	line-height: 1.6;
}

.gdpr-text a:not(.electron-btn) {
	font-weight: 500;
	color: #ed174a;
	text-decoration: underline;
}

.gdpr-text .gdpr-button {
	margin-top: 20px;
	display: block;
}

.site-gdpr.default .gdpr-inner {
	text-align: center;
}

.site-gdpr.type-default.style-2 .gdpr-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media screen and (min-width: 1200px) {
	.site-gdpr {
		bottom: 15px;
		padding: 30px;
	}
}

@media screen and (min-width: 576px) {
	.site-gdpr.type-default {
		max-width: 360px;
	}

	.site-gdpr.type-elementor {
		max-width: 100%;
	}
}


/* swiper style */
.electron-swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow-x: clip;
    list-style: none;
    padding: 0;
    z-index: 1;
    max-width: 100%;
    height: 100%;
}

.swiper-vertical>.electron-swiper-wrapper {
	flex-direction: column;
}

.electron-swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-android .swiper-slide,
.electron-swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
	touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .electron-swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

/* CSS Mode */
.swiper-centered>.electron-swiper-wrapper::before {
	content: '';
	flex-shrink: 0;
	order: 9999;
}

.swiper-centered.swiper-horizontal>.electron-swiper-wrapper>.swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.electron-swiper-wrapper:before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical>.electron-swiper-wrapper>.swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.electron-swiper-wrapper:before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}

.swiper-centered>.electron-swiper-wrapper>.swiper-slide {
	scroll-snap-align: center center;
}

.electron-swiper-prev,
.electron-swiper-next {
	z-index: 10;
	font-size: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-vertical-center .electron-swiper-prev,
.nav-vertical-center .electron-swiper-next {
	position: absolute;
	top: 50%;
    font-size: 24px;
    transform: translateY(calc(-50% - 24px));
}

.nav-vertical-centered .electron-swiper-prev,
.nav-vertical-centered .electron-swiper-next {
	position: absolute;
	top: 50%;
	font-size: 12px;
	transform: translateY(-50%);
}

.electron-nav-bg {
	background-color: #f8f9fa1a;
	border: 1px solid #e2e2e21a;
	color: var(--electron-light);
	width: 40px;
	height: 40px;
	border-radius: 5px;
    opacity: 0;
    visibility: hidden;
}
.electron-swiper-container:hover .electron-nav-bg {
    opacity: 1;
    visibility: visible;
}
.nav-vertical-centered .electron-nav-small {
    font-size: 13px;
    width: 40px;
    height: 40px;
}

.electron-nav-bg:hover{
	background-color: var(--electron-blue);
	border-color: var(--electron-primary);
	color: var(--electron-light);
}

.electron-swiper-prev.swiper-button-disabled,
.electron-swiper-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.electron-swiper-prev:after,
.electron-swiper-next:after {
	font-family: 'ninetheme-font';
	font-size: inherit;
	text-transform: none !important;
	letter-spacing: 0;
	text-transform: none;
	font-variant: initial;
	line-height: 1;
}

.nav-vertical-center .electron-swiper-prev,
.nav-vertical-centered .electron-swiper-prev,
.swiper-rtl.nav-vertical-center .electron-swiper-next {
	left: 10px;
	right: auto;
}

.electron-swiper-prev:after,
.swiper-rtl .electron-swiper-next:after {
	content: '\f114';
}

.nav-vertical-center .electron-swiper-next,
.nav-vertical-centered .electron-swiper-next,
.swiper-rtl.nav-vertical-center .electron-swiper-prev {
	right: 10px;
	left: auto;
}

.electron-swiper-next:after,
.swiper-rtl .electron-swiper-prev:after {
	content: '\f113';
}

.electron-swiper-container:hover .electron-swiper-next,
.electron-swiper-container:hover .electron-swiper-prev {
    opacity: 1;
    background: var(--electron-primary);
    color: var(--electron-light);
}

.electron-nav-bg {
    opacity: 0;
    visibility: hidden;
}

.electron-swiper-container:hover .electron-nav-bg {
    opacity: 1;
    visibility: visible;
}

.swiper-button-lock {
	display: none;
}

.electron-swiper-pagination {
	text-align: center;
	z-index: 10;
	display: block;
	list-style: none;
	line-height: 1;
	transition: 300ms opacity;
	transform: translate3d(0, 0, 0);
}

.electron-swiper-pagination.position-relative {
    position: relative;
    margin-top: 40px;
    bottom: auto;
    left: auto;
    right: auto;
}
.electron-swiper-pagination.position-absolute-bottom {
	position: absolute;
    bottom: 60px;
}

.electron-swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.electron-swiper-bullets,
.electron-swiper-bullets.swiper-pagination-horizontal {
	bottom: 10px;
	left: 0;
	width: 100%;
}

/* Bullets */
.electron-swiper-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.electron-swiper-bullets-dynamic .electron-swiper-bullet {
	transform: scale(0.33);
	position: relative;
}

.electron-swiper-bullets-dynamic .electron-swiper-bullet-active {
	transform: scale(1);
}

.electron-swiper-bullets-dynamic .electron-swiper-bullet-active-main {
	transform: scale(1);
}

.electron-swiper-bullets-dynamic .electron-swiper-bullet-active-prev {
	transform: scale(0.66);
}

.electron-swiper-bullets-dynamic .electron-swiper-bullet-active-prev-prev {
	transform: scale(0.33);
}

.electron-swiper-bullets-dynamic .electron-swiper-bullet-active-next {
	transform: scale(0.66);
}

.electron-swiper-bullets-dynamic .electron-swiper-bullet-active-next-next {
	transform: scale(0.33);
}

.electron-swiper-bullet {
    position: relative;
    display: inline-block;
    align-items: center;
    cursor: pointer;
    padding: 2px;
    border: 1px solid var(--electron-gray);
    width: 30px;
    height: auto;
    border-radius: 2px;
    margin: 0 4px;
    opacity: 1;
    background: transparent;
}

.electron-swiper-bullet.active {
	border-color: var(--electron-dark);
}

.electron-swiper-bullet:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--electron-gray);
    border-radius: 100%;
}

.electron-swiper-bullet:hover:before,
.electron-swiper-bullet:focus:before,
.electron-swiper-bullet.active:before {
	background: var(--electron-dark);
}

.electron-swiper-bullet:only-child {
	display: none !important;
}

.electron-main-slider.electron-swiper-theme-style .swiper-pagination-bullets {
    bottom: 40px;
    text-align: left;
    left: 45px;
}

/* a11y */
.swiper .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-free-mode>.electron-swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-grid>.electron-swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-grid-column>.electron-swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-flip {
	overflow: visible;
}

.swiper-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	transition-property: transform, opacity, height;
}
.swiper-pagination-lock {
    display: none;
}
/* electron customize */

.electron-products-widget-slider .electron-loop-slider .electron-swiper-bullets,
.electron-wc-tab-slider-edit-mode .electron-swiper-theme-style .electron-swiper-bullets,
.electron-wc-tab-slider .electron-swiper-theme-style .electron-swiper-bullets {
	position: absolute;
	top: auto;
}

.electron-swiper-theme-style .electron-swiper-prev:after,
.electron-swiper-theme-style .electron-swiper-next:after {
	font-size: 15px;
	width: auto;
	height: auto;
}


@media(max-width:480px) {
	.electron-swiper-theme-style .electron-swiper-prev,
	.electron-swiper-theme-style .electron-swiper-next {
		display: none;
	}
}

.thm-tab-slider.electron-swiper-slider {
	min-height: 300px;
}

/*
06 Theme Swiper Slider End
/////////////////////////////////*/
.electron-product-related .electron-swiper-slider:not(.swiper-initialized) .electron-swiper-wrapper,
.up-sells .electron-swiper-slider:not(.swiper-initialized) .electron-swiper-wrapper,
.cross-sells .electron-swiper-slider:not(.swiper-initialized) .electron-swiper-wrapper{
    gap: 20px;
}
.electron-product-related .electron-swiper-slider:not(.swiper-initialized) .swiper-slide,
.up-sells .electron-swiper-slider:not(.swiper-initialized) .swiper-slide,
.cross-sells .electron-swiper-slider:not(.swiper-initialized) .swiper-slide{
    width: 20%;
}


.slider-home-onepage .swiper-container:not(.swiper-initialized) section {
	background-image: none !important;
}

/* swiper style */


/* ContactForm7 forms */

.wpcf7-form-control-wrap {
	display: block;
}

.electron-cf7-form-wrapper form.wpcf7-form {
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));
}

.electron-cf7-form-wrapper form.wpcf7-form>* {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: var(--bs-gutter-y);
}

.electron-cf7-form-wrapper form.wpcf7-form .wpcf7-form-control-wrap input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.electron-cf7-form-wrapper form.wpcf7-form .wpcf7-form-control-wrap>label,
.electron-cf7-form-wrapper form.wpcf7-form .wpcf7-form-control-wrap select,
.electron-cf7-form-wrapper form.wpcf7-form .wpcf7-form-control-wrap textarea {
	width: 100%;
}
.electron-cf7-form-wrapper form.wpcf7-form .wpcf7-form-control-wrap textarea {
	max-height: 100px;
}
.electron-cf7-form-wrapper label {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 5px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    color: var(--electron-dark);
    margin-bottom: 20px;
}
.electron-cf7-form-wrapper form.wpcf7-form input[type="submit"],
.electron-cf7-form-wrapper form.wpcf7-form button.wpcf-7-submit {
	display: inline-block;
}

/* footer newsletter forms */
.electron-footer-newsletter-form-2 {
	position: relative;
}

.electron-footer-newsletter-form-2 .electron-footer-newsletter-form-2-button input {
	position: absolute;
	right: 0;
	top: 0;
	width: 100px;
	border: 1px solid var(--electron-dark);
}

.electron-footer-newsletter-form-2 .electron-footer-newsletter-form-2-button input {
	background: var(--electron-dark);
	color:var(--electron-light);
}

.electron-footer-newsletter-form-2 .electron-footer-newsletter-form-2-button .wpcf7-spinner {
	position: absolute;
	top: 11px;
	right: 20px;
}

.nt-cf7-form-wrapper .wpcf7-response-output {
	display: none !important;
}

.electron-footer-newsletter-form-2 .electron-footer-newsletter-form-2-input input {
	border-color: var(--electron-dark);
}

.electron-footer-newsletter-form-1 .electron-footer-newsletter-form-1-input input {
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}

.wpcf7 form.sent .wpcf7-response-output {
	color: var(--electron-success);
}


@media(max-width:576px) {

	.wpcf7 form.invalid .wpcf7-response-output {
		border-color: var(--electron-red);
		margin: 14px;
		width: 92% !important;
		border-radius: 0;
	}

	.wpcf7 form.invalid .wpcf7-response-output {
		border-color: var(--electron-red);
		margin: 14px;
		width: 92%;
		border-radius: 0;
	}
}

.contact-area.action-content form>.wpcf7-form-control-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
}
.contact-area .wpcf7 form .wpcf7-response-output {
	margin: 0px;
	margin-top: 20px;
	padding: 10px 15px;
}

.contact-area .wpcf7-form .ajax-loader,
.contact-area .wpcf7-form:not(.submitting) .loading-wrapper {
	display: none;
}

.contact-area .loading-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: absolute;
	background: var(--electron-light);
}

.wpcf7 form .wpcf7-response-output {
	border: 0;
	padding: 0;
	font-size: 13px;
	text-align: left;
	margin: 13px 2px;
	width: 93% !important;
	border-radius: 0;
	margin-top: 20px !important;
}

.screen-reader-response {
	display: none;
}

.wpcf7-form:not(.invalid) .wpcf7-response-output {
	display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
	border: 0;
	background: none;
	color: var(--electron-red);
	text-align: left;
	padding: 0 !important;
	margin: 0;
}

input.wpcf7-not-valid+span {
	display: none !important;
}

span.wpcf7-not-valid-tip {
	color: #f00;
	font-size: 1em;
	display: block;
	display: none;
}

.wpcf7-response-output.wpcf7-validation-errors {
	display: inline-block !important;
	margin: 15px 0 !important;
	width: 100% !important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 2px solid var(--electron-red);
	background-color: var(--electron-red);
	color: var(--electron-light);
}

div.wpcf7-mail-sent-ok {
	display: inline-block !important;
	margin: 15px !important;
	width: 97.2% !important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 2px solid var(--electron-success);
	background-color: var(--electron-success);
	color: var(--electron-light);
}

div.wpcf7-mail-sent-ok {
	background: var(--electron-success);
	border: 2px solid var(--electron-success);
	color: var(--electron-light);
}

.wpcf7 button,
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
	display: inline-block;
}

.wpcf7 br {
	display: none;
}


/*
* Products Masonry Widget Start
/////////////////////////////////*/
.woo-products-grid-masonry .electron-products.row .product:not(.electron-product-type-7) img {
	width: 100%;
}
@media (min-width: 1200px) {
	.woo-products-grid-masonry .electron-products.row {
	    grid-template-columns: repeat(5,1fr);
	}
}

@media (min-width: 992px) {
	.woo-products-grid-masonry .electron-products.row {
	    display: grid;
	    grid-template-columns: repeat(4,1fr);
	}
	.woo-products-grid-masonry .electron-products.row .product:not(.electron-product-type-7) {
	    display: inline-grid;
	    width: 100%;
	}
	.woo-products-grid-masonry .electron-products.row .product:not(.electron-product-type-7):nth-child(1) {
	    grid-column: span 2;
	    grid-row: span 2;
	    width: 100%;
	}
}
/*
* Products Masonry Widget End
/////////////////////////////////*/


/** features-item
/////////////////////////////////*/
.electron-features-item svg {
    width: 1em;
}
.electron-features-item .electron-features-icon {
    display: inline-block;
}
.electron-features-item .icon-border {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid;
    margin-bottom: 10px;
}
/*
* features-item
/////////////////////////////////*/

.blog-rc-post ul li {
    display: flex;
}

.blog-rc-post .rc-post-content {
    padding: 20px;
}

.blog-rc-post .rc-post-content h5 {
    margin-bottom: 10px;
}

.blog-rc-post > ul > li + li {
    margin-top: 10px;
}
.electron-elementor-footer .elementor-icon {
    display: inline-flex;
}
.title-percent {
    font-size: 45px;
    position: absolute;
    top: 7px;
    left: inherit;
    margin-left: 7px;
}
.title-off {
    font-size: 18px;
    left: inherit;
    margin-left: 7px;
}



/*
04 Theme Lightbox Start
/////////////////////////////////*/
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999998;
    overflow: hidden;
    position: fixed;
    background: #00438beb;
    opacity: 0.8;
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	box-sizing: border-box;
}

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.mfp-preloader a {
	color: #CCC;
}

.mfp-preloader a:hover {
	color: #FFF;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	touch-action: manipulation;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close:hover,
.mfp-close:focus {
	opacity: 1;
}

.mfp-close-btn-in .mfp-close {
	color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}
.panel-close.mfp-close {
    right: 10px;
    top: 10px;
}
.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}

.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after {
	border-right: 17px solid #FFF;
	margin-left: 31px;
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after {
	border-left: 17px solid #FFF;
	margin-left: 39px;
}

.mfp-arrow-right:before {
	border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

.mfp-figure {
	line-height: 0;
}

.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgb(165 165 165 / 18%);
	background: #444;
}

.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}

	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}

	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}

	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}

	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box;
	}

	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}

	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}

	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}

	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}

	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}

	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}

.electron-mfp-slide-bottom button.mfp-close,
.electron-mfp-slide-bottom button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	touch-action: manipulation;
}

/* electron magnific-popup animation  */
.electron-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

/* animate in */
.electron-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* animate out */
.electron-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
}

/* Dark overlay, start state */
.electron-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}

/* animate in */
.electron-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}

/* animate out */
.electron-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */
/* at start */
.electron-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	-moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	-ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	-o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.electron-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(600px) rotateX(0);
	-moz-transform: translateY(0) perspective(600px) rotateX(0);
	-ms-transform: translateY(0) perspective(600px) rotateX(0);
	-o-transform: translateY(0) perspective(600px) rotateX(0);
	transform: translateY(0) perspective(600px) rotateX(0);
}
@media(max-width:576px){
    .electron-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
        margin: 15px;
        padding: 40px 30px 30px;
    }
}
/* animate out */
.electron-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	-moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	-ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	-o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.electron-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}

/* animate in */
.electron-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}

/* animate out */
.electron-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}.electron-ajax-product-search {
    position: relative;
    z-index: 99;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 620px;
}

.electron-ajax-product-search:not(.custom-search-form) form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid var(--electron-border);
    height: 46px;
    border-radius: 5px;
}

.electron-ajax-product-search input.electron-ajax-search-input.hide-clear {
    width: 100%;
    color: var(--electron-gray-dark);
    border: 0;
    height: 100%;
    min-height: auto;
    overflow: hidden;
}

.bg-trans-dark .electron-ajax-product-search input.electron-ajax-search-input.hide-clear,
.bg-dark .electron-ajax-product-search input.electron-ajax-search-input.hide-clear {
    color: var(--electron-light);
}

.electron-ajax-product-search .category-select-wrapper {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 100%;
    border-left: 1px solid var(--electron-border);
    border-right: 1px solid var(--electron-border);
    position: relative;
    cursor: pointer;
}
.category-select-wrapper.active {
    min-width: 120px;
}
.electron-ajax-product-search button.electron-ajax-search-submit,
.electron-ajax-product-search button.electron-ajax-search-submit:hover,
.electron-ajax-close-search-results {
    color: var(--electron-light);
    background-color: var(--electron-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: none;
    padding: 0;
    margin: 0;
    min-width: 45px;
    z-index: 1;
    border-radius: 0 5px 5px 0;
    height: calc(100% + 4px);
    margin-right: -2px;
}

.electron-ajax-product-search button.electron-ajax-search-submit svg {
    fill: var(--electron-light);
    width: 22px;
    height: 22px;
}

.electron-ajax-close-search-results {
    position: absolute;
    top: -2px;
    right: 0;
    opacity: 0;
    z-index: 0;
    cursor: pointer;
}

form.active .electron-ajax-close-search-results {
    opacity: 1;
    z-index: 2;
}

form.active button.electron-ajax-search-submit {
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.category-select-wrapper .category-list {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 105%;
    left: 0;
    background-color: var(--electron-light);
    display: flex;
    flex-direction: column;
    gap: 7px;
    z-index: 999;
    padding: 15px;
    list-style: none;
    -webkit-box-shadow: -2px 2px 45px -20px rgba(0, 0, 0, .3);
    -moz-box-shadow: -2px 2px 45px -20px rgba(0, 0, 0, .3);
    box-shadow: -2px 2px 45px -20px rgba(0, 0, 0, .3);
    transform: translateY(15px) translateZ(0);
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    border-radius: 0 0 5px 5px;
}

.category-select-wrapper .category-list,
.category-select-wrapper .category-list li {
    cursor: pointer;
}

.category-select-wrapper.active .category-list {
    opacity: 1;
    visibility: visible;
    transform: none;
}


.electron-ajax-search-results {
    background-color: var(--electron-light);
    color: var(--electron-dark);
    display: none;
    position: absolute;
    width: 100%;
    top: 88%;
    max-height: 50vh;
    padding: 10px 20px;
    border: 2px solid var(--electron-border);
    border-right: 0;
    z-index: 15;
    transform: translateY(2px);
    -webkit-box-shadow: 0 15px 30px -4px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 15px 30px -4px rgba(0, 0, 0, .09);
    box-shadow: 0 15px 30px -4px rgb(0 0 0 / 21%);
    overflow-y: auto;
    min-width: 450px;
    max-width: 620px;
    border-radius: 0 0 5px 5px;
}
.bg-dark .electron-ajax-search-results,
.bg-trans-dark .electron-ajax-search-results,
.bg-dark .loading .loading-wrapper,
.bg-trans-dark .loading .loading-wrapper {
    background-color: var(--electron-dark);
    color: var(--electron-light);
}

.bg-dark .loading .ajax-loading,
.bg-dark .loading .ajax-loading::before,
.bg-dark .loading .ajax-loading::after,
.bg-trans-dark .loading .ajax-loading,
.bg-trans-dark .loading .ajax-loading::before,
.bg-trans-dark .loading .ajax-loading::after {
    background-color: var(--electron-light);
}

.electron-ajax-search-results.loading,
.electron-ajax-search-results.active {
    display: block;
    min-height: 100px;
}
.electron-ajax-search-results.loading,
.electron-ajax-search-results.loading a {
    pointer-events: none;
}

.electron-ajax-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.electron-ajax-search-results ul li {
    display: block;
    padding: 12px 0;
    position: relative;
    border-bottom: 1px dashed var(--electron-border);
}

.electron-ajax-search-results ul li:last-child {
    border-bottom: none;
}

.electron-ajax-search-results .electron-ajax-product-link {
    display: flex;
    width: 100%;
    z-index: 1;
    position: relative;
    align-items: center;
    gap: 20px;
}

.electron-ajax-search-results .electron-ajax-product-image {
    width: 65px;
    max-width: 65px;
}

.electron-ajax-search-results .electron-ajax-product-title {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
}

.electron-ajax-product-data .electron-ajax-product-price {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.electron-ajax-product-data .del {
    text-decoration: line-through;
    font-size: 12px;
}

.electron-ajax-product-data .electron-stock-status {
    font-size: 11px;
    line-height: 1;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 3px;
    text-transform: uppercase;
    font-weight: 500;
}
.electron-ajax-product-data .stock-value {
    color: var(--electron-red);
}

.electron-ajax-product-data .instock {
    color: var(--electron-green-soft);
}

.electron-ajax-search-results .electron-btn,
.electron-ajax-search-results .electron-product-cart.has-icon,
.electron-ajax-search-results .electron-btn-text,
.electron-ajax-search-results .electron-add-to-cart-btn.btn-type-icon {
    position: absolute;
    bottom: 10px;
    right: 15px;
    z-index: 1;
}
.electron-ajax-search-results a.btn-type-icon {
    background: var(--electron-blue-bg);
    min-width: 32px;
    min-height: 33px;
    line-height: initial;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.electron-ajax-search-results a.btn-type-icon:hover,
.electron-ajax-search-results a.btn-type-icon.added {
    background-color: var(--electron-primary);
    opacity: 1;
}
.electron-ajax-search-results a.btn-type-icon svg {
    max-width: 16px;
    max-height: 16px;
    fill: var(--electron-primary);
}
.electron-ajax-search-results .btn-type-icon:hover svg,
.electron-ajax-search-results .btn-type-icon.added svg {
    fill: var(--electron-light);
}
.electron-ajax-search-results .btn-type-icon span.electron-hint {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}
.electron-ajax-search-results  .electron-hint:before {
    bottom: auto;
    top: 50%;
    right: -10px;
    border-color: transparent;
    border-left-color: var(--electron-primary);
    left: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.electron-ajax-search-results .electron-product-button:hover .electron-hint {
    top: 16px;
}
.electron-ajax-search-results .electron-product-cart.has-icon {
    min-height: 25px;
}
.electron-ajax-search-results .electron-product-cart.has-icon svg {
    width: 16px;
    height: 16px;
}

.electron-ajax-selected {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    color: var(--electron-text);
}

.electron-ajax-selected .icon:before {
    content: "\f115";
    transform: rotate(180deg);
    display: flex;
    font-size: 10px;
}

/* clears the 'X' from Internet Explorer */
input.hide-clear[type=search]::-ms-clear,
input.hide-clear[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input.hide-clear[type="search"]::-webkit-search-decoration,
input.hide-clear[type="search"]::-webkit-search-cancel-button,
input.hide-clear[type="search"]::-webkit-search-results-button,
input.hide-clear[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.electron-ajax-search-wrapper.active button.electron-ajax-search-submit {
    display: none;
}

.electron-ajax-close-search-results:before,
.electron-ajax-close-search-results:after {
	content: '';
	position: absolute;
	height: 2px;
	width: 16px;
	top: 46%;
	left: 15px;
	transform-origin: 50% 50%;
	background-color: var(--electron-light);
	opacity: 1;
	-moz-transition: -moz-transform ease 0.25s;
	-webkit-transition: -webkit-transform ease 0.25s;
	-o-transition: -o-transform ease 0.25s;
	-ms-transition: -ms-transform ease 0.25s;
	transition: transform ease 0.25s;
}
.bg-dark .electron-ajax-close-search-results:before,
.bg-dark .electron-ajax-close-search-results:after {
	background-color: var(--electron-light);
}

.electron-ajax-close-search-results:before{
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.electron-ajax-close-search-results:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.electron-ajax-close-search-results:hover:after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.electron-ajax-close-search-results:hover:before {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.electron-ajax-search-wrapper.loading button.electron-ajax-search-submit,
.electron-ajax-search-wrapper .electron-ajax-close-search-results {
    opacity: 0;
}

.electron-ajax-search-wrapper.active .electron-ajax-close-search-results {
    opacity: 1;
    z-index: 1;
}

.electron-ajax-product-search-form div.error {
    position: absolute;
    left: 0;
    top: 0%;
    margin-top: 5px;
    color: var(--electron-red);
	background:#fff;
	padding:5px 10px;
}

.electron-ajax-search-results .spinner.loading:after {
    z-index: 2;
    width: 30px;
    height: 30px;
    border: 1px solid var(--electron-gray);
    border-left-color: var(--electron-primary);
}

@media (max-width: 480px) {
    .electron-ajax-search-results {
        min-width: auto;
    }
}
.electron-ajax-product-search .aws-container {
    width: 100%;
}
.search-col .electron-ajax-product-search form.aws-search-form {
    border-bottom: 0;
}
.electron-ajax-product-search .aws-container .aws-search-field {
    padding-right: 6px;
    min-height: auto;
}/* page hero section */
.electron-page-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--electron-gray-soft);
    border-bottom: 1px solid var(--electron-border);
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    display: flex;
    text-align: center;
    align-items: center;
    margin-top: -1px;
}

.has-default-header-type-trans .electron-page-hero.has-bg-image {
    padding-top: 120px;
    padding-bottom: 50px;
    min-height: 400px !important;
}

.has-header-sidebar .electron-page-hero {
    padding: 80px 50px;
}

.has-header-sidebar .page-hero-small {
    padding: 40px 55px;
}

.electron-page-hero picture img,
.electron-page-hero > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.electron-page-hero-content .page-title {
    margin-bottom: 0px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    font-size: 26px;
}
.electron-page-hero-content .term-description {
    max-width: 500px;
    margin-top: 15px;
    margin: 15px auto;
}

.breadcrumb-trail.electron-breadcrumbs {
    margin-bottom: 0;
}
.page-hero-mini .electron-page-hero-content {
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    display: flex;
    flex-direction: row-reverse;
    align-content: center;
    align-items: center;
}

@media (max-width: 1200px) {
    .has-header-sidebar .electron-page-hero {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
	.page-hero-mini .electron-page-hero-content {
		flex-direction: column;
	}
}
/* page hero section */


/* shop hero category type */
.page-hero-big {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 350px;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.electron-page-hero-inner {
    position: relative;
    z-index: 1;
}

.has-default-header-type-trans .page-hero-big {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.has-default-header-type-trans .page-hero-cat-slider {
    min-height: 450px;
    padding-top: 120px;
}

.page-hero-big ul.electron-wc-category-list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin-top: 15px;
}

.electron-shop-hero.page-hero-big .term-description,
.electron-shop-hero.page-hero-big .electron-breadcrumbs {
    margin-top: 15px;
}

.electron-shop-hero.has-bg-image .electron-breadcrumbs li,
.electron-shop-hero.has-bg-image .electron-breadcrumbs li a,
.electron-shop-hero.has-bg-image .term-description,
.electron-shop-hero.has-bg-image .page-title{
    color: var(--electron-light);
}

.electron-shop-hero.has-bg-image .page-title{
    margin-bottom: 0;
}

.page-hero-big ul.electron-wc-category-list li {
	display: inline-block;
	position: relative;
}

.page-hero-big ul.electron-wc-category-list li+li {
	margin-left: 20px;
}

.page-hero-big ul.electron-wc-category-list li a {
	padding: 10px 0;
}

.page-hero-big ul.electron-wc-category-list li a:after {
	content: '';
	height: 2px;
	width: 0;
	background-color: currentColor;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width .25s;
	transition: width .25s;
}

.page-hero-big ul.electron-wc-category-list li a:hover:after {
	width: 100%;
}
/* shop hero category type */


/* shop hero category slider type */
.electron-shop-hero.electron-page-hero.page-hero-cat-slider.page-hero-static {
	background-position: center;
	background-size: cover;
	min-height: 330px;
	background-color: var(--electron-gray-soft);
	display: flex;
	align-items: flex-start;
	padding: 90px 0;
	align-content: center;
}

.has-default-header-type-trans .electron-shop-hero.electron-page-hero.page-hero-cat-slider.page-hero-static {
	min-height: 450px;
}

.electron-category-slider.electron-swiper-slider {
	max-width: 1180px;
	overflow: hidden;
	margin: 15px auto;
}

.electron-category-slider {
	margin-bottom: -140px;
	margin-top: 25px;
}
.electron-shop-hero.electron-page-hero.page-hero-cat-slider .electron-category-slider {
	margin-bottom: 0px;
}

.electron-category-slider .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 200ms linear;
	transform: scale(0.9);
}

.electron-category-slider .electron-category-slide-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 10px 10px 0;
    background: var(--electron-light);
    border: 1px solid;
    border-color: var(--electron-border);
    border-radius: 5px;
    min-height: 155px;
    width: 100%;
}

.electron-category-slider .electron-category-slide-item a:hover,
.electron-category-slider .electron-category-slide-item a:focus {
    border-color: var(--electron-primary);
}

.electron-category-slider .category-title {
	color: var(--electron-dark);
	line-height: 1;
	margin-top: 0;
	padding: 10px;
}

.electron-category-slider .cat-count {
	position: absolute;
	top: 5px;
	left: 5px;
	right: auto;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--electron-blue-soft);
	color: var(--electron-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
}

.electron-category-slider .swiper-pagination {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	margin-top: 20px;
}
.electron-shop-hero.page-hero-cat-slider {
    text-align: center;
}

.electron-page-hero-content .page-title {
    margin-bottom: 0px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    font-size: 44px;
    text-transform: uppercase;
}
.electron-shop-hero.page-hero-cat-slider .electron-breadcrumbs {
    display: none;
}

@media (max-width: 767px) {
    .electron-page-hero-content .page-title {
        font-size: 24px;
    }

}

/* shop hero category slider type *//*------------------------------------------------------------------

	[Table of contents]

	1. Defaults
	2. WordPress Cores
	3. Widgets
	4. Share Buttons
	5. Articles
	6. Post Content Area
	7. Preloaders
	8. Elementor

-------------------------------------------------------------------*/

.row {--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display: flex;flex-wrap: wrap;margin-top: calc(-1 * var(--bs-gutter-y));margin-right: calc(-0.5 * var(--bs-gutter-x));margin-left: calc(-0.5 * var(--bs-gutter-x));}.row > * {box-sizing: border-box;flex-shrink: 0;width: 100%;max-width: 100%;padding-right: calc(var(--bs-gutter-x) * 0.5);padding-left: calc(var(--bs-gutter-x) * 0.5);margin-top: var(--bs-gutter-y);}.col {flex: 1 0 0%;}.row-cols-auto > * {flex: 0 0 auto;width: auto;}.row-cols-1 > * {flex: 0 0 auto;width: 100%;}.row-cols-2 > * {flex: 0 0 auto;width: 50%;}.row-cols-3 > * {flex: 0 0 auto;width: 33.3333333333%;}.row-cols-4 > * {flex: 0 0 auto;width: 25%;}.row-cols-5 > * {flex: 0 0 auto;width: 20%;}.row-cols-6 > * {flex: 0 0 auto;width: 16.6666666667%;}.col-auto {flex: 0 0 auto;width: auto;}.col-1 {flex: 0 0 auto;width: 8.33333333%;}.col-2 {flex: 0 0 auto;width: 16.66666667%;}.col-3 {flex: 0 0 auto;width: 25%;}.col-4 {flex: 0 0 auto;width: 33.33333333%;}.col-5 {flex: 0 0 auto;width: 41.66666667%;}.col-6 {flex: 0 0 auto;width: 50%;}.col-7 {flex: 0 0 auto;width: 58.33333333%;}.col-8 {flex: 0 0 auto;width: 66.66666667%;}.col-9 {flex: 0 0 auto;width: 75%;}.col-10 {flex: 0 0 auto;width: 83.33333333%;}.col-11 {flex: 0 0 auto;width: 91.66666667%;}.col-12 {flex: 0 0 auto;width: 100%;}@media (min-width: 576px) {.col-sm {flex: 1 0 0%;}.row-cols-sm-auto > * {flex: 0 0 auto;width: auto;}.row-cols-sm-1 > * {flex: 0 0 auto;width: 100%;}.row-cols-sm-2 > * {flex: 0 0 auto;width: 50%;}.row-cols-sm-3 > * {flex: 0 0 auto;width: 33.3333333333%;}.row-cols-sm-4 > * {flex: 0 0 auto;width: 25%;}.row-cols-sm-5 > * {flex: 0 0 auto;width: 20%;}.row-cols-sm-6 > * {flex: 0 0 auto;width: 16.6666666667%;}.col-sm-auto {flex: 0 0 auto;width: auto;}.col-sm-1 {flex: 0 0 auto;width: 8.33333333%;}.col-sm-2 {flex: 0 0 auto;width: 16.66666667%;}.col-sm-3 {flex: 0 0 auto;width: 25%;}.col-sm-4 {flex: 0 0 auto;width: 33.33333333%;}.col-sm-5 {flex: 0 0 auto;width: 41.66666667%;}.col-sm-6 {flex: 0 0 auto;width: 50%;}.col-sm-7 {flex: 0 0 auto;width: 58.33333333%;}.col-sm-8 {flex: 0 0 auto;width: 66.66666667%;}.col-sm-9 {flex: 0 0 auto;width: 75%;}.col-sm-10 {flex: 0 0 auto;width: 83.33333333%;}.col-sm-11 {flex: 0 0 auto;width: 91.66666667%;}.col-sm-12 {flex: 0 0 auto;width: 100%;}.d-sm-flex {display: flex !important;}}@media (min-width: 768px) {.col-md {flex: 1 0 0%;}.row-cols-md-auto > * {flex: 0 0 auto;width: auto;}.row-cols-md-1 > * {flex: 0 0 auto;width: 100%;}.row-cols-md-2 > * {flex: 0 0 auto;width: 50%;}.row-cols-md-3 > * {flex: 0 0 auto;width: 33.3333333333%;}.row-cols-md-4 > * {flex: 0 0 auto;width: 25%;}.row-cols-md-5 > * {flex: 0 0 auto;width: 20%;}.row-cols-md-6 > * {flex: 0 0 auto;width: 16.6666666667%;}.col-md-auto {flex: 0 0 auto;width: auto;}.col-md-1 {flex: 0 0 auto;width: 8.33333333%;}.col-md-2 {flex: 0 0 auto;width: 16.66666667%;}.col-md-3 {flex: 0 0 auto;width: 25%;}.col-md-4 {flex: 0 0 auto;width: 33.33333333%;}.col-md-5 {flex: 0 0 auto;width: 41.66666667%;}.col-md-6 {flex: 0 0 auto;width: 50%;}.col-md-7 {flex: 0 0 auto;width: 58.33333333%;}.col-md-8 {flex: 0 0 auto;width: 66.66666667%;}.col-md-9 {flex: 0 0 auto;width: 75%;}.col-md-10 {flex: 0 0 auto;width: 83.33333333%;}.col-md-11 {flex: 0 0 auto;width: 91.66666667%;}.col-md-12 {flex: 0 0 auto;width: 100%;}.d-md-flex {display: flex!important;}}@media (min-width: 992px) {.col-lg {flex: 1 0 0%;}.row-cols-lg-auto > * {flex: 0 0 auto;width: auto;}.row-cols-lg-1 > * {flex: 0 0 auto;width: 100%;}.row-cols-lg-2 > * {flex: 0 0 auto;width: 50%;}.row-cols-lg-3 > * {flex: 0 0 auto;width: 33.3333333333%;}.row-cols-lg-4 > * {flex: 0 0 auto;width: 25%;}.row-cols-lg-5 > * {flex: 0 0 auto;width: 20%;}.row-cols-lg-6 > * {flex: 0 0 auto;width: 16.6666666667%;}.col-lg-auto {flex: 0 0 auto;width: auto;}.col-lg-1 {flex: 0 0 auto;width: 8.33333333%;}.col-lg-2 {flex: 0 0 auto;width: 16.66666667%;}.col-lg-3 {flex: 0 0 auto;width: 25%;}.col-lg-4 {flex: 0 0 auto;width: 33.33333333%;}.col-lg-5 {flex: 0 0 auto;width: 41.66666667%;}.col-lg-6 {flex: 0 0 auto;width: 50%;}.col-lg-7 {flex: 0 0 auto;width: 58.33333333%;}.col-lg-8 {flex: 0 0 auto;width: 66.66666667%;}.col-lg-9 {flex: 0 0 auto;width: 75%;}.col-lg-10 {flex: 0 0 auto;width: 83.33333333%;}.col-lg-11 {flex: 0 0 auto;width: 91.66666667%;}.col-lg-12 {flex: 0 0 auto;width: 100%;}.d-lg-flex {display: flex!important;}.pr-lg-35 {padding-right: 35px;}}@media (min-width: 1200px) {.col-xl {flex: 1 0 0%;}.row-cols-xl-auto > * {flex: 0 0 auto;width: auto;}.row-cols-xl-1 > * {flex: 0 0 auto;width: 100%;}.row-cols-xl-2 > * {flex: 0 0 auto;width: 50%;}.row-cols-xl-3 > * {flex: 0 0 auto;width: 33.3333333333%;}.row-cols-xl-4 > * {flex: 0 0 auto;width: 25%;}.row-cols-xl-5 > * {flex: 0 0 auto;width: 20%;}.row-cols-xl-6 > * {flex: 0 0 auto;width: 16.6666666667%;}.col-xl-auto {flex: 0 0 auto;width: auto;}.col-xl-1 {flex: 0 0 auto;width: 8.33333333%;}.col-xl-2 {flex: 0 0 auto;width: 16.66666667%;}.col-xl-3 {flex: 0 0 auto;width: 25%;}.col-xl-4 {flex: 0 0 auto;width: 33.33333333%;}.col-xl-5 {flex: 0 0 auto;width: 41.66666667%;}.col-xl-6 {flex: 0 0 auto;width: 50%;}.col-xl-7 {flex: 0 0 auto;width: 58.33333333%;}.col-xl-8 {flex: 0 0 auto;width: 66.66666667%;}.col-xl-9 {flex: 0 0 auto;width: 75%;}.col-xl-10 {flex: 0 0 auto;width: 83.33333333%;}.col-xl-11 {flex: 0 0 auto;width: 91.66666667%;}.col-xl-12 {flex: 0 0 auto;width: 100%;}.d-xl-flex {display: flex !important;}}@media (min-width: 1400px) {.col-xxl {flex: 1 0 0%;}.row-cols-xxl-auto > * {flex: 0 0 auto;width: auto;}.row-cols-xxl-1 > * {flex: 0 0 auto;width: 100%;}.row-cols-xxl-2 > * {flex: 0 0 auto;width: 50%;}.row-cols-xxl-3 > * {flex: 0 0 auto;width: 33.3333333333%;}.row-cols-xxl-4 > * {flex: 0 0 auto;width: 25%;}.row-cols-xxl-5 > * {flex: 0 0 auto;width: 20%;}.row-cols-xxl-6 > * {flex: 0 0 auto;width: 16.6666666667%;}.col-xxl-auto {flex: 0 0 auto;width: auto;}.col-xxl-1 {flex: 0 0 auto;width: 8.33333333%;}.col-xxl-2 {flex: 0 0 auto;width: 16.66666667%;}.col-xxl-3 {flex: 0 0 auto;width: 25%;}.col-xxl-4 {flex: 0 0 auto;width: 33.33333333%;}.col-xxl-5 {flex: 0 0 auto;width: 41.66666667%;}.col-xxl-6 {flex: 0 0 auto;width: 50%;}.col-xxl-7 {flex: 0 0 auto;width: 58.33333333%;}.col-xxl-8 {flex: 0 0 auto;width: 66.66666667%;}.col-xxl-9 {flex: 0 0 auto;width: 75%;}.col-xxl-10 {flex: 0 0 auto;width: 83.33333333%;}.col-xxl-11 {flex: 0 0 auto;width: 91.66666667%;}.col-xxl-12 {flex: 0 0 auto;width: 100%;}.d-xxl-flex {display: flex !important;}}.d-block {display: block;}.d-flex {display: flex;}.d-none {display: none;}.flex-row-reverse {flex-direction: row-reverse;}.flex-column-reverse {flex-direction: column-reverse;}.flex-wrap {flex-wrap: wrap;}.flex-wrap-reverse {flex-wrap: wrap-reverse;}.justify-content-start {justify-content: flex-start;}.justify-content-end {justify-content: flex-end;}.justify-content-center {justify-content: center;}.order-0 {order: 0;}.order-1 {order: 1;}.order-2 {order: 2;}



/* 1. Defaults */

/* 2. WordPress Core */
.bypostauthor,
.gallery-caption {
	display: block;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.page .aligncenter,
.page div.aligncenter {
	margin: 5px auto 20px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
	clear: both;
}

.wp-image-904.alignright {
    margin: 50px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.nt-clearfix:after,
.wp-caption:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.wp-caption {
	background-color: var(--electron-light);
	border: 1px solid var(--electron-border);
	max-width: 100%;
	padding: 5px 5px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 20px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 100%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	line-height: 17px;
	margin: 15px 0 0;
	font-size: 14px;
	padding: 0 4px 5px;
}

.sticky_text {
	background-color: var(--electron-bg-soft);
	color: var(--electron-dark);
	padding: 5px 10px;
	border-radius: 3px;
	display: inline-block;
	margin: 1px 0 10px;
}

@media only screen and (min-width: 992px) {
	.alignnone {
		margin: 15px 20px 15px 0;
	}
}

/* 3. Widgets */
#nt-sidebar #searchform {
	position: relative;
	max-height: 50px;
}

#nt-sidebar .menu {
	opacity: 1 !important;
}

#nt-sidebar .widget_text {
	min-height: 20px;
}

#wp-calendar a {
	color: var(--electron-dark-soft);
}

.calendar_wrap #prev a {
	background-color: var(--electron-dark);
	color: var(--electron-light);
	padding: 5px 10px;
	margin-top: 10px;
	display: inline-block;
	margin-left: -12px;
}

.calendar_wrap #next a {
	background-color: var(--electron-dark);
	color: var(--electron-light);
	padding: 5px 10px;
	margin-top: 10px;
	display: inline-block;
	margin-right: -8px;
}

#nt-sidebar select {
	max-width: 100%;
	min-width: 100%;
}

#nt-sidebar form[role="search"],
#nt-sidebar form[role="password"] {
	margin: 0;
	border-radius: 0px;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

#nt-sidebar form input {
	border-radius: 5px 0 0 5px;
	width: 100%;
}

#nt-sidebar form button {
    outline: none;
    border: 0;
    background-color: var(--electron-primary);
    padding: 0 20px;
    color: var(--electron-light);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    border-radius: 0 5px 5px 0;
}

.content-none-container .electron-btn {
	margin-top: 30px;
}

.content-none-container {
    text-align: center;
    max-width: 590px;
    margin: 60px auto 0;
}

.search-no-results .electron-page-hero, .nt-404 .electron-page-hero {
    text-align: center;
}

.electron_content_none {
    position: relative !important;
    margin: auto;
}
.content-none-container .__title {
    font-size: 70px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
    color: var(--electron-primary);
}
.content-none-container .__nothing {
    margin: 0;
}
/* text widget */
.textwidget img {
	margin: 0px 0px 15px;
	display: block;
	font-size: 14px;
}

.textwidget strong {
	margin: 0px 0px 15px;
	display: block;
	font-size: 14px;
}

.textwidget br {
	display: none;
}

/* rss widget */
.widget_rss ul {
	padding: 0px !important;
	margin: 0 !important;
}

.widget_rss ul li {
	list-style: none;
	margin-bottom: 25px !important;
	padding: 30px;
	-webkit-box-shadow: 0 10px 60px 0 rgb(0 0 0 / 5%);
	box-shadow: 0 10px 60px 0 rgb(0 0 0 / 5%);
	background-color: var(--electron-light);
}

.widget_rss ul li:last-child {
	border-bottom: 0px;
	list-style: none;
	margin-bottom: 0;
}

.widget_rss ul li a {
	margin-bottom: 15px;
	display: block;
	color: var(--electron-dark) !important;
	font-weight: 500;
}

.widget_rss ul li span {
	color: var(--electron-dark-soft);
	margin-bottom: 14px;
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	text-align: left !important;
}

.widget_rss -title a {
	font-weight: 600;
	color: var(--electron-dark);
	vertical-align: top;
}

.widget_rss cite {
	color: var(--electron-dark);
	display: block;
	margin-top: 5px;
}

.widget_rss cite:before {
	content: "-- ";
}

.widget_rss .rssSummary {
	margin-bottom: 15px;
	font-weight: 400;
}

/* search form */
.search-results article,
article.hentry {
	margin-bottom: 40px;
}

.search .product .electron-blog-post-content .electron-blog-post-meta {
	display: none;
}

.search-no-results .nt-electron-inner-container.blog-area.section-padding.electron-blog-classic {
	min-height: calc(100vh - 250px);
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
}

/* author box*/
.article-img {
	margin-bottom: 20px;
}

.tags-links {
	border-right: 2px solid var(--electron-gray);
	padding: 0px 10px 0 0px;
	display: inline-block;
	margin: 0px 10px 0px 0;
}

.nt-sidebar-inner-widget .tag-cloud {
	margin-bottom: -5px;
}

.nt-sidebar-inner-widget .tag-cloud-link {
	display: inline-block;
	font-size: 12px !important;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 3px;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	outline: 0;
	background-color: var(--electron-gray-soft);
	color: var(--electron-dark);
	padding: 5px 10px;
	border: 0;
	border-radius: 4px;
}

.nt-sidebar-inner-widget .tagcloud a:hover {
	background-color: var(--electron-primary);
	color: var(--electron-light);
}

.tag-item-one {
	color: #695afd !important;
	background-color: #f2f1ff;
}

.tag-item-two {
	color: #f94a11 !important;
	background-color: #ffefe8;
}

.tag-item-three {
	color: #0cbc5a !important;
	background-color: #e6faef;
}

.tag-item-four {
	color: #feb302 !important;
	background-color: #fff8e6;
}

.tag-item-five {
	color: #34c7df !important;
	background-color: #f1fdff;
}

/* 4. password form */
.post-password-form {
    max-width: 520px;
}

.post-password-form p{
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px;
}

.post-password-form label {
    display: inline;
    margin: 0;
    padding: 0;
    line-height: 0;
    gap: 10px;
    display: flex;
}

.post-password-form input[type=password] {
    width: auto;
    background-color: var(--electron-light);
    color: var(--electron-dark);
    background-clip: padding-box;
    border: 2px solid var(--electron-border);
    line-height: 1.2;
    font-size: 1.6rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    padding: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 30px;
    border-radius: 5px;
    -webkit-transition: background-color .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    transition: background-color .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
}

.post-password-form input[type=submit] {
    color: var(--electron-dark-soft);
    border-color: var(--electron-dark-soft);
    background-color: transparent;
    border-width: 1px;
    height: 54px;
    line-height: 38px;
    padding: 0 40px;
    font-size: 14px;
    display: inline-block;
    text-transform: capitalize;
    letter-spacing: normal;
    cursor: pointer;
    border-style: solid;
    font-family: inherit;
    font-weight: 700;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
}


.gallery-content ul {
	padding: 0;
}

.gallery-content ul li {
	list-style: none;
}

/*  5.  Articles   */
.video-responsive {
	width: 100%;
}

.video-responsive iframe {
	width: 100%;
	height: 100%;
}


.page-template-default .electron-page-hero-content {
	text-align: center;
}

.nt-electron-content ol, .nt-electron-content ul {
	margin-bottom: 30px;
	margin-top: 30px;
}

.nt-electron-content ol ol,
.nt-electron-content ul ol,
.nt-electron-content ol ul,
.nt-electron-content ul ul {
	margin: 0px;
}

.single .the-post-thumbnail {
	margin-bottom: 30px;
}

.nt-electron-content.nt-single-content {
	margin-bottom: 60px;
	position: relative;
}

.nt-inner-title {
	margin: 50px 0 50px;
}

.nt-post-tags {
	clear: both;
	margin-bottom: 60px;
}

.page-links {
	clear: both;
	margin: 0;
	padding: 0;
	text-transform: capitalize;
}

.nt-is-wp-link-pages .page-links {
	background-color: var(--electron-light);
	margin-top: 20px;
	color: #b6b6b6;
}

.nt-is-wp-link-pages {
	/* padding-bottom: 50px; */
}

.single .page-links,
.page .page-links {
	position: relative;
	border-width: 1px;
	display: table;
	padding: 10px 0px;
	margin-top: 40px;
}

.page-links span span {
	margin-right: 0px;
}

.page-links a {
	margin-right: 2px;
	display: inline-block;
	font-size: 14px;
	color: var(--electron-primary);
	text-align: center;
	text-decoration: none;
}

.single .page-links a,
.page .page-links a,
.single .page-links span,
.page .page-links span {
	margin-right: 8px !important;
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--electron-dark);
	font-weight: 500;
}

.page-links-title {
	margin-right: 5px;
	display: inline-block;
	font-size: 14px;
	text-align: center;
	font-weight: 500;
	color: var(--electron-primary);
}

.page-links .current {
	margin-right: 0px;
	display: inline-block;
	font-size: 14px;
	color: var(--electron-dark-soft) !important;
}

/* 6. Post Content Area */
.nt-page-template-content.nt-electron-content:after {
	clear: both;
	content: "";
	display: table;
	table-layout: fixed;
}

.electron-post-content-wrapper:after {
	clear: both;
	content: "";
	display: table;
	table-layout: fixed;
}

.post .nt-electron-content li {
	list-style: inherit !important;
	line-height: 30px;
}

.nt-electron-content .gallery-item img {
	margin-bottom: 15px;
}

.nt-electron-content .gallery-caption {
	margin-left: 0;
}

.nt-electron-content p iframe {
	max-width: 100%;
}

.nt-electron-content p {
	margin: 0 0 20px;
}

.nt-electron-content p:last-child {
	margin-bottom: 0;
}



/* single post page navigation  */
.nt-electron-content .pagination {
	margin-top: 50px;
	display: flex;
	align-items: center;
	padding: 35px 0px;
	border-radius: 0;
	align-content: center;
	justify-content: space-between;
	background: none;
	border: 1px solid;
	border-width: 1px 0;
	border-color: var(--electron-gray);
}

.nt-electron-content .pagination a {
	color: var(--electron-dark);
	font-weight: 600;
	width: 33.3333%;
	flex: 0 0 33.3333%;
}

.nt-electron-content .pagination a.icon {
	text-align: center;
}

.nt-electron-content .pagination a.icon+a {
	text-align: right;
}

/* others  */


.nsl-button-label-container b {
	font-weight: 600;
	color: var(--electron-light);
}

/* responsive options

	1200px
	991px
	768px
	480px

*/
@media (max-width: 991px) {
	footer .widget {
		margin-bottom: 40px;
	}

	footer .widget-title {
		margin-bottom: 15px;
	}
}

@media (max-width: 768px) {
	#nt-sidebar #searchform {
		position: relative;
		max-height: 50px;
		margin-top: 90px;
	}
}

@media (max-width: 480px) {
	.avatar-class {
		float: none;
		margin-right: 30px;
		margin-bottom: 15px;
		display: block;
	}

	.comment-details,
	.comments ul li .commentlist {
		margin-left: 0;
	}

	.pager li>a,
	.pager li>span {
		float: none;
		width: 100%;
	}

	.comment-meta {
		margin-bottom: 15px;
	}

}

.blog-medium-container iframe {
	max-width: 100%;
	height: auto;
	min-height: 170px;
}

.single .blog-post-body ul {
	text-align: left;
}

.widget-list-span {
	position: absolute;
	font-size: 14px;
	width: 25px;
	right: 0;
	top: -4px;
	left: 95%;
	padding: 0;
	text-align: center;
	color: var(--electron-dark-soft);
	line-height: 2;
}

/* Inner pages hero */
.container-author-box,
.nt-single-post-related,
.electron-single-post-navigation {
	margin-top: 60px;
}


/*------------------------------------------------------------------

  1. Tags
  2. Sidebar
  3. Post formats
  4. Text formats
  5. Section
  6. Pager - Pagination
  7. Buttons
  8. Comment - Form
  9. Spaces - Heights
  10. Colors
  11. Page layouts

-------------------------------------------------------------------*/

/* 2. Sidebar */
.nt-sidebar .nt-sidebar-inner-widget:last-child {
	margin-bottom: 0 !important;
}

.nt-sidebar-type-2 .nt-sidebar-inner-widget {
	padding: 35px;
	border-width: 5px 1px 1px 1px;
	border-style: solid;
	margin-bottom: 50px;
	border-color: var(--electron-dark);
	border-top-color: var(--electron-dark);
}

.nt-sidebar-inner-widget a {
	text-decoration: none;
	position: relative;
}

.nt-sidebar-inner-widget ul.children li a:before,
.nt-sidebar-inner-widget ul.sub-menu li a:before {
	content: "\2022";
	font-weight: bold;
	display: inline-block;
	width: 18px;
	margin-left: -15px;
	position: absolute;
	top: 1px;
	color: var(--electron-dark);
}

.nt-sidebar-inner-widget p {
	margin-bottom: 10px;
}

.nt-sidebar-inner-widget p:last-child {
	margin-bottom: 0;
}

.nt-sidebar-inner-widget-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.widget_block .wp-block-group__inner-container h1,
.widget_block .wp-block-group__inner-container h2,
.widget_block .wp-block-group__inner-container h3,
.widget_block .wp-block-group__inner-container h4,
.widget_block .wp-block-group__inner-container h5,
.widget_block .wp-block-group__inner-container h6,
.nt-sidebar-inner-widget-title h1,
.nt-sidebar-inner-widget-title h2,
.nt-sidebar-inner-widget-title h3,
.nt-sidebar-inner-widget-title h4,
.nt-sidebar-inner-widget-title h5,
.nt-sidebar-inner-widget-title h6 {
	font-size: 18px;
}

span.nt-sidebar-widget-toggle {
	width: 25px;
	height: 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background-color: var(--electron-bg-soft);
	border-radius: 30px;
	letter-spacing: -1px;
}

span.nt-sidebar-widget-toggle.active:after {
	content: '';
	position: absolute;
	height: 8px;
	width: 2px;
	background-color: var(--electron-dark);
}

span.nt-sidebar-widget-toggle:before {
	content: '';
	width: 8px;
	height: 2px;
	background-color: var(--electron-dark);
}

.nt-sidebar-inner-widget.electron-widget-hide .nt-sidebar-inner-widget-title {
	margin: 0 !important;
}

.nt-sidebar-inner-widget ol li, .nt-sidebar-inner-widget ul li {
    margin: 0px;
    font-size: 13px;
    position: relative;
    line-height: 1.3;
    font-weight: 400;
}

.nt-sidebar-inner-widget ol li:not(:first-child),
.nt-sidebar-inner-widget ul li:not(:first-child) {
	margin-top: 10px;
}

.nt-sidebar-inner-widget ol li:last-child,
.nt-sidebar-inner-widget ul li:last-child {
	margin-bottom: 0px;
	position: relative;
}

.nt-sidebar-inner-widget ol,
.nt-sidebar-inner-widget ul {
	margin: 0;
	padding: 0;
	text-transform: capitalize;
	list-style-type: none;
}

.nt-sidebar-inner-widget .children {
	list-style: none;
}

.nt-sidebar-inner-search-form {
	position: relative;
	width: 100%;
}

.nt-sidebar-inner-search-field {
	width: 100%;
	height: 45px;
	line-height: 45px;
	padding: 8px 40px 8px 0;
	background-color: #f7f7f700;
	border: 1px solid var(--electron-dark);
	padding-left: 10px;
}

.nt-sidebar-inner-nav ul li {
	margin-bottom: 20px;
}

.nt-sidebar-inner-nav ul li:last-child {
	margin-bottom: 0;
}

.nt-sidebar-inner-recentposts ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.nt-sidebar-inner-recentposts ul li {
	margin-bottom: 30px;
	font-size: 13px;
}

.nt-sidebar-inner-recentposts ul li:last-child {
	margin-bottom: 0;
}

.nt-sidebar-inner-recentcomments ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.nt-sidebar-inner-recentcomments ul li {
	margin-bottom: 30px;
	font-size: 13px;
}

.nt-sidebar-inner-recentcomments ul li:last-child {
	margin-bottom: 0;
}

.nt-sidebar-inner-tags ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.nt-sidebar-inner-tags ul:before, .nt-sidebar-inner-tags ul:after {
	content: "";
	display: table;
}

.nt-sidebar-inner-tags ul:after {
	clear: both;
}

.nt-sidebar-inner-tags ul li {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.nt-sidebar-inner-tags ul li a {
	font-size: 12px;
}

.nt-sidebar-inner-widget ol ol,
.nt-sidebar-inner-widget ul ul {
	padding: 0px 0 0 0px;
	margin: 10px 0px 0px 15px;
	list-style: none;
	color: var(--electron-dark);
}

/* html table */
/* Default Table Style */
.nt-page-default table.table.table-striped {
	background-color: white;
	border: 1px solid var(--electron-border);
	border-collapse: collapse;
	margin-bottom: 30px;
}

.nt-page-default table.table.table-striped tbody th,
.nt-page-default table.table.table-striped thead th,
.nt-page-default table.table.table-striped tfoot th {
	color: var(--electron-gray-dark);
}

.nt-page-default table.table.table-striped caption {
	padding: 1em;
}

.nt-page-default table.table.table-striped th,
.nt-page-default table.table.table-striped td {
	padding: 10px;
	border: 1px solid var(--electron-border);
	text-align: center;
}

.nt-electron-content table.table.table-striped {
	background-color: var(--electron-light);
	border: 1px solid var(--electron-border);
	border-collapse: collapse;
	margin-bottom: 30px;
}

.nt-electron-content table.table.table-striped tbody th,
.nt-electron-content table.table.table-striped thead th,
.nt-electron-content table.table.table-striped tfoot th {
	color: var(--electron-gray-dark);
}

.nt-electron-content table.table.table-striped caption {
	padding: 1em;
}

.nt-electron-content table.table.table-striped th,
.nt-electron-content table.table.table-striped td {
	padding: 15px;
	border: 1px solid var(--electron-border);
	text-align: left;
}

#nt-sidebar table {
	margin-bottom: 0px;
	font-size: 14px;
	width: 100%;
}

#nt-sidebar caption {
	background-color: var(--electron-dark);
	padding: 10px;
	text-align: center;
	color: var(--electron-light);
	margin-bottom: 15px;
}

/* 3. Post formats */
.nt-blog-sticky {
	display: none;
	position: absolute;
	top: 0;
	left: -25px;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-size: 12px;
	color: #ffffff;
	background-color: var(--electron-dark-soft);
}

.nt-is-sticky {
	position: absolute;
	right: 0;
	top: 0;
	background-color: var(--electron-dark-soft);
	color: var(--electron-light);
	padding: 5px 15px;
	font-size: 13px;
}

/* 6. Pager */
/* pagination */
.nt-pagination {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 40px;
}

.nt-pagination-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 0;
	margin-bottom: -10px;
	list-style-type: none;
}

.nt-pagination .nt-pagination-item {
	display: inline-block;
	margin-bottom: 10px;
	border: 0;
}

.nt-pagination li+li {
	margin-left: 10px;
}

.nt-pagination-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	color: var(--electron-dark);
	background-color: var(--electron-gray-soft);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 50px;
	border-radius: 4px;
}

.nt-pagination-link i {
	font-size: 10px;
}

.nt-pagination .nt-pagination-item.active .nt-pagination-link,
.nt-pagination-link:hover {
	color: var(--electron-light);
	background-color: var(--electron-dark);
}

.nt-pagination-item.-is-disabled .nt-pagination-link,
.nt-pagination-link.-is-disabled {
	pointer-events: none;
	color: var(--electron-gray-dark);
}

/* 8. Comment + form */


.post-meta__item.__date-post a {
	font-size: 10px;
	text-decoration: unset;
	line-height: 36px;
	/* color: var(--electron-dark-soft); */
	font-weight: 500;
}



.align-left {
	margin-left: 0 !important;
}

.align-right {
	margin-right: 0 !important;
}
.attachment-.size-.wp-post-image {
    border: 1px solid #eee;
}
.align-center {
	margin-left: auto !important;
	margin-right: auto !important;
}

/*margin-top*/
.nt-electron-content .mt-0,
.mt-0 {
	margin-top: 0px !important;
}

.nt-electron-content .mb-0 {
	margin-top: 0px !important;
}

.nt-electron-content .mb-40,
.mb-40 {
	margin-bottom: 40px !important;
}

/* framework-style.css end */
/* masonry posts */
#masonry-container {
	margin-bottom: 70px;
	width: 100%;
}

@media (max-width: 1199px) {
	#masonry-container .masonry-item {
		width: 100%;
	}
}

.lazy {
	display: block;
}

iframe {
	max-width: 100%;
}


td#next a {
	float: right;
	padding: 0;
}

ul.nt-post-category-links {
	text-transform: capitalize;
	font-size: 15px;
	line-height: 30px;
}

.nt-single-no-thumbnial .nt-electron-inner-container.section.blog-detail {
	padding: 0;
}
.electron-blog-post-details .nt-electron-content {
    max-width: 767px;
    margin: 0 auto;
}
/* Gutenberg updates */
.wp-block-cover p.wp-block-cover-text, .wp-block-cover p.wp-block-cover-text strong {
	color: var(--electron-light);
}

.wp-block-button {
	margin-bottom: 15px;
}

.wp-block-gallery.nt-electron-content-list {
	padding: 0px !important;
	margin: 0 0 30px !important;
}

.wp-block-gallery.alignleft.columns-2.is-cropped.nt-electron-content-list {
	margin-right: 15px !important;
}

.wp-block-quote.is-large, .wp-block-quote.is-style-large {
	margin: 30px 0 32px 45px;
	padding: 0 1em;
	padding-left: 100px !important;
}

.wp-block-archives.wp-block-archives-dropdown .nice-select {
	float: none;
	max-width: 250px;
}

.wp-block-columns.alignwide.has-3-columns blockquote {
	margin: 0 auto !important;
}

.nt-electron-content .wp-block-archives.wp-block-archives-list,
.nt-electron-content .wp-block-archives.wp-block-archives-dropdown,
.nt-electron-content .wp-block-categories.wp-block-categories-list,
.nt-electron-content .wp-block-latest-comments.has-avatars.has-dates.has-excerpts,
.nt-electron-content .wp-block-latest-comments,
.nt-electron-content .wp-block-latest-posts.wp-block-latest-posts__list,
.nt-electron-content .wp-block-latest-posts.is-grid,
.nt-electron-content ul.wp-block-archives-list.wp-block-archives.nt-electron-content-list,
.nt-electron-content .nt-electron-content .wp-block-calendar,
.nt-electron-content .wp-block-categories-dropdown.wp-block-categories {
	margin-bottom: 30px !important;
	position: relative;
}

.wp-block-media-text {
	margin-bottom: 30px;
}

.nt-electron-content .wp-block-archives.wp-block-archives-dropdown .nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
}

.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
	margin: 0 5px 5px 0 !important;
}

.wp-block-embed {
	margin: 0 0 2em;
	margin-bottom: 2em;
}

ul.wp-block-latest-posts.wp-block-latest-posts__list.has-dates li {
	margin-bottom: 20px;
}

ul.wp-block-categories.wp-block-categories-list li,
ul.wp-block-archives.wp-block-archives-list li {
	margin-bottom: 10px;
	position: relative;
}

.wp-block-gallery {
	padding: 0 !important;
	margin: 10px 5px 30px 0px !important;
}

.wp-block-latest-comments {
	padding: 0;
}

.wp-block-image {
	margin-bottom: 2em;
}

.wp-block-cover {
	margin: 0 25px 25px 0;
}

.nt-electron-content .wp-block-latest-posts.wp-block-latest-posts__list {
	padding-left: 0 !important;
	margin: 0 0 20px 0 !important;
}

.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
	margin: 0 5px 5px 0 !important;
}

img.rss-widget-icon {
	margin: -5px 0 0 0;
}

.wp-block-button {
	margin-bottom: 15px;
}

.wp-block-button.is-style-squared a {
	border-radius: 0;
}

.wp-block-quote.is-large, .wp-block-quote.is-style-large {
	margin: 0 0 16px;
	padding: 60px 15%;
}

.wp-block-cover, .wp-block-cover-image {
	height: auto;
}

/* Gutenberg widget area */
#nt-sidebar .wp-block-search__inside-wrapper {
	display: flex;
	flex: auto;
	flex-wrap: nowrap;
	max-width: 100%;
}

#nt-sidebar .wp-block-search .wp-block-search__label {
	display: none;
}

#nt-sidebar .wp-block-search .wp-block-search__input {
	flex-grow: 1;
	min-width: 3em;
	border: 1px solid var(--electron-border);
}

#nt-sidebar .wp-block-search .wp-block-search__button {
	margin: 0;
}

.electron-post-content-wrapper .electron-last-child {
	margin-bottom: 0 !important;
}

table.table.table-striped {
	width: 100%;
}

ul.wp-block-categories.wp-block-categories-list .children {
	margin: 0;
	padding: 0 0 0 10px;
}

.wp-block-latest-comments__comment {
	font-size: inherit;
	line-height: 1.1;
	list-style: none;
	margin-bottom: 1em;
}

/* theme default footer */
.electron-default-copyright {
	background-color: var(--electron-dark);
    color: var(--electron-gray);
	padding: 20px;
	bottom: 0;
	width: 100%;
	min-height: 68px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.electron-default-copyright a {
	color: var(--electron-light);
}

.electron-default-copyright a:hover {
	color: var(--electron-light);
}

.electron-post-content-wrapper .form_password .form_password_input {
	padding: 12px 25px;
}

.form_password button {
	border-radius: 0;
	background-color: var(--electron-dark);
	border: 0;
	outline: none;
	min-width: 55px;
}

.form_password button span {
	color: var(--electron-light);
}

.electron-post-content-wrapper .form_password {
	display: flex;
	margin: 30px 0 40px 0 !important;
}

ul.blocks-gallery-grid.nt-electron-content-list {
	padding: 0 !important;
	margin: 0 10px 15px 0 !important;
}

ul.blocks-gallery-grid.nt-electron-content-list li {
	padding: 0 !important;
	margin: 0 5px 5px 0 !important;
}

ul.wp-block-latest-posts__list.is-grid.columns-3.wp-block-latest-posts.nt-electron-content-list,
form.wp-block-search__button-outside.wp-block-search__text-button.wp-block-search {
	padding: 0 !important;
	margin: 0 0 20px 0 !important;
}

.wp-block-tag-cloud a {
	display: inline-block;
	margin-right: -1px;
	font-size: 12px !important;
	font-weight: 500;
	text-transform: uppercase;
	border: 1px solid var(--electron-border);
	padding: 0 8px;
}

.wp-block-search__button {
	margin-left: -1px;
	word-break: normal;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	outline: none;
	border: 0;
	background-color: var(--electron-dark);
	padding: 0 20px;
	color: var(--electron-light);
	border-radius: 0;
}

ul.product_list_widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 1;
}
.nt-sidebar-inner-widget ul.product_list_widget li:not(:first-child) {
    margin-top: 0px;
}
.product_list_widget .electron-widget-product-list-inner {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: flex-start;
}

.product_list_widget .electron-widget-product-list-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.product_list_widget .product-title {
    font-weight: 500;
}
.product_list_widget .electron-widget-product-list-inner img {
    margin-top: 5px;
}


@media (max-width: 576px) {
	.ninetheme-before-loop.ninetheme-inline-two-block>div {
		flex: 100%;
		margin-top: 0px;
		flex-direction: row;
		justify-content: space-between;
	}

	.ninetheme-before-loop.ninetheme-shop-filter-top-area:not(.ninetheme-bg-none) {
		padding: 10px 10px;
		flex-wrap: wrap;
	}

	.ninetheme-before-loop .ninetheme-block-right>div+div {
		margin-left: 0px;
		padding-left: 0;
		margin-top: 5px;
	}

	.ninetheme-popup-search-panel.panel-position-right {
		right: 0;
		top: 0;
		max-width: 100%;
	}
}


/*
02 Theme Nice Select Start
/////////////////////////////////*/
.nice-select {
	-webkit-tap-highlight-color: transparent;
	border: solid 1px var(--electron-gray);
	color: var(--electron-gray-dark);
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	font-family: inherit;
	font-weight: normal;
	height: 45px;
	line-height: 43px;
	outline: none;
	padding-left: 18px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto;
}

.nice-select:after {
	border-bottom: 2px solid;
	border-right: 2px solid;
	border-color: var(--electron-dark-soft);
	content: '';
	display: block;
	height: 5px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 5px;
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.nice-select.open .list {
	opacity: 1;
	border-radius: 4px;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.nice-select.disabled {
	border-color: var(--electron-gray);
	color: var(--electron-dark-soft);
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: var(--electron-gray);
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small:after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .list {
	background-color: var(--electron-light);
	border-radius: 0;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
	width: 100%;
	max-width: 650px;
	min-width: max-content;
	max-height: 200px;
	overflow: auto;
	padding: 0 0 10px;
	margin: 5px 0 0 0 !important;
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 30px;
	list-style: none;
	min-height: 30px;
	font-size: 12px;
	outline: none;
	padding-left: 18px;
	padding-right: 15px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	overflow: auto;
	margin: 0 !important;
}

.nice-select .option:hover,
.nice-select .option.focus {
	color: var(--electron-light);
	background-color: var(--electron-primary);
}

.nice-select .option.selected {
	color: var(--electron-light);
	background-color: var(--electron-dark);
}

.nice-select .option.selected {
	font-weight: bold;
	font-weight: 500;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: var(--electron-dark-soft);
	cursor: default;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

.nice-select.custom-select span.current {
	height: 100%;
	margin: 0;
	display: flex;
	align-items: center;
}

.nice-select.open .list {
	border-radius: 0;
	margin: 0 !important;
}

.nice-select span.current {
	font-weight: 400;
}
.last-child .nice-select .list {
	left: auto;
	right: 0;
}
@media(max-width:576px) {
	.nice-select .list {
		left: auto;
		right: 0;
	}
}
/*
02 Nice Select End
/////////////////////////////////*//* theme side-panel */
.admin-bar .electron-side-panel {
    top: 32px;
    height: 100%;
}
@media(max-width:782px) {
	body.admin-bar {
		padding-top: 46px;
	}

	.admin-bar .electron-side-panel {
		top: 46px;
		height: 100%;
	}

	.admin-bar .electron-popup-search-panel {
		top: 46px;
	}
}

@media(max-width:600px) {
	.admin-bar.scroll-start .electron-header-mobile-top,
	.admin-bar .electron-popup-search-panel {
		top: 0px;
	}
}

.electron-side-panel {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 420px;
	max-width: 100%;
	z-index: 105;
	padding: 15px 20px 50px 20px;
	opacity: 1;
	background:var(--electron-light);
	border-left: 1px solid var(--electron-border);
	will-change: transform;
	-webkit-transition: opacity 0.25s ease, ease;
	transition: opacity 0.25s ease, transform 0.25s ease;
    -webkit-box-shadow: 0 15px 30px -4px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 15px 30px -4px rgba(0,0,0,.09);
    box-shadow: 0 15px 30px -4px rgb(0 0 0 / 17%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.electron-side-panel.active {
	-moz-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	opacity: 1;
}

.electron-side-panel .panel-close {
	top: 20px;
	right: 20px;
}

.panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 60px;
	padding-bottom: 0;
	border-bottom: 1px solid var(--electron-gray);
}

.panel-header-title {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--electron-dark);
	text-decoration: none;
}

.panel-content {
	position: relative;
	margin-top: 40px;
	height: 100%;
}

/* theme side-panel */


/* theme cart count */
.electron-header-mobile-content .electron-cart-goal-wrapper,
.electron-side-panel .electron-cart-goal-wrapper {
    margin: 20px 0 0;
}
.electron-header-mobile-content .electron-cart-goal-wrapper {
    margin-bottom: 50px;
}
.electron-header-mobile-content  .electron-cart-goal-text,
.electron-side-panel .electron-cart-goal-text {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--electron-dark);
    text-transform: uppercase;
    font-size: 12px;
}
.woocommerce-mini-cart {
	position: relative;
}
.electron-wc-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--electron-primary);
    color: var(--electron-light);
    font-size: 8px;
    border-radius: 20px;
    position: absolute;
    right: -6px;
    top: -7px;
    line-height: 1;
}

.electron-cart-total {
	font-size: 12px;
	color: var(--electron-dark);
	font-weight: 500;
}


/* electron items content panel */
.electron-panel-content-items {
	position: relative;
}

.electron-content-item {
	width: 100%;
	margin-bottom: 15px;
	position: relative;
}

.electron-content-item-inner {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
}

.electron-content-item .electron-content-link {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	color: var(--electron-dark);
}

.electron-link img {
	max-width: 80px;
	max-height: 80px;
}

.electron-content-item .electron-content-info {
	display: flex;
	flex-direction: column;
	margin: 5px 20px 0 15px;
	flex: 1;
	justify-content: space-between;
}

.electron-content-item .electron-content-info .electron-btn-small {
	color: #252525;
}

.electron-content-item .electron-content-info .added_to_cart {
	display: none;
}

.electron-content-item .electron-content-del-icon {
	width: 22px;
	height: 22px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	cursor: pointer;
}

.electron-content-item .electron-content-del-icon:hover svg {
	fill: var(--electron-dark);
}

.electron-content-info .electron-price {
	font-weight: 400;
	color: var(--electron-dark-soft);
}

.electron-content-info .electron-price ins {
	text-decoration: none;
}

.electron-content-info .product-stock {
	color: var(--electron-primary);
}

.electron-content-info .product-name {
	margin-bottom: 0px;
}

.electron-content-info .electron-btn {
	margin-top: 10px;
}

.electron-panel-content-notice .product-name {
	color: var(--electron-primary);
}

.electron-empty-content svg {
	max-width: 55px;
	max-height: 55px;
	float: left;
	margin-right: 10px;
	fill: var(--electron-gray);
	opacity: 0.5;
	margin-bottom: 10px;
}

.compare-area.has-product .electron-empty-content {
	display: none;
}

.electron-panel-content-notice.electron-empty-content a {
	text-decoration: underline;
}

/* cart-area */
.minicart-panel .electron-scrollbar {
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.cart-area.action-content.active {
    overflow-y: hidden;
}
.cart-area .mini-cart-item {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    gap: 10px;
}

.cart-item-details {
	display: flex;
	flex: 1;
    gap: 15px;
}

.cart-area .product-link>span {
    display: block;
    line-height: 1.4;
    margin-bottom: 5px;
}

.cart-area .cart-item-title {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 15px;
    text-transform: inherit;
}

.cart-area .cart-item-title .type-variable  {
    font-size: 11px;
    color: var(--electron-text);
}

dl.variation {
    display: flex;
    gap: 8px;
    text-transform: uppercase;
    font-size: 9px;
    color: var(--electron-text);
    max-width: 100%;
    text-wrap: nowrap;
    overflow: auto;
}

.variation dd, .variation dt { margin-bottom: 5px !important; }

.mini-panel .cart-item-title .cart-name .variation {
	display: flex;
	gap: 8px;
	text-transform: uppercase;
	font-size: 10px;
}

.variation dd, .variation dt {
	margin-bottom: 5px !important;
}

.cart-area .del-icon .variation {
	display: none;
}

.cart-item-title .cart-name, .electron-content-info .product-name {
	color: var(--electron-dark);
	font-size: 13px;
	font-weight: 500;
}

.cart-area .cart-quantity-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 5px;
}

.cart-area .quantity,
.woocommerce .cart-area .quantity {
    margin: 0;
    box-shadow: none;
}

.quantity-button.disabled {
    pointer-events: none;
}

.cart-area .quantity input,
.woocommerce .cart-area .quantity input,
.woocommerce .cart-area .quantity .qty {
	max-height: 26px;
}

.cart-area .quantity-button.plus,
.cart-area .quantity-button.minus {
	color: var(--electron-text);
	background: var(--electron-light);
	font-weight: 400;
}

.cart-area .quantity-button.plus:hover,
.cart-area .quantity-button.minus:hover {
	background: var(--electron-gray);
}

.cart-area .quantity {
    background: var(--electron-light);
    max-width: 100px;
}

.cart-area .electron-price,
.cart-item-title .electron-price .cart-quantity {
	/* color: var(--electron-dark-soft); */
}

.cart-item-title .cart-name,
.electron-content-info .product-name {
	color: var(--electron-dark);
	font-size: 13px;
	font-weight: 500;
}

.cart-item-title .electron-price span,
.electron-content-info .electron-price {
	font-size: 13px;
	font-weight: 500;
}

.cart-item-title .electron-price {
	font-size: 14px;
	font-weight: 400;
}

.cart-item-title .electron-price .cart-quantity {
	font-size: 10px;
	font-weight: 400;
	color: var(--electron-text);
}

.cart-area .del-icon {
	width: 22px;
	height: 22px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
}

.cart-area .del-icon a svg,
.wishlist-area .electron-svg-icon.mini-icon,
.compare-area .electron-svg-icon.mini-icon {
	fill: var(--electron-gray-dark);
	color: var(--electron-gray-dark);
}

.cart-area .del-icon a {
	color: var(--electron-dark);
	display: inline-flex;
}

.cart-area .del-icon:hover svg {
	fill: var(--electron-dark);
}

.cart-area .del-icon:hover a {
	color:var(--electron-light);
}

.cart-area .cart-total {
	margin-bottom: 22px;
}

.cart-area .cart-total-price {
	border-top: 1px solid var(--electron-gray);
	overflow: hidden;
	padding-top: 15px;
	text-transform: uppercase;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--electron-dark);
}

.cart-empty-content .minicart-title {
	display: none;
}

.electron-cart-empty-wrapper {
	text-align: center;
}

.electron-cart-empty-wrapper .electron-btn-medium {
	max-width: 170px;
	margin: 0 auto;
}

.electron-cart-empty-icon,
.cart-area svg.shopBag {
	max-width: 100px;
	max-height: 100px;
	fill: var(--electron-gray);
	opacity: 0.5;
	margin-left: -14px;
	margin-bottom: 10px;
}

.cart-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.cart-bottom-btn .electron-btn {
	flex: auto;
}

.quantity.hidden {
	display: none;
	opacity: 0;
	visibility: hidden;
}

.electron-not-found-info-wrapper svg.shopBag,
.cart-empty-content svg.shopBag {
	max-width: 100px;
	max-height: 100px;
	fill: var(--electron-gray);
	opacity: 0.5;
}
.electron-header-cart-details.has-product:not(.has-clear-btn) {
    margin-bottom: 20px;
}
.electron-header-cart-details.has-product {
    position: relative;
}
.electron-header-cart-details.has-clear-btn {
    position: relative;
    padding-bottom: 30px;
    overflow: hidden;
}
.electron_clear_cart_button {
    position: absolute;
    width: auto;
    bottom: -40px;
    right: 20px;
    text-align: center;
    opacity: 0;
    background-color: var(--electron-dark);
    color: var(--electron-light);
    padding: 5px 10px;
    line-height: 1;
    cursor: pointer;
    transition: bottom .2s ease, opacity .2s ease;
}
.minicart-panel:hover .electron_clear_cart_button {
    bottom: 0;
    opacity: 1;
}
.minicart-panel .electron_update_cart {
    padding: 5px 10px;
    background-color: var(--electron-primary);
    color: var(--electron-light);
    font-size: 12px;
    line-height: 1;
    display: none;
    cursor: pointer;
}
.minicart-panel .cart-quantity-wrapper.active .electron_update_cart{
    display: inline-block;
}
.minicart-panel .cart-total-price + .cart-total-price {
    border-top: 0;
}
.electron-minicart.loading {
    pointer-events: none;
}
.electron-side-panel[data-cart-count="0"] .electron-viewed-offer-time{
    display: none;
}
/* cart-area */


/* mini-panel */
.mini-panel {
    position: absolute;
    min-width: 305px;
    top: calc(100% + 15px);
    right: -20px;
    background-color: var(--electron-light);
    border: 1px solid var(--electron-border);
    border-radius: 5px;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 15px 30px -4px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 15px 30px -4px rgba(0,0,0,.09);
    box-shadow: -4px -2px 30px 2px rgb(0 0 0 / 17%);
    transform: translateY(15px) translateZ(0);
    transition: opacity 0.4s cubic-bezier(.19,1,.22,1),visibility 0.4s cubic-bezier(.19,1,.22,1),transform 0.4s cubic-bezier(.19,1,.22,1);
    pointer-events: none;
}

.account-action .mini-panel,
.header-notices .mini-panel{
    padding: 20px;
}

.header-notices .mini-panel .inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.minicart-panel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 30px;
}
.top-action-btn:hover .mini-panel,
.top-action-btn.active .mini-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: unset;
}
.top-action-btn.inactive .mini-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.mini-panel:after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}
.mini-panel:before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--electron-light) transparent;
}
.mini-panel .electron-scrollbar {
    max-height: 225px;
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: relative;
    margin-right: -10px;
}
.mini-panel .electron-scrollbar.spinner.loading:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.8;
    z-index: 1;
}
.mini-panel .electron-scrollbar.spinner.loading:after {
    z-index: 2;
    width: 30px;
    height: 30px;
    border: 1px solid var(--electron-gray);
    border-left-color: var(--electron-primary);
}
.mini-panel .minicart-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-right: 20px;
    position: relative;
}

.mini-panel .minicart-item + .minicart-item{
    padding-top: 10px;
    margin-top: 15px;
    border-top: 1px dashed var(--electron-border);
}

.mini-panel .minicart-item img {
    max-width: 60px;
}
.mini-panel .header-cart-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--electron-border);
}
.mini-panel .cart-total-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-panel .cart-total-item,
.mini-panel .cart-total-details .shipping{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    line-height: 1;
    font-weight: 500;
    flex: 1;
    gap: 10px;
}
.mini-panel ul#shipping_method li {
    display: flex;
    align-items: center;
    line-height: 1;
    margin-bottom: 0;
}
.cart-total-item.cart-discount .name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 3px 5px;
    border: 1px solid var(--electron-green);
    border-radius: 5px;
    background-color: var(--electron-success-bg);
    color: var(--electron-green);
    text-transform: uppercase;
    line-height: 1;
    font-size: 9px;
}
.cart-total-item .electron-remove-coupon {
    gap: 10px;
    display: flex;
    align-items: center;
}
.cart-total-item .electron-remove-coupon:hover .electron-svg-icon {
    fill: var(--electron-red);
}
.mini-panel .cart-total {
    padding-top: 10px;
    border-top: 1px dashed var(--electron-border);
}
.mini-panel span[data-hover]:after {
    width: 100%;
}
.mini-panel .cart-empty-content {
    text-align: center;
}
.mini-panel .cart-empty-content svg.shopBag {
    max-width: 80px;
    max-height: 80px;
}
.mini-panel .cart-item-title .cart-name {
    font-size: 13px;
    font-weight: 500;
    display: block;
}
.mini-panel .del-icon {
    position: absolute;
    right: 0;
}
.mini-panel .coupons-wrapper,
.mini-panel .shipping-calculator {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: var(--electron-light);
    padding: 20px;
    border-radius: 5px;
    max-height: 100%;
    height: 100%;
    min-height: 375px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(.19,1,.22,1),visibility 0.4s cubic-bezier(.19,1,.22,1),top 0.4s cubic-bezier(.19,1,.22,1);
    align-items: flex-end;
}
.mini-panel .coupons-wrapper .electron-scrollbar {
    gap: 10px;
    max-height: 100%;
    padding-right: 10px;
}
.mini-panel .coupons-wrapper.active,
.mini-panel .shipping-calculator.active {
    top: 0;
    opacity: 1;
    visibility: visible;
}
.mini-panel .shipping-calculator a.electron-shipping-calculator-button {
    display: none;
}
.mini-panel .shipping-calculator input,
.mini-panel .shipping-calculator select {
    width: 100%;
}
.mini-panel .shipping-calculator-form {
    display: flex!important;
    gap: 10px;
    flex-direction: column;
}
.mini-panel .shipping-calculator-form .form-row {
    margin: 0;
}
.mini-panel .shipping-calculator button.electron-btn {
    width: 100%;
    padding: 10px 20px;
}
.cart-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3px;
    margin-top: 10px;
}

.action {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--electron-border);
    border-radius: 5px;
    flex-direction: row-reverse;
    cursor: pointer;
}

.electron-header-sticky:not(.sticky-start) .mini-panel {
    display: none;
}

.mini-panel .inner {
    display: flex;
    width: 100%;
    gap: 1px;
}
.mini-panel .cart-bottom-btn {
    gap: 10px;
}
.mini-panel .account-area {
    width: 100%;
    display: flex;
    gap: 1px;
    flex-wrap: wrap;
}
.mini-panel .inner .account-area>a {
    flex: 1;
}
.mini-panel .panel-title {
    font-size: 12px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--electron-border);
    flex: 0 0 100%;
    text-transform: uppercase;
}
.mini-panel .navigation {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
}

.coupons-wrapper .panel-close {
    right: 15px;
    top: 10px;
}

@media(max-width:767px) {
    .mini-panel{
        right: -45px;
    }
    .mini-panel:before {
        right: 45px;
    }
}.electron-empty,
.electron-terms + select:not(.electron-select),
.electron-term.electron-disabled:after,
.electron-term.electron-disabled:before {
    display: none !important;
}
.electron-term.electron-disabled:before {
    pointer-events: none;
}

.electron-term.electron-disabled {
    opacity: .4;
    cursor: default;
}

.electron-terms {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.electron-variations {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.electron-term {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    position: relative;
    min-width: 35px;
    min-height: 23px;
    border-radius: 0;
    font-size: 11px;
    line-height: 1.4;
    height: 0;
}

.electron-term.electron-selected:before {
    content: 'âœ“';
    min-height: 18px;
    min-width: 18px;
    border-radius: 100%;
    background-color: var(--electron-success);
    color: var(--electron-light);
    text-align: center;
    font-size: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -12px;
}
.electron-summary-item .electron-term.electron-selected {
    box-shadow: 0px 0px 0px 2px red;
}
.hide-icon .electron-term.electron-selected:before {
    content: none;
}

.terms-outline .electron-term {
    padding: 0;
    border: 0;
}

.electron-type-image .electron-term {
    height: 42px;
    width: 42px;
}

.electron-type-image .electron-term img {
    width: 100%;
    height: 100%;
    display: block;
}

.electron-type-button:not(.terms-outline) .electron-term {
    color: var(--electron-light);
    background: var(--electron-primary);
}
.terms-outline .electron-term .type-button {
    color: var(--electron-light);
    background: var(--electron-blue-dark);
}
.terms-outline .type-button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-color {
    height: 100%;
    width: 100%;
    display: flex;
    border-radius: 3px;
}

.electron-product.row .electron-variations {
    position: relative;
}

.electron-variations-items .electron-small-title,
.electron-small-title {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}


.electron-product.row .electron-variations-items .label {
    margin-right: 10px;
}

.terms-radius .electron-term,
.terms-radius .type-color,
.terms-radius .type-button {
    border-radius: 4px;
}

.terms-outline .type-button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px !important;
    border-radius: 3px;
}



/* PAGINATION */
.electron-woocommerce-pagination {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
}

.electron-woocommerce-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	margin-bottom: -10px;
	padding: 0;
}

.electron-woocommerce-pagination ul.page-numbers li {
	display: inline-block;
	margin-bottom: 10px;
	border: 0;
}

.electron-woocommerce-pagination ul.page-numbers li+li {
	margin-left: 10px;
}

.electron-woocommerce-pagination ul li a,
.electron-woocommerce-pagination ul li span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	color: var(--electron-dark);
	background-color: var(--electron-gray-soft);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 50px;
	border-radius: 4px;
}

.electron-woocommerce-pagination ul li a:focus,
.electron-woocommerce-pagination ul li a:hover,
.electron-woocommerce-pagination ul li span.current {
    color: var(--electron-dark);
    background-color: var(--electron-blue-bg);
}
/* PAGINATION */


/* masonry grid shop */

@media (min-width: 992px) {
    .shop-masonry-grid .electron-products.row {
        display: grid;
        grid-template-columns: repeat(4,1fr);
    }
    .shop-masonry-grid .electron-products.row .product:not(.electron-product-type-7):nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
        width: 100%;
    }
    .shop-masonry-grid.masonry-column-3 .electron-products.row .product:not(.electron-product-type-7):nth-child(8),
    .shop-masonry-grid.masonry-column-3 .electron-products.row .product:not(.electron-product-type-7):nth-child(11),
    .shop-masonry-grid.masonry-column-3 .electron-products.row .product:not(.electron-product-type-7):nth-child(18),
    .shop-masonry-grid.masonry-column-3 .electron-products.row .product:not(.electron-product-type-7):nth-child(21),
    .shop-masonry-grid.masonry-column-3 .electron-products.row .product:not(.electron-product-type-7):nth-child(28),
    .shop-masonry-grid.masonry-column-3 .electron-products.row .product:not(.electron-product-type-7):nth-child(31),
    .shop-masonry-grid.masonry-column-3 .electron-products.row .product:not(.electron-product-type-7):nth-child(38),
    .shop-masonry-grid.masonry-column-3 .electron-products.row .product:not(.electron-product-type-7):nth-child(41) {
        grid-column: span 2;
        grid-row: span 2;
        width: 100%;
    }
    .shop-masonry-grid.masonry-column-4 .electron-products.row .product:not(.electron-product-type-7):nth-child(11),
    .shop-masonry-grid.masonry-column-4 .electron-products.row .product:not(.electron-product-type-7):nth-child(15),
    .shop-masonry-grid.masonry-column-4 .electron-products.row .product:not(.electron-product-type-7):nth-child(25),
    .shop-masonry-grid.masonry-column-4 .electron-products.row .product:not(.electron-product-type-7):nth-child(29),
    .shop-masonry-grid.masonry-column-4 .electron-products.row .product:not(.electron-product-type-7):nth-child(35),
    .shop-masonry-grid.masonry-column-4 .electron-products.row .product:not(.electron-product-type-7):nth-child(39),
    .shop-masonry-grid.masonry-column-4 .electron-products.row .product:not(.electron-product-type-7):nth-child(45),
    .shop-masonry-grid.masonry-column-4 .electron-products.row .product:not(.electron-product-type-7):nth-child(49){
        grid-column: span 2;
        grid-row: span 2;
        width: 100%;
    }
    .shop-masonry-grid.masonry-column-5 .electron-products.row .product:not(.electron-product-type-7):nth-child(1),
    .shop-masonry-grid.masonry-column-5 .electron-products.row .product:not(.electron-product-type-7):nth-child(14),
    .shop-masonry-grid.masonry-column-5 .electron-products.row .product:not(.electron-product-type-7):nth-child(19),
    .shop-masonry-grid.masonry-column-5 .electron-products.row .product:not(.electron-product-type-7):nth-child(32),
    .shop-masonry-grid.masonry-column-5 .electron-products.row .product:not(.electron-product-type-7):nth-child(37),
    .shop-masonry-grid.masonry-column-5 .electron-products.row .product:not(.electron-product-type-7):nth-child(50) {
        grid-column: span 2;
        grid-row: span 2;
        width: 100%;
    }
    .shop-masonry-grid.masonry-column-6 .electron-products.row .product:not(.electron-product-type-7):nth-child(1),
    .shop-masonry-grid.masonry-column-6 .electron-products.row .product:not(.electron-product-type-7):nth-child(17),
    .shop-masonry-grid.masonry-column-6 .electron-products.row .product:not(.electron-product-type-7):nth-child(23),
    .shop-masonry-grid.masonry-column-6 .electron-products.row .product:not(.electron-product-type-7):nth-child(39),
    .shop-masonry-grid.masonry-column-6 .electron-products.row .product:not(.electron-product-type-7):nth-child(45),
    .shop-masonry-grid.masonry-column-6 .electron-products.row .product:not(.electron-product-type-7):nth-child(61) {
        grid-column: span 2;
        grid-row: span 2;
        width: 100%;
    }
    .shop-masonry-grid .electron-products.row .product:not(.electron-product-type-7) {
        display: inline-grid;
        width: 100%;
    }
    .shop-masonry-grid .electron-products.row .product:not(.electron-product-type-7):nth-child(1) .electron-thumb-wrapper,
    .shop-masonry-grid .electron-products.row .product:not(.electron-product-type-7):nth-child(11) .electron-thumb-wrapper,
    .shop-masonry-grid .electron-products.row .product:not(.electron-product-type-7):nth-child(15) .electron-thumb-wrapper {
        padding-bottom: 114%;
    }
    .shop-masonry-grid .electron-products.row .product:not(.electron-product-type-4):nth-child(1) .electron-thumb-wrapper img,
    .shop-masonry-grid .electron-products.row .product:not(.electron-product-type-7):nth-child(11) .electron-thumb-wrapper img,
    .shop-masonry-grid .electron-products.row .product:not(.electron-product-type-7):nth-child(15) .electron-thumb-wrapper img {
        position: absolute;
        top: 0;
        left:0;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 1200px) {
    .shop-masonry-grid.masonry-column-3 .electron-products.row {
        grid-template-columns: repeat(4,1fr);
    }
    .shop-masonry-grid.masonry-column-4 .electron-products.row {
        grid-template-columns: repeat(5,1fr);
    }
    .shop-masonry-grid.masonry-column-5 .electron-products.row {
        grid-template-columns: repeat(6,1fr);
    }
    .shop-masonry-grid.masonry-column-6 .electron-products.row {
        grid-template-columns: repeat(7,1fr);
    }
}

/* shop loop filter */
.electron-products-wrapper {
	position: relative;
}

.electron-before-loop {
	margin-bottom: 30px;
}

.electron-shop-filter-area {
	display: flex;
	align-items: center;
}
.electron-shop-filter-area li.active {
    pointer-events: none;
}
.electron-open-fixed-sidebar.panel-open,
.electron-toggle-hidden-sidebar {
    border: 1px solid;
    border-color: var(--electron-primary);
    background-color: var(--electron-blue-bg);
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--electron-blue-dark);
}

.electron-filter-action {
	display: flex;
	align-items: center;
}

.electron-toggle-hidden-sidebar svg,
.electron-open-fixed-sidebar svg,
.electron-filter-action svg {
	max-width: 20px;
	max-height: 20px;
}

.electron-before-loop .electron-block-right>div,
.electron-before-loop .electron-block-left>div {
	display: inline-flex;
	align-items: center;
}

.electron-before-loop .electron-block-left>div+div,
.electron-before-loop .electron-block-right>div+div {
	margin-left: 2px;
	padding-left: 20px;
	position: relative;
}

.electron-before-loop .electron-block-left>div:not(:last-child):before,
.electron-before-loop .electron-block-right>div:not(:last-child):before {
	content: "";
	width: 1px;
	height: 91%;
	border-radius: 3px;
	position: absolute;
	right: 0px;
}

.electron-filter-action li:not(:first-child) {
	margin-left: 10px;
}

.electron-toggle-hidden-sidebar,
.electron-open-fixed-sidebar,
.electron-filter-column-select ul li svg,
.electron-shop-filter-area ul li a,
.electron-shop-filter-area li a svg {
	display: flex;
	align-items: center;
	justify-content: center;
	fill: var(--electron-gray-dark);
	color: var(--electron-gray-dark);
}

.electron-filter-column-select li.active svg,
.electron-shop-filter-area li.active a:hover svg,
.electron-shop-filter-area ul li.active a,
.electron-shop-filter-area li.active a svg {
	fill: var(--electron-dark);
	color: var(--electron-dark);
}

.shop-layout-full-width .electron-open-fixed-sidebar {
	display: none;
}

.woocommerce-order .row {
    display: flex;
    justify-content: center;
}

.woocommerce .electron-shop-filter-ordering .woocommerce-ordering {
	margin: 0px;
}

.woocommerce .electron-shop-filter-ordering select.orderby {
	border: 0;
	height: auto;
	padding-left: 0;
	line-height: 30px;
}

.electron-woo-result-count .woocommerce-result-count {
	margin: 0;
}

.electron-shop-filter-area ul {
	list-style: none;
}

.electron-shop-filter-area .nice-select.orderby {
	border: 0;
	height: auto;
	padding-left: 0;
	line-height: 30px;
}

.electron-shop-filter-top-area .electron-woo-result-count {
    margin-right: 10px;
}

@media (min-width: 992px) {
    .shop-layout-top-sidebar .electron-shop-filter-top-area .electron-open-fixed-sidebar,
    .shop-layout-right-sidebar .electron-shop-filter-top-area .electron-open-fixed-sidebar,
	.shop-layout-left-sidebar .electron-shop-filter-top-area .electron-open-fixed-sidebar,
	.shop-layout-left-sidebar .electron-header-bottom-bar .electron-before-loop .electron-block-right>.electron-open-fixed-sidebar,
    .shop-layout-left-sidebar .electron-header-bottom-bar .electron-before-loop .electron-before-loop .electron-block-left>div {
		display: none;
	}
}

@media (max-width: 768px) {
	.electron-before-loop.electron-inline-two-block {
		flex-wrap: nowrap;
	}

	.electron-shop-filter-top-area>div>.electron-filter-per-page-area,
	.electron-shop-filter-top-area>div>.electron-filter-column-select-area {
		display: none;
	}
	.electron-before-loop .electron-block-left>div+div,
    .electron-before-loop .electron-block-right>div+div {
    	padding-left: 10px;
    }
    .electron-before-loop .woocommerce-result-count {
        font-size: 10px;
    }
    .electron-woo-result-count {
        display: none !important;
    }
}

@media (max-width: 576px) {
	.electron-filter-action li:not(:last-child) {
		margin-right: 6px;
	}
}
/* shop loop filter */



/* Shop Top fast Filters */

.electron-shop-fast-filters {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    align-content: center;
}
.fast-filters-label {
    min-width: 95px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.electron-fast-filters-list {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.electron-fast-filters-list li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    position: relative;
    z-index: 9;
}
.electron-fast-filters-submenu li {
    width: 100%;
}
.electron-fast-filters-list li svg {
    margin-right: 10px;
    max-width: 17px;
    max-height: 17px;
}

.electron-fast-filters-list li span[data-color] {
    width: 12px;
    height: 12px;
    background: #000;
    position: absolute;
    right: 10px;
    border-radius: 12px;
}
.electron-fast-filters-list li span.is_white {
    border: 1px solid var(--electron-border);
}
.electron-fast-filters-list:not(.has-filter) .remove-fast-filter a {
    display: none;
}
.electron-fast-filters-list .remove-fast-filter.active a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.electron-fast-filters-list li:hover> a,
.electron-fast-filters-list .remove-fast-filter.active > a {
    color: var(--electron-primary);
    background-color: var(--electron-blue-bg);
    border-color: var(--electron-primary);
    border-radius: 5px 5px 0 0;
}
.electron-fast-filters-list li a,
.electron-has-submenu.inactive >a {
    padding: 2px 20px;
    border: 1px solid var(--electron-border);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    min-height: 35px;
    width: 100%;
    text-align: center;
}
.electron-fast-filters-list.has-filter li:not(.active) {
    display: none;
}
.electron-fast-filters-list.has-filter li.show-always {
    display: inline-flex;
}
.electron-fast-filters-list.has-filter.filters-first,
.show-always-stock-sale .electron-fast-filters-list.filters-first {
    margin-right: 20px;
}

.electron-shop-fast-filters .electron-fast-filters-list li.show-always,
.electron-shop-fast-filters .electron-fast-filters-list.has-filter li.show-after-filter,
.electron-fast-filters-list.has-filter ul.electron-fast-filters-submenu li,
.electron-fast-filters-list.has-filter li.fast-filters-label {
    display: inline-flex;
}

.electron-fast-filters-list.has-filter li:not(.remove-fast-filter).active > a,
.electron-fast-filters-list.has-filter li.active .electron-fast-filters-submenu li.active > a {
    color:var(--electron-warning);
    background-color:var(--electron-warning-bg);
    border-color:var(--electron-warning-border);
}
.electron-fast-filters-list li:not(.remove-fast-filter) .remove-filter {
    background-color: var(--electron-warning-bg);
}
.electron-fast-filters-list li:not(.remove-fast-filter) .remove-filter:before,
.electron-fast-filters-list li:not(.remove-fast-filter) .remove-filter:after {
    background-color: var(--electron-warning) !important;
}
.electron-fast-filters-submenu {
    position: absolute;
    padding: 10px;
    width: 100%;
    min-width: max-content;
    top: 100%;
    left: 0;
    background: var(--electron-light);
    border: 1px solid var(--electron-border);
    border-radius: 0 0 5px 5px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    opacity: 0;
    display: none;
    visibility: hidden;
    z-index: 1;
}
.electron-fast-filters-submenu li a {
    min-height: 30px;
}
.electron-fast-filters-submenu li a:hover {
    color: var(--electron-primary);
    background-color: var(--electron-blue-bg);
    border-color: var(--electron-primary);
    border-radius: 5px;
}
.electron-has-submenu:hover > .electron-fast-filters-submenu {
    opacity: 1;
    display: inline-flex;
    visibility: visible;
}
.electron-has-submenu.inactive > .electron-fast-filters-submenu {
    opacity: 0;
    visibility: hidden;
}
.electron-fast-filters-list .electron-fast-filters-submenu li {
    margin: 0;
}
.electron-fast-filters-list .electron-fast-filters-submenu li:not(:last-child) {
    margin-bottom: 5px;
}
.electron-widget-shop-fast-filters {
    display: flex;
    align-items: center;
}
@media(max-width:576px) {
    .electron-shop-fast-filters {
        align-items: flex-start;
        margin-bottom: 20px;
        align-content: flex-start;
        flex-direction: column;
    }
    .electron-fast-filters-list {
        margin-top: 10px;
    }
    .electron-fast-filters-list li a,
    .electron-has-submenu.inactive >a {
        padding: 2px 13px;
        font-size: 9px;
        letter-spacing: 0.3px;
        min-height: 30px;
    }
}
/* Shop Top fast Filters */


/* coupon */

.header-cart-after-buttons .coupons {
    margin-top: 15px;
}
ul.coupons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-direction: column;
    position: relative;
}
ul.coupons>li>div {
    padding: 15px;
    border: 1px dashed var(--electron-border);
    background-color: var(--electron-gray-soft);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
	cursor: pointer;
}
ul.coupons>li>div:hover,
ul.coupons>li>div.applied{
    background-color: var(--electron-success-bg);
    border-color: var(--electron-success);
    opacity: 1;
}
ul.coupons>li>div.applied {
    cursor: no-drop;
}
ul.coupons span.amount {
    font-size: 14px;
    font-weight: 500;
}
ul.coupons .discount {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
}
ul.coupons .discount .value {
    color: var(--electron-red);
}
ul.coupons .name-date {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.coupons .name {
    padding: 5px;
    border: 1px solid var(--electron-green);
    border-radius: 5px;
    background-color: var(--electron-success-bg);
    color: var(--electron-green);
    text-transform: uppercase;
    line-height: 1;
}
ul.coupons.loading:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--electron-light);
    opacity: 0.8;
}
ul.coupons.spinner.loading:after {
    width: 35px;
    height: 35px;
    border: 2px solid var(--electron-gray);
    border-left-color: var(--electron-primary);
}

/* coupon single product page style*/
.coupon {
  height: 110px;
  max-width: 250px;
  border-radius: 10px;
  overflow: hidden;
  margin: auto;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: stretch;
  position: relative;
  text-transform: uppercase;
}
.coupon .add-coupon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.coupon::before,
.coupon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.coupon::before {
  left: 0;
  background-color: var(--electron-yellow);
}

.coupon::after {
  right: 0;
  background-image: radial-gradient(
    circle at 100% 50%,
    transparent 25px,
    gold 26px
  );
}

.coupon > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon .left {
  width: 23%;
  border-right: 2px dashed rgba(0, 0, 0, 0.13);
}
.left div {
  transform: rotate(-90deg);
  white-space: nowrap;
  font-weight: bold;
  margin-left: 7px;
  font-size: 10px;
}

.center {
    flex-grow: 1;
    text-align: center;
    flex-direction: column;
    gap: 7px;
}

.right {
    width: 20%;
    background-image: radial-gradient(
    circle at 100% 50%,
    transparent 25px,
    #fff 26px
  );
}
.right div {
  font-weight: 400;
  transform: rotate(-90deg);
  white-space: nowrap;
  margin-left: -18px;
  font-size: 12px;
}

.center .discount {
    background: #000;
    color: gold;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    border-radius: 46px;
}

.center .name {
    font-size: 14px;
    /* line-height: 1.3; */
}
.center small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

@media screen and (max-width:500px){
}
/* single product page style*/


.electron-selected-variations-terms-wrapper {
    display: none;
}

.electron-selected-variations-terms {
    padding: 10px 15px;
    background: var(--electron-success-bg);
    border: 1px solid var(--electron-success-border);
    border-radius: var(--electron-border-radius);
    color: var(--electron-success);
    line-height: 1;
}

.electron-selected-variations-terms span {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
}

.electron-selected-variations-terms .selected-value {
    color: var(--electron-dark);
}

.electron-selected-variations-terms-title {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: var(--electron-dark);
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.electron-selected-variations-terms-wrapper .selected-features + .selected-features {
    margin-left: 10px;
}

/* hint for swatches */
.show-hints .electron-terms .electron-term:after,
.show-hints .electron-terms .electron-term:not(.electron-disabled):before{
    position: absolute;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    bottom: 100%;
    left: 50%;
}

.show-hints .electron-terms .electron-term:not(.electron-disabled):before {
    content: '';
    background: 0 0;
    border: 6px solid transparent;
    border-top-color: var(--electron-dark);
    z-index: 1000001;
    margin-bottom: -11px;
    left: calc(50% - 6px);
}

.show-hints .electron-terms .electron-term:not(.electron-disabled):after {
    content: attr(data-title);
    background: var(--electron-dark);
    color: var(--electron-light);
    padding: 8px 10px;
    font-size: 12px;
    line-height: 12px;
    white-space: nowrap;
    box-shadow: 4px 4px 8px rgba(0,0,0,.3);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

.show-hints .electron-terms .electron-term:hover:after,
.show-hints .electron-terms .electron-term:not(.electron-disabled):hover:before {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: .1s;
    -moz-transition-delay: .1s;
    transition-delay: .1s;
}

.show-hints .electron-terms .electron-term:hover:before{
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.show-hints .electron-terms .electron-term:hover:after {
    -webkit-transform: translateX(-50%) translateY(-8px);
    -moz-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px);
}

.woocommerce .show-hints .electron-terms .electron-term.electron-selected:before {
    content: '✓';
    min-height: 18px;
    min-width: 18px;
    border-radius: 100%;
    background-color: var(--electron-success);
    color: var(--electron-light);
    text-align: center;
    font-size: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    bottom: auto;
    margin: 0;
    border: 0;
    opacity: 1;
    visibility: visible;
    left: auto;
    right: auto;
}

.show-hints .electron-terms .electron-term.electron-disabled:hover:before {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
}




/* * WooCommerce fixs * This file contain WooCommerce codes for some problems */
ul.woocommerce-error {
	margin: 10px 0;
	list-style: none;
}
.archive.search.search-no-results .electron-before-loop.electron-shop-filter-top-area {
    display: none;
}
.archive.search.search-no-results  .electron-products-wrapper .electron-products.row {
    margin: 0;
}
.archive.search.search-no-results .electron-not-found-info-wrapper {
    margin-top: 0;
}

.electron-not-found-info-wrapper {
    text-align: center;
    margin-top: 60px;
}

.electron-page-hero-content .term-description {
    max-width: 767px;
    margin-top: 15px;
    margin-bottom: 0;
}
.electron-page-hero-content .term-description p {
    margin: 0;
}
.style-border-outside .electron-products {
    border: 1px solid var(--electron-border);
    border-right-color: var(--electron-light);
    margin-right: -1px;
    border-bottom: 0;
    gap: 0!important;
}

.electron-tab-wrapper.style-border-outside .electron-swiper-container {
    border: 1px solid var(--electron-border);
    border-top: 0;
    border-bottom: 0;
    border-right-color: var(--electron-light);
}

.style-border-outside .electron-loop-product {
    border: 0;
    border-style: solid;
    border-color: var(--electron-border);
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-radius: 0;
    padding: 10px 10px 45px 10px;
}


.electron-swiper-container.style-border-outside:not(.centermode) .swiper-slide-active .electron-loop-product {
    border-left-width: 1px;
}

.electron-tab-wrapper.style-border-outside.layout-slider .electron-loop-product:hover {
    border-bottom-width: 1px;
}

.electron-swiper-container.style-border-outside.centermode .swiper-slide-next + .swiper-slide .electron-loop-product {
    border-right-width: 3px;
}

.electron-swiper-container.style-border-outside.centermode .electron-swiper-wrapper {
    padding-left: 2px;
}

.electron-tab-wrapper.style-border-outside.layout-slider .electron-loop-product,
.electron-swiper-container.style-border-outside .electron-loop-product {
    border-top-width: 1px;
}

.style-border-outside .electron-loop-product {
    padding: 0px;
}

.style-border-outside .electron-loop-product:hover,
.electron-swiper-container.style-border-outside .electron-loop-product:hover,
.electron-swiper-container.style-border-outside .swiper-slide-active .electron-loop-product:hover {
    border-color: var(--electron-primary);
    border-width: 0px;
    transform: scale(1.02);
    border-radius: 5px;
    z-index: 1;
    -webkit-box-shadow: 0 15px 30px -4px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 15px 30px -4px rgba(0,0,0,.09);
    box-shadow: -1px 3px 30px 8px rgb(0 0 0 / 17%);
    transition: transform 0.4s cubic-bezier(.19,1,.22,1);
}
.electron-tab-wrapper.style-border-outside.layout-slider .electron-loop-product:hover {
    transform: scale(1);
}
.style-boxshadow .electron-loop-product {
    box-shadow: 0 0 4px rgba(0,0,0,.12);
}

.style-bgcolor .electron-loop-product,
.style-bgcolor .electron-loop-product:hover .electron-swatches-wrapper,
.style-bgcolor .electron-loop-product:hover .electron-product-actions {
    background-color: var(--electron-gray-soft);
}


/* price */

.electron-price-wrapper.price ins,
.electron-price ins,
.woocommerce-variation-price ins,
.woobt-products .woobt-product .woobt-price ins,
.woocommerce .product_list_widget li ins,
.electron-price,
.product-list-item .list-price.list-part ins,
.product-list-item .list-price.list-part,
.cr-product-slider__price,
.cr-product-slider__price ins,
.woobt-price-ori,
.electron-product-summary .electron-summary-item.electron-price,
.mini-panel .cart-total-item .value,
.mini-panel .cart-total .value,
.woocommerce-variation-price,
.woobt-total .woocommerce-Price-amount,
.woobt-additional .woocommerce-Price-amount,
.woobt-products .woobt-product-this .woobt-price .woobt-price-new,
.woosc-sidebar-item-price ins,
.woosc-sidebar-item-price,
.electron-checkout-footer-item-value strong span,
.electron-cart-totals .electron-cart-total span,
.woosw-item--price ins,
.woosw-item--price,
.cart-area .cart-total-price .cart-total-price-right,
.woobt-additional.woobt-text ins,
.woobt-total.woobt-text ins,
.price-wrapper
{
    color: var(--electron-red-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}


.electron-price-wrapper.price del,
.electron-price del,
.woocommerce-variation-price del,
.woobt-price .woobt-price-new del,
.woobt-products .woobt-product .woobt-price del,
.woocommercel.product_list_widget li del,
.electron-cart-totals .electron-cart-total .cart-total-value,
.electron-cart-totals .electron-cart-total .cart-total-value strong,
.electron-product-total.product-total,
.electron-checkout-footer-item-value,
.product-list-item .list-price.list-part del,
.cr-product-slider__price del,
.woosc-sidebar-item-price del,
.woosw-item--price del,
.woobt-additional.woobt-text del,
.woobt-total.woobt-text del
{
    color: var(--electron-red);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.woobt-products .woobt-product .woobt-price del,
.woobt-products .woobt-product .woobt-price ins,
.woobt-price-ori {
    font-size: 12px;
}


.woocommerce-variation-price .price span.del>span,
.electron-price span.del>span {
	text-decoration: line-through;
	color: var(--electron-dark-soft);
}

span.electron-primary-color.del span {
    color: var(--electron-red);
    font-weight: 300;
    font-size: 13px;
    text-decoration: line-through;
}

.electron-secondary-color {
    margin-left: 5px;
}

/* price */


/* shop buttons  */


.nt-electron-content .woocommerce-message .button.wc-forward {
    display: none;
}

.electron-btn:not(.loading) .loading-wrapper {
	display: none;
}

.processing .electron-btn:not(.loading) .loading-wrapper {
    display: flex;
    background: var(--electron-dark);
}

.electron-btn .loading-wrapper {
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--electron-light);
}
/* shop buttons  */

/* woocommerce-message */
.nt-electron-content .woocommerce-message {
    padding: 10px 15px;
    background: var(--electron-red-bg);
    color: var(--electron-red);
    margin-bottom: 40px;
    max-width: 49%;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
.nt-electron-content .woocommerce-message a {
    background: var(--electron-red-dark);
    color: var(--electron-light);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 10px;
    text-transform: uppercase;
}


.woocommerce-error strong {
    color: var(--electron-red);
    text-decoration: underline;
}
/* woocommerce-message */

.animation {
	will-change: opacity, transform;
	opacity: 0;
	-moz-animation: none;
	-webkit-animation: none;
	animation: none;
}

/*/////////////////////////////////////
13 >-----> PRODUCT ALL KEYFRAMES
/////////////////////////////////////*/
@keyframes stock-progress-bar {
	from {
		width: 100%
	}

	to {
		width: 0
	}
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes electronfadeInLeft {
	0% {
		transform: translate3d(-20px, 0, 0);
	}

	100% {
		transform: none;
	}
}

@keyframes electronfadeOutLeft {
	0% {
		transform: translate3d(-20px, 0, 0);
	}

	100% {
		transform: none;
	}
}

.woocommerce-form-login-toggle, .woocommerce-form-coupon-toggle {
    background-color: var(--electron-blue-bg);
    margin-bottom: 0;
    padding: 10px 20px;
    border: 1px solid var(--electron-blue-soft);
    max-width: 320px;
    color: var(--electron-blue-dark);
    margin: 0;
    border-radius: 3px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}


.woocommerce-form-coupon-toggle a,
.woocommerce-form-login-toggle a {
    color: var(--electron-blue-dark);
    text-decoration: underline;
}

.woocommerce-info {
    font-size: 12px;
}

.woocommerce-form-coupon-toggle a {
    color: var(--electron-blue-dark);
    text-decoration: underline;
}

.woocommerce-form.woocommerce-form-login.login:not(.electron-myaccount-form),
.woocommerce-form-register:not(.electron-myaccount-form),
.checkout_coupon.woocommerce-form-coupon {
    max-width: 450px;
    margin: 20px 0;
    text-align: left;
}
.electron-myaccount-form input:not([type="checkbox"]) {
    width: 100%;
}
.electron-myaccount-form .woocommerce-privacy-policy-text,
.electron-myaccount-form .woocommerce-form-login__submit {
    margin-bottom: 20px;
}

.electron-myaccount-form .woocommerce-form-login__submit {
    margin-top: 20px;
}

.electron-myaccount-form .woocommerce-form-register__submit,
.electron-myaccount-form .woocommerce-form-login__submit {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    color: var(--electron-light);
    fill: var(--electron-light);
    padding: 13px 30px;
    letter-spacing: 0.3px;
    line-height: 1;
    display: inline-block;
    position: relative;
    cursor: pointer;
    border: 0;
    border-radius: 5px;
    color: var(--electron-light);
    border-color: var(--electron-primary);
    background-color: var(--electron-primary);
}

.lost_password a {
    color: var(--electron-red-dark);
    text-decoration: underline;
}


/* thank you page */
.woocommerce-thankyou-order-details {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 15px;
	border: 2px solid var(--electron-gray);
}

.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
	padding: 15px;
	border: 2px solid var(--electron-gray);
	margin-top: 30px;
}

.woocommerce-order-received .woocommerce-order-details address p {
	margin: 0px;
}

.woocommerce-thankyou-order-details li {
	display: inline-flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
}

.woocommerce-thankyou-order-details li+li {
	margin-left: 15px;
	padding-left: 15px;
	border-left: 1px dashed var(--electron-gray);
}

.woocommerce-order-received table.order_details {
	width: 100%;
}

.woocommerce-order-received .woocommerce-order-details tr {
	border-bottom: 1px solid var(--electron-gray);
	line-height: 2.5em;
}

.woocommerce-order-received .woocommerce-order-details tfoot tr:last-child {
	border-bottom: 0;
}

/* thank you page */


/* lost password */
.electron-lost-reset-password-wrapper .electron-flex {
	flex-direction: column;
}

.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
	display: inline-block;
	background: var(--electron-gray-soft);
	border: 1px solid var(--electron-gray);
	padding: 10px 20px;
	color: var(--electron-dark);
}

ul.wc-bacs-bank-details.order_details.bacs_details {
    margin: 0;
}

h2.wc-bacs-bank-details-heading {
    margin: 30px 0 10px;
    font-size: 22px;
}
h3.wc-bacs-bank-details-account-name {
    font-size: 18px;
}


.electron-checkout-footer-item.woocommerce-shipping-totals.shipping {
    padding: 15px;
    background: var(--electron-gray-soft);
    margin-top: 10px;
    border-radius: 5px;
}


ul.electron-product-features-list {
    padding-left: 20px;
}


/* PAGINATION */
.electron-woocommerce-pagination {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

.electron-woocommerce-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	margin-bottom: -10px;
	padding: 0;
}

.electron-woocommerce-pagination ul.page-numbers li {
	display: inline-block;
	margin-bottom: 10px;
	border: 0;
}

.electron-woocommerce-pagination ul.page-numbers li+li {
	margin-left: 10px;
}

.electron-woocommerce-pagination ul li a,
.electron-woocommerce-pagination ul li span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	color: var(--electron-dark);
	background-color: var(--electron-gray-soft);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 50px;
	border-radius: 4px;
}

.electron-woocommerce-pagination ul li a:focus,
.electron-woocommerce-pagination ul li a:hover,
.electron-woocommerce-pagination ul li span.current {
    color: var(--electron-primary);
    background-color: var(--electron-blue-bg);
}
/* PAGINATION */

.woosc-sidebar .woosc-sidebar-top {
    background-color: var(--electron-gray-soft);
}
.woosc-sidebar-item .woosc-sidebar-item-info .woosc-sidebar-item-name,
.woosc-sidebar-item .woosc-sidebar-item-info .woosc-sidebar-item-name a {
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}
.woosc-sidebar-item-action p {
    display: flex;
    font-size: 12px;
    flex-direction: column;
    color: var(--electron-primary);
}

.woosc-sidebar-item-action p a {
    color: var(--electron-primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 10px;
}
.woosc-sidebar-btn {
    border-radius: 5px;
}
.open-wishlist-btn .woosw-menu-item .woosw-menu-item-inner {
    display: none;
}
.open-wishlist-btn {
    position: relative;
}
.woosw-item--time, .woosw-item--stock {
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--electron-primary);
}
.woosw-item--time {
    color: var(--electron-text);
}
.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner a,
.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner span {
    line-height: 1.2;
    text-decoration: none;
    border-bottom: 1px solid var(--electron-dark);
    outline: none;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}
.woosw-popup.woosw-show .woosw-popup-inner .woosw-popup-content {
    border-radius: 5px;
}

.woocommerce-form-track-order.track_order input {
    width: 100%;
}
.open-wishlist-btn li.woosw-menu-item {
    list-style: none;
    line-height: 0;
}
a.wishlist-page-link,
a.compare-page-link,
.open-wishlist-btn .woosw-menu-item a {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.open-wishlist-btn .woosw-menu-item .woosw-menu-item-inner {
    display: none;
}
.electron-product-info form.cart {
    gap: 10px;
    display: flex;
}
button.woocommerce-button + ul.woocommerce-error {
    margin-bottom: 0;
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: var(--electron-red-softer);
    color: var(--electron-red-text);
    border: 1px solid var(--electron-red);
}
button.woocommerce-button + ul.electron-success {
    border: 1px solid;
    padding: 10px;
    list-style: none;
    width: 100%;
    max-width: 100%;
    background: var(--electron-success-bg);
    margin: 0;
    margin-top: 20px;
}
.electron-myaccount-form .woocommerce-button.loading {
    position: relative;
}
/* multisteps myaccount */
.hidden-message .woocommerce-notices-wrapper {
    display: none;
}
.has-gap {
    gap: 30px;
}
.electron-myaccount-wrapper .electron-myaccount-steps-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.electron-myaccount-wrapper .electron-myaccount-steps-buttons>span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: calc(50% - 5px);
    cursor: pointer;
    background-color: var(--electron-gray-soft);
    padding: 10px 20px;
    border: 1px solid var(--electron-gray);
    color: var(--electron-dark);
}

.electron-myaccount-wrapper .electron-myaccount-steps-buttons>span[tabindex="-1"] {
	background-color: var(--electron-dark);
	color: var(--electron-light);
}

.electron-myaccount-wrapper .electron-myaccount-steps-buttons>span[tabindex="-1"] svg {
	fill: var(--electron-light);
}

.electron-myaccount-wrapper .electron-myaccount-steps-buttons svg {
	max-width: 18px;
	max-height: 18px;
	margin-right: 5px;
}
.swiper-slide .electron-myaccount-form .woocommerce-privacy-policy-text {
    margin-bottom: 5px;
}
.electron-myaccount-page-content-inner {
    padding: 40px;
    border: 2px solid var(--electron-border);
    border-radius: 5px;
}
.electron-myaccount-content {
    padding-left: 20px;
}
.electron-myaccount-navigation {
    position: relative;
}
nav.electron-myaccount-navigation:after {
    content: "";
    position: absolute;
    right: 0;
    top: -40px;
    width: 3px;
    height: calc(100% + 80px);
    background: var(--electron-border);
}
.electron-myaccount-navigation ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
li.menu-item.woocommerce-MyAccount-navigation-link {
    display: flex;
    list-style: none;
    align-items: center;
    width: 100%;
    flex: 0 0 100%;
    gap: 10px;
}

.shop-container  {
    display: grid;
    gap: 30px;
    grid-template-columns: auto;
}

.shop-container.has-sidebar {
    grid-template-columns: 320px 1fr;
}

.shop-container.has-sidebar.right-sidebar {
    grid-template-columns: 1fr 320px;
}

@media(max-width:992px) {
    .shop-container.has-sidebar,
    .shop-container.has-sidebar.right-sidebar {
        grid-template-columns: auto;
    }
}

.electron-products {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media(max-width:992px) {
	.electron-products {
	    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
}
@media(min-width:992px) {
    .has-sidebar .products.column-6 {
        grid-template-columns: repeat(auto-fill, minmax(calc((1580px - 320px) / 7), 1fr));
    }
    .has-sidebar .products.column-5 {
        grid-template-columns: repeat(auto-fill, minmax(calc((1580px - 320px) / 6), 1fr));
    }
    .has-sidebar .products.column-4 {
        grid-template-columns: repeat(auto-fill, minmax(calc((1580px - 320px) / 5), 1fr));
    }
    .has-sidebar .products.column-3 {
        grid-template-columns: repeat(auto-fill, minmax(calc((1580px - 320px) / 4), 1fr));
    }
    .has-sidebar .products.column-2 {
        grid-template-columns: repeat(auto-fill, minmax(calc((1580px - 320px) / 3), 1fr));
    }
    .has-sidebar .products-type-list {
        grid-template-columns: repeat(auto-fill, minmax(calc((1580px - 320px) / 3), 1fr));
    }
}

.products-type-list {
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
}

.electron-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.electron-header-title {
    margin: 0;
}
.electron-custom-reviews-wrapper .cr-reviews-slider {
    padding: 0;
}
.electron-header-button.has-icon {
    display: flex;
    align-items: center;
    justify-content:center;
    gap: 14px;
}
.electron-product-cart.added {
    background: var(--electron-green);
}

.electron-header-button.icon-after {
    flex-direction: row-reverse;
}
.electron-category-grid,
.electron-brands-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

.electron-widget-brands-wrapper .electron-brand-item {
    text-align: center;
    border: 1px solid var(--electron-border);
    padding: 15px;
}

.style-4 .electron-brand-item {
    text-align: center;
    border: 0;
    padding: 0;
    opacity: .6;
}

.style-2 .electron-brand-item {
    text-align: center;
    border: 1px solid var(--electron-border);
    padding: 15px;
    border-radius: 5px;
}

/* ajax loading spinner */
.electron-minicart.loading:after,
.electron_ajax_add_to_cart.loading:after,
.electron_swatches_add_to_cart.loading:after,
.spinner.loading:after,
.loading .spinner:after,
.list-buttons .loading:after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
    transition: opacity .2s ease;
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid var(--electron-light);
    border-left-color: var(--electron-primary);
    border-radius: 50%;
    vertical-align: middle;
    animation: electron-rotate 450ms infinite linear;
}
.list-buttons .loading:after {
    border-color: #ddd;
    border-left-color: var(--electron-primary);
}
.electron_ajax_add_to_cart.loading .cart-text,
.electron_swatches_add_to_cart.loading .cart-text {
    opacity: 0;
}

.electron-header-title span {
    color: gray;
    font-size: 12px;
    margin-left: 20px;
    border-left: 2px solid #eee;
    padding-left: 20px;
}

.electron-product-extra-features {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    font-size: 10px;
    line-height: normal;
}

.electron-product-extra-features li {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    color: var(--electron-text);
    text-transform: uppercase;
}

.electron-product-extra-features li .checked {
    color: var(--electron-green);
    margin-right: 3px;
}

/* ajax loading */
@keyframes electron-rotate {
	100% {
		transform: rotate(360deg);
	}
}


.electron-product-cart.has-icon {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: normal;
    padding: 0 10px;
    min-height: 40px;
}

.electron-product-cart.has-icon>* {
    transition: transform 0.35s cubic-bezier(0.310, -0.105, 0.430, 1.400);
}

.electron-product-cart.has-icon svg {
    position: absolute;
    bottom: auto;
    top: auto;
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(200%);
    -moz-transform: translateY(200%);
    transform: translateY(200%);
    margin-right: 0;
}

.electron-product-cart.has-icon.loading svg {
    opacity: 0;
}

.electron-product-cart.has-icon:hover>.cart-text {
    -webkit-transform: translateY(-200%);
    -moz-transform: translateY(-200%);
    transform: translateY(-200%);
}

.electron-product-cart.has-icon:hover>svg {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.electron-product-cart.has-icon:hover .woobt-count {
    display: none;
}

.electron-swatches-loading {
    position: absolute;
    height: 6px;
    background-color: var(--electron-yellow);
    bottom: 44px;
    border-radius: 5px;
    max-width: calc(100% - 10px);
    left: 5px;
}
.electron-hint {
    display: none;
}
@media(min-width:1024px){
    .electron-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--electron-primary);
        color: var(--electron-light);
        font-size: 12px;
        line-height: 1;
        position: absolute;
        top: -25px;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        white-space: nowrap;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        padding: 8px 9px 8px 9px;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-shadow: 0 7px 15px rgba(0,0,0,.3);
        -webkit-transition: .3s ease;
        -moz-transition: .3s ease;
        transition: .3s ease;
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        transition-delay: 0s;
        z-index: 5;
    }
    .electron-hint:before {
        content: '';
        border: 5px solid transparent;
        border-top-color: var(--electron-primary);
        position: absolute;
        bottom: -10px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .electron-product-button:hover .electron-hint,
    .electron-term:hover .electron-hint{
        visibility: visible;
        opacity: 1;
        top: -35px;
        -webkit-transition-delay: .1s;
        -moz-transition-delay: .1s;
        transition-delay: .1s;
    }
    .hint-left span.electron-hint {
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    .hint-left .electron-hint:before {
        content: '';
        border-color: transparent;
        border-left-color: var(--electron-primary);
        bottom: auto;
        top: 50%;
        right: -10px;
        left: auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .hint-left .electron-product-button:hover .electron-hint,
    .electron-add-to-cart.hint-left:hover .electron-hint {
        visibility: visible;
        opacity: 1;
        top: 50%;
        right: calc(100% + 10px);
        -webkit-transition-delay: .1s;
        -moz-transition-delay: .1s;
        transition-delay: .1s;
    }
	.show-on-mobile {
		display: none;
	}
}
@media(max-width: 1024px) {
	.electron-myaccount-page-content.row>div {
		width: 100%;
	}

	.woocommerce-page .electron-myaccount-page-content a.button {
		padding: 0px 10px;
		min-height: 38px;
		min-width: auto;
	}

	.nt-electron-content .electron-myaccount-content table.table.table-striped {
		margin-bottom: 0;
	}
}
@media(max-width:768px){

    .electron-myaccount-page-content .electron-myaccount-page-content-inner {
        padding: 30px;
    }
    .electron-myaccount-navigation {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .electron-myaccount-content {
        padding-left: 0;
    }
    nav.electron-myaccount-navigation:after {
        right: 0;
        left: -30px;
        top: auto;
        bottom: 0;
        width: calc(100% + 60px);
        height: 2px;
    }
    .electron-myaccount-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
    }
    .electron-myaccount-navigation li.menu-item.woocommerce-MyAccount-navigation-link {
        width: auto;
        flex: 0 0 calc(33.3333% - 5px);
    }
    .electron-myaccount-navigation li.menu-item.woocommerce-MyAccount-navigation-link a {
        padding: 10px 15px;
        background: var(--electron-primary);
        line-height: 1;
        color: var(--electron-light);
        width: 100%;
        text-align: center;
        border-radius: 5px;
    }
    .electron-myaccount-navigation li.menu-item.woocommerce-MyAccount-navigation-link a:hover {
        background: var(--electron-primary-dark);
    }
    .electron-woocommerce-pagination ul li a,
    .electron-woocommerce-pagination ul li span {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}
@media(max-width:576px) {

    .electron-myaccount-page-content .electron-myaccount-page-content-inner {
        padding: 20px;
    }

	.electron-myaccount-page-content .electron-myaccount-content a:not(.button) {
		display: initial;
	}

	.electron-myaccount-page-content .electron-myaccount-content a:not(.button):after {
		display: none;
	}

    .nt-electron-content .electron-myaccount-content table.table.table-striped th,
	.nt-electron-content .electron-myaccount-content table.table.table-striped td {
		padding: 8px;
		font-size: 10px;
	}

	.woocommerce-page .electron-myaccount-page-content a.button {
		padding: 0px 5px;
		min-height: 20px;
		font-size: 10px;
	}

    nav.electron-myaccount-navigation:after {
        left: -20px;
        width: calc(100% + 40px);
    }
    li.menu-item.woocommerce-MyAccount-navigation-link {
        flex: 0 0 calc(50% - 5px);
    }
    .electron-header-title {
        margin: 0;
        display: flex;
        flex-direction: column;
        max-width: 55%;
    }

    .electron-header-title span {
        color: var(--electron-text-soft);
        font-size: 12px;
        margin-left: 0;
        border-left: 0;
        padding-left: 0;
        font-weight: 400;
    }
}

/*
* star-rating
*/

.star-rating {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	font-family: 'ninetheme-font';
}

.star-rating::before {
	content: "\f148\f148\f148\f148\f148";
	color: var(--electron-gray);
}

.star-rating>span {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	height: 100%;
	font-size: 0;
}

.star-rating>span::before {
    content: "\f148\f148\f148\f148\f148";
    top: 0;
    position: absolute;
    left: 0;
    color: var(--electron-yellow);
}

.star-rating,
.star-rating>span::before {
    font-size: 12px;
    line-height: 1;
}

p.stars {
    line-height: 1;
    font-size: 0;
    margin: 0;
}

p.stars a {
	padding-right: 10px;
	margin-right: 10px;
	position: relative;
	color: var(--electron-gray);
}
p.stars a.active {
	color: var(--electron-yellow);
}

p.stars a:not(:last-child):after {
	content: "|";
	position: absolute;
	right: 0;
	font-size: 12px;
}

p.stars a:before {
    font-family: 'ninetheme-font';
    font-size: 12px;
    letter-spacing: 2px;
}

p.stars a.star-1:before {
	content: "\f148";
}

p.stars a.star-2:before {
	content: "\f148\f148";
}

p.stars a.star-3:before {
	content: "\f148\f148\f148";
}

p.stars a.star-4:before {
	content: "\f148\f148\f148\f148";
}

p.stars a.star-5:before {
	content: "\f148\f148\f148\f148\f148";
}

p.stars a:hover:before,
p.stars.selected a.active:before {
	color: var(--electron-yellow);
}

.electron-summary-item.electron-product-rating {
    display: inline-flex;
    border: 1px solid var(--electron-yellow);
    padding: 3px 10px;
    border-radius: 5px;
    background: #fffef0;
    line-height: 1;
    align-items: center;
    gap: 5px;
}

.electron-product-rating .electron-review-link {
    font-size: 10px;
    color: #efac00;
}

@media(max-width:576px) {
	p.stars a:before {
		font-size: 10px;
	}
}


/* quantity */

.quantity {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-left: 32px;
    padding-right: 32px;
    border: 1px solid var(--electron-border);
    max-width: 100px;
    border-radius: 4px;
}
.quantity input.qty {
	padding: 0;
	min-height: inherit;
	border: 0;
	max-width: 100%;
	font-size: 12px;
}


.woocommerce .product .grouped-list-item .quantity .qty,
.woocommerce .quantity .qty,
.quantity input {
	border: 0;
	font-size: 12px;
	padding: 0;
	text-align: center;
	height: 100%;
	flex: 1;
	width: auto;
	height: 36px;
}

.quantity .qty {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 0.9375rem;
    text-align: center;
    height: 37px;
}

.quantity.hidden {
	display: none;
}

.quantity .minus,
.quantity .plus {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    color: var(--electron-gray);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.quantity .plus {
    left: auto;
    right: 0;
}

.quantity .minus:after,
.quantity .plus:after {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background: currentColor;
    position: absolute;
}

.quantity .plus::before {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    background: currentColor;
    position: absolute;
}

.quantity-button.plus:hover,
.quantity-button.minus:hover {
	background: inherit;
}

input.qty[type='number'] {
	-moz-appearance: textfield;
}

input.qty::-webkit-outer-spin-button,
input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.cart-quantity-wrapper .cart-update {
    display: none;
}
.cart-quantity-wrapper .cart-update.clicked {
    pointer-events: none;
}


/* shop fixed popup messages */
.electron-shop-popup-notices {
	z-index: 99999;
	max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    right: 0;
}

.electron-shop-popup-notices .woocommerce-message,
.electron-quickshop-notices .woocommerce-message,
.electron-quickview-wrapper .woocommerce-message,
.electron-shop-popup-notices .wc-block-components-notice-banner.is-success {
	background: var(--electron-green);
	border: 1px solid var(--electron-green);
	border-radius: 3px;
	color: var(--electron-light);
	padding: 15px 20px;
}

.electron-shop-popup-notices .woocommerce-error,
.electron-quickshop-notices .woocommerce-error,
.electron-quickview-wrapper .woocommerce-error,
.electron-shop-popup-notices .wc-block-components-notice-banner.is-error {
	background: var(--electron-red);
	border: 1px solid var(--electron-red);
	border-radius: 3px;
	color: var(--electron-light);
	padding: 15px 20px;
	margin: 0;
}

.woocommerce-error span.close-error {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.electron-shop-popup-notices.postion-top-right,
.electron-shop-popup-notices.postion-bottom-right {
	right: 0px;
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}
.electron-shop-popup-notices.postion-bottom-left,
.electron-shop-popup-notices.postion-bottom-right {
	bottom: 15px;
}
.electron-shop-popup-notices.postion-top-left,
.electron-shop-popup-notices.postion-bottom-left {
	left: 15px;
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.electron-shop-popup-notices.postion-top-right,
.electron-shop-popup-notices.postion-top-left {
	top: 40px;
}
.electron-shop-popup-notices.postion-centered {
	top: 50%;
	left: 50%;
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	visibility: visible;
	opacity: 1;
}
.woocommerce-notices-wrapper {
    position: relative;
    max-width: 530px;
    width: 100%;
    color: #fff;
}
.postion-top-right .woocommerce-notices-wrapper,
.postion-bottom-right .woocommerce-notices-wrapper {
    transform: translateX(calc(-100% - 15px));
}
.postion-top-left .woocommerce-notices-wrapper,
.postion-bottom-left .woocommerce-notices-wrapper {
    transform: translateX(calc(100% + 15px));
}


@media(max-width:576px) {
	.electron-shop-popup-notices {
		left: 15px;
	}
	.electron-shop-popup-notices.postion-top-left,
	.electron-shop-popup-notices.postion-bottom-left {
		right: 15px;
	}
}

.electron-shop-popup-notices,
.electron-shop-popup-notices.electron-notices-has-error ul.woocommerce-error {
	color: var(--electron-light);
}
.electron-shop-popup-notices .electron-panel-close-button,
.electron-shop-popup-notices .button.wc-forward,
.electron-shop-popup-notices.electron-notices-has-error .close-error {
	display: none;
}

.electron-shop-popup-notices.postion-in-product .electron-btn {
	padding: 10px;
	font-size: 12px;
}
.electron-shop-popup-notices.postion-centered:hover,
.electron-shop-popup-notices.postion-centered.active {
	opacity: 1;
	visibility: visible;
}
.electron-shop-popup-notices span.product-name,
.electron-shop-popup-notices p.message {
	color: var(--electron-light);
}
.electron-shop-popup-notices .electron-cart-update-message p {
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 10px;
}
.electron-shop-popup-notices span.update {
	display: block;
    text-transform: uppercase;
}

.electron-shop-popup-notices .button.wc-forward {
	color: #fff !important;
}

@media(max-width:768px) {
    .electron-shop-popup-notices.postion-bottom-left,
    .electron-shop-popup-notices.postion-bottom-right {
    	bottom: 15px;
    	left: 30px;
    }
    .electron-shop-popup-notices .woocommerce-message,
    .electron-quickshop-notices .woocommerce-message,
    .electron-quickview-wrapper .woocommerce-message {
    	font-size: 11px;
    }
}

/* shop fixed popup messages */


/*
* electron quick shop
*/
.electron-quickshop-wrapper {
	max-width: 500px;
	background: var(--electron-light);
	padding: 40px;
	margin: 0 auto;
	border-radius: 5px;
}

.electron-selected-variations-terms-wrapper {
	display: none;
}

.electron-selected-variations-terms span {
	font-weight: 500;
	text-transform: uppercase;
	font-size: 11px;
}

.electron-selected-variations-terms .selected-value {
	color: var(--electron-dark);
}

.electron-selected-variations-terms-title {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	color: var(--electron-dark);
	margin-bottom: 10px;
	display: block;
	line-height: 1;
}

.electron-selected-variations-terms-wrapper .selected-features+.selected-features {
	margin-left: 10px;
}

.electron-quickshop-wrapper .electron-variations {
	margin-bottom: 0px;
}

.electron-quickshop-wrapper .electron-quickshop-form-wrapper {
	display: block;
}
.electron-quickshop-wrapper .electron-product-title {
    margin-bottom: 15px;
}
.electron-quickshop-wrapper .electron-summary-item.electron-price {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 10px;
    flex-wrap:wrap;
    margin-bottom: 15px;
}
.electron-quickshop-wrapper .electron-summary-item.electron-price p.stock.electron-stock-status {
    margin-top: 0;
}

.electron-quickshop-wrapper .electron-small-title {
	min-width: 50px;
}

.electron-quickshop-wrapper form.electron-summary-item.electron-flex.cart.grouped_form .electron-after-cart-grouped-button-wrapper button {
	width: auto;
	flex: 0 0 100%;
}

.product.electron-quickshop-wrapper .single_variation_wrap.single-product-add-to-cart-type-black .woocommerce-variation-add-to-cart,
.product.electron-quickshop-wrapper .single_variation_wrap.single-product-add-to-cart-type-gray .woocommerce-variation-add-to-cart {
	margin-top: 10px;
	background: transparent;
	border: 0;
	padding: 0;
}

.electron-quickshop-wrapper ul.woocommerce-error {
	list-style: none;
	position: relative;
	margin: 0;
	margin-top: 10px;
	padding: 25px 15px 15px 15px;
	background: var(--electron-red);
	color: var(--electron-light);
}

.electron-quickshop-buttons-wrapper .electron-flex,
.electron-quickshop-wrapper .electron-product-info-top {
    gap: 10px;
}
.electron-quickshop-buttons-wrapper .electron-flex {
    flex-wrap: nowrap;
}
.electron-quickshop-buttons-wrapper span[data-hover]:after {
    width: 100%;
}
.electron-quickshop-wrapper .woocommerce-variation-add-to-cart {
    margin-top: 0px;
}

.electron-quickshop-wrapper .electron-btn,
.electron-quickshop-wrapper .electron-product-info-top .single_add_to_cart_button
.electron-quickshop-wrapper .electron-product-info .electron-btn-buynow {
    flex: 1 0 auto;
    min-width: 150px;
}

.electron-quickshop-wrapper .electron-quickshop-buttons-wrapper:not(.active),
.electron-quickshop-wrapper .electron-quickshop-notices-wrapper:not(.active),
.electron-quickshop-wrapper .woocommerce-message .button.wc-forward {
	display: none;
}

.electron-quickshop-wrapper .mfp-close.electron-panel-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    opacity: 1;
    background: var(--electron-blue-dark);
    padding: 0;
}

.electron-quickshop-wrapper .electron-panel-close-button:before,
.electron-quickshop-wrapper .electron-panel-close-button:after {
	background-color: var(--electron-light);
	opacity: 1;
}


.electron-quickshop-wrapper .electron-quickshop-buttons-wrapper {
	display: none;
}

.electron-quickshop-buttons-wrapper .electron-flex>div {
    flex: 1;
}
.electron-quickshop-buttons-wrapper .electron-btn {
    min-width: auto!important;
    width: calc(50% - 10px);
    cursor: pointer;
}

.electron-quickshop-wrapper .electron-product-info-top .quantity {
    min-width: 150px;
}
.electron-quickshop-wrapper .minicart-extra-text {
	margin: 0;
	position: absolute;
	width: 100%;
	top: -41px;
	left: 0;
	padding: 7px 40px 7px 30px;
	background: var(--electron-dark);
	text-align: left;
	color: var(--electron-light);
}

.electron-quickshop-wrapper .woocommerce-variation-price {
	margin: 0px 0 10px;
}

.electron-quickshop-wrapper .woobt-alert {
    padding: 6px 10px 6px 14px;
    border: 1px solid var(--electron-red-soft);
    background-color: var(--electron-red-bg);
    font-size: 12px;
    color: var(--electron-red-dark);
    border-radius: var(--electron-border-radius);
    text-align: center;
}

.electron-quickshop-wrapper .woobt-products .woobt-product {
	justify-content: flex-start;
	flex-wrap: wrap;
}

.electron-quickshop-wrapper .woobt-wrap .woobt-products {
	margin: 0 0 20px;
}

.electron-quickshop-wrapper .electron-after-cart-button-wrapper {
	display: none;
}
.electron-quickshop-wrapper .product-after-cart-wrapper {
    flex: 0 0 100%;
    order: 2;
    max-width: 150px;
}
.electron-quickshop-wrapper .electron-btn-buynow {
    order: 3;
}

.electron-quickshop-wrapper .electron-summary-item .electron-product-button {
    max-width: 50%;
}
@media(max-width:480px) {
	.electron-quickshop-wrapper .quantity {
		max-width: 100%;
	}

	.electron-quickshop-wrapper .electron-hint {
		display: none;
	}

	.electron-quickshop-wrapper .product-after-cart-wrapper {
		width: 100%;
		order: 3;
		max-width: 100%;
	}
    .electron-quickshop-wrapper .electron-btn {
        flex: 1 0 100%;
    }
    .electron-quickshop-wrapper .electron-btn-buynow {
        order: 2;
    }
}



/*
* quick view
*/

.electron-quickview-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    max-width: 520px;
    z-index: 999;
    padding: 50px 20px 50px 20px;
    opacity: 0;
    background: var(--electron-light);
    border-left: 1px solid var(--electron-border);
    will-change: transform;
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow-y: auto;
    -webkit-box-shadow: 0 15px 30px -4px rgb(0 0 0 / 9%);
    -moz-box-shadow: 0 15px 30px -4px rgba(0,0,0,.09);
    box-shadow: 0 15px 30px -4px rgb(0 0 0 / 17%);
    transition: opacity 0.4s cubic-bezier(.19,1,.22,1),transform 0.4s cubic-bezier(.19,1,.22,1);
}

.electron-quickview-sidebar.active {
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
}
.quick-main,
.electron-quickview-sidebar .quick-thumbs img,
.electron-quickview-sidebar .quick-thumbs img:hover {
    border: 1px solid var(--electron-border);
    border-radius: 5px;
}
.quick-thumbs img {
    padding: 5px;
    cursor: pointer;
}
.electron-quickview-sidebar .quick-thumbs .swiper-slide-thumb-active img {
    border-color: var(--electron-primary);
}
.quick-thumbs {
    margin-top: 20px;
}
.quick-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}
.quick-details .electron-summary-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.quick-details .electron-product-title {
    margin: 0;
    margin-top: 20px;
    font-size: 24px;
}
.quick-details .electron-summary-item.electron-price {
    gap: 10px;
}
.quick-details .electron-summary-item.electron-price p.stock.electron-stock-status {
    line-height: 1;
    margin: 0;
}
.quick-details .electron-price-wrapper.price,
.quick-details .electron-summary-item.electron-price {
    font-size: 22px;
}
.quick-details .woobt-wrap {
    display: block;
    clear: both;
    width: 100%;
    margin: 0;
}

.electron-product-summary  .dot-list {
    padding: 0;
}

.dot-list ::marker {
    color: var(--electron-blue-soft);
}

.has-overlay.quick-open {
    overflow: hidden;
}
.quick-open .page-overlay {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.electron-quickview-sidebar.spinner.loading:after {
    width: 50px;
    height: 50px;
    border: 1px solid var(--electron-gray);
    border-left-color: var(--electron-primary);
}
.electron-quickview-sidebar.spinner.loading.loaded:after {
    display: none;
}
.image-loading .swiper-slide {
    overflow: hidden;
}

.image-loading .quick-details {
    opacity: 0;
}





.electron-mfp-slide-bottom button.mfp-close,
.electron-mfp-slide-bottom button.mfp-arrow,
.mfp-electron-quickview button.mfp-close,
.mfp-electron-quickview button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	touch-action: manipulation;
}

.mfp-electron-quickview .electron-panel-close-button {
	position: absolute;
	top: 15px;
	right: 15px;
}

.mfp-electron-quickview .electron-panel-close-button:hover {
	background-color: var(--electron-bg-soft);
}

.electron-quickview-wrapper {
    background: var(--electron-light);
    padding: 60px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 3px 10px rgb(116 116 116 / 22%);
}

.electron-quickview-wrapper .electron-swiper-slider-wrapper {
    overflow: hidden;
}

.electron-quickview-wrapper .electron-quickview-thumbnails {
	margin-top: 10px;
}

.electron-quickview-wrapper .electron-product-attributes {
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--electron-gray);
}

.electron-quickview-wrapper .electron-attr-label {
	text-transform: capitalize;
	margin-right: 5px;
	font-weight: 500;
	color: var(--electron-dark);
}

.electron-quickview-wrapper .electron-attr-item {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	margin-right: 15px;
}

.electron-quickview-wrapper .product_meta>span a,
.electron-quickview-wrapper .electron-attr-value,
.electron-quickview-wrapper .electron-attr-value a {
	color: var(--electron-dark);
}

.electron-quickview-wrapper .product_meta>span a:hover,
.electron-quickview-wrapper .electron-attr-value a:hover {
	color: var(--electron-gray);
}

.electron-quickview-wrapper .electron-title-rating {
	margin-bottom: 5px;
}

.electron-quickview-wrapper .electron-product-title {
	margin-bottom: 0px;
}

.electron-quickview-wrapper .electron-summary-item p:first-child {
    margin-top: 0;
}

.electron-quickview-wrapper .electron-summary-item p:last-child {
    margin-bottom: 0;
}
.electron-quickview-wrapper .electron-summary-item.electron-price p.stock.electron-stock-status {
    line-height: 1;
}

.electron-quickview-wrapper .electron-product-info-top .quantity {
    height: 36px;
}

.electron-quickview-wrapper .product_meta>span {
	display: block;
}

.electron-quickview-wrapper .product_meta {
	margin-top: 15px;
}

.electron-quickview-wrapper .product_meta .sku_wrapper {
	display: none;
}

.electron-quickview-wrapper .product_meta .sku_wrapper {
	display: none;
}

.electron-quickview-wrapper .electron-viewed-offer-time {
	margin-top: 15px;
}

.woocommerce div.electron-quickview-wrapper form.cart .variations {
	margin-bottom: 0;
}

.electron-quickview-wrapper .variations span.label {
	min-width: 40px;
}

.woocommerce div.electron-quickview-wrapper form.cart .variations select {
	margin-right: 0;
	width: auto;
	padding: 10px;
	margin-left: 10px;
}

.electron-quickview-wrapper ul.electron-product-features-list+form {
	margin-top: 30px;
}

.electron-quickview-wrapper .variations-items {
	display: flex;
}

.electron-quickview-wrapper .electron-swiper-slider-wrapper .swiper-slide {
	text-align: center;
}

.electron-quickview-wrapper .electron-quickview-product-details ul,
.electron-quickview-wrapper .electron-product-summary ul.electron-product-features-list {
	list-style: none;
	padding-left: 0px;
}

.electron-quickview-wrapper .electron-quickview-product-details ul.electron-attr-list {
	padding: 0 !important;
	margin-bottom: 20px;
}

.electron-quickview-wrapper .electron-summary-item.electron-product-meta {
	display: flex;
	flex-direction: column;
}

.electron-quickview-wrapper .electron-btn-small {
	color: var(--electron-light);
	border-color: var(--electron-dark);
	background-color: var(--electron-dark);
	height: 38px;
	font-size: 14px;
	font-weight: 400;
	color: var(--electron-light);
	padding: 0 15px;
	min-width: 160px;
	text-transform: capitalize;
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
	border: 0;
}

.electron-quickview-wrapper .electron-summary-item+.electron-summary-item {
	margin-top: 20px;
}

.electron-quickview-wrapper .electron-summary-item.template-add-to-cart {
	display: inline-block;
}

.electron-quickview-wrapper .swiper-button-prev,
.electron-quickview-wrapper .swiper-button-next {
	background-image: none;
	color: var(--electron-dark-soft);
}

.electron-quickview-wrapper .swiper-button-prev:after,
.electron-quickview-wrapper .swiper-button-next:after {
    font-size: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.electron-quickview-wrapper .electron-swiper-thumbnails img {
	cursor: pointer;
}

.electron-quickview-wrapper .electron-swiper-thumbnails .swiper-slide-thumb-active img {
	border: 1px solid var(--electron-gray);
}

.electron-product-summary .electron-summary-item.electron-price {
	margin-top: 15px;
}

.electron-quickview-product-details.electron-product-summary .electron-summary-item.electron-price span+p.stock.electron-stock-status {
	position: relative;
	margin: 20px 0 0 10px;
	top: -4px;
}

.electron-quickview-wrapper .electron-swiper-slider-wrapper .swiper-slide {
	text-align: left;
}
.template-add-to-cart a {
    color: var(--electron-light);
    width: 100%;
}
.electron-quickview-wrapper .woocommerce-notices-wrapper {
    position: relative;
}

.electron-quickview-wrapper .button.wc-forward {
    display: none;
}
.electron-quickview-wrapper .woocommerce-error li {
	list-style: none;
}
.quick-cart-col {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--electron-border);
    padding-left: 0;
    padding-right: 0;
}

.quick-cart-col form.cart {
    flex-wrap: wrap;
    gap: 10px;
}
.quick-cart-col form.cart>div {
    flex: 1;
}
.quick-cart-col .electron-variations.variations + .electron-product-info {
    margin-top: 0;
}
.quick-cart-col .product-after-cart-wrapper {
    order: 2;
}
.quick-cart-col .electron-btn-buynow {
    order: 3;
}
.quick-cart-col .woobt-alert.woobt-text:empty {
    display: none;
}
.quick-cart-col .woobt-wrap .woobt-products {
    margin: 0;
}
.quick-cart-col .electron-selected-variations-terms-title {
    display: none;
}
.quick-cart-col .electron-selected-variations-terms {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.quick-cart-col .electron-selected-variations-terms-wrapper .selected-features {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 2px;
    color: var(--electron-success);
    background-color: var(--electron-success-bg);
    border: 1px solid var(--electron-success-border);
    margin: 0!important;
    border-radius: 10px;
}
.quick-cart-col .electron-selected-variations-terms span {
    font-size: 10px;
}
.quick-cart-col .electron-product-info-top .quantity {
    min-width: 160px;
}
.electron-quickview-sidebar .panel-close {
    top: 10px;
}
@media(min-width:1024px) {

	.electron-quickview-wrapper .swiper-button-prev,
	.electron-quickview-wrapper .swiper-button-next {
		opacity: 0;
		-moz-transition: -moz-transform ease 0.25s, opacity ease 0.25s;
		-webkit-transition: -webkit-transform ease 0.25s, opacity ease 0.25s;
		-o-transition: -o-transform ease 0.25s, opacity ease 0.25s;
		-ms-transition: -ms-transform ease 0.25s, opacity ease 0.25s;
		transition: transform ease 0.25s, opacity ease 0.25s;
	}

	.electron-quickview-wrapper .swiper-button-next,
	.electron-quickview-wrapper .swiper-container-rtl .swiper-button-prev {
		right: 0px;
		transform: translateX(30px);
	}

	.electron-quickview-wrapper .swiper-button-prev,
	.electron-quickview-wrapper .swiper-container-rtl .swiper-button-next {
		left: 0px;
		transform: translateX(-30px);
	}

	.electron-quickview-wrapper .electron-swiper-slider-wrapper:hover .swiper-button-prev,
	.electron-quickview-wrapper .electron-swiper-slider-wrapper:hover .swiper-button-next {
		opacity: 1;
	}

	.electron-quickview-wrapper .electron-swiper-slider-wrapper:hover .swiper-button-next,
	.electron-quickview-wrapper .electron-swiper-slider-wrapper:hover .swiper-container-rtl .swiper-button-prev {
		right: 0px;
		transform: translateX(-10px);
	}

	.electron-quickview-wrapper .electron-swiper-slider-wrapper:hover .swiper-button-prev,
	.electron-quickview-wrapper .electron-swiper-slider-wrapper:hover .swiper-container-rtl .swiper-button-next {
		left: 0px;
		transform: translateX(10px);
	}
}

@media(max-width:992px) {
	.electron-quickview-wrapper .electron-quickview-product-details {
		margin-top: 40px;
	}
}

@media(max-width:768px) {

	.electron-quickview-wrapper {
		max-width: 560px;
	}
    .quick-cart-col .product-after-cart-wrapper {
        width: 100%;
    }
    .quick-cart-col .electron-btn-buynow {
        order: 3;
        min-width: auto;
    }
    .quick-cart-col form.cart {
        flex-wrap: wrap;
    }
    .quick-cart-col form.cart>div {
        flex: 0 0 100%;
    }
    .electron-quickview-sidebar {
	    width: 100%;
	    max-width: 520px;
	    padding: 25px 20px 50px 20px;
	}
	body.admin-bar .electron-quickview-sidebar .panel-close {
        right: 10px;
        top: 10px;
    }
}

@media(max-width:576px) {
	.electron-quickview-wrapper .single_variation_wrap .electron-btn {
		min-width: 140px;
	}
}

@media(max-width:480px) {
	.mfp-arrow {
		-webkit-transform: scale(0.55);
		transform: scale(0.55);
	}

	.electron-quickview-wrapper {
		padding: 20px;
		padding-bottom: 86px;
	}

	.electron-quickview-wrapper .electron-product-attributes,
	.electron-quickview-wrapper .electron-attr-list,
	.electron-quickview-wrapper .electron-attr-item {
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
		width: 100%;
	}

	.electron-quickview-wrapper .electron-attr-item {
		margin-right: 0;
		flex-direction: row;
	}

    .electron-quickview-wrapper .electron-btn {
        text-align: center;
        display: inline-flex;
        justify-content: center;
    }

	.electron-quickview-wrapper div.product form.cart div.quantity,
	.woocommerce .electron-quickview-wrapper div.product form.cart div.quantity {
		margin-left: 0;
		width: 100%;
		max-width: 100%;
		float: none;
	}
    .quick-cart-col .electron-btn-buynow {
        order: 2;
        min-width: 100%;
    }
    .quick-cart-col .product-after-cart-wrapper {
        order: 3;
    }
	.electron-quickview-wrapper .swiper-button-prev:after,
	.electron-quickview-wrapper .swiper-button-next:after {
		font-size: 24px;
	}

    .mfp-electron-quickview .electron-panel-close-button {
        top: 0;
        right: 0;
        background: var(--electron-gray);
        border-radius: 0;
    }
}
.quantity.type-hidden {
    display: none;
}

.electron-shop-popup-notices .wc-block-components-notice-banner {
	display: flex;
	align-items: center;
	gap: 10px;
}
.electron-shop-popup-notices .wc-block-components-notice-banner svg {
	fill: #fff;
}

.payment-method-message iframe {
    min-height: 80px;
}
ul.wc_payment_methods.payment_methods.methods li div {
    margin-left: 0;
		margin-bottom: 0;
}
ul.wc_payment_methods.payment_methods.methods iframe,
.electron-product-summary iframe {
    min-height: auto;
}
.electron-checkout-review-order-table .electron-checkout-review-order-footer #shipping_method {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.electron-checkout-review-order-table .electron-checkout-review-order-footer #shipping_method li {
    display: flex;
    align-items: center;
}
.cr-customer-consent label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    align-items: flex-start;
    margin-top: 15px;
}
.electron-product-summary div#payment-method-message {
    display: block;
    margin-bottom: 15px;
}
.shop-catalog-mode .electron-loop-product.type-1 .product-inner {
    padding-bottom: 0;
}
.shop-catalog-mode .electron-loop-product.type-3 .product-actions.hint-top {
    flex-direction: row;
    gap: 15px;
    margin-bottom: 5px;
    position: relative;
}
.shop-catalog-mode .type-7 .details-wrapper {
    min-height: auto;
}

form.vehicle-search-form{
    display: flex;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
}
form.vehicle-search-form>* {
    flex: 1 0 auto;
}/* general style */

.electron-loop-product .product-inner {
    position: relative;
}

.electron-loop-product .details-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.electron-loop-product .product-labels {
    position: absolute;
    top: 10px;
    left: 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
	z-index: 2;
}

.electron-loop-product .thumb-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 186px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.electron-loop-product .thumb-wrapper:hover {
    overflow: visible;
}

.electron-loop-product .product-name {
    font-size: 14px;
    margin: 0;
    line-height: 1;
}

.electron-loop-product .product-features {
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-size: 10px;
    text-transform: uppercase;
    list-style: none;
    color: var(--electron-text);
    line-height: 1.7;
    padding: 0;
    margin: 0;
}

.product-features .checked {
    color: var(--electron-green);
}

.electron-loop-product .electron-product-button {
	display: flex;
	align-items: center;
	justify-content: center;
    position: relative;
}

.electron-loop-product .product-actions svg {
    width: 18px;
    height: 18px;
}

.electron-loop-product .product-actions svg {
    fill: var(--electron-text);
}

.electron-loop-product .electron-product-button:hover svg {
    fill: var(--electron-primary);
}

.woosc-btn.woosc-btn-added:before {
    content: none;
}

.electron-product-button.woosc-btn-added svg {
    fill: var(--electron-green);
}

.electron-product-button.added svg {
    fill: var(--electron-green);
}

.electron-loop-product .electron-stock-status {
    font-size: 11px;
    line-height: 1;
}

.electron-loop-product .instock {
    color: var(--electron-green);
}

.electron-loop-product .outofstock {
    color: var(--electron-red);
}

.electron-loop-product .product-price {
    color: var(--electron-red-dark);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    display:flex;
    gap:10px;
}

.electron-loop-product ins {
	text-decoration: none;
}

.electron-loop-product del {
    color: var(--electron-red);
}

.electron-loop-product .stock-rating {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 15px;
}

.electron-loop-product .star-rating,
.electron-loop-product .star-rating>span::before {
    font-size: 11px;
}

.electron-swatches-wrapper .electron-variations {
    gap: 10px;
}

.electron-product-inner a.reset_variations,
.electron-product-inner span.variation-label {
    display: none;
}

.electron-loop-swatches.resettting a.reset_variations {
    display: none!important;
}

.electron-swatches-wrapper .type-color {
    border-radius: 50%;
}

.electron-swatches-wrapper .type-button {
    font-size: 10px;
}

.electron-swatches-wrapper .electron-term .type-button {
    color: var(--electron-dark);
    background: transparent;
}

.electron-swatches-wrapper .electron-term {
    min-width: 15px;
    min-height: 15px;
    border-radius: 10px;
}

.electron-swatches-wrapper .electron-term {
    padding: 1px;
    border: 0px solid var(--electron-gray);
}

.electron-swatches-wrapper .type-button {
    font-size: 11px;
}

.electron-swatches-wrapper .electron-term.electron-selected,
.electron-swatches-wrapper .electron-type-button .electron-term.electron-selected {
    border-color: #25d366;
    border-width: 2px;
    border-style: solid;
}

.electron-swatches-wrapper .electron-type-button .electron-term,
.electron-swatches-wrapper .electron-type-button .electron-term.electron-selected {
    padding: 0;
    min-width: auto;
    min-height: auto;
    border-width: 0;
    border-bottom-width: 2px;
    border-radius: 0;
    height: auto;
}

.electron-swatches-wrapper .terms-outline .type-button {
    padding: 0px !important;
}

.electron-swatches-wrapper .electron-terms {
    gap: 5px;
}

.electron-swatches-wrapper .electron-variations-items select {
    border: 0;
    padding: 0;
    min-height: 15px;
}
.electron-swatches-wrapper .electron-term.electron-selected:before {
    content: none;
}

.ajax_add_to_cart.loading,
.electron-btn.ajax_add_to_cart.loading {
	pointer-events: none;
}

.swiper-slide.style-bordered .electron-loop-product {
    border: 1px solid var(--electron-gray);
    padding: 5px;
    border-radius: 4px;
}

.section-custom-categories.style-bordered .row {
    border-top: 1px solid var(--electron-gray);
    border-left: 1px solid var(--electron-gray);
    border-radius: 4px;
    margin-bottom: 0;
    border-right: 0;
    overflow: hidden;
    margin-left: calc(0.5 * var(--bs-gutter-x));
    margin-right: calc(0.5 * var(--bs-gutter-x));
}

.section-custom-categories.style-bordered .electron-loop-product {
    border-right: 1px solid var(--electron-gray);
    border-bottom: 1px solid var(--electron-gray);
    padding: calc(var(--bs-gutter-x) * 0.5);
}

.section-custom-categories.style-bordered .electron-product-loop-inner {
    margin-bottom: 0px;
}

.electron-loop-product .variations_form .electron-btn-reset.reset_variations {
    display: none!important;
}
/* general style */


/* product type list */
.electron-loop-product.type-list {
    position: relative;
    padding: 15px;
    border: 1px solid var(--electron-border);
    -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    border-radius: 10px;
    overflow: hidden;
}
.electron-loop-product.type-list:hover {
    border-color: var(--electron-primary);
}
.type-list .list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.type-list .thumb-wrapper {
    margin: 0px;
    flex: 1;
    max-width: 40%;
    position: relative;
    overflow: hidden;
}
.type-list .details-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.electron-loop-product.type-list:hover img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transform-origin: center center;
    -moz-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    -o-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    -webkit-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    transition: all .5s cubic-bezier(.25,.46,.45,.94);
}
.type-list .product-labels {
    top: 0;
    left: 0;
}
.type-list .product-desc {
    font-size: 12px;
    margin: 0;
}
.type-list .cart-actions {
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    gap: 20px;
}
.type-list .product-buttons {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.type-list .electron-product-button {
    background-color: var(--electron-light);
    width: 30px;
    height: 30px;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.type-list .electron-svg-icon {
    max-width: 16px;
    max-height: 16px;
    fill: var(--electron-dark);
}

.type-list .cart-wrapper,
.type-list .electron-product-cart {
    margin-top: 0;
    width: 100%;
}
.type-list .cart-wrapper svg {
    fill: var(--electron-light);
}
.type-list .electron-swatches-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--electron-light);
    padding: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
    opacity: 0;
    bottom: 0;
    transform: translateY(100%);
    visibility: hidden;
    -moz-transition: all .25s cubic-bezier(.25,.46,.45,.94);
    -o-transition: all .25s cubic-bezier(.25,.46,.45,.94);
    -webkit-transition: all .25s cubic-bezier(.25,.46,.45,.94);
    transition: all .25s cubic-bezier(.25,.46,.45,.94);
}

.type-list:hover .electron-swatches-wrapper {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.type-list .electron-swatches-wrapper .product-price {
    margin-bottom: 15px;
}
@media(max-width:768px){
    .electron-loop-product .product-price,
    .electron-loop-product .price-wrapper {
        font-size: 12px;
    }
}
@media(max-width:480px){
    .type-list .list-inner,
    .type-list .cart-actions{
        gap: 10px;
    }
    .electron-loop-product.type-list .thumb-wrapper {
        min-height: 125px;
    }
    .electron-loop-product .product-name {
        line-height: 1.5;
        font-size:12px;
    }
}

@media(min-width:768px){
    .loop-list-item {
        padding: 20px;
    }
}

@media(max-width:1024px) {
	.loop-list-item span.electron-hint {
        display: none;
    }
    .electron-loop-product .product-features {
        display:none;
    }
    .electron-loop-product .electron-stock-status {
        font-size:9px;
    }
}
/* product type list *//* product type 2 */
.electron-loop-product.type-1 {
    border: 1px solid var(--electron-border);
    background: var(--electron-light);
    padding: 0;
    position: relative;
    border-radius: 5px;
    padding: 0;
    width: 100%;
    height: 100%;
}

.electron-loop-product.type-1:hover {
    border-color: var(--electron-primary);
}

.electron-loop-product.type-1 .thumb-wrapper {
    padding: 15px;
    min-height: 175px;
}

.type-1 .details-wrapper {
    padding: 15px;
    position: relative;
    border-top: 1px solid var(--electron-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.type-1 .details-inner {
    overflow: hidden;
    position: relative;
}

.type-1 .product-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 0;
    position: absolute;
    max-width: 110px;
    background-color: #fff;
    box-shadow: 0px 1px 20px 0px #c8c8c8;
    border-radius: 5px;
    width: 100%;
    padding: 10px 0;
    bottom: -20px;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all .25s cubic-bezier(.25, .46, .45, .94);
    -o-transition: all .25s cubic-bezier(.25, .46, .45, .94);
    -webkit-transition: all .25s cubic-bezier(.25, .46, .45, .94);
    transition: all .25s cubic-bezier(.25, .46, .45, .94);
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}

.type-1:hover .product-actions {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.type-1 .rating-review {
    position: absolute;
    bottom: 10px;
    left: 15px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1;
    background-color: var(--electron-yellow-bg);
    font-size: 11px;
    font-weight: 600;
    border: 1px solid;
    border-color: var(--electron-yellow-soft);
    border-radius: 4px;
}

.type-1 .rating-review .rating,
.type-1 .rating-review .review {
    display: flex;
    align-items: center;
    gap: 3px;
}

.type-1 .rating-review .rating::after {
    content: "\f148";
    color: var(--electron-yellow);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-family: 'ninetheme-font';
}

.type-1 .rating-review .review::before {
    content: none;
    color: var(--electron-yellow);
}

.type-1:hover .rating-review {
    opacity: 0;
    z-index: -1;
}

.type-1 .electron-loop-swatches {
    margin-top: 5px;
}

.type-1 .electron-swatches-wrapper {
    position: absolute;
    bottom: 0%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: var(--electron-light);
    -moz-transition: all .15s cubic-bezier(.25, .46, .45, .94);
    -o-transition: all .15s cubic-bezier(.25, .46, .45, .94);
    -webkit-transition: all .15s cubic-bezier(.25, .46, .45, .94);
    transition: all .15s cubic-bezier(.25, .46, .45, .94);
}

.type-1:hover .electron-swatches-wrapper {
    bottom: 0;
    opacity: 1;
    -moz-transition: all .25s cubic-bezier(.25, .46, .45, .94);
    -o-transition: all .25s cubic-bezier(.25, .46, .45, .94);
    -webkit-transition: all .25s cubic-bezier(.25, .46, .45, .94);
    transition: all .25s cubic-bezier(.25, .46, .45, .94);
    visibility: visible;
}

.type-1:hover .details-inner {
    overflow: visible;
}

.type-1 .product-cart-wrapper {
    margin-top: 15px;
}

.type-1 .electron-product-cart {
    width: 100%;
    border-radius: 5px;
}


.electron-loop-product.type-1 .product-inner {
    position: relative;
    padding-bottom: 51px;
    height: 100%;
}
.type-1 .product-cart-wrapper {
    margin-top: 15px;
    position: absolute;
    bottom: 15px;
    max-width: calc(100% - 30px);
    width: 100%;
    left: 15px;
}
.type-1 .electron-product-cart {
    width: 100%;
}
@media(max-width:767px) {
    .type-1 .product-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        max-width: 100%;
        width: 100%;
        padding: 10px 0;
        bottom: auto;
        bottom: 0px;
        right: 0px;
        left:0px;
        opacity: 1;
        visibility: visible;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        border-radius:0;
    }
    
    .type-1:hover .product-actions {
        bottom: 0;
        opacity: 1;
        visibility: visible;
    }
    .type-1 .rating-review {
        bottom: 50px;
    }
}/*
* SIDEBARS
*/
@media(min-width:992px) {
    .electron-shop-hidden-top-sidebar {
        display: none;
    }
    .shop-layout-top-sidebar:not(.single) .nt-sidebar-inner-widget {
        padding: 15px;
        border: 1px solid var(--electron-border);
        border-radius: 5px;
    }
    .shop-area.has-sidebar.right-sidebar .nt-sidebar {
        order: 2;
    }
    .shop-area.top-sidebar .electron-open-fixed-sidebar {
        display: none;
    }
    .shop-area.top-sidebar .nt-sidebar-inner.sidebar-col-6 {
        display: grid;
        grid-template-columns: repeat(6,1fr);
    }
    .shop-area.top-sidebar .nt-sidebar-inner.sidebar-col-5 {
        display: grid;
        grid-template-columns: repeat(5,1fr);
    }
    .shop-area.top-sidebar .nt-sidebar-inner.sidebar-col-4 {
        display: grid;
        grid-template-columns: repeat(4,1fr);
    }
    .shop-area.top-sidebar .nt-sidebar-inner.sidebar-col-3 {
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }
    .shop-area.top-sidebar .nt-sidebar-inner.sidebar-col-2 {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
}
.electron-shop-hidden-top-sidebar .nt-sidebar-inner {
    gap: 30px;
}
.electron-shop-hidden-top-sidebar .nt-sidebar-inner.row-cols-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(1580px / 5), 1fr));
}
.electron-shop-hidden-top-sidebar .nt-sidebar-inner.row-cols-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(1580px / 4), 1fr));
}
.electron-shop-hidden-top-sidebar .nt-sidebar-inner.row-cols-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(1580px / 3), 1fr));
}
.electron-shop-hidden-top-sidebar .nt-sidebar-inner.row-cols-1 {
    display: grid;
    grid-template-columns: auto;
}
.has-sidebar .nt-sidebar-inner {
    border: 1px solid var(--electron-border);
    border-radius: 5px;
    display: grid;
    grid-template-columns: auto;
    padding: 0;
}
.has-sidebar.sticky-sidebar .nt-sidebar-inner {
    position: sticky;
    position: -webkit-sticky;
    top: 120px;
}
.has-sidebar .nt-sidebar-inner-widget {
    padding: 30px;
    position: relative;
}

.has-sidebar .nt-sidebar-inner-widget + .nt-sidebar-inner-widget:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--electron-border);
}
#nt-woo-single .shop-sidebar.nt-sidebar-inner {
	/* border: 1px solid #ddd; */
	/* padding: 25px; */
	background: #eeeeee29;
	border-radius: 5px;
}
.nt-sidebar-inner-widget ol li, .nt-sidebar-inner-widget ul li {
	margin: 0px;
	font-size: 13px;
	position: relative;
	line-height: 1.6;
	font-weight: 400;
}
.electron-product-summary.electron-is-sticky.electron-sticky-start {
    margin-top: 30px;
}

.shop-layout-right-sidebar .nt-sidebar {
	order: 1;
}

#nt-sidebar .widget-title,
.blog-sidebar-title h5,
.nt-sidebar-inner-widget h5,
.nt-sidebar-inner-widget .wp-block-group h2,
.shop-widget-title .title {
	text-transform: capitalize;
	margin: 0 0 20px;
	color: var(--electron-dark);
	font-style: normal;
	line-height: 1.8;
}

.electron-widget-product-list-details {
    display: flex;
    margin-left: 0px;
    flex-direction: column;
}

.nt-sidebar-inner-widget .electron-widget-product-list-item a {
    text-decoration: none;
    position: relative;
    display: flex;
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
	font-size: 13px;
	color: var(--electron-dark);
	font-weight: 400;
}

.woocommerce.nt-sidebar-inner-widget span.reviewer {
	font-size: 14px;
}

.woocommerce ul.product_list_widget li ins,
.woocommerce ul.product_list_widget li>.amount bdi {
	text-decoration: none;
}

.product_list_widget a.electron-widget-product-list-inner span.electron-price del,
.product_list_widget a.electron-widget-product-list-inner span.electron-price ins,
.product_list_widget a.electron-widget-product-list-inner span.electron-price {
    margin-top: 5px;
    font-size: 12px !important;
}

.woocommerce ul.product_list_widget li del {
	line-height: 1;
	color: var(--electron-red);
}

.woocommerce.nt-sidebar-inner-widget .star-rating,
.woocommerce.nt-sidebar-inner-widget .star-rating::before,
.woocommerce.nt-sidebar-inner-widget .star-rating span::before {
	font-size: 11px;
}
.nt-sidebar-inner-widget .wc-layered-nav-rating a {
    font-size: 11px;
    display: flex;
    align-items: center;
}
.woocommerce.nt-sidebar-inner-widget .star-rating {
	width: 75px;
	margin: 0;
	font-size: 8px;
}

.price_slider_wrapper {
	position: relative;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    position: relative;
    background: #ebebeb none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    height: 6px;
    margin-right: 0;
    margin-left: 0;
    border-radius: 20px;
    max-width: 100%;
    width: 95%;
}
.rtl.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    direction: ltr;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background: var(--electron-blue-bg);
    border-radius: 0;
    height: 6px;
    left: 10px;
    margin-left: 5px;
    position: relative;
}
.rtl.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    right: 10px;
    margin-left: 0;
    margin-right: 5px;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    position: absolute;
    height: 14px;
    width: 5px;
    top: 0;
    margin-top: -4px;
    border-radius: 3px;
    margin-left: 0;
    background-color: var(--electron-blue-soft);
    border-color: var(--electron-blue-soft);
    cursor: all-scroll;
}

.woocommerce .widget_price_filter .price_slider_amount {
    text-align: left;
    line-height: 2;
    font-size: 12px;
    font-weight: 500;
    color: var(--electron-dark-soft);
    text-transform: uppercase;
    margin: 25px 0 0 0;
}

.woocommerce .widget_price_filter .price_slider_amount .price_label {
	margin-top: 10px;
	text-align: left;
	position: absolute;
	right: 0;
	bottom: 0;
}

#nt-sidebar form .price_slider_amount .button {
    padding: 3px 15px;
    font-size: 11px;
    border-radius: 3px !important;
    text-transform: uppercase;
    font-weight: 500;
    min-width: inherit;
    background: var(--electron-primary);
    min-height: auto;
    color: var(--electron-light);
}

.price_label {
	margin-top: 10px;
	text-align: left;
}

.woocommerce-widget-layered-nav-list__item .widget-list-span {
    background: var(--electron-light);
    color: var(--electron-dark);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: auto;
    right: 3px;
    width: 15px;
    height: 15px;
    border-radius: 20px;
    font-size: 11px;
}

.woocommerce-widget-layered-nav-list__item .electron-swatches-widget-color-item {
    position: relative;
    margin-right: 12px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    border: 1px solid #ebebeb;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
	width: 50px;
	border: 1px solid;
	border-color: var(--electron-border);
	border-radius: 5px;
	padding: 5px;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
	padding: 0;
	display: flex;
	align-items: center;
}
.woocommerce-widget-layered-nav-list__item .electron-swatches-widget-color-item {
    position: relative;
    margin-right: 12px;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    border: 0;
}
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a {
	padding: 0;
	padding-left: 0px;
	font-size: 13px;
	color: var(--electron-dark-soft);
	position: relative;
	display: flex;
	align-items: center;
	line-height: 1;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a::before {
	display: none;
}

#nt-sidebar form button:hover {
	background: var(--electron-primary);
	color: var(--electron-light);
}

.electron-widget-product-categories a label,
.electron-product-status a label {
    margin: 0;
    margin-left: 7px;
    color: var(--electron-dark-soft);
    font-size: 13px;
    font-weight: 400;
    width: auto;
    cursor: pointer;
}

.site-scroll li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-scroll li a .checkbox {
    width: 13px;
    height: 13px;
    border: 1px solid var(--electron-gray-dark);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0;
}
.site-scroll li a.checked .checkbox {
    font-size: 9px;
    background-color: var(--electron-primary);
    color: var(--electron-light);
    border-color: var(--electron-primary);
}

input[type='checkbox']:after {
	cursor: pointer;
}

.nt-sidebar-inner .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 3px;
    right: -3px;
    width: 25px;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid;
    border-color: var(--electron-border);
    border-radius: 4px;
    height: 29px !important;
    font-size: 11px !important;
}

/* shop fixed sidebar */
.electron-shop-fixed-sidebar {
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	height: 100%;
	background: var(--electron-light);
	box-shadow: 0px 12px 24px 0px rgb(120 120 120 / 30%);
	padding: 70px 30px 50px;
	width: 100%;
	max-width: 360px;
	opacity: 0;
	overflow: hidden;
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	will-change: transform;
	-webkit-transition: opacity 0.25s ease, ease;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.admin-bar .electron-shop-fixed-sidebar {
	top: 32px;
	height: calc(100% - 32px);
}

.electron-shop-fixed-sidebar.active {
	opacity: 1;
	-moz-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

.electron-toggle-hidden-sidebar span,
.electron-open-fixed-sidebar span {
	margin-right: 10px;
	cursor: pointer;
}

.electron-shop-fixed-sidebar .panel-close {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}

.electron-shop-fixed-sidebar .nt-sidebar-inner {
    margin: 0;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    margin-right: -15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nt-sidebar-inner-wrapper {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.nt-sidebar-inner-wrapper.all-closed {
	margin-bottom: 15px;
}

@media(min-width: 992px) {
	.left-sidebar .electron-before-loop .electron-open-fixed-sidebar,
	.right-sidebar .electron-before-loop .electron-open-fixed-sidebar {
		display: none;
	}
    .nt-woo-single.left-sidebar .row-content {
        flex-direction: row-reverse;
    }
}
/* shop fixed sidebar */


/* shop top hidden sidebar */
.electron-shop-hidden-top-sidebar.active {
    margin-bottom: 30px;
}
.shop-layout-top-sidebar:not(.single) .nt-sidebar-inner-widget {
    padding: 0 12px;
}

.shop-layout-top-sidebar .electron-products-wrapper .electron-choosen-filters {
	display: none;
}

.electron-toggle-hidden-sidebar:not(.active) .electron-filter-close {
	display: none;
}

.electron-toggle-hidden-sidebar.active .svgFilter {
	display: none;
}

.nt-sidebar .panel-close {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}

.panel-close.btn-done {
	position: relative;
	top: auto;
	right: auto;
	width: auto;
	padding: 0px 15px;
}

.shop-layout-top-sidebar .electron-toggle-hidden-sidebar {
	display: none;
}

.electron-choosen-filters-row.filters-active .electron-remove-filter,
.electron-products-wrapper .electron-choosen-filters,
.electron-shop-hidden-top-sidebar .electron-choosen-filters {
	border-bottom: 1px solid var(--electron-gray);
	justify-content: center;
	padding: 0 0 5px;
	text-align: left;
	margin-bottom: 20px;
}

.electron-product-status .nt-sidebar-inner-widget ul li:not(:first-child) {
	margin-top: 0px;
}

@media (min-width: 992px) {

	.shop-layout-left-sidebar .default-sidebar .electron-choosen-filters,
	.shop-layout-right-sidebar .default-sidebar .electron-choosen-filters,
	body:not(.shop-layout-fixed-sidebar) .nt-sidebar .panel-close,
	.nt-sidebar .electron-choosen-filters {
		display: none;
	}
}

@media(max-width: 992px) {

	.nt-sidebar.electron-blog-sidebar {
		margin-top: 60px;
	}

	.nt-sidebar:not(.electron-blog-sidebar) {
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        height: 100%;
        background: var(--electron-light);
        box-shadow: 0px 12px 24px 0px rgb(120 120 120 / 30%);
        padding: 60px 15px 20px;
        width: 100%;
        max-width: 400px;
        opacity: 0;
        overflow: hidden;
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        will-change: transform;
        -webkit-transition: opacity 0.25s ease, ease;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

	.nt-sidebar:not(.electron-blog-sidebar).active {
		opacity: 1;
		-moz-transform: translateX(0%);
		-ms-transform: translateX(0%);
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}

	.admin-bar .nt-sidebar:not(.electron-blog-sidebar) {
		top: 32px;
		height: calc(100% - 32px);
	}

	.nt-sidebar:not(.electron-blog-sidebar) .nt-sidebar-inner {
		margin: 0;
		max-height: 100%;
		overflow-y: auto;
	}

    .has-sidebar .nt-sidebar-inner-widget {
        padding: 20px;
    }

    .nt-sidebar.electron-shop-hidden-top-sidebar {
        padding: 70px 10px 20px;
    }

	.electron-before-loop .electron-block-right>div.electron-toggle-hidden-sidebar,
	.electron-before-loop .electron-block-left>div.electron-toggle-hidden-sidebar,
	.shop-layout-fixed-sidebar.fixed-sidebar-top .electron-toggle-hidden-sidebar {
		display: none;
	}

	.nt-sidebar .electron-choosen-filters {
		border-bottom: 1px solid var(--electron-gray);
		justify-content: center;
		padding: 0 0 5px;
		text-align: left;
		margin-bottom: 20px;
	}

	.electron-choosen-filters-action {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

.electron-shop-hidden-sidebar .nt-sidebar-inner-widget {
	margin: 30px 0 60px !important;
}

.nt-sidebar .nt-sidebar-inner-widget ul {
	list-style: none;
}

.nt-sidebar .nt-sidebar-inner-widget ul.product-categories li ul.children {
	display: none;
}

.product-categories span.subDropdown {
	border-radius: 50%;
	background: rgb(226 226 226);
	border: 5px solid transparent;
	color: var(--electron-dark);
	width: 20px;
	height: 20px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	cursor: pointer;
	top: 3px;
	right: 38px;
}

.product-categories span.subDropdown:before,
.product-categories span.subDropdown:after {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background-color: #282828;
	transform-origin: 50% 50%;
	opacity: 1;
	-moz-transition: -moz-transform ease 0.25s;
	-webkit-transition: -webkit-transform ease 0.25s;
	-o-transition: -o-transform ease 0.25s;
	-ms-transition: -ms-transform ease 0.25s;
	transition: transform ease 0.25s;
}

.product-categories span.subDropdown:after {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.product-categories span.subDropdown:before {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

.product-categories span.subDropdown.active:before,
.product-categories span.subDropdown.active:after,
.product-categories span.subDropdown:hover:before,
.product-categories span.subDropdown:hover:after {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}
/* shop top hidden sidebar */


/* product_list_widget */
.product_list_widget a.electron-widget-product-list-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.product_list_widget a.electron-widget-product-list-inner img {
	margin-right: 15px;
}

.product_list_widget a.electron-widget-product-list-inner span.electron-widget-product-list-details {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.product_list_widget .electron-widget-product-list-details .product-title {
	max-width: 100%;
	font-size: 13px;
}

.product_list_widget a.electron-widget-product-list-inner span.electron-price {
	margin-top: 0;
}
/* product_list_widget */


@media(min-width:1200px) {
    .row.left-sidebar {
        flex-direction: row-reverse;
    }
}

@media(max-width:768px) {
	.shop-sidebar-fixed .blog-sidebar {
		height: calc(100vh);
		max-height: calc(100vh);
	}
}

@media(max-width:1024px) {
	.mobile-sidebar-close {
		display: flex;
		align-items: stretch;
		align-content: center;
		justify-content: center;
		flex-direction: row;
		flex-wrap: wrap;
		margin-right: -3px;
	}

	.shop-sidebar-fixed .electron-mobile-sidebar-toggle {
		display: block;
	}

	body.electron-ajax-shop #nt-sidebar .nt-sidebar-inner .electron-choosen-filters {
		display: block;
	}

	#nt-sidebar .nt-sidebar-inner .electron-choosen-filters {
		padding: 5px 10px;
		border: none;
		width: 100%;
		margin: 0 0 15px 0px;
		background: var(--electron-light);
		z-index: 1;
	}

	#nt-sidebar .nt-sidebar-inner.scroll-start .electron-choosen-filters {
		position: absolute;
		top: 40px;
		margin-top: 0;
		left: 0;
	}

	#nt-sidebar .woocommerce-result-count {
		float: none;
		margin: 0;
		width: 100%;
	}

	.woocommerce #nt-sidebar .woocommerce-info:before {
		display: none;
	}

	.woocommerce #nt-sidebar .nt-sidebar-inner .close-sidebar {
		top: auto;
		bottom: auto;
		position: relative;
		padding: 5px;
		background: var(--electron-dark);
		align-items: center;
		justify-content: center;
		color: var(--electron-light);
		line-height: 1.3;
		margin-top: 5px;
		border-radius: 4px;
		cursor: pointer;
		margin-top: 10px;
	}

	.woocommerce #nt-sidebar .woocommerce-result-count span {
		color: var(--electron-primary);
	}

	.shop-sidebar-fixed .blog-sidebar {
		margin: 0;
		overflow-y: scroll;
		padding: 0px;
	}

	#nt-sidebar .nt-sidebar-inner-widget a.ajax-loading::after {
		content: "";
		margin-left: 10px;
		border-width: 2px;
		border-color: var(--electron-dark);
		border-left-color: transparent;
		border-radius: 50%;
		border-style: solid;
		-webkit-animation: v-spin-fast 1s linear infinite;
		animation: v-spin-fast 1s linear infinite;
		width: 15px;
		height: 15px;
		position: absolute;
		right: 7px;
	}
}

@media(max-width: 480px) {
    .admin-bar.scroll-start .electron-shop-fixed-sidebar {
    	top: 0px;
    	height: calc(100% - 0px);
    }
}

#nt-sidebar.order-2 {
	position: relative;
}

.electron-sticky-sidebar-stopper {
	position: relative;
	display: block;
}

.electron-is-sticky {
	will-change: position, top;
}

span.subDropdown {
	position: absolute;
	top: 0;
	right: 0;
	width: 25px;
	height: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
}

span.subDropdown svg {
	max-width: 10px;
	max-height: 15px;
}

span.subDropdown.minus svg .vertical,
.widget_electron_product_categories ul.children {
	display: none;
}

.widget_electron_product_categories ul.children li a:before {
	content: none !important;
}

ul.electron-remove-filter li {
	display: inline-block;
	margin-right: 15px;
}

ul.electron-remove-filter li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: capitalize;
}

.nt-sidebar-inner a span.remove-filter,
ul.electron-remove-filter li a span.remove-filter,
.electron-fast-filters-list .remove-filter {
	position: relative;
	width: 15px;
	height: 15px;
	background-color: var(--electron-bg-soft);
	margin-right: 5px;
	border-radius: 50px;
}

.nt-sidebar-inner li a:hover span.remove-filter,
ul.electron-remove-filter li a:hover span.remove-filter,
.electron-fast-filters-list .remove-filter {
	background-color: var(--electron-gray);
}

ul.electron-remove-filter li a.clear-all span.remove-filter {
	background-color: var(--electron-dark);
}

.electron-remove-filter li:first-child a span.remove-filter:before,
.electron-remove-filter li:first-child a span.remove-filter:after {
	background-color: #fff !important;
}

.nt-sidebar-inner li a span.remove-filter:before,
.nt-sidebar-inner li a span.remove-filter:after,
.electron-fast-filters-list .remove-filter:before,
.electron-fast-filters-list .remove-filter:after,
.electron-remove-filter li a span.remove-filter:before,
.electron-remove-filter li a span.remove-filter:after {
	content: "";
	width: 7px;
	height: 1px;
	position: absolute;
	left: 4px;
	top: 7px;
	display: inline-block;
	background-color: var(--electron-dark);
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.nt-sidebar-inner li a span.remove-filter,
.electron-fast-filters-list .remove-filter,
.electron-remove-filter li a {
	position: relative;
	color: var(--electron-dark);
	letter-spacing: 0.2px;
	cursor: pointer;
}

.nt-sidebar-inner li a span.remove-filter:before,
.electron-remove-filter li a span.remove-filter:before,
.electron-fast-filters-list .remove-filter:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nt-sidebar-inner li a span.remove-filter:after,
.electron-remove-filter li a span.remove-filter:after,
.electron-fast-filters-list .remove-filter:after {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
}

.nt-sidebar-inner li a:hover span.remove-filter:before,
.nt-sidebar-inner li a:hover span.remove-filter:after,
.electron-remove-filter li a:hover span.remove-filter:before,
.electron-remove-filter li a:hover span.remove-filter:after,
.electron-fast-filters-list li:hover > a > .remove-filter:before,
.electron-fast-filters-list li:hover > a > .remove-filter:after {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}

.filters-container .nav-tabs.nav-tab-box {
	display: inline-block;
}
body:not(.page-loaded) .price_slider_wrapper {
    opacity: 0;
}
.electron-choosen-filters-row {
    margin-bottom: 15px;
}
.site-scroll input[type=checkbox],
.site-scroll input[type=radio] {
    margin-right: 0px;
}

.electron-product-status .site-scroll a label {
    margin-left: 0;
}
.cart-item-details dl.variation {
    flex-wrap: wrap;
    line-height: 1;
}

.electron-category-menu.fixed-submenu .submenu {
    position: fixed;
    max-height: 400px;
    overflow-y: auto;
}/*/////////////////////////////////
01 >-----> PRODUCT BREADCRUMBS
/////////////////////////////////*/
.electron-product-top-nav {
	margin: 0;
	z-index: 1;
	position: relative;
}
.electron-product-summary .electron-product-title {
    line-height: 24px;
    font-size: 24px;
}
.electron-product-breadcrumb-nav .electron-flex,
.electron-product-top-nav {
	justify-content: space-between;
}

.electron-product-top-nav.electron-bread-off {
    justify-content: flex-end;
}

.electron-product-breadcrumb-nav {
	padding: 30px 0;
	z-index: 2;
}

/*/////////////////////////////////
01 >-----> PRODUCT GENERAL
/////////////////////////////////*/
.electron-row-summary .electron-product-labels,
.electron-swiper-slider-wrapper .electron-product-labels {
	z-index: 5;
	display: flex;
	gap: 5px;
}

.electron-product-video-button+.electron-product-labels {
	top: 80px;
	left: 20px;
}

.electron-section:not(.first-section) {
	margin-top: 50px;
}

.section-title-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.electron-section .section-title {
	margin-bottom: 0;
	text-transform: capitalize;
}

.electron-summary-item .electron-svg-icon {
	max-width: 20px;
	max-height: 20px;
	margin-right: 5px;
}

.electron-product-summary ul,
.electron-product-summary ul.electron-product-features-list,
.electron-product-tabs-content ul,
.electron-product-tabs-content ul.electron-product-features-list {
	padding-left: 12px;
}

.electron-product-summary ul.electron-breadcrumb {
	padding-left: 0px;
}

form.electron-summary-item.electron-flex.cart.grouped_form {
	display: block;
}

.woocommerce-grouped-product-list.group_table {
    width: 100%;
}

form .grouped-list-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.woocommerce-grouped-product-list .woocommerce-grouped-product-list-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    flex: 1 0 auto;
    background: var(--electron-success-bg);
    border: 1px solid var(--electron-success-border);
    color: var(--electron-success);
    border-radius: 4px;
}
.woocommerce-grouped-product-list .quantity {
    border-color: 1px solid var(--electron-dark);
    -webkit-box-shadow: none;
    box-shadow: none;
	color: var(--electron-dark);
}
.woocommerce-grouped-product-list .quantity .minus,
.woocommerce-grouped-product-list .quantity .plus {
    color: var(--electron-dark);
}

form.electron-summary-item.electron-flex.cart.grouped_form button {
	width: 100%;
}

.electron-summary-item .electron-product-button {
    max-width: 45px;
    width: 40px;
    height: 40px;
    position: relative;
    background-color: var(--electron-primary);
    color: var(--electron-light);
    flex: 1 0 auto;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.electron-summary-item .golden-product-button.added svg {
    fill: var(--electron-green);
}

.electron-after-cart-button-wrapper {
	display: flex;
}

.product:not(.electron-single-product-type-3) .single-product-add-to-cart-type-black .woocommerce-variation-add-to-cart,
.product:not(.electron-single-product-type-3) .single-product-add-to-cart-type-gray .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: nowrap;
	margin-top: 20px;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	align-content: center;
	background: var(--electron-bg-soft);
	border: 1px solid var(--electron-gray);
	padding: 20px;
	border-radius: 4px;
	text-align: center;
}

/*/////////////////////////////////
02 >-----> PRODUCT NAV
/////////////////////////////////*/
.electron-product-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
}

.electron-product-top-labels {
	display: flex;
	align-items: center;
}

.electron-product-top-labels .electron-label:not(:last-child) {
	margin-right: 5px;
}

.electron-product-nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.electron-product-nav .product-nav-content {
	position: absolute;
	top: 100%;
	right: 0px;
	visibility: hidden;
	padding: 10px;
	min-width: 240px;
	opacity: 0;
	transition: opacity .1s ease .1s, visibility .1s ease .1s;
	animation: electronfadeOutLeft .1s ease .1s both;
	z-index: 99;
	display: flex;
	align-items: center;
	flex-direction: row;
	background-color: var(--electron-light);
	box-shadow: 0 0 3px rgba(0, 0, 0, .15);
	cursor: pointer;
}

.electron-product-nav .product-nav-link,
.electron-product-nav .product-nav-link:hover {
	opacity: 1;
}

.electron-product-nav .product-nav-link:hover>.product-nav-content {
	visibility: visible;
	opacity: 1;
	transition: opacity .3s ease, visibility .3s ease;
	animation: electronfadeInLeft .3s ease both;
}

.electron-product-nav .product-nav-title {
	margin-left: 7px;
	font-size: 14px;
	color: var(--electron-dark);
}

.electron-product-nav .product-nav-title:hover {
	color: var(--electron-primary);
}

.product-nav-link.electron-nav-shop {
	position: relative;
	margin: -2px 10px 0;
}

.electron-nav-arrow {
	font-size: 14px;
}

span.electron-shop-link-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

span.electron-shop-link-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

span.electron-shop-link-icon:before,
span.electron-shop-link-icon:after {
	content: "";
	position: relative;
	display: block;
	width: 7px;
	height: 7px;
	border: 1px solid var(--electron-dark);
	margin: 1px;
}

span.product-nav-content:after {
	content: "";
	width: 100%;
	height: 5px;
	position: absolute;
	top: -5px;
	left: 0;
}

.product-nav-link.disabled {
	opacity: 0.5;
	pointer-events: none;
}

/*/////////////////////////////////
03 >-----> PRODUCT SUMMARY
/////////////////////////////////*/

.woocommerce-variation-add-to-cart {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 10px;
}

.woocommerce-variation-price {
	margin-top: 10px;
}
.woocommerce-product-rating.electron-summary-item {
    line-height: 1;
}
.electron-product-info.active .woocommerce-variation-price {
    margin-top: 0;
}

.electron-product-bottom-popup-cart .woocommerce-variation-price {
	margin: 5px 0;
}

.woocommerce-variation-add-to-cart-disabled {
	opacity: 0.5;
	pointer-events: none;
	margin-top: 0px;
}

.electron-product-summary .electron-summary-item {
	margin: 0px;
	position: relative;
	color: var(--electron-dark);
}
.electron-product-labels.electron-summary-item:empty {
    display: none;
}
.woocommerce-review-link,
.cr-qna-link {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

.woocommerce-review-link {
    margin-left: 10px;
}

.electron-summary-item.short-description,
.electron-product-summary .electron-summary-item p {
    color: var(--electron-text);
}

.electron-product-summary .electron-summary-item+.electron-summary-item {
	margin-top: 20px;
}

.electron-summary-item.electron-product-popup-details div {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}
.electron-summary-item.electron-product-popup-details {
    display: flex;
    gap: 10px;
}

.electron-product-summary .electron-summary-item.electron-price,
.electron-product-summary .electron-summary-item.electron-price .price del,
.electron-product-summary .electron-summary-item.electron-price .price ins {
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    color: var(--electron-red-dark);
}

.woocommerce .electron-product-summary .electron-summary-item.electron-price del {
    font-weight: 400;
    color: var(--electron-red);
    font-size: 21px;
}

.woocommerce .electron-product-summary .electron-summary-item.electron-price ins {
    color: var(--electron-red-dark);
    text-decoration: none;
    font-size: 21px;
}

.electron-product-summary .electron-summary-item.electron-price .price del {
    color: var(--electron-red);
}

.woocommerce-grouped-product-list .woocommerce-grouped-product-list-items li a {
    font-weight: 500;
}

.electron-summary-item.electron-product-title:first-letter {
    text-transform: capitalize;
}

.electron-summary-item.electron-price p.stock.electron-stock-status {
    font-size: 9px;
    padding: 6px 12px;
    letter-spacing: 0.5px;
    background: var(--electron-success-bg);
    border: 1px solid var(--electron-success-border);
    color: var(--electron-success);
    border-radius: 10px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
}

.electron-summary-item.electron-price span+p.stock.electron-stock-status {
	margin-top: 15px;
}

.electron-summary-item.electron-price p.stock.electron-stock-status.out-of-stock {
    color: var(--electron-red);
    background-color: var(--electron-red-bg);
    border-color: var(--electron-red-border);
}

.cart p.stock.out-of-stock {
    padding: 10px;
    background-color: var(--electron-red-bg);
    color: var(--electron-red);
    border: 1px solid var(--electron-red);
}

.electron-product-summary .variations_form {
	flex-direction: column;
	display: flex;
	height: revert;
	flex-wrap: nowrap;
	align-content: flex-start;
	margin-bottom: 25px;
}

.electron-product-summary .variations_form .value select {
    padding: 8px 30px 8px 20px;
    min-height: 25px;
    border-radius: 4px;
}

.product-after-cart-wrapper {
    display: flex;
    gap: 10px;
    flex: 1 0 auto;
    max-width: 160px;
}

.electron-summary-item .electron-product-button .electron-svg-icon {
    margin-right: 0px;
    fill: var(--electron-light);
}
.electron-summary-item .electron-product-button.woosw-added,
.electron-summary-item .electron-product-button.woosc-added {
    background-color:var(--electron-blue-dark);
}
.electron-summary-item .electron-product-button:hover {
    color: var(--electron-light);
    background-color: var(--electron-blue-dark);
}

.electron-after-cart-grouped-button-wrapper {
display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
	margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--electron-border);
}

.electron-btn-reset-wrapper {
    display: none;
}

.electron-btn-reset-wrapper.active,
.electron-variations-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.electron-btn-reset-wrapper,
.electron-variations-items {
    gap: 15px;
}


.electron-variations-items .electron-small-title,
span.electron-small-title {
    min-width: 50px;
}

.electron-btn-reset-wrapper .electron-small-title {
    opacity: 0;
    visibility: hidden;
}
.variations_form .electron-btn-reset.reset_variations {
    background-color: var(--electron-light);
    color: var(--electron-red-dark);
    padding: 0;
    display: none;
    line-height: 1;
    margin-left: 0;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 0.5px;
    border-radius: 3px;
}
.electron-btn-reset-wrapper.active .electron-btn-reset.reset_variations {
    display: block;
}
.electron-zoom-wrapper img:not(.zoomImg).electron-hidden {
    display: none!important;
}
form.electron-summary-item.electron-flex.cart.grouped_form .electron-after-cart-grouped-button-wrapper button {
	width: auto;
	flex: 0 0 calc(100% - 110px);
	height: 50px;
	font-size: 16px;
}

.electron-after-cart-grouped-button-wrapper .electron-after-cart-button-wrapper {
    display: flex;
}

.electron-product-summary .electron-summary-item.form-external>div {
	margin-bottom: 0px;
}

.electron-product-summary .electron-product-meta {
	display: flex;
	flex-direction: column;
}

.electron-summary-item.electron-product-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.electron-summary-item.electron-product-meta .electron-meta-label {
    color: var(--electron-dark-soft);
    text-transform: uppercase;
    margin-right: 5px;
    font-weight: 500;
}

.electron-visitors-product-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: center;
    align-items: flex-start;
    font-size: 12px;
    border-width: 1px;
    border-style: solid;
    border-radius: var(--electron-border-radius);
    padding: 14px 20px;
}


.electron-product-carousel {
    margin-bottom: 60px;
}

/*/////////////////////////////////
04 >-----> PRODUCT TABS
/////////////////////////////////*/

.electron-product-tab-title {
	display: flex;
	justify-content: flex-start;
	flex-direction: row;
	flex-wrap: nowrap;
	width: fit-content;
}

.electron-product-tab-title-item {
    margin: 0;
    margin-right: 0;
    display: inline-block;
    border: none;
    border-radius: 0;
    background: var(--electron-primary);
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    color: var(--electron-light);
    font-family: var(--electron-font-heading);
    text-transform: uppercase;
    cursor: pointer;
    border-right: 1px solid;
    border-color: #466dd387;
}

.electron-product-tab-title-item::after {
	content: "";
	position: absolute;
	left: 16%;
	bottom: 7px;
	width: 15px;
	height: 0px;
	background: var(--electron-primary);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	opacity: 0;
}

.electron-product-tab-title-item.active {
    color: var(--electron-light);
    background: var(--electron-blue-soft);
}

.electron-product-tab-title-item.active::after {
	opacity: 1;
}

.electron-product-tab-title-item:first-child {
	margin-left: 0;
	border-radius: 5px 0 0 5px;
}
.electron-product-tab-title-item:last-child {
	margin-right: 0;
	border-radius: 0 5px 5px 0;
}

.electron-product-tab-content-item {
	padding: 20px 0;
	margin-bottom: -20px;
	display: none;
}

.electron-product-tab-content-item h4.title {
	display: none;
}

.electron-product-tab-content-item.active {
	display: block;
	animation: slide-down .3s ease-out;
}
.product-desc-content {
    max-width: 980px;
}
.product-desc-content img {
    border: 1px solid var(--electron-border) !important;
    border-radius: 5px;
    margin: 30px 0;
}

.product-desc-content img:hover {
    border-style: solid;
    border-color: var(--electron-primary);
}

.woocommerce-product-attributes-item th {
	width: 50%;
}

.electron-product-tabs-content th.woocommerce-product-attributes-item__label {
    font-weight: bold;
    padding-right: 10px;
}

.electron-summary-item .electron-svg-icon.shopBag {
    max-width: 30px;
    max-height: 30px;
    margin-right: 14px;
}

@media (max-width: 767px) {

    .electron-product-summary .electron-product-title {
        line-height: 24px;
        font-size: 18px;
    }

    .electron-product-tab-title-item::after {
        height:0px;
    }

	.electron-product-tab-title {
		border-bottom: 1px solid var(--electron-gray);
		border-bottom: 0px;
		display: flex;
		flex-direction: column;
		align-content: space-between;
		justify-content: space-between;
		width: inherit;
	}

	.electron-product-tab-title-item {
		margin-right: 15px;
		margin-bottom: 0;
		padding-bottom: 10px;
		font-size: 13px;
		padding: 10px 15px;
	}

	.electron-summary-item.electron-product-meta .electron-meta-label {
		color: var(--electron-dark-soft);
		text-transform: uppercase;
		margin-right: 5px;
		font-weight: 700;
	}

    .electron-wc-proceed-to-checkout .electron-btn {
        width: 100%;
    }

	.electron-product-tab-title-item:first-child {
		margin-left: 0;
		border-radius: 5px 5px 0 0;
	}
	.electron-product-tab-title-item:last-child {
		margin-right: 0;
		border-radius: 0 0 5px 5px;
	}
	.electron-product-tab-title-item::after {
        content: "\f115";
        transform: rotate(180deg);
        font-family: 'ninetheme-font';
        position: absolute;
        right: 10px;
        left: auto;
        font-size: 10px;
        top: 77%;
        width: 15px;
        height: 0px;
        color: var(--electron-light);
        background: var(--electron-light);
        opacity: 1;
        transition: none;
    }

.electron-product-tab-title-item.active::after {
    transform: rotate(0deg);
    top: 25%;
    right: 5px;
}

}

@media (max-width: 480px) {
	.electron-product-tab-title-item {
		margin-right: 15px;
		margin-bottom: 0;
		padding-bottom: 10px;
		font-size: 13px;
		width: 100% !important;
		max-width: 100% !important;
	}
    .electron-product-tab-title-item::after {
        bottom: 5px;
    }
    .electron-summary-item.electron-product-popup-details div {
        font-size: 10px;
    }
}

/*/////////////////////////////////
05 >-----> PRODUCT RELATED SLIDER
/////////////////////////////////*/

.electron-product-related .electron-product {
	margin-bottom: 0;
}

.cross-sells-slider-nav,
.upsells-slider-nav,
.related-slider-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
}

.cross-sells-slider-nav>div:hover,
.upsells-slider-nav>div:hover,
.related-slider-nav>div:hover {
	color: var(--electron-primary);
}

.related-slider-nav .electron-swiper-next,
.cross-sells-slider-nav .electron-swiper-next,
.upsells-slider-nav .electron-swiper-next {
	margin-left: 15px;
}

/*/////////////////////////////////
07 >-----> PRODUCT GALLERY SLIDER
/////////////////////////////////*/
.electron-product-gallery-main-slider .swiper-slide img,
.electron-product-gallery-main-image .swiper-slide img,
.electron-gallery-grid-item img {
    position: relative;
    width: 100%;
    display: block;
    border: 1px solid !important;
    border-color: var(--electron-border) !important;
    border-radius: 5px;
    background: var(--electron-gray-soft);
    padding: 20px;
}

body:not(.page-loaded) .electron-product-gallery-main-slider.swiper-creative .swiper-wrapper .swiper-slide:not(.swiper-slide-active) {
	display: none;
}


/*/////////////////////////////////
08 >-----> PRODUCT PROGRESBAR
/////////////////////////////////*/
.electron-single-product-stock .stock-details {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.electron-single-product-stock .stock-sold,
.electron-single-product-stock .current-stock {
	display: inline-block;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 500;
	color: var(--electron-text);
}


.electron-single-product-stock .stock-sold {
	color: var(--electron-red);
}

.electron-single-product-stock .current-stock {
	color: var(--electron-green) !important;
}

.electron-single-product-stock .electron-product-stock-progress {
	background: var(--electron-red-bg);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.electron-single-product-stock .electron-product-stock-progressbar {
    display: block;
    height: 8px;
    min-width: 1px;
    background: var(--electron-red);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    max-width: 100%;
}

.electron-single-product-stock .electron-product-stock-progressbar {
	animation: stock-progress-bar 8s ease;
	animation-delay: .5s;
	min-width: 3%;
}


/*/////////////////////////////////
09 >-----> PRODUCT SHARE ICONS
/////////////////////////////////*/
.electron-social-icons a {
	position: relative;
    opacity: 1;
}

.electron-social-icons a:after,
.electron-social-icons a:before {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	z-index: 1000000;
	pointer-events: none;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	transition: .3s ease;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	transition-delay: 0s;
}

.electron-social-icons a:before {
	content: "";
	position: absolute;
	background: 0 0;
	border: 6px solid transparent;
	border-top-color: var(--electron-primary);
	z-index: 1000001;
}

.electron-social-icons a:after {
	background: var(--electron-primary);
	color: var(--electron-light);
	padding: 8px 10px;
	font-size: 12px;
	line-height: 12px;
	white-space: nowrap;
	text-shadow: 0 -1px 0 #000;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, .3);
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.electron-social-icons a:after {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}

.electron-social-icons a:after,
.electron-social-icons a:before {
	bottom: 100%;
	left: 50%;
}

.electron-social-icons a:before {
	margin-bottom: -11px;
	left: calc(50% - 6px);
}

.electron-social-icons a:hover:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
}

.electron-social-icons a:hover:after {
	-webkit-transform: translateX(-50%) translateY(-8px);
	-moz-transform: translateX(-50%) translateY(-8px);
	transform: translateX(-50%) translateY(-8px);
}

.electron-social-icons a:hover:after,
.electron-social-icons a:hover:before {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: .1s;
	-moz-transition-delay: .1s;
	transition-delay: .1s;
}

.electron-social-icons a:after {
	content: attr(data-title);
}

.electron-product-share {
	display: flex;
	align-items: center;
	color: var(--electron-dark);
	margin: 15px 0;
	font-weight: 500;
}

.electron-product-share a {
	font-size: 13px;
	margin: 0;
	color: var(--electron-light);
	width: 30px;
	height: 30px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
}

.electron-product-share span.share-title {
	margin-right: 5px;
}

.electron-product-share a.social-facebook {
	background: #3b5998;
}

.electron-product-share a.social-twitter {
	background-color: #1da1f2;
}

.electron-product-share a.social-pinterest {
	background-color: #e60023;
}

.electron-product-share a.social-linkedin {
	background-color: #0077b5;
}

.electron-product-share a.social-reddit {
	background-color: #ff4500;
}

.electron-product-share a.social-whatsapp {
	background-color: #25d366;
}

.electron-product-share a.social-ok {
	background-color: #ee8208;
}

.electron-product-share a.social-telegram {
	background-color: #0088CC;
}

.electron-product-share a.social-email {
	background-color: #000;
}

.electron-product-share a.social-viber {
	background-color: #7360f2;
}

.electron-product-share a.social-vk {
	background-color: #4C75A3;
}

.electron-product-share a.social-youtube {
	background-color: #FF0000;
}

.electron-product-share a.social-vimeo {
	background-color: #1ab7ea;
}

.electron-product-share a.social-tumblr {
	background-color: #34526f;
}

.electron-product-share a.social-flickr {
	background-color: #0063dc;
}

.electron-product-share a.social-github {
	background-color: #6e5494;
}

.electron-product-share a.social-behance {
	background-color: #1769ff;
}

.electron-product-share a.social-dribbble {
	background-color: #8aba56;
}

.electron-product-share a.social-soundcloud {
	background-color: #ff8800;
}

.electron-product-share a.social-spotify {
	background-color: #1db954;
}

.electron-product-share a.social-snapchat {
	background-color: #fffc00;
}

.electron-product-share a.social-tiktok {
	background-color: #25F4EE;
}

/*/////////////////////////////////
10 >-----> PRODUCT QUESTION FORM
/////////////////////////////////*/
.electron-product-question-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--electron-gray);
	padding: 20px;
}

.electron-product-question-tumb {
	margin-right: 20px;
}

.electron-product-question-top .electron-product-question-title {
	font-size: 18px;
}

.electron-product-question-buttons {
	margin-left: 20px;
}

/*/////////////////////////////////////
11 >-----> PRODUCT ESTIMATED DELIVERY
/////////////////////////////////////*/
.electron-product-view,
.electron-estimated-delivery {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.electron-product-view svg {
	max-width: 14px;
	max-height: 14px;
}

.electron-estimated-delivery svg {
	max-width: 18px;
	max-height: 18px;
}

.electron-estimated-delivery span,
a.electron-open-popup,
.electron-product-summary .electron-product-meta .electron-brands,
.electron-product-summary .electron-product-meta .posted_in,
.electron-product-summary .electron-product-meta .tagged_as,
.electron-product-summary .electron-product-meta .electron-sku-wrapper {
	color: var(--electron-dark);
}

.electron-product-summary .electron-product-meta .electron-brands a,
.electron-product-summary .electron-product-meta .posted_in a,
.electron-product-summary .electron-product-meta .tagged_as a {
	color: var(--electron-dark);
}
.electron-estimated-delivery,
.electron-estimated-delivery span {
    color: var(--electron-primary);
}

/*/////////////////////////////////////////////
PRODUCT DEAFULT GALLERY SLIDER
/////////////////////////////////////////////*/
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    transition: all cubic-bezier(.795,-.035,0,1) .5s;
    margin: 0;
    padding: 0;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    position: relative;
    overflow: hidden;
}

.woocommerce div.product div.images .flex-control-thumbs {
    overflow: hidden;
    zoom: 1;
    margin: 0;
    padding: 0;
}

.woocommerce div.electron-single-product-type-1 div.images .flex-control-thumbs {
    margin-top: 10px;
}

.woocommerce div.product div.images:not(.electron-gallery-swiper-enabled) .flex-control-thumbs li {
    width: 20%;
    float: left;
    margin: 0;
    list-style: none;
}

.has-header-sidebar .product .electron-gallery-swiper-enabled .flex-control-thumbs li { max-width: 80px; }

.woocommerce .product .images.electron-gallery-swiper-enabled .flex-control-thumbs li {
    width: 100px;
    margin: 0;
    list-style: none;
}

.woocommerce .product .woocommerce-product-gallery--columns-4:not(.electron-gallery-swiper-enabled) .flex-control-thumbs li:nth-child(4n+1) {
    clear: left;
}

.woocommerce div.product div.images img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: none;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    cursor: pointer;
    opacity: 1;
    margin: 0;
    padding: 0px;
    border-bottom: 6px solid var(--electron-gray);
}

body:not(.page-loaded) div.product .gallery-col {
    overflow: hidden;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
    opacity: 1;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 15px;
    left: auto;
    right: 15px;
    font-size: 2em;
    z-index: 9;
    width: 35px;
    height: 35px;
    background: var(--electron-gray);
    text-indent: -9999px;
    border-radius: 100%;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger img{
    display: none!important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 0;
    position: absolute;
    top: auto;
    left: auto;
    box-sizing: content-box;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M128,32V0H16C7.163,0,0,7.163,0,16v112h32V54.56L180.64,203.2l22.56-22.56L54.56,32H128z'/%3E%3Cpath d='M496,0H384v32h73.44L308.8,180.64l22.56,22.56L480,54.56V128h32V16C512,7.163,504.837,0,496,0z'/%3E%3Cpath d='M480,457.44L331.36,308.8l-22.56,22.56L457.44,480H384v32h112c8.837,0,16-7.163,16-16V384h-32V457.44z'/%3E%3Cpath d='M180.64,308.64L32,457.44V384H0v112c0,8.837,7.163,16,16,16h112v-32H54.56L203.2,331.36L180.64,308.64z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
    content: none;
    display: block;
    width: 2px;
    height: 8px;
    background: #000;
    border-radius: 6px;
    position: absolute;
    top: 27px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: content-box;
}

.woocommerce div.product div.electron_product_images .flex-control-thumbs li {
    margin: 2px;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
    border-color: var(--electron-dark);
}

.woocommerce div.product .woocommerce-product-gallery--columns-3:not(.electron-gallery-swiper-enabled) .flex-control-thumbs li {
    width: calc( 33.3333% - 4px );
}

.woocommerce div.product .woocommerce-product-gallery--columns-4:not(.electron-gallery-swiper-enabled) .flex-control-thumbs li {
    width: calc( 25% - 4px );
}

.woocommerce div.product .woocommerce-product-gallery--columns-5:not(.electron-gallery-swiper-enabled) .flex-control-thumbs li {
    width: calc( 20% - 4px );
}

.woocommerce div.product .woocommerce-product-gallery--columns-6:not(.electron-gallery-swiper-enabled) .flex-control-thumbs li {
    width: calc( 16.66666667% - 4px );
}

.woocommerce-product-gallery.electron_product_images.images_top .flex-control-nav {
    margin-bottom: 10px;
}

.woocommerce div.product .woocommerce-product-gallery.electron_product_images.images_top .flex-control-nav,
.woocommerce div.product .woocommerce-product-gallery.electron_product_images.images_left .flex-control-nav,
.woocommerce div.product .woocommerce-product-gallery.electron_product_images.images_bottom .flex-control-nav {
    margin-top: 10px;
}

.woocommerce div.product .electron_product_images.electron_product_images .flex-control-thumbs li {
    clear: none;
}

.gallery-position-right .gallery-col {
    order: 1;
}

.electron-gallery-swiper-enabled li.flex-nav-next,
.electron-gallery-swiper-enabled li.flex-nav-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 5;
    font-size: 24px;
}

.woocommerce-product-gallery.electron_product_images .flex-direction-nav .flex-nav-next {
    right: 0;
}

@media (min-width: 576px) {
    .woocommerce div.product div.electron_product_images.woocommerce-product-gallery {
        display: flex;
        flex-direction: column;
    }

    .woocommerce div.product div.electron_product_images.woocommerce-product-gallery.images_left,
    .woocommerce div.product div.electron_product_images.woocommerce-product-gallery.images_right {
        flex-direction: row;
    }

    .woocommerce-product-gallery.electron_product_images.images_top .flex-control-nav,
    .woocommerce-product-gallery.electron_product_images.images_left .flex-control-nav {
        order: 0;
    }

    .woocommerce-product-gallery.electron_product_images.images_top .flex-viewport,
    .woocommerce-product-gallery.electron_product_images.images_left .flex-viewport {
        order: 1;
    }

    .woocommerce-product-gallery.electron_product_images.images_left .flex-viewport,
    .woocommerce-product-gallery.electron_product_images.images_right .flex-viewport {
        flex: 0 0 auto;
        width: calc(100% - 90px);
    }

    .woocommerce div.product .woocommerce-product-gallery.electron_product_images.images_left .flex-control-nav,
    .woocommerce div.product .woocommerce-product-gallery.electron_product_images.images_right .flex-control-nav {
        width: 90px;
        flex-direction: column;
        display: flex;
        align-items: center;
        margin-right: 10px;
        margin-top: 0px;
    }

    .woocommerce-product-gallery.electron_product_images.images_right .flex-control-nav {
        margin-left: 10px;
    }

    .woocommerce div.product .electron_product_images.images_left .flex-control-thumbs li,
    .woocommerce div.product .electron_product_images.images_right .flex-control-thumbs li {
        width: 100%;
    }
}
@media (max-width: 992px) {
    .woocommerce div.product:not(.electron-product-strech-type) div.electron_product_images.woocommerce-product-gallery {
        margin-bottom: 60px;
    }
}
@media (max-width: 576px) {
    .woocommerce div.product .woocommerce-product-gallery--with-images.electron_product_images .flex-control-thumbs li {
        width: calc( 16.66666667% - 4px );
    }
}


/*/////////////////////////////////////////////
PRODUCT PAGE TYPE ACCORDION
/////////////////////////////////////////////*/
.electron-accordion-item {
	background-color: var(--electron-light);
	border: 1px solid var(--electron-border);
}

.electron-accordion-header {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 12px 20px;
	font-weight: 500;
	color: var(--electron-dark);
	text-align: left;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	overflow-anchor: none;
	transition: color 0.15s ease-in-out,
            	background-color 0.15s ease-in-out,
            	border-color 0.15s ease-in-out,
            	box-shadow 0.15s ease-in-out,
            	border-radius 0.15s ease;
}

.electron-accordion-header::after {
	font-family: 'ninetheme-font';
	font-size: 12px;
	text-transform: none;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
	font-weight: 600;
	margin-left: auto;
	content: "\f115";
	transition: transform 0.2s ease-in-out;
	transform: rotate(180deg);
}

.electron-accordion-item.active .electron-accordion-header::after {
	transform: rotate(0deg);
}

.electron-product-summary .electron-summary-item>div.electron-accordion-item {
	margin-bottom: 0;
}

.electron-accordion-item:not(:first-of-type) {
	border-top: 0;
}

.electron-accordion-body {
	display: none;
	padding: 1rem 1.25rem;
}

.electron-accordion-body .electron-product-reviews-wrapper .section-title-wrapper {
	display: none;
}


/*/////////////////////////////////////////////
15 >-----> PRODUCT PAGE TYPE SHOWCASE
/////////////////////////////////////////////*/
.electron-product-showcase.electron-bg-dark {
	background: var(--electron-dark);
}

.electron-product-showcase .electron-swiper-slider-wrapper {
	padding-bottom: 60px;
	padding-top: 60px;
}

.electron-product-showcase.electron-has-breadcrumb .electron-swiper-slider-wrapper {
	padding-top: 0;
}

.electron-product-showcase.electron-bg-dark .electron-product-summary {
	padding-bottom: 80px;
}

.has-default-header-type-trans .electron-product-showcase .electron-swiper-slider-wrapper {
	padding-top: 120px;
}

.has-default-header-type-trans .electron-product-showcase.electron-bg-dark.electron-has-breadcrumb .electron-swiper-slider-wrapper {
	padding-top: 0px;
}

.has-default-header-type-trans .electron-product-showcase.electron-bg-dark.electron-has-breadcrumb {
	padding-top: 120px;
}

.electron-product-showcase.electron-bg-dark .electron-product-summary .electron-summary-item,
.electron-product-showcase.electron-bg-dark .electron-small-title,
.electron-product-showcase.electron-bg-dark .electron-small-title a,
.electron-product-showcase.electron-bg-dark .electron-product-view span,
.electron-product-showcase.electron-bg-dark .electron-estimated-delivery span,
.electron-product-showcase.electron-bg-dark a.electron-open-popup,
.electron-product-showcase.electron-bg-dark .electron-product-summary .electron-product-meta .posted_in,
.electron-product-showcase.electron-bg-dark .electron-product-summary .electron-product-meta .tagged_as,
.electron-product-showcase.electron-bg-dark .quantity-button.plus,
.electron-product-showcase.electron-bg-dark .quantity-button.minus,
.electron-product-showcase.electron-bg-dark .electron-accordion-header,
.electron-product-showcase.electron-bg-dark .woocommerce-product-attributes-item th,
.electron-product-showcase.electron-bg-dark .product-desc-content h4,
.electron-product-showcase.electron-bg-dark .product-desc-content .title,
.electron-product-showcase.electron-bg-dark .electron-single-product-stock .stock-details span,
.electron-product-showcase.electron-bg-dark .electron-product-summary .electron-product-meta .electron-brands,
.has-default-header-type-dark .woocommerce-form-coupon-toggle a,
.electron-product-showcase.electron-bg-dark .electron-summary-item.electron-price p.stock.electron-stock-status,
#nt-woo-single .electron-product-showcase.electron-bg-dark #cr_qna.cr-qna-block div.cr-qna-list-block .cr-qna-list-q-cont button.cr-qna-ans-button,
#nt-woo-single .electron-product-showcase.electron-bg-dark #cr_qna.cr-qna-block .cr-qna-list-block .cr-qna-list-q-cont .cr-qna-list-q-q .cr-qna-list-q-q-r .cr-qna-list-q-author,
.electron-product-showcase.electron-bg-dark .electron-product-nav .product-nav-link,
.electron-product-showcase.electron-bg-dark .electron-product-nav .product-nav-link:hover,
.electron-product-showcase.electron-bg-dark .electron-product-summary .electron-product-meta .electron-sku-wrapper {
	color: var(--electron-light);
}

.electron-product-showcase.electron-bg-dark span.electron-shop-link-icon:before,
.electron-product-showcase.electron-bg-dark span.electron-shop-link-icon:after {
	border-color: var(--electron-light);
}

.electron-product-showcase.electron-bg-dark .electron-accordion-item,
.electron-product-showcase.electron-bg-dark .electron-product-summary .electron-summary-item>div.electron-accordion-item,
#nt-woo-single .electron-product-showcase.electron-bg-dark #cr_qna.cr-qna-block .cr-qna-list-q-b .cr-qna-list-q-b-r {
	border-color: var(--electron-dark-border);
}

.electron-product-showcase.electron-bg-dark .electron-product-summary .electron-summary-item p,
.electron-product-showcase.electron-bg-dark .electron-product-summary ul,
.electron-product-showcase.electron-bg-dark .electron-product-summary ul.electron-product-features-list,
.electron-product-showcase.electron-bg-dark .electron-product-tabs-content ul,
.electron-product-showcase.electron-bg-dark .electron-product-tabs-content ul.electron-product-features-list {
	color: #bbbbbb;
}

#nt-woo-single .electron-product-showcase.electron-bg-dark #cr_qna.cr-qna-block div.cr-qna-list-block .cr-qna-list-q-cont button.cr-qna-ans-button {
	background: none;
}

.electron-product-showcase.electron-bg-dark .electron-product-summary .electron-product-meta .posted_in a,
.electron-product-showcase.electron-bg-dark .electron-product-summary .electron-product-meta .tagged_as a,
.electron-product-showcase.electron-bg-dark .electron-product-summary .electron-product-meta .electron-brands a,
.electron-product-showcase.electron-bg-dark .woocommerce-product-attributes-item a,
.electron-product-showcase.electron-bg-dark .woocommerce-review-link,
.electron-product-showcase.electron-bg-dark .product-desc-content a {
	color: var(--electron-primary);
}

.electron-product-showcase.electron-bg-dark .electron-product-button,
.electron-product-showcase.electron-bg-dark .electron-accordion-header {
	background-color: var(--electron-dark);
}

.electron-product-showcase.electron-bg-dark .electron-accordion-item {
	background-color: var(--electron-dark);
	border-color: var(--electron-light);
}

.electron-product-showcase.electron-bg-dark .electron-svg-icon {
	fill: var(--electron-light);
}

.electron-product-showcase.electron-bg-dark .electron-summary-item.electron-price p.stock.electron-stock-status,
.electron-product-showcase.electron-bg-dark .electron-product-button.added,
.electron-product-showcase.electron-bg-dark .electron-single-product-stock .electron-product-stock-progressbar {
	background-color: var(--electron-primary);
}

.electron-product-showcase.electron-bg-dark .electron-breadcrumb li,
.electron-product-showcase.electron-bg-dark .electron-breadcrumb li a {
    display: inline-block;
    color: var(--electron-light);
    padding: 0;
    max-width: 100%;
}

.electron-product-showcase.electron-bg-dark .breadcrumb-item+.breadcrumb-item:before {
    content: "";
    display: inline-block;
    padding-right: 0;
    margin-bottom: 2px;
    width: 3px;
    height: 3px;
    background-color: var(--electron-bg-soft);
    border-radius: 50%;
    margin-right: 10px;
    margin-left: 10px;
}

/*/////////////////////////////////////////////
PRODUCT PAGE TYPE SLIDER
/////////////////////////////////////////////*/
.electron-swiper-slider-wrapper {
	position: relative;
}

.electron-product-thumbnails.swiper-vertical {
    height: 100%;
}

.electron-swiper-slider-wrapper.thumbs-left .electron-product-thumbnails,
.electron-swiper-slider-wrapper.thumbs-right .electron-product-thumbnails {
    max-width: 90px;
    position: absolute;
    top: 0;
}
.electron-swiper-slider-wrapper.thumbs-top .electron-product-thumbnails {
    margin-bottom: 10px;
}

.electron-swiper-slider-wrapper.thumbs-left .electron-product-thumbnails {
    left: 0px;
}

.electron-swiper-slider-wrapper.thumbs-right .electron-product-thumbnails {
    right: 0;
}

.electron-swiper-slider-wrapper.thumbs-left .electron-product-gallery-main-slider {
    margin-left: 100px;
}

.electron-swiper-slider-wrapper.thumbs-right .electron-product-gallery-main-slider {
    margin-right: 100px;
}

.electron-product-thumbnails.swiper-vertical .swiper-slide {
    width: 100%;
    height: auto;
}

.electron-swiper-slider-wrapper .electron-slide-video-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	cursor: pointer;
	max-width: 90px;
	background: var(--electron-dark);
	color: var(--electron-light);
}

.electron-product-showcase-thumbnails .electron-slide-video-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	cursor: pointer;
	max-width: 90px;
	background: var(--electron-dark);
	color: var(--electron-light);
	max-height: calc(218px - 8em);
}

.swiper-slide-thumb-active .electron-slide-video-item-icon {
	background: var(--electron-dark);
	color: var(--electron-light);
}

.electron-gallery-grid-item {
    position: relative;
}

.electron-gallery-grid-item {
    margin-top: 30px;
    text-align: center;
}
.electron-gallery-grid-item-first {
    flex: 0 0 auto;
    width: 100%;
    margin-top: 0;
}
.electron-gallery-grid-item .electron-product-popup.small-popup {
    right: 25px;
}
.electron-gallery-grid-item.electron-gallery-grid-video-item {
    margin-top: 0;
}

.electron-product-popup {
    position: absolute;
    top: 70px;
    left: 25px;
    font-size: 2em;
    z-index: 9;
    width: 50px;
    height: 50px;
    background: var(--electron-gray);
    border-radius: 100%;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.electron-product-popup.small-popup {
    top: 15px;
    left: auto;
    right: 15px;
    width: 35px;
    height: 35px;
}

.electron-product-popup.small-popup svg {
    max-width: 15px;
    max-height: 15px;
}

.electron-product-popup {
    opacity: 0;
    visibility: hidden;
}


.electron-product-showcase-main .swiper-slide:hover .electron-product-popup {
    opacity: 1;
    visibility: visible;
}

.electron-gallery-grid-item.col a.electron-product-popup {
	right: 30px;
}

span.electron-zoom-wrapper {
	z-index: 0;
    height: 100%;
}

.swiper-slide:hover .electron-product-popup,
.electron-gallery-grid-item:hover .electron-product-popup {
	opacity: 1;
	visibility: visible;
}

.electron-product-main-gallery-grid a.electron-product-video-button,
.electron-product-gallery-main-slider a.electron-product-video-button {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 2;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	background: var(--electron-gray);
}

.electron-slider-thumbs-vertical-left .electron-product-gallery-main-slider a.electron-product-video-button {
    left: auto;
    top: 120px;
    border-radius: 4px;
    right: 20px;
    width: 52px;
    height: 52px;
}

.electron-slider-thumbs-vertical-left .electron-product-labels {
    top: 120px;
    right: 20px;
    left: auto;
}

.electron-slider-thumbs-vertical-left .electron-product-video-button+.electron-product-labels {
    top: 180px;
    right: 20px;
    left: auto;
}

.electron-slider-thumbs-vertical-left .electron-product-popup {
    top: 80px;
    right: 30px;
}

a.electron-product-video-button.mfp-iframe.electron-in-content {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	background: var(--electron-gray);
	margin-bottom: 15px;
}

.electron-product-gallery-main-slider a.electron-product-video-button:hover {
	color: var(--electron-light);
	background: var(--electron-dark);
}

.electron-product-gallery-main-slider-carousel .swiper-slide {
	text-align: center;
}

.electron-product-gallery-main-slider-carousel:not(.swiper-coverflow) .swiper-slide:not(.swiper-slide-active) {
	opacity: 0.5;
}

.electron-product-showcase .electron-product-gallery-main-slider-carousel .swiper-pagination {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	margin-top: 20px;
}

.swiper-container.swiper-coverflow {
	padding-top: 10px;
}

.electron-slider-thumbnails-full .swiper-wrapper {
	justify-content: center;
}

.electron-slider-thumbnails-full .swiper-slide {
	max-width: 90px;
}

.electron-product-main-gallery-grid {
	position: relative;
}

.electron-product-main-gallery-grid .electron-gallery-grid-item.iframe-video,
.swiper-slide.swiper-slide-video-item.iframe-video .electron-slide-iframe-wrapper {
	padding: 0;
	padding-top: 100%;
	position: relative;
	overflow: hidden;
}

.electron-product-main-gallery-grid .electron-gallery-grid-item.iframe-video iframe,
.swiper-slide.swiper-slide-video-item.iframe-video iframe {
	position: absolute;
	width: 101%;
	max-width: 101%;
	height: 180%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.electron-swiper-showcase-wrapper {
    margin-bottom: 60px;
}


/*/////////////////////////////////////////////
PRODUCT PAGE strech TYPE
/////////////////////////////////////////////*/
.electron-single-product-type-stretch {
    padding-bottom: 80px;
}

.has-header-sidebar .electron-product-accordion-wrapper {
    margin-top: 80px;
}

.electron-product-strech-type {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.electron-product-strech-type .summary-col {
    width: 500px;
    min-width: 300px;
    max-width: 500px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.electron-product-strech-type .summary-col {
    padding: 80px 50px;
    padding-bottom: 0px;
}

#nt-woo-single .content-container {
    padding: 0 50px;
}

.electron-product-strech-type .gallery-col {
    display: flex;
    flex: 1;
    width: calc( 100% - 500px );
    flex-direction: column;
}
.electron-swiper-thumbnails .swiper-slide {
	border: 1px solid;
    border-color: var(--electron-border);
    border-radius: 5px;
    cursor: pointer;
}
.electron-swiper-thumbnails .swiper-slide-thumb-active {
    border-color: var(--electron-secondary);
}

.electron-product-strech-type .electron-swiper-thumbnails {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    padding: 0 20px;
    z-index: 10;
    width: 100%;
}

.electron-product-strech-type .electron-product-gallery-main-slider .electron-swiper-wrapper {
    height: auto!important;
}

.electron-product-strech-type .electron-product-gallery-main-slider .swiper-slide {
    height: 100vh;
}

.electron-product-strech-type .electron-product-gallery-main-slider .swiper-slide img:not(.zoomImg){
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
}

.electron-product-strech-type .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.electron-product-strech-type .electron-product-thumbnails .swiper-slide {
	max-width: 90px;
}

.electron-product-strech-type div.images .flex-control-thumbs {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.electron-product-strech-type div.images .flex-control-thumbs .electron-swiper-wrapper {
    /*justify-content: center;*/
}

.electron-product-strech-type .electron-price.price {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: flex-start;
    font-family: var(--electron-font-heading);
    color: var(--electron-dark);
    padding-top: 30px;
}

.electron-product-strech-type .electron-product-info-top {
    padding: 15px;
}

.electron-product-strech-type .electron-summary-item + .electron-summary-item {
	margin: 0;
	margin-top: 20px;
}

.electron-product-strech-type .electron-product-info-bottom {
    flex-wrap: wrap;
}

.electron-product-strech-type .electron-product-top-nav {
	margin: 0;
}

@media(max-width:1024px) {
	.electron-single-product-type-stretch .electron-product-summary-inner {
    	padding-top: 0px;
    }

    .electron-single-product-type-stretch .electron-product-summary-inner {
        padding: 0 15px;
    }

    .electron-single-product-type-stretch .electron-product-summary {
        padding:0;
    }

    .electron-single-product-type-stretch .electron-product-thumbnails {
        padding-left:10px;
    }

	.electron-single-product-type-stretch .electron-swiper-slider-wrapper .swiper-button-prev,
	.electron-single-product-type-stretch .electron-swiper-slider-wrapper .swiper-button-next {
        display : none;
    }
}
/* product-strech-type */


/* electron-product-info */
.electron-product-info {
	width: 100%;
    position: relative;
    border: 1px solid var(--electron-border);
    border-radius: var(--electron-border-radius);
}

.electron-product-info-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
}

.electron-product-info-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid var(--electron-border);
    padding: 1.25rem;
    align-items: center;
}

.electron-product-info-bottom .info-message strong {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--electron-dark);
}

.electron-product-info-bottom .shipping-class {
    display: flex;
    align-items: center;
}

.electron-product-info-bottom .shipping-class svg {
    margin-right: 7px;
}

.electron-product-info-bottom .info-message {
    font-size: 0.8125rem;
}

.electron-product-info-bottom .info-message +.info-message:before {
    content: "|";
    margin-left: 15px;
    margin-right: 15px;
    opacity: 0.3;
}

.electron-variations.variations + .electron-product-info {
    margin-top: 20px;
}

@media(max-width:576px) {
    .electron-product-info-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .electron-product-info-bottom .info-message +.info-message:before {
        display: none;
    }
}
/* electron-product-info */

/* product-trust-badge */
.electron-product-trust-badge {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    background-color:var(--electron-gray-soft);
    padding: 15px;
	width: 100%;
    position: relative;
    border: 1px solid var(--electron-border);
    border-radius: var(--electron-border-radius);
}

.electron-trust-badge-image + .electron-trust-badge-text {
    margin-top: 10px;
}

.electron-trust-badge-text {
    color: var(--electron-dark);
}
/* product-trust-badge */


.woocommerce-product-gallery a.electron-product-video-button {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--electron-gray);
}


/*/////////////////////////////////////////////
PRODUCT PAGE BOTTOM POPUP CART
/////////////////////////////////////////////*/
.electron-product-bottom-popup-cart {
	position: fixed;
	bottom: 0;
	max-width: 100%;
	width: 100%;
	z-index: 101;
	padding: 10px 0;
	background: var(--electron-light);
	will-change: transform;
	-webkit-transition: opacity 0.25s ease, ease;
	transition: opacity 0.25s ease, transform 0.25s ease;
	opacity: 0;
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-box-shadow: -2px 2px 45px -20px rgb(0 0 0 / 30%);
	-moz-box-shadow: -2px 2px 45px -20px rgba(0, 0, 0, .3);
	box-shadow: -2px 2px 45px -20px rgb(0 0 0 / 30%);
}

@media(min-width:992px){
	.has-header-sidebar .electron-product-bottom-popup-cart {
	    max-width: calc(100% - 360px);
	    padding: 10px 55px;
	}

	.header-sidebar-position-left .electron-product-bottom-popup-cart {
	    left: 360px;
	}

	.header-sidebar-position-right .electron-product-bottom-popup-cart {
	    right: 360px;
	}

    .electron-product-showcase-main .swiper-slide.active img:not(.zoomImg),
    .electron-product-showcase-thumbnails .swiper-slide-thumb-active img {
        border: 1px solid var(--electron-primary);
    }
}

.electron-product-bottom-popup-cart.active {
	opacity: 1;
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}
.electron-product-bottom-popup-cart.active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 10px 20px;
    gap: 15px;
    flex-wrap: nowrap;
    margin: auto;
    flex-direction: row;
}
.electron-product-bottom-popup-cart .details {
	display: flex;
	align-items: center;
	height: 100%;
}

.electron-product-bottom-popup-cart .details img {
	margin-right: 20px;
}

.electron-product-bottom-popup-cart span.price {
	display: block;
}

.electron-product-bottom-popup-cart form.electron-summary-item.electron-flex {
	align-items: center;
	justify-content: center;
	flex-direction: row;
	margin: 0;
}

.electron-product-bottom-popup-cart.electron-product-summary .electron-summary-item>div {
	margin-bottom: 0px;
}

.electron-product-bottom-popup-cart .electron-variations {
	margin-bottom: 0;
	margin-right: 40px;
}

.electron-product-bottom-popup-cart .woocommerce-variation-add-to-cart-disabled {
	margin-top: 0;
}

.electron-product-bottom-popup-cart span.electron-small-title {
	margin-right: 10px;
}

.electron-product-bottom-title.mobile-title {
	text-align: center;
	margin-bottom: 5px;
}

.electron-product-bottom-popup-cart.relative {
	position: relative;
}

.electron-product-bottom-popup-cart .electron-summary-item .electron-product-button {
	display: none;
	min-height: 38px;
}

body.bottom-popup-cart-active .scroll-to-top {
	bottom: 90px;
}

.electron-product-to-top {
	max-width: 160px;
	display: block;
	margin: 12px 0 0 auto;
}

.electron-product-action-button a {
    width: 100%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
    font-size: 15px;
}

/*/////////////////////////////////////////////
Frequently Bought Together
/////////////////////////////////////////////*/
.electron-yith-wfbt-section form.yith-wfbt-form {
    border: 1px solid var(--electron-border);
    padding: 20px;
}

.electron-yith-wfbt-section .electron-yith-wfbt-images {
    display: flex;
    align-items: center;
}

.electron-yith-wfbt-section .image_plus {
    margin: 0 10px;
    font-size: 24px;
}

.electron-yith-wfbt-block-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.electron-yith-wfbt-section .electron-yith-wfbt-block,
.electron-yith-wfbt-section .electron-yith-wfbt-items {
    margin-top: 20px;
    padding: 15px;
    background: var(--electron-success-bg);
    color: var(--electron-success);
    border: 1px solid var(--electron-success-border);
    border-radius: var(--electron-border-radius);
    width: 50%;
}

.electron-yith-wfbt-section .electron-yith-wfbt-block {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
    text-align: center;
}

.electron-yith-wfbt-section .electron-yith-wfbt-items {
    padding-left: 40px;
}

.electron-yith-wfbt-section .electron-yith-wfbt-items .price {
    color: var(--electron-dark);
    font-weight: 500;
}

.electron-yith-wfbt-section .price_text {
    font-size: 18px;
    margin-bottom: 10px;
}

.electron-yith-wfbt-section .total_price {
    font-weight: 500;
    color: var(--electron-dark);
}

/*/////////////////////////////////////////////
WPC Frequently Bought Together
/////////////////////////////////////////////*/
.woobt-wrap {
    display: block;
    clear: both;
    width: 100%;
    margin: 30px 0 15px;
}
.woobt-alert {
    padding: 10px 15px;
    border-left: 4px solid var(--electron-red-dark);
    background-color: var(--electron-red);
    font-size: 13px;
    color: #fff;
    border-radius: 5px;
}
.woobt-alert.woobt-text:empty {
    display: none;
}
.woobt-wrap + .electron-product-accordion-wrapper {
    margin-top: 30px;
}
.woobt-item-name {
    font-size: 12px;
    text-transform: capitalize;
}
.woobt-products .woobt-product .woobt-quantity {
    width: 100px;
    flex: 0 0 100px;
}
.woobt-products .woobt-product .woobt-price {
    width: 75px;
    flex: 0 0 75px;
    max-width: 75px;
    text-align: end;
}
.woobt-title-inner span {
    text-transform: capitalize;
}
.woobt-before-text.woobt-text svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.woobt-before-text.woobt-text {
    color: var(--electron-red-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.woobt-before-text.woobt-text strong {
    font-weight: 600;
}

.woobt-products .woobt-product .woobt-title .in-stock {
    color: var(--electron-green);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
}

.woobt-product .woobt-title-inner {
    font-weight: 500;
}

.electron-product360-wrapper,
.electron-single-product-delivery,
.electron-product-size-guide {
    background-color: var(--electron-light);
    padding: 60px;
    max-width: 920px;
    margin: 0 auto;
    box-shadow: 0 3px 10px rgb(116 116 116 / 22%);
}
.electron-product-info-top .single_add_to_cart_button,
.electron-btn-buynow {
	flex: 5 auto;
}

.electron-product-info .electron-btn-buynow {
    background-color: var(--electron-blue-dark);
    min-width: 72%;
}

.electron-product-info-top .single_add_to_cart_button {
    min-width: 230px;
}

/*/////////////////////////////////////////////
Countdown Timer
/////////////////////////////////////////////*/

.electron-viewed-offer-time.electron-summary-item .type-1 {
    background-color: var(--electron-red-bg);
    padding: 10px 15px;
    border-radius: 4px;
    color: var(--electron-red);
}
.electron-viewed-offer-time.type-1 .electron-coming-time .time-count {
    color: var(--electron-red);
}
.electron-viewed-offer-time.type-1  .separator {
    margin: 0 5px;
    color: var(--electron-dark);
}

/*/////////////////////////////////////////////
Responsive
/////////////////////////////////////////////*/
.electron-swiper-slider-wrapper.thumbs-top .electron-product-thumbnails {
    margin-bottom: 10px;
}
.electron-swiper-slider-wrapper.thumbs-bottom .electron-product-thumbnails {
    margin-top: 10px;
}
.fancybox__content .wpcf7-form  {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-direction: column;
}
.fancybox__content .wpcf7-form input,
.fancybox__content .wpcf7-form select,
.fancybox__content .wpcf7-form .electron-btn {
    width: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
	.electron-slider-thumbs-right .col-md-2,
	.electron-slider-thumbs-left .col-md-2 {
		max-width: 115px;
	}

	.electron-product-gallery-main-slider-carousel .swiper-slide.swiper-slide-active img:not(.zoomImg) {
		border: 1px solid var(--electron-primary);
	}

	.electron-product-bottom-popup-cart form.electron-summary-item.electron-flex {
		justify-content: flex-end;
		height: 100%;
	}

	.electron-product-bottom-popup-cart .electron-product-bottom-title.mobile-title {
		display: none;
	}

	.electron-product-bottom-popup-cart .electron-summary-item .electron-product-button {
		display: flex;
	}
}

@media (min-width: 992px){
    .electron-product-strech-type.gallery-position-left .summary-col {
        order: 2;
    }
    .electron-product-strech-type.gallery-position-left .gallery-col {
        order: 1;
    }

}

@media (min-width: 1025px) {
	.electron-social-icons .whatsapp-mobile {
		display: none !important;
	}

	.electron-product-strech-type .summary-col {
	    min-height: calc(100vh - 40px);
	}

	.gallery-col {
	    position: sticky;
	    position: -webkit-sticky;
	    top: 0;
	}

	.electron-product-main-gallery-grid,
	.woocommerce div.product div.images.woocommerce-product-gallery,
	.electron-single-product-type-1 .electron-swiper-slider-wrapper {
	    position: sticky;
	    position: -webkit-sticky;
	    top: 120px;
	}

	.electron-product-strech-type .woocommerce-product-gallery__wrapper {
	    height: 100vh;
	}

	.electron-product-strech-type .woocommerce-product-gallery__image {
	    position: relative;
	    display: block;
	    padding-top: 100vh;
	}

	.electron-product-strech-type .woocommerce-product-gallery__image a img {
	    position: absolute!important;
	    height: 100%!important;
	    left: 0;
	    top: 0;
	    object-fit: cover;
	}

	.electron-product-strech-type .electron-summary-item.electron-price span+p.stock.electron-stock-status {
	    margin-top: 0px;
	}
}


@media (min-width: 1200px) {
    .shop-single-layout-left-sidebar #nt-sidebar {
        order: 1;
        padding-right: 40px;
    }
    .shop-single-layout-right-sidebar #nt-sidebar {
        padding-left: 40px;
    }
    .shop-single-layout-left-sidebar .summary-column {
        order: 2;
    }
    .shop-single-layout-left-sidebar .shop-sidebar.nt-sidebar-inner,
    .shop-single-layout-right-sidebar .shop-sidebar.nt-sidebar-inner {
        position: sticky;
        position: -webkit-sticky;
        top: 30px;
    }
}

@media screen and (max-width: 992px){

	.electron-after-tabs {
	    margin-top: 40px;
	}

    .electron-product-strech-type {
        display: block;
    }

	.electron-product-strech-type .gallery-col {
	    width: 100%;
	    order: 0;
	    position: relative;
	}

	.electron-product-strech-type .summary-col {
	    width: 100%;
	    max-width: 100%;
	    order: 1;
	    padding: 50px 20px;
	    padding-bottom: 0;
	    min-height: inherit;
	}

	.electron-product-strech-type .electron-product-info-bottom  .info-message +.info-message:before {
	    content: none;
	}

    .electron-single-product-type-1 .electron-swiper-slider-wrapper {
        margin-bottom: 60px;
    }

}

@media (max-width:1200px) {
	.electron-swiper-showcase-wrapper {
        margin-bottom: 0px;
    }
    .nt-woo-single .summary-column {
        margin-bottom: 80px;
    }
}

@media (max-width: 1024px) {
	.electron-social-icons .whatsapp-desktop {
		display: none !important;
	}

	a.electron-product-popup {
		opacity: 1;
		visibility: visible;
	}
}

@media (max-width:992px) {
	.electron-product-showcase .electron-swiper-slider-wrapper {
		padding-top: 0;
		padding-bottom: 0;
	}

}

@media screen and (max-width: 768px){
	.woocommerce div.product.electron-product-strech-type div.images .flex-control-thumbs {
	    position: relative;
	    bottom: auto;
	    left: auto;
	    transform: none;
	    width: 100%;
	    max-width: 100%;
	    padding: 20px;
	}

	.electron-yith-wfbt-block-wrapper {
	    display: flex;
	    align-items: stretch;
	    width: 100%;
	    flex-direction: column;
	}

	.electron-yith-wfbt-section .electron-yith-wfbt-items {
	    width: 100%;
	}

	.electron-yith-wfbt-section .electron-yith-wfbt-items {
	    width: 100%;
	}

	.electron-yith-wfbt-section .electron-yith-wfbt-block {
	    width: 100%;
	    margin-left: 0;
	    text-align: center;
	}

	.electron-yith-wfbt-section .price_text {
	    font-size: 16px;
	}

    .electron-swiper-slider-wrapper.has-thumbs {
        margin-bottom: 30px;
    }

    .electron-swiper-slider-wrapper.has-thumbs .electron-swiper-thumbnails {
        margin-top: 10px;
    }

    .electron-swiper-slider-wrapper.has-thumbs {
        flex-direction: column;
    }

    .electron-swiper-slider-wrapper.thumbs-right .electron-product-thumbnails,
    .electron-swiper-slider-wrapper.thumbs-left .electron-product-thumbnails {
        width: 100%;
        max-width: 100%;
        margin-right: 0px;
        position: relative;
    }

    .electron-swiper-slider-wrapper.thumbs-right .electron-product-gallery-main-slider,
    .electron-swiper-slider-wrapper.thumbs-left .electron-product-gallery-main-slider {
        max-width: 100%;
        margin: 0px;
    }
	.woobt-wrap-responsive .woobt-products .woobt-product {
		justify-content: flex-start;
		align-items: flex-start;
		gap: 5px;
		flex-direction: row;
		text-align: left;
		padding: 10px 0;
	}
	.electron-product-popup {
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width: 576px){
	#nt-woo-single form.cart {
	    margin-bottom: 0px;
	}
	.electron-product-info-top .quantity {
		min-width: auto;
	}

    .electron-summary-item .electron-product-hint {
        display: none;
    }

	.electron-product-strech-type .electron-summary-item .electron-product-button {
	    margin: 0;
	    max-height: 20px;
	    width: auto;
	    font-size: 14px;
	}

}

@media (max-width: 480px) {
	.electron-product-info-top .quantity {
		flex: 1 0 auto;
		max-width: 100%;
	}
	.product-after-cart-wrapper {
		width: 100%;
		order: 3;
		max-width: 100%;
	}
	.electron-product-nav.electron-flex.electron-align-center {
		display: none;
	}

	.electron-section:not(.first-section) {
		margin-top: 40px;
	}

	.electron-product-size-guide, .electron-quickview-wrapper {
		padding: 40px 20px;
	}

	.electron-product-share a {
		font-size: 12px;
		width: 25px;
		height: 25px;
	}
	.electron-product-to-top {
    	margin: 12px auto 0 auto;
    }
    #nt-woo-single #cr_qna.cr-qna-block div.cr-qna-search-block button.cr-qna-ask-button {
        margin: 10px 0 0 0 !important;
    }
}
.electron-product-top-nav.position-top {
    margin-bottom: 20px;
    margin-top: -42px;
}