@import url('https://fonts.googleapis.com/css?family=Cabin:400,700|Rubik:500&display=swap');

/* BASE */

body {
    font-family: 'Cabin', Tahoma, sans-serif;
    font-size: 22px;
    color: black;
    line-height: 1.5;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.04em;
}

a {
    color: #2288ab;
}

p{
    margin: 0 0 20px;
}

.font-base_bold {
    font-family: 'Cabin', Tahoma, sans-serif;
    font-weight: 700;
}

.font-alt_medium {
    font-family: 'Rubik', Tahoma, sans-serif;
    font-weight: 500;
}

.w-100 {
    width: 100% !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.logo-site {
    display: block;
    margin: 40px 0;
    width: 40%;
}

.logo-site_mobile {
    position: absolute;
    top: 15px;
    left: 15px;
    display: none;
    width: 55%;
    color: #fff;
    font-size: 30px;
    text-shadow: 0 1px 3px black;
}

.block-title {
    margin-bottom: 20px;
    font-size: 46px;
    color: #46618a;
}

.block-title > small {
    font-size: 65%;
}

.text-success {
    color: #2ab806;
}

.list-total {
    display: flex;
    justify-content: space-evenly;
    margin: 0;
    padding: 20px 0;
    list-style: none;
    color: #3792b4;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
    font-size: 20px;
}


.list-total-inner {
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 20px 0;
    list-style: none;
    color: #3792b4;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
    font-size: 20px;
}


.list-total__value {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.list-total__value > strong {
    font-size: 36px;
}

.list-total__divider {
    border-right: 1px solid #e8e8e8;
}

.list-custom-bullets {
    margin-bottom: 20px;
    padding-left: 40px;
    list-style: none;
    counter-reset: li;
}

.list-custom-bullets > li {
    counter-increment: li;
    margin-bottom: 16px;
}

.list-custom-bullets > li::before {
    display: inline-block;
    margin-left: -35px;
    width: 35px;
    content: counter(li) ".";
    color: #3792b4;
}

.recipe {
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
    padding-top: 1px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}

.recipe__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}

.recipe__thumbnail {
    position: relative;
    margin: 0;
    width: 40%;
}

.recipe__thumbnail figcaption {
    display: none;
}

.recipe__meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 56%;
}

.recipe__title {
    font-size: 48px;
    color: #46618a;
    line-height: 1.1;
}

.recipe__cals {
    position: absolute;
    top: 0;
    right: 0;
    padding: 30px 25px 20px;
    background: #fff;
    border: 1px solid #d6cbc4;
    border-top: none;
    border-radius: 0 0 15px 15px;
    font-size: 20px;
    color: #2ab806;
    text-align: center;
    line-height: 1;
    z-index: 1;
    box-shadow: #ccc 0 4px 2px -2px;
}

.recipe__cals > strong {
    display: block;
    font-size: 60px;
}

.recipe__cals br {
    display: none;
}

.meal_ingredient {
    padding-bottom: 20px;
    padding-right: 16px;
    line-height: normal;
}

.meal_ingredient > img {
    width: 32px;
}

.ingredient {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 16px;
}

.ingredient__thumbnail {
    align-self: center;
    margin-right: 16px;
    width: 32px;
    text-align: center;
}

.ingredient__thumbnail > img {
    max-width: 32px;
    max-height: 32px;
}

.ingredient__body {
    -ms-flex: 1;
    flex: 1;
}

.ingredient__portion {
    color: #3792b4;
}

.recipe__body {
    display: flex;
    justify-content: space-between;
}

.recipe__ingredients {
    width: 40%;
}

.recipe__steps {
    width: 56%;
}

.recipe__footer {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 2px solid #e8e8e8;
}

.recipe__footer_mobile {
    display: none;
}

@media only screen and (max-width: 1199px) {
    body {
        font-size: 20px;
    }

    p{
        margin: 0 0 18px;
    }

    .logo-site {
        margin: 35px 0;
    }

    .block-title {
        margin-bottom: 18px;
        font-size: 40px;
    }

    .list-total {
        padding: 15px 0;
        font-size: 18px;
    }

    .list-total-inner {
        font-size: 18px;
    }


    .list-total__value {
        font-size: 22px;
    }

    .list-total__value > strong {
        font-size: 30px;
    }

    .recipe__header {
        margin-bottom: 30px;
    }

    .recipe__cals {
        right: 15px;
        padding: 25px 20px 15px;
        font-size: 18px;
    }

    .recipe__cals > strong {
        font-size: 50px;
    }

    .recipe__title {
        font-size: 40px;
    }

    .meal_ingredient {
        padding-bottom: 14px;
    }

    .meal_ingredient > img {
        max-width: 28px;
        max-height: 28px;
    }

    .ingredient,
    .list-custom-bullets > li{
        margin-bottom: 14px;
    }

    .ingredient__thumbnail {
        width: 28px;
    }

    .ingredient__thumbnail > img {
        max-width: 28px;
        max-height: 28px;
    }
}

@media only screen and (max-width: 991px) {
    body {
        font-size: 18px;
        line-height: 1.4;
    }

    p{
        margin: 0 0 16px;
    }

    .logo-site {
        margin: 30px 0;
    }

    .block-title {
        margin-bottom: 16px;
        font-size: 30px;
    }

    .list-custom-bullets {
        padding-left: 32px;
    }

    .list-total {
        padding: 15px 0;
        font-size: 16px;
    }

    .list-total-inner {
        font-size: 16px;
    }

    .list-total__value {
        font-size: 18px;
    }

    .list-total__value > strong {
        font-size: 24px;
    }

    .recipe__header {
        margin-bottom: 26px;
    }

    .recipe__cals {
        padding: 20px 15px 10px;
        font-size: 16px;
    }

    .recipe__cals > strong {
        font-size: 42px;
    }

    .recipe__title {
        font-size: 30px;
    }


    .meal_ingredient {
        padding-bottom: 12px;
    }

    .meal_ingredient > img {
        max-width: 26px;
        max-height: 26px;
    }

    .ingredient,
    .list-custom-bullets > li{
        margin-bottom: 12px;
    }

    .ingredient__thumbnail {
        width: 26px;
    }

    .ingredient__thumbnail > img {
        max-width: 26px;
        max-height: 26px;
    }

    .list-custom-bullets > li::before {
        margin-left: -30px;
        width: 30px;
    }
}

#tidbits {
    display: block;
}

#tidbits-mobile {
    display: none;
}

.hrbetweenrecipes {
    margin-bottom:24px;
    margin-right:-15px;
    margin-left:-15px;
    padding:0;
    height:0;
    border:none;
    border-top: 1px solid #e8e8e8;
}

@media only screen and (max-width: 767px) {
    .hrbetweenrecipes {
        display: none;
    }

    #tidbits-mobile {
        display: block;
        margin-bottom: 16px;
    }

    #tidbits {
        display: none;
    }

    .logo-site {
        display: none;
    }

    .logo-site_mobile {
        display: block;
    }

    .list-total {
        padding: 30px 132px 55px 0;
    }

    .block-title_mobile {
        margin-bottom: 16px;
        color: #00b210;
        font-size: 20px;
    }

    .button-store {
        display: inline-block;
        max-width: 144px;
    }

    .button-store + .button-store {
        margin-left: 16px;
    }

    .recipe {
        padding-top: 0;
    }

    .recipe__header {
        flex-direction: column;
    }

    .recipe__meta {
        position: relative;
        width: 100%;
    }

    .recipe__title {
        display: none;
    }

    .recipe__thumbnail {
        margin: 0 -15px;
        width: auto;
    }

    .recipe__thumbnail figcaption {
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 15px;
        display: block;
        text-shadow: 0 1px 3px black;
        color: #fff;
        font-size: 28px;
    }

    .recipe__cals {
        right: 0;
        padding: 30px 25px 20px;
    }

    .recipe__footer {
        display: none;
    }

    .recipe__footer_mobile {
        display: block;
        padding-top: 20px;
        border-top: 1px solid #e8e8e8;
    }
}

@media only screen and (max-width: 639px) {
    .list-total {
        flex-wrap: wrap;
        padding: 20px 132px 10px 0;
    }

    .list-total > li {
        margin-bottom: 20px;
        width: 50%;
    }

    .list-total__divider {
        display: none;
    }

    .recipe__body {
        flex-direction: column;
        justify-content: flex-start;
    }

    .recipe__ingredients,
    .recipe__steps {
        width: 100%;
    }

    .recipe__ingredients {
        padding-bottom: 20px;
    }

    .recipe__steps {
        padding-top: 20px;
        border-top: 1px solid #e8e8e8;
    }

    .recipe__cals {
        padding: 40px 20px 30px;
    }
}

@media only screen and (max-width: 479px) {
    body {
        font-size: 16px;
        line-height: 1.3;
    }

    .logo-site_mobile {
        font-size: 22px;
    }

    .button-store {
        max-width: 120px;
    }

    .list-total {
        padding: 16px 90px 10px 0;
    }

    .list-total__value {
        font-size: 16px;
    }

    .list-total__value > strong {
        font-size: 20px;
    }

    .recipe__thumbnail figcaption {
        font-size: 20px;
    }

    .recipe__cals {
        padding: 30px 20px 20px;
        border-radius: 0 0 8px 8px;
    }

    .recipe__cals > strong {
        margin-bottom: 5px;
        font-size: 32px;
    }

    .recipe__cals br {
        display: block;
    }
}

.text-only body {
    font-size: 18px !important;
    color: #000;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

.text-only .recipe {
    margin: 0;
}

.text-only .font-base_bold,
.text-only .font-alt_medium {
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

.text-only .logo-site,
.text-only .recipe__thumbnail,
.text-only .ingredient__thumbnail,
.text-only .recipe__footer,
.text-only .recipe__footer_mobile,
.text-only .recipe__cals br {
    display: none;
}

.text-only .recipe__meta,
.text-only .recipe__ingredients,
.text-only .recipe__steps {
    width: 100%;
}

.text-only .list-total {
    display: block;
    padding: 0;
    border: none;
    text-align: left;
    text-transform: lowercase;
}

.text-only .list-total__value,
.text-only .recipe__cals > strong {
    display: inline;
}

.text-only .recipe__title {
    display: block !important;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 20px !important;
    color: inherit;
}

.text-only .list-total__value,
.text-only .list-total__value > strong,
.text-only .list-total,
.text-only .recipe__cals,
.text-only .recipe__cals > strong,
.text-only .block-title,
.text-only .block-title small,
.text-only .ingredient__portion {
    font-size: 18px !important;
    color: inherit;
}

.text-only .block-title {
    margin: 25px 0 15px;
    font-weight: 700;
}

.text-only .block-title::before,
.text-only .block-title::after {
    content: ' -- '
}

.text-only .recipe__cals {
    position: static;
    padding: 0;
    border: none;
    text-align: left;
    box-shadow: none;
    line-height: inherit;
}

.text-only .recipe__body {
    display: block;
}

.text-only .ingredient,
.text-only .list-total > li,
.text-only .list-custom-bullets > li {
    margin-bottom: 0 !important;
}

.text-only .list-custom-bullets > li::before {
    color: inherit;
}

.text-only .recipe__steps {
    padding-top: 0;
    border: none !important;
}