#product_list_header .product-list-banner {
	margin: 0 0 24px 0;
    display: block;
    position: relative;
}
#product_list_header .product-list-banner img {
	width: 100%;
    height: auto;
    border-radius: 16px;
}
#product_list_header #fish-and-chips ul {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
#product_list_header #fish-and-chips ul li {
    border-radius: 8px;
    padding: 6px 12px 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 3px;
	font-size: 14px;
	border: 1px solid rgba(201, 202, 202, 1);
}
#product_list_header #fish-and-chips ul li:hover {
	border: 1px solid rgba(158, 160, 163, 1);
	background-color: rgba(32, 33, 36, 0.04);
}
#product_list_header #fish-and-chips ul li span.chips-qty {
	color: rgba(125, 127, 129, 1);
}
#product_list_header #fish-and-chips ul li.active,
#product_list_header #fish-and-chips ul li.active span.chips-qty {
	color: rgba(228, 4, 40, 1);
}
#product_list_header #fish-and-chips ul li.active {
	border: 1px solid rgba(228, 4, 40, 1);
	background-color: white;
}
#product_list_header #product_list_name_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 24px 0;
}
#product_list_header #product_list_name_wrapper #product_list_name {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}
#product_list_header #product_list_name_wrapper #product_list_name .page_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
}
#product_list_header #product_list_name_wrapper #product_list_name .page_title_qty {
	color: rgba(125, 127, 129, 1);
    margin-top: 6px;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper {
	font-size: 14px;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .mobile_filter {
    border-radius: 8px;
    padding: 4px 14px 4px 11px;
    position: relative;
	display: none;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .mobile_filter:hover {
    background: rgba(246, 246, 246, 1);
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .mobile_filter.active {
	background: rgba(228, 4, 40, 0.04);
	border: 1px solid rgba(233, 54, 83, 1);
	color: rgba(233, 54, 83, 1);
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .mobile_filter .filter-icon {
	display: flex;
	width: 24px;
	height: 25px;
	background: url('../img/category/filter.svg');
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .mobile_filter.active .filter-icon {
	background: url('../img/category/filter-hover.svg');
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .mobile_filter .mobile_filter_button {
    display: none;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 6px;
	cursor: pointer;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort {
	border-radius: 8px;
	padding: 4px 8px 4px 12px;
    position: relative;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort:hover {
	background: rgba(246, 246, 246, 1);
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort.active {
	background: rgba(228, 4, 40, 0.04);
	border: 1px solid rgba(233, 54, 83, 1);
	color: rgba(233, 54, 83, 1);
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort .sort-active {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 6px;
	cursor: pointer;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort .sort-icon {
	display: flex;
	width: 24px;
	height: 25px;
	background: url('../img/category/sorting.svg');
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort.active .sort-icon {
	background: url('../img/category/sorting-hover.svg');
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort .sort-menu-top {
    display: flex;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort .sort-menu-top .sort-menu-icon {
	display: flex;
	width: 24px;
	height: 24px;
	background: url('../img/category/close.svg');
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort .sort-menu {
	display: none;
	position: absolute;
	background: #FFFFFF;
	box-shadow: 0px 2px 16px rgba(32, 33, 36, 0.08);
	border-radius: 8px;
	right: 0;
    top: 38px;
	color: rgba(32, 33, 36, 1);
    cursor: pointer;
	z-index: 10;
	padding: 15px 0;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li {
    text-wrap: nowrap;
    font-size: 16px;
    line-height: 26px;
	padding: 10px 30px;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li:first-child {
	border-radius: 8px 8px 0 0;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li:last-child {
	border-radius: 0 0 8px 8px;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li:hover {
	text-shadow: 0px 0px 0 #000;
}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li .sort-name {
	text-wrap: nowrap;
}
@media screen and (min-width: 521px) {
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li [type="radio"]:checked + label:before,
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li [type="radio"]:not(:checked) + label:before {
		display: none;
	}
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li [type="radio"]:checked + label:after,
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li [type="radio"]:not(:checked) + label:after {
		display: none;
	}
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li [type="radio"]:checked + label,
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li [type="radio"]:not(:checked) + label {
		padding: 10px 30px;
        width: 100%;
        box-sizing: border-box;
	}
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort .sort-menu-top {
		display: none;
	}
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort ul li {
		padding: 0;
	}

}
#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .sortdropdownbg {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    width: 100%;
    z-index: 5;
	display: none;
}
#product_list_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
#product_list_wrapper #left_column {
    width: calc(25% - 30px);
    padding-left: 0;
    padding-right: 30px;
}
#product_list_wrapper_outer.no_result #left_column {
	display: none;
}
#product_list_wrapper #center_column {
    width: 75%;
}
#product_list_wrapper_outer.no_result #center_column {
	width: 100%;
}
#product_list_wrapper #center_column .products_list {
    display: flex;
    flex-wrap: wrap;
	gap: 8px;
}
.ajax_add_to_list {
    width: 100%;
    margin: 30px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
.ajax_add_to_list .products_loader {
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #E40428;
    border-radius: 8px;
	color: rgba(228, 4, 40, 1);
	font-size: 16px;
    font-weight: 600;
	cursor: pointer;
}
.ajax_add_to_list .products_loader .loader_icon {
	display: flex;
	width: 25px;
	height: 24px;
	background: url('../img/category/ajax_loader.svg');
}
.pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
	margin-top: 30px;
}
.pagination a {
    border: 1px solid rgba(32, 33, 36, 0.08);
	font-size: 18px;
	font-weight: 400;
	line-height: 23.4px;
	text-align: center;
	color: rgba(32, 33, 36, 0.87);
	background: #FFFFFF;
	border-radius: 8px;
	padding: 10px 18px 7px 18px;
}
.pagination a:hover {
    background: rgba(32, 33, 36, 0.04);
}
.pagination a.noactive {
    opacity: 0.3;
	background: #FFFFFF;
}
.pagination a.active {
    background: rgba(228, 4, 40, 1);
	color: white;
	
}
.product_mini {
    width: 100%;
	max-width: 233px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
}
.product_mini.unavailable {
	-webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
    filter: grayscale(100%);
}
.product_mini.unavailable .product_mini_addtocart_block {
	display: none !important;
}
.product_mini .product_mini_prices_block {
    display: flex;
    padding: 8px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 4px;
}
.product_mini .bottom_line {
    display: flex;
    gap: 5px;
    align-items: center;
}
.product_mini.action .top_line {
    font-size: 18px;
    color: rgba(32, 33, 36, 1);
}
.product_mini.action .top_line .old_price {
	text-decoration: line-through;
}
.product_mini.action .top_line .price_drop {
    background: rgba(233, 54, 83, 1);
    border-radius: 4px;
    color: white;
    padding: 2px 5px;
}
.product_mini.action .bottom_line {
    font-size: 22px;
	font-weight: 600;
    color: rgba(32, 33, 36, 1);
}
.product_mini.regular .top_line {
    font-size: 18px;
    color: rgba(32, 33, 36, 1);
}
.product_mini.regular .bottom_line {
    font-size: 22px;
	font-weight: 600;
    color: rgba(32, 33, 36, 1);
}
.product_mini.regular .bottom_line .opt_price_from {
	background: rgba(113, 115, 118, 1);
    border-radius: 4px;
    color: white;
    padding: 2px 5px;
	font-size: 14px;
	font-weight: 400;
}
.product_mini.regularmo .top_line {
    font-size: 18px;
    color: rgba(32, 33, 36, 1);
}
.product_mini.regularmo .bottom_line {
    font-size: 22px;
	font-weight: 600;
    color: rgba(36, 88, 211, 1);
}
.product_mini.regularmo .bottom_line .opt_price_from {
	background: rgba(80, 121, 220, 1);
    border-radius: 4px;
    color: white;
    padding: 2px 5px;
	font-size: 14px;
	font-weight: 400;
}
.product_mini.regularli .top_line {
    font-size: 22px;
    color: rgba(32, 33, 36, 1);
	font-weight: 600;
}
.product_mini.regularli .bottom_line {
    font-size: 18px;
	font-weight: 400;
    color: rgba(32, 33, 36, 1);
}
.product_mini.regular_no_opt .top_line,
.product_mini.regular_sp .top_line,
.product_mini.regular_vip .top_line {
    font-size: 22px;
    color: rgba(32, 33, 36, 1);
	font-weight: 600;
	padding-bottom: 27px;
	display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}
.product_mini.regular_sp .top_line .add_text {
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 110%;
	color: #FFFFFF;
	padding: 4px 5px;
	background: #339F7B;
	border-radius: 4px;
}
.product_mini.regular_vip .top_line .add_text {
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 110%;
	color: #FFFFFF;
	padding: 4px 5px 3px;
	background: rgba(218, 174, 110, 0.9);
	border-radius: 4px;
}
.product_mini.regularli .bottom_line .opt_price_from {
	background: rgba(113, 115, 118, 1);
    border-radius: 4px;
    color: white;
    padding: 2px 5px;
	font-size: 14px;
	font-weight: 400;
}
.product_mini .product_mini_name {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-wrap: wrap;
    padding: 4px 8px;
	color: rgba(32, 33, 36, 1);
	min-height: 39px;
}
.product_mini .product_mini_unit {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-wrap: wrap;
    padding: 4px 8px;
	color: rgba(32, 33, 36, 1);
}
.product_mini .product_mini_image_block {
    position: relative;
}
.product_mini .product_mini_addtowish_block {
    position: absolute;
    top: 5px;
    right: 0;
	display: none !important;
}
.product_mini .product_mini_addtowish_block a {
    color: rgba(113, 115, 118, 1);
    font-size: 24px;
    margin: 5px;
}
.product_mini .product_mini_addtocart_block {
    position: absolute;
    bottom: 5px;
    right: 5px;
}
.product_mini .product_mini_addtocart_block button {
    color: rgba(228, 4, 40, 1);
    font-size: 18px;
    border: 2px solid rgba(228, 4, 40, 1);
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #FFFFFF;
	cursor: pointer;
}
.product_mini_addtocart_block.added {
    display: flex;
    background-color: white;
    border-radius: 8px;
    gap: 4px;
    border: 2px solid rgba(228, 4, 40, 1);
	width: 80%;
}
.product_mini_addtocart_block.added .add-to-cart-qty-group {
	display: flex;
    justify-content: center;
    max-width: calc(100% - 60px);
}
.product_mini_addtocart_block.added button {
    color: rgba(228, 4, 40, 1);
    display: flex;
    justify-content: center;
    align-items: center;
	min-width: 30px;
	border: none;
	cursor: pointer;
	background: transparent;
}
.product_mini_addtocart_block.added input {
    color: rgba(228, 4, 40, 1);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none !important;
	width: 100%;
	font-size: 16px;
}
.product_mini_addtocart_block.added input:focus,
.product_mini_addtocart_block.added input:active {
	border: none;
	outline: none;
}
@media screen and (max-width: 768px) {

	.product_mini.action .top_line .price_drop {
		font-size: 14px;
	}
	.product_mini.regular_no_opt .top_line,
	.product_mini.regular_sp .top_line,
	.product_mini.regular_vip .top_line,
	.product_mini.action .bottom_line {
		font-size: 18px;
	}
	.product_mini.regular_sp .top_line .add_text,
	.product_mini.regular_vip .top_line .add_text {
		font-size: 11px;
	}
	.product_mini.regularmo .top_line,
	.product_mini.regular .top_line,
	.product_mini.action .top_line {
		font-size: 16px;
	}
	.product_mini.regularmo .bottom_line,
	.product_mini.regularli .top_line {
		font-size: 20px;
	}
	.product_mini.regularmo .bottom_line .opt_price_from,
	.product_mini.regularli .bottom_line .opt_price_from,
	.product_mini.regular .bottom_line .opt_price_from {
		font-size: 12px;
	}
	.product_mini .product_mini_name {
		min-height: 57px;
	}
}

#seo_block {
	padding-top: 48px;
	font-size: 16px;
	font-weight: 400;
	line-height: 22.4px;
	text-align: left;
}
#seo_block h1 {
	font-size: 24px;
	font-weight: 600;
	line-height: 24px;
	text-align: left;
}
#seo_block h2 {
	font-size: 22px;
	font-weight: 600;
	line-height: 22.4px;
	text-align: left;
}
#seo_block h3 {
	font-size: 20px;
	font-weight: 800;
	line-height: 22.4px;
	text-align: left;
}
#seo_block h4 {
	font-size: 18px;
	font-weight: 700;
	line-height: 22.4px;
	text-align: left;
}
#seo_block ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: -0.9rem;
}
#seo_text_scroll {
    overflow: hidden;
    position: relative;
}
#seo_text_scroll.l-200 {
    max-height: 200px;
}
#seo_text_scroll .bottom {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 80%);
    width: 100%;
    height: 60px;
    opacity: 1;
    transition: .3s;
}
.read-more-checker {
    opacity: 0;
    position: absolute;
}
.read-more-checker:checked ~ #seo_text_scroll {
    max-height: none;
}
.read-more-checker:checked ~ #seo_text_scroll .bottom {
    opacity: 0;
    transition: .3s;
}
.read-more-checker ~ .read-more-button:before {
    content: 'Читати більше  >';
}
.read-more-checker:checked ~ .read-more-button:before {
    content: 'Згорнути  <';
}
.read-more-button {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    color: rgba(228, 4, 40, 1);
	font-size: 14px;
	font-weight: 600;
}
#no_search_result {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    margin: 30px 0 50px 0;
    gap: 20px;
}
#no_search_result #no_search_result_text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}
#no_search_result #no_search_result_text .no_search_result_header {
    font-size: 18px;
    font-weight: 600;
    line-height: 23.4px;
    text-align: center;
}
#no_search_result #no_search_result_text .no_search_result_description {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: center;
}
.product_mini_image_block .cover_image_icons {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
    z-index: 1;
    align-items: flex-end;
}
.product_mini_image_block .cover_image_icons a.cover_image_links {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
}
@media screen and (max-width: 1400px) {
	#product_list_wrapper #left_column {
		width: calc(27% - 30px);
	}
	#product_list_wrapper #center_column {
		width: 73%;
	}
	#product_list_wrapper_outer.no_result #center_column {
		width: 100%;
	}
	.product_mini_outer {
		width: calc(25% - 8px);
	}
}
@media screen and (max-width: 1000px) {
	#product_list_wrapper #left_column {
		display: none;
        width: 0 !important;
	}
	#product_list_wrapper #center_column {
		width: 100%;
	}
	.index_subheader .slider_header {
		font-size: 20px;
	}
	.product_mini_outer {
		width: calc(33% - 8px);
	}
	#product_list_header #product_list_name_wrapper #product_list_name {
		justify-content: space-between;
		width: 100%;
	}
	#product_list_header #product_list_name_wrapper #product_list_name .page_title {
		font-size: 18px;
		font-weight: 700;
		line-height: 32px;
	}
	#product_list_header #product_list_name_wrapper {
		display: block;
	}
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper {
		display: flex;
		justify-content: space-between;
	}
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .mobile_filter .mobile_filter_button {
		display: flex;
	}
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .mobile_filter {
		display: block;
	}
}
@media screen and (max-width: 520px) {
	.product_mini_outer {
		width: calc(50% - 8px);
	}
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort {
		position: initial;
	}
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .product_list_sort .sort-menu {
		border-radius: 8px 8px 0 0;
		top: initial;
		width: 100%;
		bottom: 0;
		position: fixed;
	}
	#product_list_header #product_list_name_wrapper #product_list_sort_wrapper .sortdropdownbg {
		background: rgba(32, 33, 36, 0.6);
	}
	.pagination a {
		font-size: 16px;
		padding: 6px 15px 4px 15px;
	}
}
.product_mini_image a img {
	width: 100%;
	height: auto;
	aspect-ratio: auto 1 / 1;
}
.product_mini_image a img.slider_img_18 {
    position: absolute;
    top: 0;
    left: 0;
    width: auto !important;
    height: 100% !important;
}