﻿.FilterBody .check-moding {
	max-height: 30rem;
	overflow-y: auto;
}

.ShopFilter {
	background-color: var(--CustomColor3);
	margin-bottom: 0.5rem;
	padding: 10px;
	border-radius: 5px;
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.ShopFilter .FilteredTitle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
	font-size: 1rem;
	color: #000;
	margin-bottom: 1rem;

	#clearfilters {
		color: var(--accent-color);
	}
}

.fancytree-icon {
	display: none !important;
}

.ShopFilter .FilterBody {
	max-height: 30vh;

	label,
	.title {
		color: var(--button-hover-color);
	}
}

/**********************OnlyActiveAndDiscounted************************/
.only-active-check-label::after,
.only-dis-check-label::after {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	transition: all .2s;
	border-radius: 50%;
	background: var(--White);
	top: calc(50% - 6px);
	left: -1px;
}

.only-active-check-label::before,
.only-dis-check-label::before {
	content: '';
	position: absolute;
	left: -0.3rem;
	top: calc(50% - 8px);
	border-radius: calc(var(--b-radius) * 4);
	transition: background-color .2s;
	width: 31px;
	height: 16px;
	background: #d1d1d6;
	display: inline-block;
	transition: all 0.4s;
	-webkit-border-radius: calc(var(--b-radius) * 4);
	-moz-border-radius: calc(var(--b-radius) * 4);
	-ms-border-radius: calc(var(--b-radius) * 4);
	-o-border-radius: calc(var(--b-radius) * 4);
}

.only-active-check:checked+label::after,
.only-dis-check:checked+label::after {
	left: 13px;
	background: #fff;
}

.only-active-check:checked+label::before,
.only-dis-check:checked+label::before {
	background-color: var(--button-color);
}



.productstabinfo .SideBar.active {
	right: 0
}

.productstabinfo :where(select, input) {
	border-color: transparent;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
}

.pagination .page-item {
	margin: 0px 2px;
}

.pagination .page-item .page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background-color: #fff;
	border: solid 1px #EBEBEB;
	border-radius: 5px;
	font-size: 13px;
	color: #484848;
	font-family: 'Arial';
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;

	span {
		display: block;
		line-height: 0;
	}
}

.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
	background-color: var(--button-color);
	border: solid 1px var(--button-color);
	color: #fff;
}


.check-moding select {
	width: 100%;
}

@media(min-width:768px) {
	.p-lg-relative {
		position: relative;
	}
}

@media screen and (min-width:960px) {
	.col-lg-25 {
		flex: 0 0 auto;
		width: 20%;
	}
}

.ShopFilter ul.fancytree-container {
	background: unset;
	border: none;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.accordion-panel {
	.acc-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0;
		cursor: pointer;

		.icon {
			position: relative;
			width: 10px;
			height: 10px;
			transition: all 0.3s ease;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3s ease;
			-ms-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
		}

		.title {
			font-size: 1rem;
		}
	}

	.acc-body {
		padding-top: 16px;
		display: none;

		.desc {
			font-size: 1rem;
		}

		&.open {
			display: block;
		}
	}

	&.open {
		.acc-head {
			.icon {
				transform: rotate(180deg);
				-webkit-transform: rotate(180deg);
				-moz-transform: rotate(180deg);
				-ms-transform: rotate(180deg);
				-o-transform: rotate(180deg);
			}
		}
	}
}

.ShopFilter .FilterHead strong {
	font-size: 14px;
	color: #000;
}

.checkbox {
	label {
		display: flex;
	}
}


@media(max-width:768px) {
	.productstabinfo .SideBar {
		top: 0;
		right: -100%;
		background: var(--White);
		transition: all ease-in-out 0.4s;
		display: block;
		padding: 0;
		margin-bottom: 16px;
		z-index: 22;
	}

	.productstabinfo .SideBar.active {
		right: 0
	}

	.productstabinfo .SideBar:after {
		content: '';
		position: fixed;
		height: 100vh;
		width: 100vw;
		background: rgba(0, 0, 0, 0.2);
		z-index: -1;
		display: block;
		right: 0;
		top: 0;
		backdrop-filter: blur(3px);
		opacity: 0;
		transition: all ease-in-out 0.5s;
		visibility: hidden;
	}

	.productstabinfo .SideBar.active:after {
		opacity: 1;
		visibility: visible;
	}

	.productstabinfo .SideBar #listfilters {
		padding-top: 10vh;
		position: relative;
		z-index: 22222222;
		background: var(--White);
		padding: 1rem;
		height: 100vh;
		width: 100%;
		overflow: auto;
	}
}

.Products {
	border-radius: 0.8em;
	background: rgba(217, 217, 217, 0.50);
	backdrop-filter: blur(0.8em);
	padding: 1.6rem;

	.ProductBox {
		padding: 1.33rem;
		border-radius: 0.8em;
	}

	.ReadMore {
		font-size: 0.93em !important;
	}
}

.ProductBG {
	background: #FF5E4D;
}

/* swiperButton */
.swiper-product-prev {
	top: 50%;
	right: 0.8rem;




	&:before {
		border: 0.14em solid var(--White);
		transform: rotate(45deg);
		border-left: none;
		border-bottom: none;
	}
}

.swiper-product-next {
	top: 50%;
	left: 1.8rem;

	&:before {
		border: 0.14em solid var(--White);
		transform: rotate(45deg);
		border-right: none;
		border-top: none;
	}
}

.swiper-product-prev,
.swiper-product-next {
	width: 3rem;
	height: 3rem;
	z-index: 1;
	transform: translate(0, -50%);
	border-radius: 0.4em;
	background: #00000080;

	&:before {
		content: '';
		width: 0.5rem;
		height: 0.5rem;
	}
}

.swiper-product-prev.swiper-button-disabled,
.swiper-product-next.swiper-button-disabled {
	display: none !important;
}

/* swiperButtonEnd */
.BoxProductList {
	z-index: 2;
	position: relative;
}

.product-list {
	margin-top: -1.5rem;

	&.Sterilnce {
		margin-top: -0.5rem !important;
	}

	.swiper-slide {
		height: auto !important;
	}
}

.ShowMoreBerand {
	border-radius: calc(var(--b-radius)*2);
	-webkit-border-radius: calc(var(--b-radius)*2);
	-moz-border-radius: calc(var(--b-radius)*2);
	-ms-border-radius: calc(var(--b-radius)*2);
	-o-border-radius: calc(var(--b-radius)*2);
}

.ProductsTitle {
	h1 {
		font-size: 11rem;
		text-transform: uppercase;
		color: #CDCDCD;
		line-height: 0.7;
	}

	@media screen and (max-width:980px) {
		h1 {
			font-size: 5rem;
		}
	}
}