

/* 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 */
/* /local/templates/manya/components/bitrix/news/recipes/style.css?17538755153955 */
/* /local/templates/manya/components/bitrix/news/recipes/bitrix/news.detail/recipes/style.css?17401170273150 */
