/*common default
*************************************************************************************/
.bew-elements-widgets ins {
	text-decoration: none;
}

/*Display Flex css 
*************************************************************************************/
.bew-display-flex {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*Display Grid css
************************************************************************************/
.bew-display-grid {
	display: -ms-grid;
	display: grid;
}

/*Grid Column for Desktop*/
.bew-display-grid[desktop-col="1"] {
	width: 100%;
}
.bew-display-grid[desktop-col="2"] {
	grid-template-columns: repeat(2, 1fr);
}
.bew-display-grid[desktop-col="3"] {
	grid-template-columns: repeat(3, 1fr);
}
.bew-display-grid[desktop-col="4"] {
	grid-template-columns: repeat(4, 1fr);
}
.bew-display-grid[desktop-col="5"] {
	grid-template-columns: repeat(5, 1fr);
}
.bew-display-grid[desktop-col="6"] {
	grid-template-columns: repeat(6, 1fr);
}

/*Grid Column for Tablet*/
@media screen and (max-width: 1023px) {
	.bew-display-grid[tablet-col="1"] {
		grid-template-columns: repeat(1, 1fr);
	}
	.bew-display-grid[tablet-col="2"] {
		grid-template-columns: repeat(2, 1fr);
	}
	.bew-display-grid[tablet-col="3"] {
		grid-template-columns: repeat(3, 1fr);
	}
	.bew-display-grid[tablet-col="4"] {
		grid-template-columns: repeat(4, 1fr);
	}
	.bew-display-grid[tablet-col="5"] {
		grid-template-columns: repeat(5, 1fr);
	}
	.bew-display-grid[tablet-col="6"] {
		grid-template-columns: repeat(6, 1fr);
	}
}
/*Grid Column for Mobile*/
@media screen and (max-width: 575px) {
	.bew-display-grid[mobile-col="1"] {
		grid-template-columns: repeat(1, 1fr);
	}
	.bew-display-grid[mobile-col="2"] {
		grid-template-columns: repeat(2, 1fr);
	}
	.bew-display-grid[mobile-col="3"] {
		grid-template-columns: repeat(3, 1fr);
	}
	.bew-display-grid[mobile-col="4"] {
		grid-template-columns: repeat(4, 1fr);
	}
	.bew-display-grid[mobile-col="5"] {
		grid-template-columns: repeat(5, 1fr);
	}
	.bew-display-grid[mobile-col="6"] {
		grid-template-columns: repeat(6, 1fr);
	}
}

/*Slick Slider 
************************************************************************************/

/*arrow*/
.bew-elements-widgets .owl-nav button {
	position: absolute;
	background-color: transparent;
	border-radius: 0;
	border: none;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.bew-elements-widgets .owl-nav .nav-btn {
	background-color: #ffffff;
	border: 1px solid #e6e6e6;
	border-radius: 50%;
	padding: 7px 14px;
}
.bew-elements-widgets .owl-nav button.owl-prev {
	left: -20px;
}
.bew-elements-widgets .owl-nav button.owl-next {
	right: -20px;
}
.bew-elements-widgets .owl-nav button i {
	font-size: 14px;
}
@media screen and (max-width: 1199px) {
	.bew-elements-widgets .owl-nav button.owl-prev {
		left: -10px;
	}
	.bew-elements-widgets .owl-nav button.owl-next {
		right: -10px;
	}
}
/*dots*/
.bew-elements-widgets .owl-dots button {
	background-color: #E9E9E9;
    border-radius: 100%;
    padding: 0;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.bew-elements-widgets .owl-dots button:hover,
.bew-elements-widgets .owl-dots button:focus {
	background-color: #030303;
}
.bew-elements-widgets .owl-dots button.active {
	background-color: #030303;
}

/*Bew Woo-Commerce Default Style  
************************************************************************************/

/*product default*/
.bew-woo-product a {
	text-decoration: none;
}
.bew-woo-product .woocommerce-LoopProduct-link {
	color: inherit;
}
.bew-woo-product .woocommerce-loop-product__title {
	color: #030303;
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 1.2;
}
.bew-woo-product .woocommerce-product-details__short-description p {
	margin-bottom: 10px;
}
.bew-woo-product figure .onsale {
	background-color: #313131;
	color: #fff;
	font-size: 12px;
	position: absolute;
	left: initial;
	top: 10px;
	right: 10px;
	padding: 5px 10px;
	line-height: 1.2;
	z-index: 9;
}
.bew-woo-product .price {
	display: block;
	margin-top: 5px;
	margin-bottom: 15px;
}
.bew-woo-product .button {
	background-color: #313131;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 1px;
    padding: 12px 24px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: normal;
    position: relative;
    z-index: 1;
}

/*star rating*/
.bew-woo-product .star-rating {
	color: #FEBF00;
	display: inline-block;
	font-family: WooCommerce;
	position: relative;
	line-height: 1;
	overflow: hidden;
	font-size: 14px;
}
.bew-woo-product .star-rating:before {
	content: "sssss";
	position: relative;
}
.bew-woo-product .star-rating span:before {
	content: "SSSSS";
    top: 0;
    position: relative;
    left: 0;
    display: inline-block;
} 
.bew-woo-product .star-rating span {
	overflow: hidden;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
}

/*remove default list style for woocommerce product*/
.bew-woo-product ul {
	margin: 0;
	padding: 0;
}
.bew-woo-product ul li {
	list-style: none;
}

/*Pagination
************************************************************************************/

.bew-pagination {
	margin-top: 40px;
}
.bew-pagination ul {
	margin: 0;
	padding: 0;
}
.bew-pagination li {
	list-style: none;
	display: inline-block;
}

/*Categories List
************************************************************************************/
.bew-elements-product-categories-list {
    row-gap: 10px;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.bew-elements-product-categories-list .product-wrapper a {
    display: block;
    padding: 8px;
    border-radius: 50px;
    border: 1px solid #eaebed;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.bew-elements-product-categories-list .products-cat-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bew-elements-product-categories-list .products-cat-wrap .products-cat-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
}
.bew-elements-product-categories-list .products-cat-wrap .categoryimage {
    max-width: 45px;
    margin: 0px;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.bew-elements-product-categories-list .products-cat-wrap .woocommerce-loop-category__title {
    font-size: 13px;
    font-weight: 500;
    margin: 0 15px;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}
.bew-elements-product-categories-list .products-cat-wrap .count {
    background-color: #ebebeb;
    color: #313131;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    border-radius: 50%;
    min-width: 45px;
    min-height: 45px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.bew-elements-product-categories-list .product-wrapper a:hover {
    background-color: #E9E9E9;
}
.bew-elements-product-categories-list .product-wrapper a:hover .woocommerce-loop-category__title {
    color: #555555;
}
.bew-elements-product-categories-list .product-wrapper a:hover .count {
    background-color: #ffffff;
    color: #1b1b1b;
}

/*YITH Compatibility
************************************************************************************/

.bew-elements-carousel-products ul.products li.product .product-compare-wishlist {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	z-index: 9;
}
.bew-elements-widgets .product .product-compare-wishlist > div {
	display: inline-block;
}
.bew-elements-carousel-products .product-wishlist {
	margin-right: 0;
}
.bew-elements-carousel-products .product .product-compare a,
.bew-elements-carousel-products .product .product-view a,
.bew-elements-carousel-products .product .product-wishlist a {
	opacity: 0;
}
.bew-elements-carousel-products .product:hover .product-compare-wishlist a,
.bew-elements-carousel-products .product:focus .product-compare-wishlist a {
	opacity: 1;
}
.bew-elements-carousel-products .product-compare-wishlist a i {
	background-color: #ffffff;
	border-radius: 100px;
	line-height: 35px;
	height: 35px;
	text-align: center;
	width: 35px;
}
.bew-elements-carousel-products .product-compare-wishlist a i {
	color: #383838;
	font-size: 12px;
}

.wpcf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio) {
	outline: none;
}
.bew-blog-content .read-more-blog {
	display: inline-block;
	border-style: solid;
	border-width: 1px;
	border-color: transparent;
}
.bew-elements-contact-forms.bew-hide-label label {
	font-size: 0;
}
.bew-elements-contact-forms .wpcf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio) {
	width: 100%;
	padding: 0;
}
.bew-elements-contact-forms .wpcf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio):not(.wpcf7-textarea) {
	height: 48px;
	padding: 0 10px;
}
.bew-elements-contact-forms .wpcf7 .wpcf7-form-control.wpcf7-textarea {
	padding: 10px;
}

/*bew yith icon size*/
.bew-widget-inner {
	display: inline-block;
}
.bew-widget-inner a {
	display: flex;
	align-items: center;
}
.bew-widget-inner a h4 {
	display: inline-block;
	margin-bottom: 0;
	margin-left: 5px;
}
.bew-widget-inner .bew-icon {
	display: inline-block;
	font-size: 20px;
}
.bew-widget-inner .bew-icon i, .bew-widget-inner .bew-icon svg {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}

/*yith tooltip*/
.elementor-widget-container .bew-widget-inner {
	position: relative;
}
.elementor-widget-container .bew-tooltip {
	background-color: #1a1a1a;
	color: #FFFFFF;
	font-size: 11px;
	padding: 4px 10px;
	position: absolute;
	top: -25px;
	text-align: center;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	white-space: nowrap;
	visibility: hidden;
	z-index: 1;
	-webkit-transition: top 0.4s;
	-moz-transition: top 0.4s;
	transition: top 0.4s;
}
.elementor-widget-container .bew-widget-inner:hover .bew-tooltip {
	top: -35px;
	visibility: visible;
}

/*yith cart icon*/
.bew-cart-inner a {
	display: flex;
	align-items: center;
}
.bew-cart-inner .bew-icon {
    position: relative;
}
.bew-cart-count {
    background-color: #000;
	position: absolute;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    display: block;
    border-radius: 100%;
    color: #fff;
    top: -9px;
    right: -9px;
    padding: 0px 5px;
}
.bew-cart-amount {
	margin-left: 8px;
}
.bew-cart-amount {
	color: #000000;
}
.ementor-widget-bew-element-cart {
	position: relative;
}
.bew-shoping-detail-cart {
	background-color: #fff;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 99;
	min-width: 280px;
}
.bew-shoping-detail-cart {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
	visibility: hidden;
	opacity: 0;
    padding: 15px;
	transition: all 0.4s ease-out 0s;
}
.bew-shoping-detail-cart .widget_shopping_cart {
	margin-bottom: 0;
}
.bew-cart-inner:hover .bew-shoping-detail-cart {
	opacity: 1;
	visibility: visible;
}
.bew-shoping-detail-cart .woocommerce a.button {
	padding: 8px 18px;
	font-size: 14px;
	text-transform: capitalize;
}
.bew-shoping-detail-cart .woocommerce a.remove:hover {
	background-color: transparent !important;
	color: #494949 !important;
	text-decoration: none;
}
.bew-shoping-detail-cart .woocommerce a,
.bew-shoping-detail-cart .woocommerce a:hover {
	text-decoration: none;
}

/*Woo - Cart
************************************************************************************/

/*open cart content on add to cart action*/
.product-added-to-cart .bew-shoping-detail-cart {
  visibility: visible;
  opacity: 1;
}

/*Woo - Dropdown Nav
************************************************************************************/

.bew-category-nav-container .bew-category-parent-label {
	align-items: center;
	background-color: #000;
	display: flex;
	color: #fff;
	padding: 15px 20px;;
	text-decoration: none;
	cursor: pointer;
}
.bew-category-nav-container .bew-category-parent-label:hover {
	text-decoration: none;
}
.bew-category-nav-container .bew-icon {
	font-size: 20px;
	margin-right: 10px;
}
.bew-category-nav-container .bew-icon i, 
.bew-category-nav-container .bew-icon svg {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}
.bew-category-nav-container .bew-category-parent-label:after {
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: currentColor;
    margin-left: 15px;
}
.bew-category-nav-container .bew-category-menu-label {
	flex-grow: 1;
}
/* dropdown nav */
.bew-category-nav {
	background-color: #fff;
    border: 1px solid rgba(243, 243, 243, 0.8);
    display: block;
    opacity: 0;
    top: 100%;
    margin: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    z-index: 999;
    transform: translateY(-2px);
    transition: opacity 0.5s ease-in-out, 
                transform 0.5s ease-in-out, 
                visibility 0.5s ease-in-out;
}

.bew-category-nav-container:not(.bew-clickable):has(.bew-category-parent-label:hover, .bew-category-nav:hover) .bew-category-nav,
.bew-category-nav-container.show .bew-category-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/*dropdown nav category submenu*/
.bew-category-nav ul {
	margin: 0;
	padding: 0;
}
.bew-category-nav ul li ul {
	background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    width: 180px;
    z-index: 99;
    text-align: left;
    -webkit-animation: slide-up 0.3s ease-out;
    -moz-animation: slide-up 0.3s ease-out;
    -ms-animation: slide-up 0.3s ease-out;
    -o-animation: slide-up 0.3s ease-out;
    animation: slide-up 0.3s ease-out;
}
.bew-category-nav ul li {
	list-style: none;
}
.bew-category-nav ul li:hover>ul,
.bew-category-nav ul li:focus>ul,
.bew-category-nav ul li:active>ul {
    display: block;
    top: 0;
    left: 100%;
}
.bew-category-nav ul li a {
    color: #313131;
    display: block;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.4s;
}
.bew-category-nav ul li a:hover {
	text-decoration: none;
}
.bew-category-nav ul li:hover>a:after,
.bew-category-nav ul li:focus>a:after {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.bew-category-nav ul li a {
    border-bottom: 1px solid #f5f5f5;
}
.bew-category-nav ul > li:last-child a {
    border-bottom: none;
}

/*dropdown nav category megamenu */
.bew-category-nav .elementskit-megamenu-panel {
	opacity: 0;
	visibility: hidden;
}
.bew-category-nav ul li.menu-item-has-children {
	position: relative;
}
.bew-category-nav ul > li:hover .elementskit-megamenu-panel {
	opacity: 1;
	visibility: visible;
}
.bew-category-nav-container .ekit-wid-con .elementor-icon-list-item>a {
	padding: 0;
}
.bew-category-nav-container .elementskit-section-subtitle {
	margin-bottom: 15px;
}
.bew-category-nav .elementskit-dropdown-has a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.bew-category-nav ul li a .icon {
	display: inline-block;
    font-size: 12px;
    margin-left: 8px;
    -moz-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.bew-category-nav ul li:hover>a .icon,
.bew-category-nav ul li:focus>a .icon {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*Woo - Account Icon Popup
************************************************************************************/

.bew-account-login-wrapper {
	background: #ffffff;
    width: 90%;
    max-width: 700px;
    max-height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 40px 50px 45px 50px;
    z-index: 999999;
    overflow-y: auto;
    -webkit-box-shadow: 300px 0 0 1900px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 300px 0 0 1900px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.bew-show-popup-login .bew-account-login-wrapper {
    visibility: visible;
    opacity: 1;
}
.bew-account-login-inner .woocommerce form.login {
    margin-bottom: 0;
	border: none !important;
    padding: 0;
}
.bew-account-login-inner .woocommerce form.login .input-text {
	padding: 1em;
}
.bew-account-login-inner .bew-toggle-icon {
	float: right;
}
.bew-account-login-inner .bew-toggle-icon i {
	font-size: 24px;
    color: #cfc8d8;
	-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;
}
.bew-account-login-inner .bew-toggle-icon i:hover,
.bew-account-login-inner .bew-toggle-icon i:focus,
.bew-account-login-inner .bew-toggle-icon i:active {
	color: #18271f;
}

/*Woo - Search
************************************************************************************/

.bew-product-search-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.bew-product-search-form .bew-product-search-input {
	flex-grow: 1;
}
.bew-product-search-form .bew-product-search-select {
	flex-grow: 1;
}
.bew-product-search-form .bew-product-search-input input,
.bew-product-search-form .bew-product-search-select select {
	width: 100%;
}
.bew-product-search-input input {
	height: auto;
	padding: 10px;
}
.bew-product-search-select .bew-select-styled {
	border: 1px solid #F1F1F1;
	padding: 10px;
}
.bew-product-search-form .bew-search-submit button {
	padding: 12px 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bew-search-submit button svg {
	width: 1em;
	height: 1em;
	display: block;
}

/* Custom category select — built by bew_init_search_select() in bew-admin-script.js */
.bew-select-hidden {
	display: none;
	visibility: hidden;
	padding-right: 10px;
	position: absolute;
	z-index: -1;
}
.bew-select-wrap {
	cursor: pointer;
	position: relative;
}
.bew-select-styled:after {
	content: "";
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-color: #313131 transparent transparent transparent;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
}
.bew-select-options {
	background-color: #313131;
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 99999;
	margin: 0;
	padding: 0;
	list-style: none;
}
.bew-select-options li {
	color: #fff;
	padding: 5px 10px;
}
.bew-select-options li.bew-is-selected,
.bew-select-options li:hover {
	background-color: #393939;
}
.bew-select-options li[rel="hide"] {
	display: none;
}

/*Editor Error
************************************************************************************/

.bew-editor-error,
.bew-error {
	padding: 10px 10px 10px 15px;
	border: 1px solid #c3c4c7;
	border-left-width: 4px;
	border-left-color: #d63638;
}
body:not(.elementor-editor-active) .bew-editor-error {
	display: none;
}