/*
Theme Name: Zeleni kredenac
Theme URI: 
Author: Digitality
Author URI: https://digitality.ba/
Version: 1.0

* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

/******** FONTS *******/
/* nunito-sans-300 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/nunito-sans-v19-latin_latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-sans-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/nunito-sans-v19-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-sans-italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/nunito-sans-v19-latin_latin-ext-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-sans-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/nunito-sans-v19-latin_latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-sans-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/nunito-sans-v19-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-sans-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/nunito-sans-v19-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-sans-800 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/nunito-sans-v19-latin_latin-ext-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-sans-900 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/nunito-sans-v19-latin_latin-ext-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*************** ROOT ***************/
:root {
    --primary-font: 'Nunito Sans';
    --color-primary: #4F9A57;

    --color-accent: #D4A73F;      
    --color-bg: #FBF8F1;          
    --color-surface: #f5f5f5;    
    --color-text: #101820;      
    --color-text-light: #54595F;       
    --color-light-grey: #d4d4d4;

    --filter-primary: brightness(0) saturate(100%) invert(53%) sepia(22%) saturate(912%) hue-rotate(76deg) brightness(94%) contrast(89%);
    --filter-white: brightness(0) saturate(100%) invert(100%) sepia(19%) saturate(755%) hue-rotate(21deg) brightness(114%) contrast(109%);
    --filter-dark: brightness(0) saturate(100%) invert(6%) sepia(42%) saturate(605%) hue-rotate(168deg) brightness(94%) contrast(94%);
    --filter-light-grey: brightness(0) saturate(100%) invert(36%) sepia(14%) saturate(273%) hue-rotate(172deg) brightness(85%) contrast(85%);
    --filter-accent: brightness(0) saturate(100%) invert(68%) sepia(91%) saturate(340%) hue-rotate(357deg) brightness(88%) contrast(88%);
}

/*************** PREDEFINED ***************/
body {
    font-family: var(--primary-font);
    padding-top: 68.91px;
}

.btn {
    padding: 10px 20px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    border-width: 2px;
    border-style: solid;
    min-width: 150px;
}
.btn-sm {
    padding: 6px 12px;
    min-width: 100px;
    font-size: 14px;
}
.btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background: var(--color-accent) !important;
    color: #FFFFFF !important;
    border-color: var(--color-accent) !important;
}
.btn-secondary {
    border-color:var(--color-accent);
    background:  var(--color-accent) !important;
    color: #FFFFFF;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
    background: #FFFFFF!important;
    color: var(--color-accent) !important;
    border-color: #FFFFFF !important;
}
.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
    background: #FFFFFF !important;
    color: var(--color-text) !important;
    border-color: #FFFFFF !important;
}
.fluidimg {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.section-padding {
    padding: 50px 0;
}
.section-title {
    position: relative;
    padding-left: 10px;
}
.section-title::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 22px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-primary);
}
/******* HEADER *******/
.navbar-brand img {
    width: 55px;
}
.btn-menu {
    width: 35px;
    height: 35px;
    border: none;
    background-color: transparent;
}
.btn-menu img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(14%) saturate(273%) hue-rotate(172deg) brightness(85%) contrast(85%);
}
.offcanvas-header {
    padding: 16px 12px 16px 16px;
}
.navbar .nav-item {
    border-bottom: 1px solid var(--color-light-grey);
} 
.navbar .nav-link {
    color: var(--color-text);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .nav-link.dropdown-toggle::after {
    border: none;
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(img/chevron-down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s;
}
.navbar .nav-link.dropdown-toggle.show::after {
    transform: rotate(180deg);
}
.navbar .dropdown-menu {
    border: none;
}
.soc-networks a {
    width: 30px;
    height: 30px;
}
.soc-networks a img {
    filter: var(--filter-light-grey);
}
.soc-networks a:hover img {
    filter: var(--filter-dark);
}

/********* HERO *************/
.slide-bg::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: var(--color-text);
    opacity: .45;
}
.slide-text {
    min-height: 600px;
    padding: 0 16px;
}
.slide-text h2 {
   font-size: 24px;
   font-weight: 700;     
   margin-bottom: 20px;
}
.recipe-timer {
    bottom: 8px;
    right: 8px;
    top: auto;
    background-color: var(--color-text-light);
    font-size: 15px;
    line-height: 1;
    width: fit-content;
    font-weight: 300;
    left: auto;
    color: #FFFFFF;
}
.timer-icon {
    width: 16px;
    height: 16px;
}
.timer-icon img {
    filter: var(--filter-white);
}
.recipe-category {
    top: auto;
    bottom: 8px;
    left: 8px;
    width: fit-content;
    height: fit-content;
    background-color: var(--color-primary);
    color: #FFFFFF;
    line-height: 1;
    font-weight: 300;
}
/* .recipe-box {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all .3s;
}
.recipe-box:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
} */
.recipe-box-text {
    background-color: var(--color-surface);
    transition: all .3s;
    width: calc(100% - 24px);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.recipe-box:hover .recipe-box-text {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.recipe-box-text p {
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin: 0;
}
.recipe-box-text h4 {
    font-weight: 700;
    letter-spacing: 0.8px;
}
.recipe-box-img {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
} 
.recipe-box:hover .recipe-box-text h4 {
    color: var(--color-accent);
}
.about-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}
.about-text h2 {
    color: var(--color-accent);
}
.category-box h4 {
    font-size: 17px;
    margin-top: 14px;
}

.categoriesSwiper::before,
.categoriesSwiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.categoriesSwiper::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.categoriesSwiper::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}
.categoriesSwiper.has-left-gradient::before {
  opacity: 1;
}

.categoriesSwiper.has-right-gradient::after {
  opacity: 1;
}
.cta-newsletter {
    background-color:var(--color-accent);
}
.cta-recept {
    background-color: var(--color-surface);
}
.cta-box {
    padding: 32px;
}
.cta-box-image::after {
    background-color: #000000;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .6;
}
.cta-box h4 {
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.cta-recept h4 {
    border-bottom: 1px solid var(--color-text);
}
.newsletter-form-container form {
    display: flex;
    align-items: stretch;
}
.newsletter-form-container .form-control {
    border-radius: 0;
    border-color: #FFFFFF;
}
.form-control:focus {
    box-shadow: none;
}
.search-box-icon {
    width: 40px;
    height: 40px;
}
.search-box {
    background-color: var(--color-accent);
    width: fit-content;
    position: fixed;
    bottom: 50svh;
    right: 0;
    transform: translateX(calc(100% - 54px)); 
    z-index: 5;
    transition: transform .3s ease;
}
.search-box:hover {
    transform: translateX(0);
}
.search-box.hide {
    transform: translateX(100%); 
}
.search-box-icon img {
    filter: var(--filter-white);
}
footer {
    background-image: url('img/footerbg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.footer-top {
    padding: 40px 0;
}
.footer-logo img {
    width: 140px;
}
.footer-bottom {
    border-top: 1px solid #FFFFFF;
}
.footer-bottom a {
    color: #eeeeee;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: var(--color-accent);
}
.footer-top .soc-networks a img {
    filter: var(--filter-white);
}
.footer-top .soc-networks a:hover img {
    filter: var(--filter-accent);
}
.footer-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-menu ul a {
    text-decoration: none;
    color: #FFFFFF;
}
.footer-column-title {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 16px;
}
.footer-menu ul a:hover {
    color: var(--color-accent);
}
.recept-dana-text {
    padding: 20px;
    background-color: var(--color-surface);
}
.recept-dana-text h4 {
    font-weight: 700;
    color: var(--color-primary);
}
.search-container {
    background-color: var(--color-accent);
    width: 300px;
    position: fixed;
    bottom: 50svh;
    right: 0;
    transform: translateX(100% ); 
    z-index: 5;
    transition: transform .3s ease;
}
.search-container.show {
    transform: translateX(0);
}
.search-container .form-control {
    background-color: transparent;
    color: #FFFFFF;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    border-radius: 0;
}
.search-container .form-control::placeholder {
    color: #FFFFFF;
}
.pinteres-btn {
    visibility: hidden;
    opacity: 0;
    transition: all .2s;
    position: absolute;
    top: 8px;
    left: 8px;
    width: fit-content;
    height: fit-content;
}   
.recipe-box:hover .pinteres-btn {
    visibility: visible;
    opacity: 1;
} 
.recipe-hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.recipe-hero-text {
    padding: 40px 0;
    min-height: 300px;
}
.recipe-hero-categories a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}
.recipe-hero-categories a:hover {
    text-decoration: underline;
}
.recipe-info-box {
    transform: translateY(50%);
}
.recipe-hero-text h1 {
    font-weight: 800;
}
.recipe-info-box-inner {
    background-color: var(--color-text);
}
.info-box-share a {
    width: 25px;
    height: 25px;
}
.info-box-share a img {
    filter: var(--filter-white);
}
.info-box-share a:hover img {
    filter: var(--filter-accent);
}
.rs-icon {
    width: 16px;
    height: 16px;
}
.rs-icon img {
    filter: var(--filter-light-grey);
}
.recipe-single-bottom-inner {
    border-top: 1px solid var(--color-text-light);
    border-bottom: 1px solid var(--color-text-light);
}
.rsb-cats a {
    text-decoration: none;
    color: var(--color-accent);
}
.rsb-cats a:hover {
    color: var(--color-primary);
}
.recipe-slide-img {
    aspect-ratio: 4/3;
}
.recipe-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recipe-single-main .swiper-button-next,
.recipe-single-main .swiper-button-prev {
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    transition: all .2s;
}
.recipe-single-main .swiper-button-next::after,
.recipe-single-main .swiper-button-prev::after {
    font-size: 24px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6);

}
.recipe-single-main .swiper-button-next:hover,
.recipe-single-main .swiper-button-prev:hover {
    background-color: #FFFFFF;
}
.recipe-single-main .swiper-button-next:hover::after,
.recipe-single-main .swiper-button-prev:hover::after {
    color: var(--color-text);
}
.recipe-single-main {
    padding: 70px 0;
}
.recipe-single-inner {
    max-width: 900px;
}
.recipe-single-text {
    padding: 40px 0;
}

/* HEADINGS */
.recipe-single-text h1,
.recipe-single-text h2,
.recipe-single-text h3,
.recipe-single-text h4{
    font-weight: 700;
}
.recipe-single-text  {
    background-color: var(--color-surface);
}


.page-header .recipe-hero-text {
    min-height: 150px;
}
.page-header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000000;
    opacity: .6;
}
.contact-left::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000000;
    opacity: .6;
}
.cl-icon {
    width: 24px;
    height: 24px;
}
.cl-icon img {
    filter: var(--filter-white);
}
.contact-links a {
    text-decoration: none;
    color: #FFFFFF;
    transition: all .3s;
    font-size: 18px;
}
.contact-links a:hover {
    color: var(--color-accent);
}
.contact-left .soc-networks a img {
    filter: var(--filter-white);
}
.contact-title {
    font-size: 24px;
}
.contact-left .soc-networks a:hover img,
.contact-links a:hover .cl-icon img {
    filter: var(--filter-accent);
}
.contact-right {
    background-color: var(--color-accent);
}
.contact-form-container .form-control {
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF;
}
.contact-form-container .form-control::placeholder {
    color: #FFFFFF;
}
.contact-form-container p {
    margin: 0;
}

.about-page-section::after {
    width: 20%;
    height: 50%;
    content: "";
    right: 0;
    top: 1%;
    position: absolute;
    background-image: url('img/police.svg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .5;
}

.admin-bar .offcanvas,
.admin-bar .navbar {
    top: 46px;
}
.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background-color: var(--color-light-grey);
    color: var(--color-text);
}
.navbar .nav-link.active {
    color: var(--color-accent);
}
.navbar .nav-link.active.dropdown-toggle::after {
    filter: var(--filter-accent);
}
.posalji-recept-block {
    background-color: var(--color-accent);
}
.pagination {
    justify-content: center;
    padding-top: 30px;
}
.pagination .page-link {
    border-color: var(--color-accent);
    color: var(--color-text);
    border-radius: 0 !important;
}
.pagination .page-link:focus {
    box-shadow: none;
}
.pagination .page-link.active {
    background-color: var(--color-accent);
    color: #FFFFFF;
}
.categoriesSwiper {
  visibility: hidden;
}

.categoriesSwiper.swiper-initialized {
  visibility: visible;
}
.grecaptcha-badge {
    visibility: hidden;
}
/********* RESPONSIVE SM *************/
@media (min-width: 576px) {
    .recipe-hero-text {
        min-height: 400px;
    }
}
/******** RESPONSIVE MD ***********/
@media (min-width: 768px) {
    .slide-text {
        min-height: 700px;
    }
    .categoriesSwiper::before,
    .categoriesSwiper::after {
        width: 120px;
    }
}
@media (min-width: 783px) {
    .admin-bar .offcanvas,
    .admin-bar .navbar {
        top: 32px;
    }
}
/******** RESPONSIVE LG ***********/
@media (min-width: 992px) {
    body {
        padding-top: 83.33px;
    }
    .navbar .nav-item {
        border-bottom: none;
    } 
    .navbar .nav-link {
        color: var(--color-text);
        font-size: 19px;
        font-weight: 500;
    }
    .navbar .nav-link.dropdown-toggle::after {
        width: 14px;
        height: 14px;
    }
    .navbar .nav-link.dropdown-toggle.show::after {
        transform: rotate(180deg);
    }
    .navbar .dropdown-menu {
        border: none;
    }
    .soc-networks a {
        width: 25px;
        height: 25px;
    }
    .navbar-brand img {
        width: 70px;
    }
    .navbar-nav {
        gap: 10px;
    }
    .navbar .nav-link:hover {
        color: var(--color-accent);
    }
    .navbar .nav-link.dropdown-toggle.show:hover::after,
    .navbar .nav-link.dropdown-toggle:hover::after {
        filter: var(--filter-accent);
    }
    .section-padding {
        padding: 80px 0;
    }
    .section-title::after {
        height: 26px;
    }
    .category-box-img {
        border: 4px solid #FFFFFF;
        transition: all .3s;
    }
    .category-box:hover .category-box-img{
        border-color: var(--color-accent);
    }
    .recept-dana-text {
        padding: 30px;
    }
    .page-header .recipe-hero-text {
        min-height: 250px;
    }
}
/******** RESPONSIVE XL ***********/
@media (min-width: 1200px) {
    body {
        padding-top: 92.95px;
    }
    .section-padding {
        padding: 100px 0;
    }
    .navbar-brand img {
        width: 80px;
    }
    .navbar-nav {
        gap: 16px;
    }
    .about-text h2 {
        font-size: 40px;
        margin-bottom: 16px;
    }
    .about-text p {
        font-size: 18px;
    }
    .section-title {
        padding-left: 15px;
    }
    .section-title h2 {
        font-size: 40px;
    }
    .section-title::after {
        height: 32px;
    }
    .categoriesSwiper::before,
    .categoriesSwiper::after {
        width: 150px;
    }
    .cta-box {
        padding: 48px 64px;
    }
    .footer-logo img {
        width: 250px;
    }
    .footer-top .soc-networks a {
        width: 35px;
        height:35px;
    }
    .footer-menu ul a  {
        font-size: 18px;
    }
    .footer-column-title {
        font-size: 28px;
    }
    .recept-dana-text {
        padding: 50px;
    }
    .search-container {
        width: 500px;
    }
    .recipe-hero-categories a {
        font-size: 20px;
    }
    .recipe-hero-text h1 {
        font-size: 44px;
    }
    .recipe-hero-text {
        padding: 60px 0;
        min-height: 550px;
    }
    .ibi-title {
        font-size: 20px;
    }
    .ibi-value {
        font-size: 18px;
    }
    .page-header .recipe-hero-text {
        padding: 40px 0;
    }
    .cl-icon {
        width: 30px;
        height: 30px;
    }
    .contact-links a {
        font-size: 20px;
    }
    .contact-title {
        font-size: 32px;
    }
    .contact-left .soc-networks a {
        width: 30px;
        height: 30px;
    }
    .contact-form-container .form-control {
        font-size: 18px;
    }
}
/******** RESPONSIVE XXL ***********/
@media (min-width: 1400px) {
    .slide-text {
        min-height: 800px;
    }
}



@page {
    size: A4 portrait;
    margin: 0;
}

@media print {

    .search-box,
    .recipes-list-section,
    .recipe-single-bottom-inner,
    .recipe-gallery,
    .recipe-hero,
    footer,
    .navbar {
        display: none !important;
    }



    /* PRINT OKVIR STRANICE */
    .container {
        max-width: 90% !important;
        margin:0 auto !important;
        padding: 0 !important;
    }

    .recipe-single-main {
        padding: 0;
    }

    .recipe-single-text {
        background: #fff;
    }

    img {
        display: none;
    }

    .recept-print-only {
        display: block !important;
    }

    /* naslovi */
    h1, h2, h3, h4 {
        break-after: avoid;
        page-break-after: avoid;
        break-inside: avoid;
    }

    /* paragrafi */
    p {
        orphans: 3;
        widows: 3;
    }

    /* liste */
    ul, ol {
        break-inside: avoid;
        page-break-inside: avoid;
        padding-left: 20px;
    }

    li {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    .recipe-single-text,
    .recipe-single-main {
        padding-top: 0;
    }
}