.recipes__title h1 {
    color: #161616;
    font-size: 2rem;
    font-weight: 400
}

@media all and (max-width: 1023px) {
    .recipes__title h1 {
        font-size: 1.75rem
    }
}

@media all and (max-width: 767px) {
    .recipes__title h1 {
        font-size: 1.5rem
    }
}

@media all and (max-width: 767px) {
    .recipes__title {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem
    }
}

.recipes__description {
    margin-bottom: 32px;
}

.recipes__filter {
    position: relative
}

.recipes__filter_button {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #f7f9fa;
    border: 2px solid #f7f9fa;
    color: #161616;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    padding: 16px 48px 16px 16px;
    position: relative;
    cursor: pointer
}

@media all and (max-width: 1023px) {
    .recipes__filter_button {
        margin-bottom: 12px
    }
}

.recipes__filter_button:after {
    content: "";
    width: 12px;
    height: 12px;
    margin: auto;
    overflow: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    background-image: url(../../../../img/icons/arrows/icon__arrow_sm_black.svg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all
}

.recipes__filter_button.active:after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg)
}

.recipes__filter_content {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 9999
}

.recipes__filter_items-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #f7f9fa;
    background-color: #fff
}

.recipes__filter_item {
    padding: 12px 16px;
    color: #161616
}

.recipes__filter_item:hover {
    color: #161616;
    background-color: #f7f9fa
}

.recipes__search {
    margin-bottom: 40px
}

/* Both .container blocks use z-index:1; raise refine bar so Tom Select opens above cards. */
.section--refine-bar {
    position: relative;
    z-index: 2;
}

.recipes__items-list {
    margin-bottom: 20px
}

.recipes__item {
    background-color: #fff;
    border: 1px solid #e6e9eb;
    height: 100%
}

.recipes__item a:hover {
    text-decoration: none
}

.recipes__item:hover .recipes__item_img:after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(22, 22, 22, 0)), color-stop(90%, #000000));
    background: -webkit-linear-gradient(top, rgba(22, 22, 22, 0) 0%, #000000 90%);
    background: -o-linear-gradient(top, rgba(22, 22, 22, 0) 0%, #000000 90%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 22, 22, 0)), color-stop(90%, #000000));
    background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, #000000 90%)
}

.recipes__item_img {
    position: relative;
    height: 280px;
    border-bottom: 1px solid #e6e9eb;
    z-index: 0;
}

@media all and (max-width: 1023px) {
    .recipes__item_img {
        height: 220px
    }
}

@media all and (max-width: 767px) {
    .recipes__item_img {
        height: 160px
    }
}

.recipes__item_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.recipes__item_img:after {
    content: "";
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, rgba(22, 22, 22, 0)), color-stop(90%, #000000));
    background: -webkit-linear-gradient(top, rgba(22, 22, 22, 0) 65%, #000000 90%);
    background: -o-linear-gradient(top, rgba(22, 22, 22, 0) 65%, #000000 90%);
    background: linear-gradient(180deg, rgba(22, 22, 22, 0) 65%, #000000 90%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.recipes__item_label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 1;
}

.recipes__item_timer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px;
    background: #ff5943;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font-size: 12px;
    color: #fff
}

.recipes__item_timer:before {
    width: 16px !important;
    height: 16px !important;
    margin-right: 5px
}

.recipes__item_content {
    padding: 20px 16px 32px
}

.recipes__item_rating {
    margin-bottom: 8px
}

.recipes__item_category {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #b0b7c9
}

.recipes__item_title {
    font-size: 18px;
    color: #161616
}

@media all and (max-width: 767px) {
    .recipes__item_title {
        word-break: break-all
    }
}

.recipes__item_title:hover {
    color: #ff5943
}

.recipes__item-detail_category {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #ff5943;
    margin-bottom: 30px;
    text-align: center
}

.recipes__item-detail_title {
    margin-bottom: 30px;
    text-align: center
}

@media all and (max-width: 767px) {
    .recipes__item-detail_title {
        margin-top: 20px;
        margin-bottom: 20px
    }
}

.recipes__item-detail_title h1 {
    font-size: 32px;
    color: #161616
}

@media all and (max-width: 767px) {
    .recipes__item-detail_title h1 {
        font-size: 28px
    }
}

.recipes__item-detail_rating {
    display: flex;
    justify-content: center;
    margin-bottom: 24px
}

.recipes__item-detail_description {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #747c91;
    margin-bottom: 28px;
    text-align: center
}

.recipes__item-detail_print {
    display: flex;
    align-items: center
}

.recipes__item-detail_print:before {
    width: 12px !important;
    height: 12px !important;
    margin-right: 8px
}

.recipes__item-detail_print a {
    font-size: 12px;
    letter-spacing: .03em;
    color: #ff5943
}

.recipes__item-detail_img {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center
}

@media all and (max-width: 767px) {
    .recipes__item-detail_img {
        margin-bottom: 40px
    }
}

.recipes__item-detail_ingredients {
    margin-bottom: 48px
}

@media all and (max-width: 767px) {
    .recipes__item-detail_ingredients {
        margin-bottom: 40px
    }
}

.recipes__item-detail_ingredients .ingredients__title {
    font-size: 24px;
    color: #161616;
    margin-bottom: 28px
}

.recipes__item-detail_ingredients .ingredients__row {
    display: flex;
    align-items: center;
    margin-bottom: 16px
}

@media all and (max-width: 767px) {
    .recipes__item-detail_ingredients .ingredients__row {
        justify-content: space-between
    }
}

.recipes__item-detail_ingredients .ingredients__item_title {
    flex-basis: 50%
}

.recipes__item-detail_ingredients .ingredients__item_title span {
    background-color: #fff
}

.recipes__item-detail_ingredients .ingredients__item_count {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
}

.recipes__item-detail_cooking {
    padding-bottom: 58px;
    border-bottom: 2px solid #e6e9eb;
    margin-bottom: 60px
}

@media all and (max-width: 767px) {
    .recipes__item-detail_cooking {
        padding-bottom: 38px;
        margin-bottom: 40px
    }
}

.recipes__item-detail_cooking .cooking__title {
    font-size: 24px;
    color: #161616;
    margin-bottom: 28px
}

.recipes__item-detail_cooking .cooking__description {
    color: #747c91
}

.recipes__item-detail_comment {
    margin-bottom: 80px
}

@media all and (max-width: 767px) {
    .recipes__item-detail_comment {
        margin-bottom: 60px
    }
}

.recipes__item-detail_similar-recipes {
    margin-bottom: 40px
}

@media all and (max-width: 767px) {
    .recipes__item-detail_similar-recipes {
        margin-bottom: 20px
    }
}

.recipes__item-detail_similar-recipes .similar-recipes_title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    color: #161616
}

.recipes__item-detail_subscribe {
    margin-bottom: 80px
}

@media all and (max-width: 767px) {
    .recipes__item-detail_subscribe {
        margin-bottom: 60px
    }
}

.recipes__showmore {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px
}

.recipes__pagination {
    margin-bottom: 80px
}

@media all and (max-width: 767px) {
    .recipes__pagination {
        margin-bottom: 60px
    }
}

/*# sourceMappingURL=style.css.map */
