.mybag-category-carousel {
	background: #fff;
	border-radius: 4px;
	padding: 20px 0 25px;
}

.mybag-category-carousel__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	border-bottom: 1px solid #ececec;
	margin-bottom: 14px;
	padding-bottom: 10px;
}

.mybag-category-carousel__title {
	border-left: 5px solid #00923f;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
	padding-left: 10px;
	white-space: nowrap;
}

.mybag-category-carousel__title a {
	color: #333;
}

.mybag-category-carousel__menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	flex-wrap: wrap;
	column-gap: 0;
	margin: -5px 0;
	min-width: 0;
	row-gap: 2px;
}

.mybag-category-carousel__menu-toggle {
	appearance: none;
	background: transparent;
	border: 0;
	color: #222;
	cursor: pointer;
	display: none;
	height: 34px;
	padding: 0;
	position: relative;
	width: 34px;
}

.mybag-category-carousel__menu-toggle::before,
.mybag-category-carousel__menu-toggle::after {
	background: currentColor;
	content: "";
	height: 2px;
	left: 7px;
	position: absolute;
	top: 16px;
	transition: box-shadow 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
	width: 20px;
}

.mybag-category-carousel__menu-toggle::before {
	box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.mybag-category-carousel__menu-toggle::after {
	opacity: 0;
}

.mybag-category-carousel__tab {
	color: #333;
	font: inherit;
	line-height: 1.5;
	padding: 5px 11px;
	white-space: nowrap;
}

.mybag-category-carousel__tab + .mybag-category-carousel__tab::before {
	color: #bbb;
	content: '/';
	margin-right: 11px;
}

.mybag-category-carousel__tab:hover,
.mybag-category-carousel__tab:focus {
	color: #00923f;
}

.mybag-category-carousel ul.products.mybag-category-carousel__products {
	display: block;
	margin: 0;
	padding: 0;
}

.mybag-category-carousel ul.products.mybag-category-carousel__products > li.product {
	box-sizing: border-box;
	float: none;
	margin: 0;
	padding: 6px;
	width: 100%;
}

.mybag-category-carousel .owl-stage-outer {
	padding: 8px 0 12px;
}

.mybag-category-carousel .owl-stage {
	display: flex;
}

.mybag-category-carousel .owl-item {
	display: flex;
	min-width: 0;
}

.mybag-category-carousel .owl-item > li.product {
	box-sizing: border-box;
	height: 100%;
	list-style: none;
	margin: 0;
	padding: 6px;
	width: 100%;
}

.mybag-category-carousel li.product .product-item {
	box-sizing: border-box;
	height: 100%;
	overflow: hidden;
}

.mybag-category-carousel li.product .mybag-action-buttons {
	display: none !important;
}

.mybag-category-carousel li.product .product-item-footer,
.mybag-category-carousel li.product .product-item-footer-wrapper {
	display: block;
	width: 100%;
}

.mybag-category-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 14px;
}

.mybag-category-carousel .owl-dot span {
	background: #cfd3d5;
	border-radius: 5px;
	display: block;
	height: 7px;
	transition: width 0.2s ease, background 0.2s ease;
	width: 20px;
}

.mybag-category-carousel .owl-dot.active span {
	background: #00923f;
	width: 8px;
}

.mybag-category-carousel__empty,
.mybag-category-carousel__notice {
	margin: 20px 0;
	text-align: center;
}

@media (max-width: 767px) {
	.mybag-category-carousel__header {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px 12px;
	}

	.mybag-category-carousel__title {
		flex: 1 1 auto;
		font-size: 20px;
		white-space: normal;
	}

	.mybag-category-carousel__menu-toggle {
		display: block;
		flex: 0 0 34px;
	}

	.mybag-category-carousel.is-menu-open .mybag-category-carousel__menu-toggle::before {
		color: #00923f;
		box-shadow: none;
		transform: rotate(45deg);
	}

	.mybag-category-carousel.is-menu-open .mybag-category-carousel__menu-toggle::after {
		background: #00923f;
		opacity: 1;
		transform: rotate(-45deg);
	}

	.mybag-category-carousel__menu {
		display: flex;
		flex: 0 0 100%;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: flex-start;
		margin: 0;
		max-height: 0;
		max-width: 100%;
		opacity: 0;
		overflow: hidden;
		padding: 0;
		pointer-events: none;
		transition: max-height 0.3s ease, opacity 0.2s ease;
		visibility: hidden;
		width: 100%;
	}

	.mybag-category-carousel.is-menu-open .mybag-category-carousel__menu {
		max-height: 500px;
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
	}

	.mybag-category-carousel__tab {
		border-bottom: 1px dotted #e5e5e5;
		padding: 8px 0;
		white-space: normal;
		width: 100%;
	}

	.mybag-category-carousel__tab:last-child {
		border-bottom: 0;
	}

	.mybag-category-carousel__tab + .mybag-category-carousel__tab::before {
		display: none;
	}
}
