/*!
Theme Name: Crafted by Grace + Vine Studios (a Kadence Child Theme)
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Grace + Vine Studios
Author URI: https://www.graceandvinestudios.com/
Description: A crafted child theme of the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */


/** Crafted Theme Variables **/
/** Use these to set variables commonly used, for consistency **/
:root {
    --crafted-button-radius: 5px;
    --crafted-border-style: solid;
    --crafted-border-width: 4px;
    --crafted-border-color: var(--global-palette1);
    --crafted-input-radius: 5px;
}


/** General Styles **/

body a {
    color: var(--global-palette3);
	text-decoration-color: var(--global-palette6);
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration: underline !important;
	text-decoration-color: var(--global-palette6) !important;
}

body a:hover {
    color: var(--global-palette1);
	text-decoration-color: var(--global-palette1) !important;
	font-weight: 500;
	text-decoration: underline;
}


button, .button, .wp-block-button__link, .wp-element-button, form input[type="button"], form input[type="reset"], form input[type="submit"] {
    text-transform: uppercase;
    border-style: var(--crafted-border-style);
    border-width: 2px;
    border-color: var(--crafted-border-color);
    border-radius: var(--crafted-button-radius);
}


hr,
body .wp-block-separator,
body .wp-block-separator.has-background:not(.is-style-dots):not(.is-style-wide),
body .wp-block-separator.has-background:not(.is-style-dots) {
    border-bottom-style: var(--crafted-border-style);
    border-bottom-width: var(--crafted-border-width);
    border-bottom-color: var(--crafted-border-color);
    background: transparent;
    height: 0;
    border-top: 0;
}


/** Link Styling **/


.link-style-standard a.kb-button:hover{ 
    font-weight: inherit;
}


/** List Styling */
ul ::marker {
    color: var(--global-palette6);
}
.entry-content ul:not(.ez-toc-list):not(.ez-toc-list-level-3):not(.wp-block-social-links):not(.wptg-gallery-ul):not(.kb-gallery-ul):not(.feast-category-index-list):not(.wprm-recipe-instructions):not(.wpforms-field-required) > li {
    list-style-type: none !important;
    position: relative;
}
.entry-content ul:not(.ez-toc-list):not(.ez-toc-list-level-3):not(.wp-block-social-links):not(.wptg-gallery-ul):not(.kb-gallery-ul):not(.feast-category-index-list):not(.wprm-recipe-instructions):not(.wpforms-field-required) li::before {
    content: ' ';
    display: block;
    position: absolute;
    left: -20px;
    background-color: var(--global-palette1);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    font-size: 20px;
    margin-top: 10px;
}
.single-content ul.fsri-list {
    padding-left: 0;
}
ul.fsri-list a:hover {
    text-decoration: underline !important;
}
ul.wp-block-social-links {
    margin-bottom: 0;
}


/********* OL List Styling *********/
.single-content.entry-content ol:not(.wprm-recipe-instructions) {
    padding-left: 0;
}
.entry-content ol:not(.wprm-recipe-instructions) > li {
    list-style-type: none;
    counter-increment: list-counter;
    position: relative;
    padding-left: 30px;
}
.entry-content ol:not(.wprm-recipe-instructions) li::before {
    content: counter(list-counter);
    position: absolute;
    display: block;
    left: 0;
    background-color: var(--global-palette6);
    color: #fff;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    font-size: .8em;
    margin-top: 5px;
    padding-left: 1px;
}
ol[start^="1"]>li:first-child::before {
    counter-set: list-counter 1;
}
ol[start^="2"]>li:first-child::before {
    counter-set: list-counter 2;
}
ol[start^="3"]>li:first-child::before {
    counter-set: list-counter 3;
}
ol[start^="4"]>li:first-child::before {
    counter-set: list-counter 4;
}
ol[start^="5"]>li:first-child::before {
    counter-set: list-counter 5;
}
ol[start^="6"]>li:first-child::before {
    counter-set: list-counter 6;
}
ol[start^="7"]>li:first-child::before {
    counter-set: list-counter 7;
}
ol[start^="8"]>li:first-child::before {
    counter-set: list-counter 8;
}
ol[start^="9"]>li:first-child::before {
    counter-set: list-counter 9;
}
ol[start^="10"]>li:first-child::before {
    counter-set: list-counter 10;
}
ol[start^="11"]>li:first-child::before {
    counter-set: list-counter 11;
}
ol[start^="12"]>li:first-child::before {
    counter-set: list-counter 12;
}
ol[start^="13"]>li:first-child::before {
    counter-set: list-counter 13;
}
ol[start^="14"]>li:first-child::before {
    counter-set: list-counter 14;
}
ol[start^="15"]>li:first-child::before {
    counter-set: list-counter 15;
}
ol[start^="16"]>li:first-child::before {
    counter-set: list-counter 16;
}
ol[start^="17"]>li:first-child::before {
    counter-set: list-counter 17;
}
ol[start^="18"]>li:first-child::before {
    counter-set: list-counter 18;
}
ol[start^="19"]>li:first-child::before {
    counter-set: list-counter 19;
}
ol[start^="20"]>li:first-child::before {
    counter-set: list-counter 20;
}


/** Bounce Animation **/
@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform:     translateY(0);
    transform:         translateY(0)
  }
  40% {
    -webkit-transform: translateY(-12px);
    -ms-transform:     translateY(-12px);
    transform:         translateY(-12px)
  }
  60% {
    -webkit-transform: translateY(-6px);
    -ms-transform:     translateY(-6px);
    transform:         translateY(-6px)
  }
}
.bouncing-icons .wp-block-kadence-column img,
.bouncing-icons.wp-block-kadence-column img,
.header-social-wrap a img,
.header-social-wrap a svg {  
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
}
.bouncing-icons .wp-block-kadence-column:hover img,
.bouncing-icons.wp-block-kadence-column a:hover img,
.header-social-wrap a:hover img,
.header-social-wrap a:hover svg  {
  cursor: pointer;
  animation-name: bounce;
  -moz-animation-name: bounce;
}


/** Header **/
@media screen and (max-width: 767px){
    .site-branding a.brand img.custom-logo {
        max-width: 100%;
    }
}



/* Mobile menu */
.drawer-content.content-align-center .mobile-navigation ul li.menu-item-has-children>.drawer-nav-drop-wrap>a {
    padding-left: calc(44px + 0.5em);
}
.mobile-drawer-content.content-align-center .mobile-navigation ul ul {
    padding-left: 0;
}
.mobile-drawer-content.content-align-center .mobile-navigation ul ul a {
    font-size: .8em;
}
.mobile-drawer-content li.menu-item:hover a {
    text-decoration: none;
}


/** Single Post **/
.kadence-breadcrumbs.yoast-bc-wrap {
    margin-bottom: 0px;
}
.kadence-breadcrumbs a {
    text-decoration: none;
}
.single .entry-header {
    margin-bottom: 10px;
}
.dpsp-has-spacing .dpsp-networks-btns-wrapper li {
    margin-right: 1%;
    margin-bottom: 0;
}
#dpsp-content-top {
    margin-bottom: 5px;
}
header.entry-header .entry-meta {
    margin: 0;
}
header.entry-header .entry-meta a:hover,
.kadence-breadcrumbs a:hover {
    text-decoration: underline;
}
.entry-content-wrap .entry-content.single-content {
    margin-top: 10px;
}
.comment-navigation .nav-previous a:hover, 
.post-navigation .nav-previous a:hover,
.comment-navigation .nav-next a:hover, 
.post-navigation .nav-next a:hover {
    text-decoration: underline;
}
.entry-related .entry-related-title {
    font-family: var(--global-heading-font-family);
}
.entry-related .entry-related-inner-content {
    background: var(--global-palette8);
    padding: 30px;
}
.entry-related .carousel-item.splide__slide {
    background: white;
}
.entry-related-inner-content .grid-cols {
    gap: 15px;
}
.entry-related article.entry.loop-entry {
    box-shadow: none;
    background: transparent;
}
.entry-related .loop-entry .entry-content-wrap {
    padding: 0 15px;
    margin-top: 10px;
}
.entry-related h3.entry-title {
    text-align: center;
}
.entry-related h3 a {
    font-weight: 300;
    text-decoration: none;
}



/** Sidebar **/
aside.widget-area p, aside.widget-area div, aside.widget-area ul {
    margin: 0;
}
aside button.wp-block-search__button.has-icon.wp-element-button {
    display: block;
}
aside div.wp-block-search__inside-wrapper {
    display: flex !important;
}
/* Uncomment to hide the sidebar on mobile
@media screen and (max-width: 1024px) {
    .primary-sidebar {
        display: none;
    }
}*/


/** Forms **/
input.search-field[type="search"] {
    border-radius: var(--crafted-input-radius);
    padding-top: 4px;
    padding-bottom: 4px;
}
.wp-block-search .wp-block-search__input {
    border: 0;
}
form.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    border: solid 2px var(--global-palette-btn-bg);
    border-radius: var(--crafted-input-radius);
    background: var(--global-palette2);
}
.wpforms-container,
.wpforms-container.inline-fields {
    margin-bottom: 0;
}
div.wpforms-container .wpforms-field {
    padding-top: 10px;
    padding-bottom: 0;
}
footer .wpforms-container div.wpforms-field {
    padding: 0;
}
.wpforms-container .wpforms-field .wpforms-field-row .wpforms-field-row-block {
    padding: 0 5px;
}
.wpforms-container.wpforms-block .wpforms-one-half, 
.wpforms-container.wpforms-block .wpforms-three-sixths, 
.wpforms-container .wpforms-two-fourths {
    width: calc( 50% - 5px);
}
.wpforms-container.wpforms-block  .wpforms-field.wpforms-five-sixths, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-four-sixths, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-four-fifths, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-one-fifth, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-one-fourth, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-one-half, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-one-sixth, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-one-third, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-three-fourths, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-three-fifths, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-three-sixths, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-two-fourths, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-two-fifths, 
.wpforms-container.wpforms-block  .wpforms-field.wpforms-two-sixths,
.wpforms-container.wpforms-block  .wpforms-field.wpforms-two-thirds {
    margin-left: 10px;
}
.wpforms-container .wpforms-one-third, .wpforms-container .wpforms-two-sixths {
    width: calc( 100% / 3 - 10px);
}
.wpforms-container .wpforms-one-fourth {
    width: calc( 25% - 10px);
}
.wpforms-container .wpforms-one-fifth {
    width: calc( 100% / 5 - 10px);
}
.wpforms-container .wpforms-one-sixth {
    width: calc( 100% / 6 - 10px);
}
.wpforms-container .wpforms-four-sixths, .wpforms-container .wpforms-two-thirds {
    width: calc( 2 * 100% / 3 - 10px);
}
.wpforms-submit-container .wpforms-submit {
    padding: 5px;
    text-transform: uppercase;
}
.wpforms-container .wpforms-submit-container {
    padding-top: 10px;
}
.wpforms-container.inline-fields .wpforms-submit-container {
    padding-top: 10px;
}
.wpforms-container.inline-fields .wpforms-submit-container .wpforms-submit {
    padding: 11px;
    padding-top: 13px;
}
.wpforms-container.inline-fields .wpforms-field-container .wpforms-field {
    margin-left: 0;
    padding-left: 2px;
    padding-right: 2px;
}
.wpforms-container.inline-fields .wpforms-form {
    gap: 10px;
}
.wpforms-container fieldset>ul {
    list-style: none;
    padding-left: 0;
}
@media screen and (max-width: 767px ){
    div.wpforms-container.inline-fields .wpforms-field-container {
        display: block;
        width: 100%;
    }

    div.wpforms-container.inline-fields .wpforms-field-container>.wpforms-field {
        margin: 0;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .wpforms-container.inline-fields .wpforms-form {
        flex-direction: column;
        gap: 0px;
    }

    .wpforms-container.inline-fields .wpforms-form .wpforms-submit-container {
        width: 100%;
    }
}

.footer-subscribe button {
	background: var(--global-palette2);
	color: var(--global-palette3);
}

.footer-subscribe .wpforms-container form input,
.newsletter .wpforms-container form input {
	background: var(--global-palette9);
}

.wpforms-container input[type=date], 
.wpforms-container input[type=datetime], 
.wpforms-container input[type=datetime-local], 
.wpforms-container input[type=email], 
.wpforms-container input[type=month], 
.wpforms-container input[type=number], 
.wpforms-container input[type=password], 
.wpforms-container input[type=range], 
.wpforms-container input[type=search], 
.wpforms-container input[type=tel], 
.wpforms-container input[type=text], 
.wpforms-container input[type=time], 
.wpforms-container input[type=url], 
.wpforms-container input[type=week], 
.wpforms-container select, 
.wpforms-container textarea {
    border-radius: var(--crafted-input-radius);
    border: solid 2px var(--global-palette1);
    text-align: center;
    color: var(--global-palette5);
    background: var(--global-palette9);
}
.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder,
form.search-form input::placeholder,
.wp-block-search input.wp-block-search__input::placeholder {
    opacity: 1;
    color: var(--global-palette3);
}
button.wpforms-submit {
    width: 100%;
    border: solid 2px var(--global-palette-btn-bg);
    border-radius: var(--crafted-button-radius);
}
button.wpforms-submit:focus-visible {
    outline: solid 2px var(--global-palette6);
}
.comments-area input[type="text"], 
.comments-area input[type="email"], 
.comments-area input[type="url"], 
.comments-area input[type="password"], 
.comments-area input[type="search"], 
.comments-area input[type="number"], 
.comments-area input[type="tel"], 
.comments-area input[type="range"], 
.comments-area input[type="date"], 
.comments-area input[type="month"], 
.comments-area input[type="week"], 
.comments-area input[type="time"], 
.comments-area input[type="datetime"], 
.comments-area input[type="datetime-local"], 
.comments-area input[type="color"], 
.comments-area textarea {
    border-radius: var(--crafted-input-radius);
    border: solid 2px var(--global-palette-btn-bg);
    color: var(--global-palette5);
    background: var(--global-palette7);
}
.comments-area .comment-form textarea::placeholder  {
    color: var(--global-palette3);
}
.comments-area .comment-form .comment-input-wrap p label, 
.comments-area .comment-form p.comment-form-float-label label {
    color: var(--global-palette3);
}
.comment-form .comment-input-wrap p.comment-form-cookies-consent {
    flex-direction: row;
    align-items: center;
}

.comment-form .comment-form-cookies-consent label:not(:placeholder-shown) {
    margin-left: 0;
}

.comment-form .comment-input-wrap input#wp-comment-cookies-consent {
    width: auto;
}


/** Search **/
form.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper, 
.wp-block-search .wp-block-search__input {
        background: var(--global-palette9);
}
.wp-block-search .wp-block-search__input {
    border: none;
    color: var(--global-palette3);
    width: 100%;
    background: var(--global-palette9);
}

.search-form .kadence-search-icon-wrap {
	color: var(--global-palette3 !important);
}

.kadence-search-svg path,
body .wp-block-search .wp-block-search__button path {
    color: var(--global-palette3);
}
.wp-block-search .wp-block-search__input::placeholder,
::placeholder,
form input.search-field::placeholder,
input::placeholder {
    font-weight: 400;
    opacity: 1;
    color: var(--global-palette3);
}
header form.search-form input.search-field,
.drawer-inner form.search-form input.search-field  {
    color: var(--global-palette3);
}
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper),
body .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    border: solid 2px var(--global-palette3);
    border-radius: var(--crafted-input-radius);
}
.wp-block-search button.wp-block-search__button:not(.has-background) {
    background: none;
}


/** Comment Display **/
.reply .comment-reply-link {
    background: var(--global-palette-btn-bg);
    color: var(--global-palette-btn);
    border: solid 2px var(--global-palette-btn-bg);
    border-radius: var(--crafted-button-radius);
}
.reply .comment-reply-link:hover {
    background: var(--global-palette-btn-bg-hover);
    color: var(--global-palette-btn-hover);
    border: solid 2px var(--global-palette-btn-bg);
    border-radius: var(--crafted-button-radius);
}
.comment .comment-content p {
    margin-top: 0;
}
.comment .comment-metadata {
    padding-bottom: 0;
}
.comment img.wprm-comment-rating {
    margin: 0;
}
.comments-area .bypostauthor>.comment-body {
    background: var(--global-palette7);
    padding: 20px;
}
.comments-area article.comment-body {
    margin-bottom: 0;
}
.comments-area .comment-body {
    border-bottom: 0;
}
.comments-area ol.comment-list article {
    border: none;
    padding-top: 30px;
    margin-top: 10px;
}
.comments-area .reply {
    top: 30px;
    right: 15px;
}
.comment-respond {
    margin-top: 30px;
}


/** Post Grids **/
.archive .loop-entry.entry h2.entry-title,
.blog .loop-entry.entry h2.entry-title,
.search-results .loop-entry.entry h2.entry-title {
    font-weight: 400;
    text-align: center;
}
.archive .loop-entry.entry h2.entry-title a,
.blog .loop-entry.entry h2.entry-title a,
.search-results .loop-entry.entry h2.entry-title a {
    text-decoration: none;
}
.archive .loop-entry.entry:hover h2.entry-title a,
.blog .loop-entry.entry:hover h2.entry-title a,
.search-results .loop-entry.entry:hover h2.entry-title a,
.wp-block-kadence-postgrid article:hover .entry-title,
.entry-related article.entry.loop-entry:hover .entry-title {
    text-decoration: underline;
}
.archive.content-style-unboxed .wp-site-blocks article .post-thumbnail,
.blog.content-style-unboxed .wp-site-blocks article .post-thumbnail,
.search-results.content-style-unboxed .wp-site-blocks article .post-thumbnail  {
    margin-bottom: .5em;
}
.post-archive.grid-cols,
.search-archive.grid-cols {
    column-gap: 20px;
    row-gap: 20px;
}
.pagination .nav-links {
    display: flex;
}
.pagination .nav-links .current {
    border-radius: var(--crafted-button-radius);
}
.pagination .nav-links a:hover, 
.pagination .nav-links a:focus, 
.pagination .nav-links a:active {
    border-radius: var(--crafted-button-radius);
}

/** Post grid with category above **/
.kt-post-grid-wrap .kt-blocks-above-categories {
    display: none;
}
.kt-post-grid-wrap .crafted-post-grid-cat-wrapper {
    margin-top: -35px;
    background: var(--global-palette9);
    padding: 10px;
}
.kt-post-grid-wrap>article:nth-child(3n+1) .crafted-post-grid-cat-wrapper {
    background: var(--global-palette8);
}
.kt-post-grid-wrap>article:nth-child(3n+2) .crafted-post-grid-cat-wrapper {
        background: var(--global-palette7);
}
.kt-post-grid-wrap>article:nth-child(3n+3) .crafted-post-grid-cat-wrapper {
        background: var(--global-palette6);
}



/** EZ Table Of Contents **/
.ez-toc-title-container {
    font-family: var(--global-heading-font-family);
}
#ez-toc-container .ez-toc-toggle label, 
.ez-toc-cssicon {
    margin-top: -75px;
    margin-right: 10px;
}
body div#ez-toc-container {
    border-width: 2px;
}
body div#ez-toc-container ul li a.ez-toc-link, 
body div#ez-toc-container ul li a.ez-toc-link:hover {
    background-image: none;
}
body div#ez-toc-container .toc-toggle-lt {
    width: calc(100% + 60px);
    margin-left: -30px;
    border-top: solid 2px var(--global-palette2);
}



/** Blocks **/
a.wptg-gallery-item-link:hover,
.kb-section-has-link:hover {
    text-decoration: underline;
}
.wptg-gallery-id-wp-taxonomy-grids .wptg-blocks-gallery-item .wptg-blocks-gallery-item-inner a:not(.button)  {
    padding: 0;
    text-decoration: none;
}
.wptg-gallery-id-wp-taxonomy-grids .wptg-blocks-gallery-item .wptg-blocks-gallery-item-inner a:not(.button):hover {
    text-decoration: underline;
}



/** Yoast FAQ **/
.single-content .wp-block-yoast-faq-block .schema-faq-section {
    margin-bottom: 0;
    border: solid 2px var(--global-palette1);
}
.single-content .wp-block-yoast-faq-block .schema-faq-section + .schema-faq-section {
    border-top: 0;
}
.single-content .wp-block-yoast-faq-block a.schema-faq-question {
    margin-bottom: 0;
    background: var(--global-palette8);
    font-size: 20px;
    color: var(--global-palette3);
    border-bottom: 0;
}
.single-content div.wp-block-yoast-faq-block .schema-faq-question.faq-q-open {
    border-bottom: 0;
}
.single-content .wp-block-yoast-faq-block p.schema-faq-answer {
    border-bottom: 0;
    border-left:  solid 2px var(--global-palette-btn-bg-hover);
    border-right:  solid 2px var(--global-palette-btn-bg-hover);
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 22px;
    border: 0;
}
.single-content .wp-block-yoast-faq-block p.schema-faq-answer:last-child {
    border-bottom:  solid 2px var(--global-palette-btn-bg-hover);
}

/** Recipe Key **/
.entry-header h3.ewel-recipe-list-title {
    display: none;
}

.entry-header ul#ewel-recipe-list {
    margin-left: 0;
}
#ewel-recipe-list_wrapper.display-inline {
    display: flex;
    flex-direction: row;
}

.display-inline ul#ewel-recipe-list {
    display: flex;
    column-gap: 10px;
    margin-bottom: 0;
}

#ewel-recipe-list ::marker {
display: none;
}

ul#ewel-recipe-list li {
    list-style: none;
}

.display-inline .ewel-recipe-name {
    display: none;
}

span.ewel-recipe-icon {
    padding: 5px;
    border-radius: 100%;
    border: solid 2px;
    font-size: 16px;
}

#ewel-recipe-list a {
    text-decoration: none;
}
#ewel-recipe-list li a:hover {
    color: black;
}

.ewel-recipe-list-title {
    margin-top: 2px;
} 
ul#ewel-recipe-list {
    padding-left: 0;
}

ul#ewel-recipe-list>li {
    padding-bottom: 10px;
    flex-basis: 50%;
    padding-bottom: 10px;
}
div#ewel-recipe-list_wrapper.display-inline ul {
    flex-wrap: nowrap;
}
ul#ewel-recipe-list {
    flex-wrap: wrap;
    display: flex;
}
.primary-sidebar.widget-area .widget {
    clear: both;
}
.primary-sidebar.widget-area .widget .ewel-recipe-list-title {
    text-align: center;
    font-style: normal;
    text-transform: capitalize;
    font-family: var(--global-heading-font-family, inherit);
    font-weight: 300;
}


.ewel-recipe-icon {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 6px;
    text-align: center;
    margin-right: 5px;
    font-size: 14px !important;
}
#ewel-recipe-list li a {
    display: flex;
    align-items: center;
}
.mobile #ewel-recipe-list li {
    list-style: none !important;
    margin-bottom: 10px;
}
.mobile ul#ewel-recipe-list {
    margin: 0;
}
.recipe-key .ewel-recipe-list-title,
.recipe-key .ewel-recipe-name{
    display: none;
}
.recipe-key ul#ewel-recipe-list {
    margin: 0;
    display: flex;
}
.recipe-key ul#ewel-recipe-list li {
    list-style: none;
}
.recipe-key .col.span_12.recipe-after-title-wrapper {
    margin: 10px 0;
    padding: 10px;
    background-color: #edededc4;
}
.recipe-key span.ewel-recipe-icon {
    font-size: 14px !important;
}
#sidebar div#ewel-recipe-list_wrapper {
    background-color: #edededc4;
    padding: 15px 12px;
}
#sidebar div#ewel-recipe-list_wrapper ul#ewel-recipe-list {
    columns: 2;
    column-gap: 6px;
}

span.ewel-recipe-name {
    font-size: 15px;
    color: #000000;
    font-weight: 500;
}

@media only screen and (max-width: 1440px) {
    #sidebar div#ewel-recipe-list_wrapper ul#ewel-recipe-list {
        /*columns: 1;*/
        column-gap: unset;
    }
    #sidebar div#ewel-recipe-list_wrapper {
        padding: 17px;
    }
}

/*TASTY*/
.tasty-recipes-title  {
    font-family: var(--global-heading-font-family, inherit);
}

.tasty-recipes .category, .tasty-recipes .method,
.tasty-recipes .cuisine {
    display: none;
}
.tasty-recipes-notes-header {
    margin-top: 5px;
}

.tasty-recipe-ingredients h3, .tasty-recipes-ingredients h3, .tasty-recipe-instructions h3, .tasty-recipes-instructions h3, .tasty-recipes-equipment h3, .tasty-recipes-notes h3 {
    text-transform: none;
        font-family: var(--global-heading-font-family, inherit);
}

.tasty-recipes-notes h3 {
    margin-top: 10px !important;
}

.tasty-recipes-notes p, .tasty-recipes-notes ul {
    font-size: 1em;
}