/* Recipe Shortcodes [ingredients], [directions] */
.shortcode-ingredients {
    color: #736458;
    background-color: #FBF9E7;
    border-radius: 3px;
    margin: 30px 0;
    padding: 30px 30px 15px;
}

.shortcode-ingredients > h3,
.shortcode-directions > h3  {
    font-size: 20px;
    font-weight: bold;
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.shortcode-ingredients > ul {
     margin: 0;
}

.shortcode-ingredients > ul,
.shortcode-ingredients > ul > li {
    list-style: none;
}

.shortcode-ingredients > ul > li {
    padding: 0 0 13px;
    margin: 0 0 13px;
    border-bottom: 1px solid #e9e5c9;
    position: relative;
    cursor: pointer;
    line-height: 1.7;
}

.shortcode-ingredients > ul > li:hover  {
    text-decoration: line-through;
}
.shortcode-ingredients > ul > li p{
    display: inline !important;
}
.shortcode-ingredients > ul > li span.tick {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    margin: 0 10px 0 0;
    border-radius: 50%;
    border: 2px solid #DEDAB6;
    cursor: pointer;
    position: relative;
}

.shortcode-ingredients > ul > li span.tick.ticked {
    border: 2px solid #9AD093;
    background: #9AD093;

    -webkit-box-shadow: inset 0px 0px 0px 2px #FBF9E7;
    -moz-box-shadow: inset 0px 0px 0px 2px #FBF9E7;
    box-shadow: inset 0px 0px 0px 2px #FBF9E7;
}

.shortcode-ingredients > ul > li.ticked {
    text-decoration: line-through;
}


.shortcode-directions {
    margin: 40px 0;
}

.shortcode-directions > ol {
    counter-reset: count;
    line-height: normal;
    margin: 0;
}

.shortcode-directions > ol,
.shortcode-directions > ol > li {
    list-style: none;
}

.shortcode-directions > ol > li {
    position: relative;
    line-height: 1.8;
    /* min-height: 44px; nope too high @since 12-04-2019 22:24 */
    padding-left: 30px; /* was 40px */
    margin: 0 0 15px; /* halved */
}

.shortcode-directions > ol > li:before {
    counter-increment: count;
    content: counter(count);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    font-weight: bold;
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    line-height: 1.4;
    width: 35px;
    vertical-align: middle;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 20px;
}

.shortcode-directions > ol > li:last-child {
    margin: 0;
}