.mobile-menu-bar {
display: none;
background: #343a40;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
position: relative;
z-index: 1000;
} .mobile-topbar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0;
gap: 12px;
}
.mobile-topbar-logo {
flex: 1;
min-width: 0;
}
.mobile-topbar-logo a {
display: inline-flex;
align-items: center;
text-decoration: none;
}
.mobile-topbar-logo img {
max-height: 40px;
width: auto;
display: block;
}
.mobile-topbar-logo .mobile-site-title {
color: #fff;
font-size: 18px;
font-weight: 700;
text-decoration: none;
line-height: 1.3;
letter-spacing: 0.5px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.mobile-topbar-logo .mobile-site-title:hover,
.mobile-topbar-logo .mobile-site-title:focus {
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
}
.mobile-topbar-logo .custom-logo-link {
display: inline-flex;
}
.mobile-topbar-logo .custom-logo {
max-height: 40px;
width: auto;
} .mobile-menu-bar .menu-btn {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
background: rgba(255, 255, 255, 0.15);
border: none;
border-radius: 6px;
padding: 8px;
color: #fff;
cursor: pointer;
transition: background 0.25s ease;
min-width: 44px;
min-height: 44px;
position: relative;
}
.mobile-menu-bar .menu-btn:hover {
background: rgba(255, 255, 255, 0.25);
}
.mobile-menu-bar .menu-btn:focus {
outline: 2px solid #fff;
outline-offset: 2px;
background: rgba(255, 255, 255, 0.25);
}
.mobile-menu-bar .menu-btn:focus:not(:focus-visible) {
outline: none;
}
.mobile-menu-bar .menu-btn:focus-visible {
outline: 2px solid #fff;
outline-offset: 2px;
}
.mobile-menu-bar .menu-btn:active {
background: rgba(255, 255, 255, 0.35);
} .menu-btn .hamburger-icon,
.menu-btn .close-icon {
width: 26px;
height: 26px;
transition: transform 0.3s ease;
transform-origin: center;
} .mobile-menu-bar .sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
} .menu-btn .mopen,
.menu-btn .mclose {
display: flex;
align-items: center;
justify-content: center;
}
.menu-btn .mclose {
display: none;
} .mobile-menu-bar.menu-open .menu-btn .mopen {
display: none;
}
.mobile-menu-bar.menu-open .menu-btn .mclose {
display: flex;
} .mobile-menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.55);
z-index: 1001;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.3s ease, visibility 0s 0.3s;
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
}
.mobile-menu-overlay.active {
opacity: 1;
visibility: visible;
pointer-events: auto;
transition: opacity 0.3s ease, visibility 0s 0s;
} .mobile-menu-panel {
position: fixed;
top: 0;
left: 0;
width: 300px;
max-width: 85vw;
height: 100vh;
height: 100dvh;
background: #fff;
z-index: 999999;
overflow-y: auto;
overflow-x: hidden;
box-shadow: 4px 0 25px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
transform: translateX(-100%);
visibility: hidden;
transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.35s;
}
.admin-bar .mobile-menu-panel {
top: 32px;
height: calc(100vh - 32px);
height: calc(100dvh - 32px);
}
.mobile-menu-panel.panel-open {
transform: translateX(0);
visibility: visible;
transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
} .mobile-panel-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 16px;
background: #343a40;
flex-shrink: 0;
gap: 10px;
}
.mobile-panel-logo {
flex: 1;
min-width: 0;
}
.mobile-panel-logo img {
max-height: 36px;
width: auto;
display: block;
}
.mobile-panel-logo .custom-logo-link {
display: inline-flex;
}
.mobile-panel-logo .custom-logo {
max-height: 36px;
width: auto;
}
.mobile-panel-logo .mobile-site-title {
color: #fff;
font-size: 16px;
font-weight: 700;
text-decoration: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
letter-spacing: 0.3px;
}
.mobile-panel-logo .mobile-site-title:hover,
.mobile-panel-logo .mobile-site-title:focus {
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
} .menu-close-btn {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
background: rgba(255, 255, 255, 0.15);
border: none;
border-radius: 50%;
padding: 6px;
color: #fff;
cursor: pointer;
transition: background 0.25s ease, transform 0.25s ease;
min-width: 38px;
min-height: 38px;
width: 38px;
height: 38px;
}
.menu-close-btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: rotate(90deg);
}
.menu-close-btn:focus {
outline: 2px solid #fff;
outline-offset: 2px;
background: rgba(255, 255, 255, 0.3);
}
.menu-close-btn:focus:not(:focus-visible) {
outline: none;
}
.menu-close-btn:focus-visible {
outline: 2px solid #fff;
outline-offset: 2px;
}
.menu-close-btn svg {
width: 20px;
height: 20px;
} .mobile-menu-panel .mobile-navigation {
flex: 1;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
padding-bottom: 20px;
} body.mobile-menu-is-open {
overflow: hidden;
} .mobile-menu-panel .submenu-toggle {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
width: 48px;
min-height: 48px;
background: none;
border: none;
border-left: 1px solid #eee;
color: #666;
cursor: pointer;
padding: 0;
transition: background 0.2s ease, color 0.2s ease;
}
.mobile-menu-panel .submenu-toggle:hover {
background: #f0f0f0;
color: #343a40;
}
.mobile-menu-panel .submenu-toggle:focus {
outline: 2px solid #343a40;
outline-offset: -2px;
background: #f0f0f0;
color: #343a40;
}
.mobile-menu-panel .submenu-toggle:focus:not(:focus-visible) {
outline: none;
}
.mobile-menu-panel .submenu-toggle:focus-visible {
outline: 2px solid #343a40;
outline-offset: -2px;
} .mobile-menu-panel .submenu-toggle .toggle-icon {
width: 18px;
height: 18px;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
pointer-events: none;
} .mobile-menu-panel .menu-item-has-children.submenu-open > .submenu-toggle .toggle-icon,
.mobile-menu-panel .page_item_has_children.submenu-open > .submenu-toggle .toggle-icon {
transform: rotate(180deg);
}
.mobile-menu-panel .menu-item-has-children.submenu-open > .submenu-toggle,
.mobile-menu-panel .page_item_has_children.submenu-open > .submenu-toggle {
background: #f0f0f0;
color: #343a40;
} @media screen and (max-width: 992px) {
.mobile-menu-bar {
display: block;
padding: 0;
}
.beshop-main-nav {
display: none;
} .mobile-menu-panel .wsm-menu-has {
list-style: none;
margin: 0;
padding: 0;
}
.mobile-menu-panel .wsm-menu-has > li {
border-bottom: 1px solid #eee;
}
.mobile-menu-panel .wsm-menu-has > li:last-child {
border-bottom: none;
} .mobile-menu-panel .wsm-menu-has li {
position: relative;
}
.mobile-menu-panel .wsm-menu-has a {
display: block;
padding: 13px 16px;
color: #333;
text-decoration: none;
font-weight: 500;
font-size: 15px;
line-height: 1.4;
transition: background 0.2s ease, color 0.2s ease;
position: relative;
}
.mobile-menu-panel .wsm-menu-has a:hover,
.mobile-menu-panel .wsm-menu-has a:focus {
background: #f5f5f5;
color: #343a40;
}
.mobile-menu-panel .wsm-menu-has a:focus {
outline: 2px solid #343a40;
outline-offset: -2px;
}
.mobile-menu-panel .wsm-menu-has a:focus:not(:focus-visible) {
outline: none;
}
.mobile-menu-panel .wsm-menu-has a:focus-visible {
outline: 2px solid #343a40;
outline-offset: -2px;
background: #f0f8ff;
} .mobile-menu-panel .menu-item-has-children,
.mobile-menu-panel .page_item_has_children {
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
.mobile-menu-panel .menu-item-has-children > a,
.mobile-menu-panel .page_item_has_children > a {
flex: 1;
min-width: 0;
} .mobile-menu-panel .wsm-menu-has .sub-menu {
width: 100%;
margin: 0;
padding: 0;
list-style: none;
background: #fafafa;
overflow: hidden;
max-height: 0;
opacity: 0;
transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
opacity 0.25s ease;
} .mobile-menu-panel .menu-item-has-children.submenu-open > .sub-menu,
.mobile-menu-panel .page_item_has_children.submenu-open > .sub-menu {
max-height: 2000px;
opacity: 1;
}
.mobile-menu-panel .wsm-menu-has .sub-menu li {
border-bottom: none;
border-top: 1px solid #eee;
}
.mobile-menu-panel .wsm-menu-has .sub-menu a {
padding: 11px 16px 11px 32px;
font-size: 14px;
color: #555;
font-weight: 400;
position: relative;
}
.mobile-menu-panel .wsm-menu-has .sub-menu a::before {
content: '';
position: absolute;
left: 16px;
top: 50%;
transform: translateY(-50%);
width: 6px;
height: 6px;
border-radius: 50%;
background: #ccc;
transition: background 0.2s ease;
}
.mobile-menu-panel .wsm-menu-has .sub-menu a:hover::before,
.mobile-menu-panel .wsm-menu-has .sub-menu a:focus::before {
background: #343a40;
}
.mobile-menu-panel .wsm-menu-has .sub-menu a:hover,
.mobile-menu-panel .wsm-menu-has .sub-menu a:focus {
background: #f0f0f0;
color: #343a40;
} .mobile-menu-panel .wsm-menu-has .sub-menu .sub-menu {
background: #f5f5f5;
}
.mobile-menu-panel .wsm-menu-has .sub-menu .sub-menu a {
padding-left: 48px;
font-size: 13px;
}
.mobile-menu-panel .wsm-menu-has .sub-menu .sub-menu a::before {
left: 32px;
width: 5px;
height: 5px;
background: #ddd;
} .mobile-menu-panel .mobile-navigation ul {
list-style: none;
}
.mobile-menu-panel .menu-item-has-children .sub-menu,
.mobile-menu-panel .page_item_has_children .sub-menu {
display: block;
} @media (prefers-contrast: high) {
.mobile-menu-bar .menu-btn,
.menu-close-btn {
border: 2px solid #fff;
}
.mobile-menu-panel .wsm-menu-has a:focus {
outline-width: 3px;
background: #fff !important;
color: #000 !important;
}
.mobile-menu-panel .submenu-toggle:focus {
outline-width: 3px;
}
} @media (prefers-reduced-motion: reduce) {
.mobile-menu-panel,
.mobile-menu-overlay,
.mobile-menu-bar .menu-btn,
.menu-close-btn,
.mobile-menu-panel .wsm-menu-has a,
.mobile-menu-panel .wsm-menu-has .sub-menu,
.mobile-menu-panel .submenu-toggle .toggle-icon {
transition: none !important;
}
} .mobile-menu-panel a:focus-visible,
.mobile-menu-panel button:focus-visible {
outline: 2px solid #343a40;
outline-offset: -2px;
z-index: 1;
position: relative;
}
} @media (max-width: 767px) {
.mobile-menu-panel {
max-width: 90vw;
}
}
@media (max-width: 480px) {
.mobile-menu-panel {
max-width: 95vw;
}
} @media print {
.mobile-menu-bar,
.mobile-menu-panel,
.mobile-menu-overlay {
display: none !important;
}
}.number-style input{
display: inline-block;
width: 30px;
vertical-align: middle;
text-align: center;
border: none;
font-size: 15px;
color: #000000;
}
.number-style span{
position: relative;
display: inline-block;
vertical-align: middle;
width: 20px;
height: 20px;
border-radius: 50%;
margin: 0 10px;
cursor: pointer;
}
.number-style span.number-minus{
border: 2px solid #fe0021;
}
.number-style span.number-minus::after{
content: "";
position: absolute;
left: 50%;
top: 50%;
margin: -1px 0 0 -5px;
width: 10px;
height: 2px;
background-color: #fe0021;
}
.number-style span.number-plus{
border: 2px solid #000;
}
.number-style span.number-plus::after{
content: '';
position: absolute;
top: 50%;
left: 50%;
margin: -1px 0 0 -5px;
width: 10px;
height: 2px;
background-color: #000;
}
.number-style span.number-plus::before{
content: '';
position: absolute;
top: 50%;
left: 50%;
margin: -5px 0 0 -1px;
width: 2px;
height: 10px;
background-color: #000;
}
.number-style span.disabled{
border: 2px solid #a4a3a0;
}
.number-style span.disabled::after,
.number-style span.disabled::before{
background-color: #a4a3a0;
}
.number-style input[type='number'] {
-moz-appearance:textfield;
}
.number-style input::-webkit-outer-spin-button,
.number-style input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
.woocommerce .quantity .qty {
border: 1px solid #ccc;
border-radius: 0;
} .woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
box-shadow: 0px 3px 40px rgba(0,0,0,0.20);
padding: 10px 10px 20px;
text-align: center;
background: #fff;
}
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce a.added_to_cart, 
.woocommerce button.button, 
.woocommerce input.button{
color: #fff;
background-color: #000;
font-size: 14px;
margin: 3px;
}
.woocommerce-ordering select {
display: block;
width: 100%;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce a.added_to_cart:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover
a.added_to_cart.wc-forward{
color: #fff;
background-color: #555;
}
a.added_to_cart.wc-forward {
padding: 0.3rem;
}
.woocommerce ul.products li.product a img {
border: 2px solid #ededed;
}
select {
border: 1px solid #ccc;
box-shadow: 0px 3px 40px rgba(0,0,0,0.20);
padding: 3px;
}
.befront-shop h1.page-title {
display: none;
}
.befront-shop .site-content .widget-area {
margin-top: 50px;
}
a.add_to_cart_button.added {
display: none;
}
a.added_to_cart.wc-forward{
margin-top: 1em;
}
.woocommerce tbody, .woocommerce thead, .woocommerce tfoot{
display: table-header-group;
}
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2, 
.woocommerce-page .col2-set .col-2 {
display: block;
max-width: inherit;
}
.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row,
.woocommerce form .form-row {
display: block;
}
.woocommerce .col-1,
.woocommerce .col-2,
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2, 
.woocommerce-page .col2-set .col-2 {
max-width: unset;
}
input[type=checkbox]{
vertical-align: bottom;
}
.woocommerce ul.order_details {
border: 1px solid #ededed;
padding: 10px 20px;
}
nav.woocommerce-MyAccount-navigation ul {
margin: 0;
padding: 0;
list-style: none;
}
nav.woocommerce-MyAccount-navigation ul li a {
border: 1px solid #ededed;
display: block;
padding: 10px;
}
nav.woocommerce-MyAccount-navigation ul li a:hover {
background: #ededed;
}
.woocommerce-Address {
border: 1px solid #ededed;
padding: 10px;
}
.woocommerce form.login, .woocommerce form.register{
max-width: 500px
}
.woocommerce-notice {
background: #ededed;
border-left: 3px solid #ccc;
font-weight: 700;
}
.woocommerce-notice.woocommerce-notice--success {
padding: 10px;
border-left: 4px solid green;
}
.beshoping-cart {
z-index: 9999999;
position: relative;
}
.beshoping-bag {
position: fixed;
bottom: 10px;
background: #fff;
padding: 10px;
border-radius: 5px;
-webkit-box-shadow: 0px 3px 40px rgba(0,0,0,0.20);
box-shadow: 0px 3px 40px rgba(0,0,0,0.20);
-webkit-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
cursor: pointer;
min-width: 55px;
text-align: center;
min-height: 50px;
}
.bbasket-right .beshoping-bag {
right: 90px;
}
.bbasket-left .beshoping-bag {
left: 50px;
}
.beshoping-bag:hover{
background-color:#ededed;
}
.beshoping-bag i {
font-size: 25px;
}
.modal-backdrop{
z-index: 999999;
}
.beshoping-cart .modal{
z-index: 999999999;
top:10%;
bottom: -10%;
}
span.count.cart-contents {
position: absolute;
top: -15px;
background: #77A464;
padding: 11px 2px 2px;
border-radius: 50%;
min-width: 35px;
height: 35px;
line-height: 11px;
color: #fff;
font-size: 14px;
-webkit-box-shadow: 0px 3px 40px rgba(0,0,0,0.20);
box-shadow: 0px 3px 40px rgba(0,0,0,0.20);
display: block;
width: auto;
right: -20px;
margin-top: 0px;
}
li.woocommerce-mini-cart-item.mini_cart_item {
border-bottom: 1px solid #ededed;
}
a.btn.btn-secondary.text-light {
color: #fff !important;
}
.cart_totals h2 {
font-size: 24px;
}
.woocommerce table.shop_attributes th {
background: inherit;
}
.woocommerce table.shop_attributes td {
padding-left: 10px;
}
.woocommerce table.shop_attributes {
border-left: 1px solid #ccc;
}
ol.flex-control-nav.flex-control-thumbs {
background: #ededed;
padding: 10px !important;
border-top: 1px solid #ccc;
}
.woocommerce span.onsale {
padding: 0.1em;
font-weight: 400;
}
.pswp__caption__center {
text-align: center;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
border-radius: 50px;
width: 80%;
max-width: 75px;
border: 1px solid #222;
}
.woocommerce div.product .woocommerce-tabs .panel {
margin: 0 0 2em;
padding: 5px 15px;
}
.woocommerce-page h1.page-title {
min-height: 65px;
}
a.added_to_cart.wc-forward {
padding: 5px 25px;
border-radius: 4px;
}
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
float: left;
margin: 0 10px 0 0;
width: 80px;
height: auto;
box-shadow: none;
max-width: 50%;
}
.woocommerce #content div.product div.summary, 
.single-product .product.type-product, 
.woocommerce-page #content div.product div.summary{
box-shadow: 0 0.2rem 2.8rem rgba(36,36,36,.1);
margin-top: 0;
padding: 15px;
}
.single-product .product {
display: inline-block;
}
.single-product .shop-sidebar {
margin-top: 0;
}
.woocommerce-product-gallery .flex-viewport {
cursor: move;
border: 1px solid #ededed;
}
.product_meta {
display: flex;
flex-direction: column;
font-size: 13px;
}
.be-boost-share span {
font-size: 13px;
}
.product_meta>span {
margin-bottom: 5px;
}
.woocommerce-tabs h2 {
font-size: 20px;
color: #555;
border-bottom: 1px solid #ededed;
padding-bottom: 7px;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
width: 40px;
border-radius: 50%;
}
.related.products h2 {
margin-bottom: 20px;
border-bottom: 1px solid #ededed;
padding-bottom: 10px;
font-size: 24px;
}
.pswp--animated-in .pswp__bg {
opacity: 0.8 !important;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
border-radius: 1em;
background-color: #ccc;
border: 1px solid #ccc;
box-shadow: 0 0.2rem 2.8rem rgba(36,36,36,.1);
}
.woocommerce-tabs.wc-tabs-wrapper {
box-shadow: 0 0.2rem 2.8rem rgba(36,36,36,.1);
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
padding-left: 5px;
}
.woocommerce ul.products li.product .star-rating {
display: block;
margin: 0 auto 5px;
}
.woocommerce .star-rating span::before {
text-align: left;
}
.woocommerce-checkout.woocommerce-page .content-area,
.woocommerce-cart.woocommerce-page .content-area,
.no-shop-widget .content-area {
width: 100%;
margin: 0;
}
.woocommerce-checkout.woocommerce-page aside.widget-area,
.woocommerce-cart.woocommerce-page aside.widget-area {
display: none;
}
.widget.widget_product_search input,
.widget.widget_product_search button {
width: 100%;
margin-bottom: 5px;
padding: 5px 9px;
}
}
.wc_payment_methods .woocommerce-info:before {
left: -14px;
top: 10px;
}
.woocommerce #content table.cart td.actions .input-text, 
.woocommerce table.cart td.actions .input-text, 
.woocommerce-page #content table.cart td.actions .input-text, 
.woocommerce-page table.cart td.actions .input-text{
min-width: 120px;
}
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
button.button, 
a.wc-block-components-button ,
.woocommerce button.button.alt, 
.woocommerce input.button.alt{
background-color: #000 !important;
color:#fff !important;
text-decoration: inherit;
}
.woocommerce .products ul,
.woocommerce ul.products {
display: flex;
flex-flow: row wrap;
}
.woocommerce-cart.woocommerce-page .beshoping-cart,
.woocommerce-checkout.woocommerce-page .beshoping-cart {
display: none;
}
.theme-green .woocommerce #respond input#submit.alt, 
.theme-green .woocommerce a.button.alt, 
.theme-green button.button,
.theme-green .widget_price_filter .ui-slider .ui-slider-handle,
.theme-green .widget_price_filter .ui-slider .ui-slider-range,
.theme-green .woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
.theme-green .entry-content table thead th,  
.theme-green .woocommerce button.button.alt, 
.theme-green .woocommerce input.button.alt{
background-color: #1B5E20 !important;
color:#fff !important;
}
.theme-blue .woocommerce #respond input#submit.alt, 
.theme-blue .woocommerce a.button.alt, 
.theme-blue button.button, 
.theme-blue .widget_price_filter .ui-slider .ui-slider-handle,
.theme-blue .widget_price_filter .ui-slider .ui-slider-range,
.theme-blue .entry-content table thead th, 
.theme-blue .woocommerce button.button.alt, 
.theme-blue .woocommerce input.button.alt{
background-color: #2196F3 !important;
color:#fff !important;
}
.theme-indigo .woocommerce #respond input#submit.alt, 
.theme-indigo .woocommerce a.button.alt, 
.theme-indigo button.button, 
.theme-indigo .widget_price_filter .ui-slider .ui-slider-handle,
.theme-indigo .widget_price_filter .ui-slider .ui-slider-range,
.theme-indigo .entry-content table thead th, 
.theme-indigo .woocommerce button.button.alt, 
.theme-indigo .woocommerce input.button.alt{
background-color: #9575CD !important;
color:#fff !important;
}
.theme-brown .woocommerce #respond input#submit.alt, 
.theme-brown .woocommerce a.button.alt, 
.theme-brown button.button, 
.theme-brown .widget_price_filter .ui-slider .ui-slider-handle,
.theme-brown .widget_price_filter .ui-slider .ui-slider-range,
.theme-brown .entry-content table thead th, 
.theme-brown .woocommerce button.button.alt, 
.theme-brown .woocommerce input.button.alt{
background-color: #3E2723 !important;
color:#fff !important;
}
.theme-bluegrey .woocommerce #respond input#submit.alt, 
.theme-bluegrey .woocommerce a.button.alt, 
.theme-bluegrey button.button, 
.theme-bluegrey .widget_price_filter .ui-slider .ui-slider-handle,
.theme-bluegrey .widget_price_filter .ui-slider .ui-slider-range,
.theme-bluegrey .entry-content table thead th, 
.theme-bluegrey .woocommerce button.button.alt, 
.theme-bluegrey .woocommerce input.button.alt{
background-color: #607D8B !important;
color:#fff !important;
}
.shop-sidebar {
margin-top: 105px;
} .bstyle2 .beshop-poroduct.style2 {
position: relative;
}
.beshop-poroduct.style2 a.button, 
.beshop-poroduct.style2 a.add_to_cart_button, 
.beshop-poroduct.style2 a.added_to_cart {
position: absolute;
bottom: 40px;
left: 0;
width: 100%;
opacity: 0;
visibility: hidden;
transition: 0.5s;
}
.bstyle2 li:hover .beshop-poroduct.style2 a.button, 
.bstyle2 li:hover .beshop-poroduct.style2 a.add_to_cart_button, 
.bstyle2 li:hover .beshop-poroduct.style2 a.added_to_cart {
bottom: 70px;
left: 0;
width: 100%;
opacity: 1;
visibility: visible;
} .beshop-products-filter ul {
display: flex;
padding: 10px !important;
list-style: none;
justify-content: center;
background: #ededed;
flex-flow: row wrap;
align-items: baseline;
}
.beshop-products-filter.bestopwid-left ul{
justify-content: flex-start;
}
.beshop-products-filter.bestopwid-right ul{
justify-content: flex-end;
}
.beshop-top-filter {
margin-bottom: 10px;
}
.beshop-top-filter .price_slider_wrapper {
max-width: 400px;
}
.beshop-products-filter ul li {
margin: 0 5px;
}
.beshop-products-filter ul li a{
text-transform: uppercase;
}
.woocommerce .star-rating span::before,
.woocommerce p.stars a:before,
.woocommerce p.stars.selected a.active:before{
color:#F29423;
} .beshop-wbreadcrump {
padding: 20px 10px;
background: #ededed;
display: flex;
align-items: center;
}
.woocommerce .beshop-wbreadcrump .woocommerce-breadcrumb {
margin: 0;
}
.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-breadcrumb a{
color:#555;
}
.woocommerce .woocommerce-breadcrumb a{
font-weight: 500;
}
@media only screen and (max-width: 767px) {
.beshop-poroduct.style2 a.button, 
.beshop-poroduct.style2 a.add_to_cart_button, 
.beshop-poroduct.style2 a.added_to_cart {
opacity: 1;
visibility: visible;
position: unset;
display: inline-block;
}
.beshoping-bag {
position: fixed;
left: 2px;
right: inherit !important;
bottom: 10px;
padding: 10px;
min-width: 30px;
min-height: 30px;
}
span.count.cart-contents {
top: -17px;
padding: 11px 2px 2px;
width: 21px;
height: 32px;
line-height: 11px;
font-size: 12px;
margin-top: 0px;
}
}