

/* Start:/local/templates/manya/components/bitrix/news/recipes/style.css?17538755153955*/
.recipes {
    padding-top: 32px;
}

.recipes__dropdown {
    padding: 8px 16px;
    border: 1px solid #c2cbd6;
    border-radius: 12px;
    background-color: #f0f2f5;
    cursor: pointer;
    position: relative;
}

.recipes__dropdown>.arrow {
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 12px;
    transition: transform 1s;
}

.recipes__dropdown>.arrow svg {
    display: block;
}

.recipes__dropdown>.arrow.rotated {
    transform: rotate(180deg);
}

.recipes__dropdown-content {
    display: none;
    width: 100%;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #fff;
    position: absolute;
    z-index: 1000;
    border: 1px solid #c2cbd6;
    background-color: #f0f2f5;
    margin-top: -8px;
    overflow: hidden;
    max-height: 300px;
    overflow-y: auto;
}

.recipes__dropdown-wrap {
    position: relative;
}

.recipes__dropdown-content a {
    display: block;
    cursor: pointer;
    padding: 6px 16px;
}

.recipes__dropdown-content a:hover {
    color: #fff;
    background-color: #01b6ed;
}

.recipes__dropdown-content a.selected {
    background-color: #c2cbd6;
}

.recipes__top {
    max-width: 630px;
    margin: 0 auto;
    padding-bottom: 64px;
}

.recipes__title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 500;
    color: #444
}

.recipes__filters {
    margin-top: 32px;
    display: flex;
    gap: 32px;
}

.recipes__filters>div {
    flex-grow: 1;
    width: 50%;
}

.recipes__search-value {
    padding: 12px 16px;
    border: 0 !important;
    border-bottom: 2px solid #ececec !important;
    width: 100%;
    background-color: #fff !important;
    transition: all 1s;
}

.recipes__search-value:focus {
    border-bottom: 2px solid #01b6ed !important;
}

.recipes__search-form {
    position: relative;
}

.recipes__search-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: transparent;
    width: 17px;
    height: 17px;
}

.recipes__list {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.recipes__list-empty {
    color: #c2cbd6;
    text-align: center;
    padding: 12px;
}

.recipes__list-item {
    padding-bottom: 32px;
}

.recipes__list-item-title {
    font-weight: 500;
    color: #444;
    margin-top: 12px;
    display: block;
}

.recipes_list-item-picture {
    position: relative;
    padding-top: 129.03%;
    overflow: hidden;
    border-radius: 16px;
    background: #ebebeb;
}

.recipes_list-item-picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.recipes_list-item-picture-none {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #c2cbd6;
    font-weight: 600;
    height: 100%;
    width: 100%;
}

.recipes_list-item-picture:hover img {
    transform: scale(1.2);
    opacity: 0.8;
}

.recipes__list-item-block {
    display: flex;
    align-items: center;
    margin-top: 4px;
    gap: 12px;
    color: #888;
    font-size: 13px;
}

.recipes__list-item-block svg {
    display: block;
}

.recipes__loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}


@media screen and (max-width: 992px) {
    .recipes__list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .recipes__top {
        padding-bottom: 16px;
    }

    .recipes__list {
        grid-template-columns: 1fr 1fr;
    }

    .recipes__filters {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }

    .recipes__filters>div {
        width: 100%;
    }
}
/* End */


/* Start:/local/templates/manya/components/bitrix/news/recipes/bitrix/news.detail/recipes/style.css?17401170273150*/
.recipes__detail {
	border-radius: 12px;
	max-width: 992px;
	margin: 16px auto;
	padding-bottom: 16px;
}

.recipes__detail-header {
	text-align: center;
	padding: 16px 32px;
}

.recipes__detail-header h2 {
	margin: 16px 0;
}


.recipes__detail-body {
	max-width: 650px;
	margin: 0 auto;
}

.recipes__detail-picture {
	margin-top: 16px;
	margin-bottom: 16px;
	position: relative;
	padding-top: 100%;
	overflow: hidden;
	border-radius: 16px;
	background: #ebebeb;
}

.recipes__detail-picture img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s;
}

.recipes__detail-propHeader {
	font-size: 18px;
	font-weight: 600;
	color: #444;
	padding-top: 32px;
}

.recipes__detail-ingrBody table {
	border: 0;
	margin-top: 16px;
	width: 100% !important;
}

.recipes__detail-ingrBody table tr td {
	border: 0;
	border-bottom: 1px solid #f0f2f5;
	padding: 8px 0;
}

.recipes__detail-ingrBody table tr td:nth-child(2) {
	text-align: right;
	font-weight: 600;
}

.recipes__detail-prepBody {
	margin-top: 32px;
}

.recipes__detail-prepBody ol {
	counter-reset: my-awesome-counter;
	list-style: none;
	padding: 0;
	margin: 0;
	padding-left: 48px;
}

.recipes__detail-prepBody ol li {
	margin-bottom: 24px;
	counter-increment: my-awesome-counter;
	position: relative;
}

.recipes__detail-prepBody ol li::before {
	content: counter(my-awesome-counter);
	color: #01b6ed;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: -48px;
	width: 32px;
	height: 32px;
	top: 0;
	background: #fff;
	border: 3px;
	border-color: #01b6ed;
	border-style: solid;
	border-radius: 50%;
	text-align: center;
}

.recipes__detail-techBody {
	margin-top: 32px;
}

.recipes__detail-baseinfo {
	display: flex;
	align-items: center;
}

.recipes__detail-baseinfoLeft {
	flex-grow: 1;
}

.recipes__detail-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 16px 0;
	padding: 0 8px;
	color: #758aa3;
}

.recipes__detail-back svg {
	display: block;
}

.recipes__detail-header-breadcrumb>* {
	padding: 8px 4px;
	color: #758aa3 !important;
}

.recipes__detail-videos {
	margin-top: 16px;
	margin-bottom: 16px;
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr 1fr;
}

.recipes__detail-video {
	overflow: hidden;
	border-radius: 12px;
}

.recipes__detail-video,
.recipes__detail-video-container {
	position: relative;
	background-color: #333;
}

.recipes__detail-video-wrap {
	padding-top: 69.28%;
}

.recipes__detail-video-wrap-c {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/* object-fit: cover; */
	display: flex;
	align-items: center;
	object-fit: fill;
	justify-content: center;
}

.recipes__detail-video-wrap-c video {
	width: 100%;
	height: 100%;
}

.recipes__detail-video-play {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.recipes__detail-video-play svg {
	transition: transform 1s;
}

.recipes__detail-video-play:hover svg {
	transform: scale(1);
}
/* End */


/* Start:/local/templates/manya/components/bitrix/catalog.section/catalog_block/style.css?17218906612379*/
.ajax_load .top_wrapper{margin-right: 1px;}
.ajax_load .top_wrapper .catalog_block .catalog_item > div{padding-left: 25px;padding-right: 25px;}
.ajax_load .top_wrapper .catalog_item .footer_button{margin-left:-25px;margin-right: -25px;}

.catalog_block_template .catalog_block.owl-carousel .owl-stage-outer{margin: 0px -1px 0px 0px;padding: 0px 1px 0px 0px;}
.catalog_block_template .catalog_block.owl-carousel .owl-stage-outer .owl-item:hover{z-index: 2;}
.catalog_block_template .catalog_block.owl-carousel .catalog_item:hover .inner_wrap{box-shadow: inset 0px 0px 0px 1px #ececec;height: 100%;}
.ordered-block .catalog_block_template .catalog_block .TYPE_2 .cost.prices .more-item-info > .svg{top:-2px;}
.catalog_block_template .catalog_block.owl-carousel .catalog_item:hover .inner_wrap.TYPE_2 .footer_button {margin-top:0;}

@media(min-width: 1200px){
	.wrapper1 .right_block.wide_Y .ajax_load .top_wrapper .col-lg-3:not(.custom-line), .col-lg-5_2.custom-line{width:20%;}
	.right_block.wide_Y .ajax_load .top_wrapper .col-lg-4:not(.custom-line), #main .catalog_page .section-content-wrapper.with-leftblock .col-lg-3:not(.custom-line), #main .catalog_in_content .section-content-wrapper.with-leftblock .col-lg-3:not(.custom-line){width:25%;}

	#main .right_block.wide_Y.catalog_page .section-content-wrapper.with-leftblock .col-lg-4:not(.custom-line), #main .catalog_in_content .section-content-wrapper.with-leftblock .col-lg-4:not(.custom-line){width:33.33%;}
}

@media(min-width: 1200px) and (max-width: 1499px){
	.wrapper1.header-v28 .right_block.wide_Y .ajax_load .top_wrapper .col-lg-3:not(.custom-line){width:25%;}
	.wrapper1.header-v28 .controls-linecount {display: none;}
}

@media(max-width: 600px) {
	.wrapper1.front_page .compact-catalog-slider .catalog_block.items {
		width: auto;
		padding-left: 16px;
		margin: 0 -16px -20px !important;
		padding-bottom: 20px;
	}
	.wrapper1.front_page .compact-catalog-slider .catalog_block.items .item-parent {flex-shrink: 0;margin: 0;width: 172px;}
	.wrapper1.front_page .compact-catalog-slider .catalog_block.items .item-parent:last-of-type {padding-right: 16px;width: calc(172px + 16px);}

	.wrapper1.front_page .compact-catalog-slider .catalog_block.items:not(.has-bottom-nav) .bottom_nav.mobile_slider * {display: none;}

	.wrapper1.front_page .compact-catalog-slider ~ .bottom_nav:not(.mobile_slider) {display: none;}
}
/* End */
/* /local/templates/manya/components/bitrix/news/recipes/style.css?17538755153955 */
/* /local/templates/manya/components/bitrix/news/recipes/bitrix/news.detail/recipes/style.css?17401170273150 */
/* /local/templates/manya/components/bitrix/catalog.section/catalog_block/style.css?17218906612379 */
