@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&&family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto:wght@400;700&&display=swap");

:root {
    --primary-color: #2C2015;
    --secondary-color: #FCFEF7;
    --cta-color: #9AC626;
    --footer-bg: #2C2015;
    --background: #FCFEF7;

    --light-text-color: #FCFEF7;
    --dark-text-color: #2C2015;
    --carousel-bg: #DFEDC7;
    --recipe-card-bg: #FFFDF8;

    --font-family: 'Montserrat', sans-serif;
}

html,
body {
    background: var(--background);
}

main {
    padding-top: 100px;
}

.container {
    min-width: 1150px;
}

.main-menu {
    width: 1150px;
}


/** Header **/

.header {
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background: transparent !important;
}

.header img {
    width: 228px;
}

.navbar .nav-item.active .nav-link,
.navbar .nav-item:hover .nav-link {
    color: var(--cta-color) !important;
    border-bottom: 3px solid var(--cta-color);
    background: transparent !important;
    background-color: transparent !important;
}

.navbar .nav-item.active,
.navbar .nav-item:hover {
    opacity: 1 !important;
    color: var(--cta-color) !important;
    background: transparent !important;
}

.main-menu svg path {
    fill: var(--primary-color);
    outline: none !important;
}

.main-menu .navbar-toggler {
    outline: none !important;
}

.navbar-collapse.show {
    height: 180px;
}

.navbar .navbar-toggler[aria-expanded="true"] {
    margin-bottom: 15px;
}

.navbar .nav-item {
    height: 34px;
    margin-right: 10px;
}



div[data-disclosures-text="1"] span {
    text-transform: uppercase;
}

.navbar {
    margin-left: 65px;
}

.navbar .nav-item .nav-link {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    color: var(--primary-color);
    padding: 8px;
    height: 40px;
    text-transform: none;
}

.navbar .nav-item .nav-link:hover {
    color: var(--footer-bg) !important;
    filter: brightness(1);
    opacity: 1;
}

/** pagination **/

.pagination .page-link {
    text-align: center;
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--primary-color);
    background-color: transparent;
    border: none;
}

.pagination .page-item.active .page-link,
.pagination .page-link:hover {
    text-decoration: underline;
    background-color: transparent;
    color: var(--cta-color);
}

/** recipe detail */

.recipe-detail-image {
    border-radius: 12px;
    height: 325px;
}

.recipe-detail-image .caption {
    background: var(--footer-bg);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: absolute;
    margin-top: 312px;
}

.recipe-detail-ingredients {
    background: var(--background);
    border-radius: 12px;
    line-height: 32px;
}

.recipe-detail-image .caption a,
.recipe-detail-image .caption p {
    color: var(--secondary-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.recipe-detail-image .caption p {
    font-size: 12px;
    font-weight: 400;
}

.recipe-detail-actions {
    display: inline-block;
    position: relative;
    text-align: right;
    right: 0px;
}

.recipe-detail-ingredients h4,
.recipe-detail-directions h4 {
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    color: var(--primary-color);
}

.recipe-detail-directions .btn * {
    text-align: center;
    font-family: var(--font-family);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--primary-color);
    cursor: pointer;
}

/** Footer **/
.footer .container-fluid {
    background-color: var(--footer-bg);
}

.footer .container {
    background-color: var(--footer-bg);
    margin-top: -25px;
    position: relative;
}

.footer,
.footer p,
.footer .copyright .nav-link {
    font-family: var(--font-family);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 145%;
    color: var(--secondary-color);
}

.footer .offset-5 {
    margin-left: 0 !important;
    max-width: unset !important;
}

.footer .logo {
    margin-top: 0;
}

.footer .footer-logo {
    width: 150px;
    height: auto;
    margin-top: 0;
    padding-bottom: 13px;
}

.footer p a {
    padding: 0 !important;
}

.footer .nav-item .nav-link {
    color: var(--light-text-color);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    width: 250px;
    text-transform: none;
}

.footer .bold * {
    font-weight: 700 !important;
}

/** widgets **/

.recipeCard {
    background: var(--recipe-card-bg);
    border-radius: 12px;
}

.recipeCard img {
    width: 99px;
    border-radius: 6px;
}

.recipeCardMedium img {
    width: 100%;
    border-radius: 6px;
}

.recipeCardMedium {
    min-height: 250px
}

.recipeCardBig .background {
    height: 320px;
    border-radius: 12px;
    background-size: cover !important;
    cursor: pointer;
}

.recipeCardBig .background:hover {
    filter: brightness(0.9);
}

.recipeCardBig .caption {
    background: var(--footer-bg);
    height: 100px;
    bottom: 0;
    position: relative;
    margin-top: 289px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.recipeCardBig .caption a,
.recipeCardBig .caption p {
    color: var(--secondary-color);
    font-family: var(--font-family);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.recipeCardBig .caption a {
    font-size: 12px;
    font-weight: 700;
}

.recipeCard a,
.recipeCard p {
    color: var(--dark-text-color);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.recipeCard p {
    font-weight: 400;
    font-size: 12px;
}

#recipeCarousel .carousel-inner {
    width: 110%;
}

#recipeCarousel .carousel-item {
    height: 434px;
    background-size: 110% !important;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

#recipeCarousel .carousel-caption {
    position: relative;
    background: var(--footer-bg);
    text-align: left;
    left: 0;
    padding-left: 15px;
    padding-right: 150px;
    margin-top: 320px;
    height: 98px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

#recipeCarousel .carousel-caption p {
    color: var(--secondary-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#recipeCarousel .carousel-caption h5 a {
    color: var(--secondary-color);
}

#recipeCarousel .carousel-caption p {
    color: var(--secondary-color);
    font-family: var(--font-family);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#recipeCarousel .carousel-indicators {
    top: 415px;
    position: relative;
    float: right;
    margin: auto;
    margin-right: -50px;
}

#recipeCarousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 10px;
    margin-left: 7px;
    text-indent: -999px;
    cursor: pointer;
    background-color: transparent;
    background-clip: padding-box;
    border: 3px solid #E5E5E5;
    margin-top: -100px;
}

#recipeCarousel .carousel-indicators li.active {
    border: 3px solid var(--cta-color);
    background-color: var(--cta-color);
}

#recipeCarousel .carousel-item {
    transition: transform 1s ease, opacity .3s ease-out !important;
}

#recipeCarousel img {
    height: 250px;
}

.btn-share {
    background-color: var(--cta-color);
}

/** rating **/

.rating {
    height: 18px;
}

.rating-wrapper .star-inactive svg path {
    fill: rgb(153, 149, 149) !important;
}

.rating-wrapper .star-active svg path {
    fill: var(--cta-color) !important;
}

.grid-item.banner,
.banner-300x250 {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    max-width: 349px;
    height: 300px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

.grid-item.banner .box300x250 {
    width: 300px;
    height: 250px;
    margin: 0 !important;
}

.banner-728x90 {
    background: rgba(255, 255, 255, 1);
    height: 135px;
    margin: 0 0px;
}

.category-holder {
    background: var(--footer-bg) !important;
}


/** Search **/

.text-bold {
    font-weight: 700;
}

.search-form {
    position: relative;
    z-index: 1000;
    margin-top: 90px;
    margin-left: 28px;
}

.form-control::placeholder {
    font-family: var(--font-family);
    font-style: normal !important;
    font-weight: normal;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -0.371217px;
    color: rgba(255, 255, 255, 0.6);
}

.search-form .btn {
    background-color: var(--footer-bg);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    position: absolute;
    right: 5px;
}

.cta-holder {
    height: 140px;
    background: url(../img/cta-holder.png) center center no-repeat;
    background-size: contain;
}

.cta-text-holder {
    color: var(--secondary-color);
    text-align: center;
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

.cta-text-holder h5 {
    margin-bottom: 0;
    font-weight: bold;
}

.cta-button {
    width: 253px;
    height: 36px;
    border-radius: 30px;
    background: var(--secondary-color);
    color: var(--cta-color);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    padding: 7px 10px 7px 10px;
}

.cta-button:hover,
.add-to-plan:hover,
.view-plan:hover {
    text-decoration: none;
    filter: brightness(1.1);
}

.recipe-vertical,
.recipe,
.featured-recipe {
    background: #ffffff;
    mix-blend-mode: normal;
    box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.featured-recipe a.details,
.featured-recipe.small-size a.details {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    height: 150px;
    padding: 26px 30px;
}

.featured-recipe a.details span {
    font-family: var(--font-family);
    font-size: 23px;
    line-height: 30px;
    text-transform: uppercase;
    color: #626262;
}

.featured-recipe.small-size .recipe-rating,
.featured-recipe .recipe-rating {
    left: 45px;
    bottom: 25px;
    right: unset;
    position: absolute;
}


/** Recipe */

.print,
.share {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: normal;
    font-size: 16.9154px;
    line-height: 20px;
    color: #969696;
}

.recipe-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    margin-top: 10px;
}

.categories-flat {
    margin-left: 20px;
    margin-right: 40px;
    overflow-x: hidden;
}

.categories-widget .arrow-left {
    left: 5px;
    top: 61px;
    width: 20px;
}

.categories-widget .arrow-right {
    right: 5px;
    top: 61px;
    width: 20px;
}

.categories-widget .arrow-left path,
.categories-widget .arrow-right path {
    stroke: var(--primary-color);
}

.group-4-title {
    margin-top: -20px;
}

.search-header,
.exit-survey-view,
.ccpa-container,
.requirements-view,
.static-view {
    margin-top: 0px !important;
    min-height: 88vh;
    border-radius: 12px;
}

#searchBarHolder {
    display: block;
    position: relative;
    top: 117px;
    width: 100%;
    z-index: 222;
    left: 0;
    background: var(--background);
    padding: 2rem 26% 2rem 26%;
    border-radius: 45px;
    margin-bottom: 50px;
}

.search-input {
    background: transparent;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: var(--primary-color) !important;
    border: 2px solid #bbb7b7;
    outline: none;
    border-radius: 22px;
}

.searchbar button,
.searchbar button:focus,
.searchbar button:active {
    background: transparent;
    border: none !important;
    outline: none !important;
}

#searchBtn svg path:hover {
    fill: var(--cta-color);
}

.search-result {
    min-height: 80vh;
}

.exit-survey-view form,
.contact-view form {
    margin: 0 16px;
}

.exit-survey-view,
.legal-container .contact-view {
    min-height: calc(100vh - 150px);
    margin-top: 0px !important;
}

.exit-survey-view button,
.contact-view button {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: #ffffff !important;
}

.exit-survey-view button:hover,
.contact-view button:hover {
    filter: brightness(1.1);
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-color);
    filter: brightness(0.9);
}


/* HOW TO USE PAGE */


.separate-line {
    border: 1px solid var(--primary-color);
    width: 80px;
    border-radius: 100px;
}


.fdbck-header-holder {
    background: var(--footer-bg);
    background-repeat: no-repeat;
    background-size: cover;
}

.feedback-holder .card-footer {
    background-color: unset;
    border: unset;
}

.feedback-holder .feedback-btn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.feedback-holder .feedback-btn:hover {
    filter: brightness(1.5);
    background: var(--footer-bg) !important;
}

/** SUBMENU **/

.cat-slider {
    margin-top: 1rem !important;
    width: 98.5% !important;
    background: var(--carousel-bg);
}

.cat-slider p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: var(--primary-color);
}

.cat-slider a:hover {
    text-decoration: none;
}

.cat-slider a:hover p {
    color: var(--cta-color);
}

.cat-slider p.active {
    color: var(--cta-color);
}

.cat-slider .carousel-control-prev-icon {
    background-image: url(../img/submenu-slider-prev.svg);
}

.cat-slider .carousel-control-next-icon {
    background-image: url(../img/submenu-slider-next.svg);
}

.cat-slider .carousel-control-next,
.cat-slider .carousel-control-prev {
    background: transparent;
}

.feedback-holder {
    margin-top: -100px;
}

.fdbc-img-holder {
    background: var(--secondary-color) !important;
}

#leave-feedback-form .stars-container {
    padding-bottom: 15px;
}

/* HOW TO USE */

.thank-you-holder {
    background: url(../img/thank-you-holder.webp) no-repeat center;
    min-height: 250px;
}

.thank-you-text-holder {
    width: 70%;
}

.thank-you-text-holder h1 {

    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: var(--light-text-color);
}

.thank-you-text-holder p {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 145%;
    color: var(--light-text-color);
}

.hr-lines:before {
    content: " ";
    display: block;
    height: 3px;
    width: 40%;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--cta-color);
}

.hr-lines {
    position: relative;
    margin: 50px auto;
    text-align: center;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-text-color);
}

.hr-lines:after {
    content: " ";
    height: 3px;
    width: 40%;
    background: var(--cta-color);
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
}

.addtnl-img {
    max-width: 900px;
}

/** scroller */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--footer-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

@media (max-width: 1500px) {
    .box160x600-sticky {
        display: none !important;
    }
}

@media (max-width: 1199px) {

    .left-first:after,
    .left-second:after,
    .left-third:after,
    .right-first:before,
    .right-second:before,
    .right-third:before {
        display: none;
    }

    .learn-rows {
        margin-top: 10px;
        margin-right: 20px;
        margin-left: 20px;
    }

    .right-third,
    .left-third {
        margin-top: 0px;
    }

    .container {
        min-width: auto;
    }

    .how-to-last-section img {
        width: 100%;
        height: auto;
    }

    #recipeCarousel .carousel-item {
        background-size: cover  !important;
        height: 397px;
    }
}

@media (max-width: 965px) {
    .footer .footer-logo {
        height: 50px;
    }
    .home-right {
        display: none;
    }
    .navbar-nav {
        background: var(--secondary-color);
    }
}

@media (max-width: 1200px) {
    .search-form {
        margin-top: 70px;
    }

    .navbar .nav-item {
        margin-right: 0px;
    }

    .cta-text-holder h5 {
        display: none;
    }

    .cta-text-holder p {
        margin-top: 25px;
    }

    #recipeCarousel .carousel-inner {
        width: 100%;
    }

    #recipeCarousel .carousel-indicators {
        margin-right: 30px;
    }
}

@media (max-width: 992px) {
    .search-form {
        margin-top: 40px;
    }

    .banner-728x90 {
        display: none;
    }

    .recipe-ingredients-holder {
        margin-bottom: 30px;
    }
}

@media (max-width: 850px) {
    .cta-text-holder p {
        display: none;
    }

    .cta-text-holder .cta-button {
        margin-top: 46px;
        display: inline-block;
    }
}

@media only screen and (max-width: 650px) {
    .footer .nav {
        columns: 1 !important;
    }

    .footer .nav .nav-item {
        text-align: center;
    }

    .footer .nav-item .nav-link {
        width: unset;
    }
}

@media only screen and (min-width: 650px) and (max-width: 768px) {
    .footer .nav {
        columns: 3 !important;
    }
    .recipe-detail-directions {
        margin-top: 90px !important;
    }
    .recipe-detail-image .rating {
        margin-top: -11px !important;
    }
    .recipe-detail-right {
        float: none !important;
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .grid-item {
        width: 99%;
        margin: 20px auto !important;
    }

    .group-4-recipe .recipe {
        width: 48% !important;
    }

    .main-menu ul {
        text-align: right;
    }
}

@media (max-width: 768px) {
    .footer .col-md-4 {
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 50px;
    }

    .footer .nav-link {
        text-align: center !important;
    }

    .footer .copyright>div {
        margin: 0 !important;
    }

    .group-4-recipe .recipe {
        width: 99% !important;
    }

    .hr-lines:before,
    .hr-lines:after {
        width: 35%;
    }


}

@media (max-width: 576px) {
    .add-ext-button {
        font-size: 16px;
        width: 230px;
    }

    .add-ext {
        font-size: 18px;
    }

    .add-ext img {
        width: 32px;
    }
}