/* Minification failed. Returning unminified contents.
(11203,47): run-time error CSS1019: Unexpected token, found '!important'
(11203,47): run-time error CSS1042: Expected function, found '!important'
(11203,57): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(11204,44): run-time error CSS1019: Unexpected token, found '!important'
(11204,44): run-time error CSS1042: Expected function, found '!important'
(11204,54): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(11205,43): run-time error CSS1019: Unexpected token, found '!important'
(11205,43): run-time error CSS1042: Expected function, found '!important'
(11205,53): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(11206,42): run-time error CSS1019: Unexpected token, found '!important'
(11206,42): run-time error CSS1042: Expected function, found '!important'
(11206,52): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
 */
/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

@charset "UTF-8";

@font-face {
    font-family: 'YanoneKaffeesatz-Regular';
    src: url('../fonts/YanoneKaffeesatz-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'PlovdivSans';
    src: url('../fonts/Plovdiv/PlovdivSans.otf') format('opentype');
}

@font-face {
    font-family: 'PlovdivScript';
    src: url('../fonts/Plovdiv/PlovdivScript.otf') format('opentype');
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 .07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

.os-icon-social-pinterest {
    color: #cd1d1f;
}

.home .full_third .archive-item-deep-meta {
    display: none;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden], template {
    display: none;
}

a {
    background-color: transparent;
}

    a:active, a:hover {
        outline: 0;
    }

abbr[title] {
    border-bottom: 1px dotted;
}

b, strong {
    font-weight: 700;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: .67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

    button[disabled], html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner, input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

input {
    line-height: normal;
}

    input[type=checkbox], input[type=radio] {
        box-sizing: border-box;
        padding: 0;
    }

    input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
        height: auto;
    }

    input[type=search] {
        -webkit-appearance: textfield;
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }

        input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: 700;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
}

.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    zoom: 1;
    *display: inline;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

    .chosen-container * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .chosen-container .chosen-drop {
        position: absolute;
        top: 100%;
        left: -9999px;
        z-index: 1010;
        width: 100%;
        border: 1px solid #aaa;
        border-top: 0;
        background: #fff;
        box-shadow: 0 4px 5px rgba(0,0,0,0.15);
    }

    .chosen-container.chosen-with-drop .chosen-drop {
        left: 0;
    }

    .chosen-container a {
        cursor: pointer;
    }

    .chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
        margin-right: 4px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: normal;
        color: #999;
    }

        .chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
            content: ":";
            padding-left: 2px;
            vertical-align: top;
        }

.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 8px;
    height: 25px;
    border: 1px solid #aaa;
    border-radius: 5px;
    background-color: #fff;
    background: -webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),color-stop(100%,#f4f4f4));
    background: -webkit-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
    background: -moz-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
    background: -o-linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
    background: linear-gradient(top,#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
    background-clip: padding-box;
    box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0,0,0,0.1);
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    line-height: 24px;
}

.chosen-container-single .chosen-default {
    color: #999;
}

.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
    margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
    position: absolute;
    top: 6px;
    right: 26px;
    display: block;
    width: 12px;
    height: 12px;
    background: url('/img/chosen-sprite.png') -42px 1px no-repeat;
    font-size: 1px;
}

    .chosen-container-single .chosen-single abbr:hover {
        background-position: -42px -10px;
    }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
    background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%;
}

    .chosen-container-single .chosen-single div b {
        display: block;
        width: 100%;
        height: 100%;
        background: url('/img/chosen-sprite.png') no-repeat 0px 2px;
    }

.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 4px;
    white-space: nowrap;
}

    .chosen-container-single .chosen-search input[type="text"] {
        margin: 1px 0;
        padding: 4px 20px 4px 5px;
        width: 100%;
        height: auto;
        outline: 0;
        border: 1px solid #aaa;
        background: white url('/img/chosen-sprite.png') no-repeat 100% -20px;
        background: url('/img/chosen-sprite.png') no-repeat 100% -20px;
        font-size: 1em;
        font-family: sans-serif;
        line-height: normal;
        border-radius: 0;
    }

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0 0 4px 4px;
    background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    left: -9999px;
}

.chosen-container .chosen-results {
    color: #444;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 4px 0;
    padding: 0 0 0 4px;
    max-height: 240px;
    -webkit-overflow-scrolling: touch;
}

    .chosen-container .chosen-results li {
        display: none;
        margin: 0;
        padding: 5px 6px;
        list-style: none;
        line-height: 15px;
        word-wrap: break-word;
        -webkit-touch-callout: none;
    }

        .chosen-container .chosen-results li.active-result {
            display: list-item;
            cursor: pointer;
        }

        .chosen-container .chosen-results li.disabled-result {
            display: list-item;
            color: #ccc;
            cursor: default;
        }

        .chosen-container .chosen-results li.highlighted {
            background-color: #3875d7;
            background-image: -webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#3875d7),color-stop(90%,#2a62bc));
            background-image: -webkit-linear-gradient(#3875d7 20%,#2a62bc 90%);
            background-image: -moz-linear-gradient(#3875d7 20%,#2a62bc 90%);
            background-image: -o-linear-gradient(#3875d7 20%,#2a62bc 90%);
            background-image: linear-gradient(#3875d7 20%,#2a62bc 90%);
            color: #fff;
        }

        .chosen-container .chosen-results li.no-results {
            color: #777;
            display: list-item;
            background: #f4f4f4;
        }

        .chosen-container .chosen-results li.group-result {
            display: list-item;
            font-weight: bold;
            cursor: default;
        }

        .chosen-container .chosen-results li.group-option {
            padding-left: 15px;
        }

        .chosen-container .chosen-results li em {
            font-style: normal;
            text-decoration: underline;
        }

.chosen-container-multi .chosen-choices {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    height: auto !important;
    height: 1%;
    border: 1px solid #aaa;
    background-color: #fff;
    background-image: -webkit-gradient(linear,50% 0%,50% 100%,color-stop(1%,#eee),color-stop(15%,#fff));
    background-image: -webkit-linear-gradient(#eee 1%,#fff 15%);
    background-image: -moz-linear-gradient(#eee 1%,#fff 15%);
    background-image: -o-linear-gradient(#eee 1%,#fff 15%);
    background-image: linear-gradient(#eee 1%,#fff 15%);
    cursor: text;
}

    .chosen-container-multi .chosen-choices li {
        float: left;
        list-style: none;
    }

        .chosen-container-multi .chosen-choices li.search-field {
            margin: 0;
            padding: 0;
            white-space: nowrap;
        }

            .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
                margin: 1px 0;
                padding: 0;
                height: 25px;
                outline: 0;
                border: 0 !important;
                background: transparent !important;
                box-shadow: none;
                color: #999;
                font-size: 100%;
                font-family: sans-serif;
                line-height: normal;
                border-radius: 0;
            }

        .chosen-container-multi .chosen-choices li.search-choice {
            position: relative;
            margin: 3px 5px 3px 0;
            padding: 3px 20px 3px 5px;
            border: 1px solid #aaa;
            max-width: 100%;
            border-radius: 3px;
            background-color: #eee;
            background-image: -webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));
            background-image: -webkit-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);
            background-image: -moz-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);
            background-image: -o-linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);
            background-image: linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);
            background-size: 100% 19px;
            background-repeat: repeat-x;
            background-clip: padding-box;
            box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0,0,0,0.05);
            color: #333;
            line-height: 13px;
            cursor: default;
        }

            .chosen-container-multi .chosen-choices li.search-choice span {
                word-wrap: break-word;
            }

            .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
                position: absolute;
                top: 4px;
                right: 3px;
                display: block;
                width: 12px;
                height: 12px;
                background: url('/img/chosen-sprite.png') -42px 1px no-repeat;
                font-size: 1px;
            }

                .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
                    background-position: -42px -10px;
                }

        .chosen-container-multi .chosen-choices li.search-choice-disabled {
            padding-right: 5px;
            border: 1px solid #ccc;
            background-color: #e4e4e4;
            background-image: -webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));
            background-image: -webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);
            background-image: -moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);
            background-image: -o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);
            background-image: linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);
            color: #666;
        }

        .chosen-container-multi .chosen-choices li.search-choice-focus {
            background: #d4d4d4;
        }

            .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
                background-position: -42px -10px;
            }

.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default;
}

.chosen-container-active .chosen-single {
    border: 1px solid #5897fb;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #aaa;
    -moz-border-radius-bottomright: 0;
    border-bottom-right-radius: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-left-radius: 0;
    background-image: -webkit-gradient(linear,50% 0%,50% 100%,color-stop(20%,#eee),color-stop(80%,#fff));
    background-image: -webkit-linear-gradient(#eee 20%,#fff 80%);
    background-image: -moz-linear-gradient(#eee 20%,#fff 80%);
    background-image: -o-linear-gradient(#eee 20%,#fff 80%);
    background-image: linear-gradient(#eee 20%,#fff 80%);
    box-shadow: 0 1px 0 #fff inset;
}

    .chosen-container-active.chosen-with-drop .chosen-single div {
        border-left: none;
        background: transparent;
    }

        .chosen-container-active.chosen-with-drop .chosen-single div b {
            background-position: -18px 2px;
        }

.chosen-container-active .chosen-choices {
    border: 1px solid #5897fb;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

    .chosen-container-active .chosen-choices li.search-field input[type="text"] {
        color: #222 !important;
    }

.chosen-disabled {
    opacity: 0.5 !important;
    cursor: default;
}

    .chosen-disabled .chosen-single {
        cursor: default;
    }

    .chosen-disabled .chosen-choices .search-choice .search-choice-close {
        cursor: default;
    }

.chosen-rtl {
    text-align: right;
}

    .chosen-rtl .chosen-single {
        overflow: visible;
        padding: 0 8px 0 0;
    }

        .chosen-rtl .chosen-single span {
            margin-right: 0;
            margin-left: 26px;
            direction: rtl;
        }

    .chosen-rtl .chosen-single-with-deselect span {
        margin-left: 38px;
    }

    .chosen-rtl .chosen-single div {
        right: auto;
        left: 3px;
    }

    .chosen-rtl .chosen-single abbr {
        right: auto;
        left: 26px;
    }

    .chosen-rtl .chosen-choices li {
        float: right;
    }

        .chosen-rtl .chosen-choices li.search-field input[type="text"] {
            direction: rtl;
        }

        .chosen-rtl .chosen-choices li.search-choice {
            margin: 3px 5px 3px 0;
            padding: 3px 5px 3px 19px;
        }

            .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
                right: auto;
                left: 4px;
            }

    .chosen-rtl.chosen-container-single-nosearch .chosen-search, .chosen-rtl .chosen-drop {
        left: 9999px;
    }

    .chosen-rtl.chosen-container-single .chosen-results {
        margin: 0 0 4px 4px;
        padding: 0 4px 0 0;
    }

    .chosen-rtl .chosen-results li.group-option {
        padding-right: 15px;
        padding-left: 0;
    }

    .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
        border-right: none;
    }

    .chosen-rtl .chosen-search input[type="text"] {
        padding: 4px 5px 4px 20px;
        background: white url('/img/chosen-sprite.png') no-repeat -30px -20px;
        background: url('/img/chosen-sprite.png') no-repeat -30px -20px;
        direction: rtl;
    }

    .chosen-rtl.chosen-container-single .chosen-single div b {
        background-position: 6px 2px;
    }

    .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
        background-position: -12px 2px;
    }

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-resolution: 144dpi),only screen and (min-resolution: 1.5dppx) {
    .chosen-rtl .chosen-search input[type="text"], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-container-single .chosen-search input[type="text"], .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span {
        background-image: url('/img/chosen-sprite@2x.png') !important;
        background-size: 52px 37px !important;
        background-repeat: no-repeat !important;
    }
}

.print-w {
    display: none;
}

.single-print-ingredients {
    display: none !important;
}

.clear {
    clear: both;
}

.os-container {
    width: 1240px;
    margin: 0px auto;
}

.text-center {
    text-align: center;
}

.wp-caption-text {
    background-color: #e9f4fb;
    color: #4a5e6b;
    padding: 5px 10px;
    font-size: 12px;
}

a {
    text-decoration: none;
}

ul {
    margin: 0px;
    padding: 0px;
}

figure {
    margin: 0px;
}

.bordered-title {
    margin-bottom: 30px;
}

    .bordered-title .os-icon {
        margin-right: 20px;
        font-size: 40px;
        vertical-align: middle;
    }

    .bordered-title span {
        border-bottom: 2px solid rgba(0,0,0,0.9);
        padding-bottom: 5px;
        display: inline-block;
    }

.os-icon-social-facebook {
    color: #3b579d;
}

.os-icon-social-twitter {
    color: #5ea9dd;
}

.os-icon-social-instagram {
    color: #a4775c;
}

.os-icon-social-flickr {
    color: #0062dd;
}

.os-icon-social-googleplus {
    color: #df4b38;
}

.os-icon-social-pinterest {
    color: #cd1d1f;
}

blockquote {
    background-color: #edfafa;
    padding: 20px;
    position: relative;
    border-top: 5px solid #c5efef;
    font-size: 19px;
    padding-left: 100px;
    padding-right: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}

    blockquote:before {
        font-family: 'osfont';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\e60d";
        position: absolute;
        font-size: 52px;
        left: -15px;
        top: 14px;
    }

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    padding: 2px;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
    margin: 5px 5px 10px 5px;
    display: none;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    font-family: 'Lora', serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.428571429;
    color: rgba(0,0,0,0.8);
}

a {
    color: #2a88c5;
}

strong {
    font-weight: 700;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(0,0,0,0.9);
}

h1, h2, h3 {
    margin-top: 22px;
    margin-bottom: 11px;
}

h4, h5, h6 {
    margin-top: 11px;
    margin-bottom: 11px;
}

h1, .h1 {
    font-size: 44px;
}

h2, .h2 {
    font-size: 32px;
}

h3, .h3 {
    font-size: 24px;
}

h4, .h4 {
    font-size: 18px;
}

h5, .h5 {
    font-size: 16px;
}

h6, .h6 {
    font-size: 14px;
}

@font-face {
    font-family: 'osfont';
    src: url('/fonts/osfont/osfont.eot?z52hks');
    src: url('/fonts/osfont/osfont.eot?#iefixz52hks') format('embedded-opentype'), url('/fonts/osfont/osfont.woff2?z52hks') format('woff2'), url('/fonts/osfont/osfont.ttf?z52hks') format('truetype'), url('/fonts/osfont/osfont.woff?z52hks') format('woff'), url('/fonts/osfont/osfont.svg?z52hks#osfont') format('svg');
    font-weight: normal;
    font-style: normal;
}

.os-icon {
    font-family: 'osfont';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.os-icon-ribbon:before {
    content: "\e009";
}

.os-icon-clock2:before {
    content: "\e014";
}

.os-icon-printer:before {
    content: "\e020";
}

.os-icon-book:before {
    content: "\e030";
}

.os-icon-paper:before {
    content: "\e034";
}

.os-icon-head:before {
    content: "\e074";
}

.os-icon-share:before {
    content: "\e081";
}

.os-icon-power:before {
    content: "\e086";
}

.os-icon-bag:before {
    content: "\e106";
}

.os-icon-flag:before {
    content: "\e108";
}

.os-icon-write:before {
    content: "\e90c";
}

.os-icon-search:before {
    content: "\f002";
}

.os-icon-heart-full:before {
    content: "\f004";
}

.os-icon-star-full:before {
    content: "\f005";
}

.os-icon-star-full-outline:before {
    content: "\f006";
}

.os-icon-check:before {
    content: "\f00c";
}

.os-icon-clock:before {
    content: "\f017";
}

.os-icon-tags:before {
    content: "\f02c";
}

.os-icon-chevron-left:before {
    content: "\f053";
}

.os-icon-chevron-right:before {
    content: "\f054";
}

.os-icon-question-round:before {
    content: "\f059";
}

.os-icon-info-round:before {
    content: "\f05a";
}

.os-icon-plus:before {
    content: "\f067";
}

.os-icon-minus:before {
    content: "\f068";
}

.os-icon-eye:before {
    content: "\f06e";
}

.os-icon-chevron-up:before {
    content: "\f077";
}

.os-icon-chevron-down:before {
    content: "\f078";
}

.os-icon-star-half:before {
    content: "\f089";
}

.os-icon-hamburger:before {
    content: "\f0c9";
}

.os-icon-numbered-list:before {
    content: "\f0cb";
}

.os-icon-angle-left:before {
    content: "\f104";
}

.os-icon-angle-right:before {
    content: "\f105";
}

.os-icon-angle-top:before {
    content: "\f106";
}

.os-icon-angle-bottom:before {
    content: "\f107";
}

.os-icon-quotes-left:before {
    content: "\f10d";
}

.os-icon-quotes-right:before {
    content: "\f10e";
}

.os-icon-loading:before {
    content: "\f110";
}

.os-icon-social-vk:before {
    content: "\f189";
}

.os-icon-circle-o:before {
    content: "\f22d";
}

.os-icon-social-ok:before {
    content: "\f264";
}

.os-icon-thin-thumbs-down:before {
    content: "\e645";
}

.os-icon-thin-hamburger:before {
    content: "\e644";
}

.os-icon-thin-info:before {
    content: "\e631";
}

.os-icon-thin-question:before {
    content: "\e632";
}

.os-icon-thin-exit:before {
    content: "\e900";
}

.os-icon-thin-heart:before {
    content: "\e600";
}

.os-icon-thin-thumbs-up:before {
    content: "\e636";
}

.os-icon-thin-thumbs-down-inverse:before {
    content: "\e637";
}

.os-icon-thin-pantone:before {
    content: "\e648";
}

.os-icon-thin-users:before {
    content: "\e638";
}

.os-icon-thin-serve:before {
    content: "\e602";
}

.os-icon-thin-cook:before {
    content: "\e603";
}

.os-icon-thin-temperature:before {
    content: "\e800";
}

.os-icon-thin-book-bookmarked:before {
    content: "\e641";
}

.os-icon-thin-book:before {
    content: "\e604";
}

.os-icon-thin-book-closed:before {
    content: "\e642";
}

.os-icon-thin-glasses:before {
    content: "\e605";
}

.os-icon-thin-book-opened:before {
    content: "\e643";
}

.os-icon-thin-clock:before {
    content: "\e606";
}

.os-icon-thin-clock-busy:before {
    content: "\e63b";
}

.os-icon-thin-search:before {
    content: "\e63d";
}

.os-icon-thin-close-bordered:before {
    content: "\e905";
}

.os-icon-thin-close-big:before {
    content: "\e906";
}

.os-icon-thin-list:before {
    content: "\e609";
}

.os-icon-thin-paper-list:before {
    content: "\e60a";
}

.os-icon-thin-paper-holes-text:before {
    content: "\e646";
}

.os-icon-thin-paper-holes-list-squares:before {
    content: "\e647";
}

.os-icon-thin-zoom-in:before {
    content: "\e907";
}

.os-icon-thin-zoom-out:before {
    content: "\e908";
}

.os-icon-thin-share-alt:before {
    content: "\e613";
}

.os-icon-thin-plus:before {
    content: "\e901";
}

.os-icon-thin-minus:before {
    content: "\e902";
}

.os-icon-thin-close-round:before {
    content: "\e60b";
}

.os-icon-thin-left-arrow-round:before {
    content: "\e909";
}

.os-icon-thin-right-arrow-round:before {
    content: "\e90a";
}

.os-icon-thin-font-size-up:before {
    content: "\e649";
}

.os-icon-thin-quote-left:before {
    content: "\e60d";
}

.os-icon-thin-comment:before {
    content: "\e60e";
}

.os-icon-thin-comments:before {
    content: "\e60f";
}

.os-icon-thin-print:before {
    content: "\e64a";
}

.os-icon-thin-shopping-cart:before {
    content: "\e903";
}

.os-icon-thin-checkout-bag:before {
    content: "\e904";
}

.os-icon-social-vine:before {
    content: "\e610";
}

.os-icon-social-slack:before {
    content: "\e611";
}

.os-icon-social-medium:before {
    content: "\e612";
}

.os-icon-social-yelp2:before {
    content: "\e614";
}

.os-icon-social-stumbleupon:before {
    content: "\e615";
}

.os-icon-social-spotify:before {
    content: "\e616";
}

.os-icon-social-stackoverflow:before {
    content: "\e617";
}

.os-icon-social-github:before {
    content: "\e618";
}

.os-icon-social-deviantart:before {
    content: "\e619";
}

.os-icon-social-googleplus:before {
    content: "\e61a";
}

.os-icon-social-ebay:before {
    content: "\e61b";
}

.os-icon-social-instagram:before {
    content: "\e61c";
}

.os-icon-social-behance:before {
    content: "\e61d";
}

.os-icon-social-soundcloud:before {
    content: "\e61e";
}

.os-icon-social-pinterest:before {
    content: "\e61f";
}

.os-icon-social-blogger:before {
    content: "\e620";
}

.os-icon-social-stumbleupon2:before {
    content: "\e621";
}

.os-icon-social-technorati:before {
    content: "\e622";
}

.os-icon-social-picasa:before {
    content: "\e623";
}

.os-icon-social-rss:before {
    content: "\e624";
}

.os-icon-social-delicious:before {
    content: "\e625";
}

.os-icon-social-youtube:before {
    content: "\e626";
}

.os-icon-social-tumblr:before {
    content: "\e627";
}

.os-icon-social-vimeo:before {
    content: "\e628";
}

.os-icon-social-linkedin:before {
    content: "\e629";
}

.os-icon-social-digg:before {
    content: "\e62a";
}

.os-icon-social-facebook:before {
    content: "\e62b";
}

.os-icon-social-twitter:before {
    content: "\e62c";
}

.os-icon-social-flickr:before {
    content: "\e62d";
}

.os-icon-social-twitter2:before {
    content: "\e62e";
}

.os-icon-social-dribbble:before {
    content: "\e62f";
}

.os-icon-social-forrst:before {
    content: "\e630";
}

.os-icon-social-google-plus:before {
    content: "\e601";
}

.os-icon-instagram:before {
    content: "\e607";
}

.os-icon-pinterest:before {
    content: "\e608";
}

.os-icon-facebook:before {
    content: "\e60c";
}

.os-icon-twitter:before {
    content: "\e639";
}

.os-icon-dribbble:before {
    content: "\e63a";
}

.os-icon-basic-barcode:before {
    content: "\e63f";
}

.os-icon-basic-checkboxes:before {
    content: "\e640";
}

.os-icon-basic-heart-plus:before {
    content: "\e633";
}

.os-icon-basic-heart-minus:before {
    content: "\e634";
}

.os-icon-basic-info-round:before {
    content: "\e635";
}

.os-icon-basic-delete:before {
    content: "\e90b";
}

.os-icon-basic-mail-envelope:before {
    content: "\e63c";
}

.os-icon-basic-mail-send:before {
    content: "\e63e";
}

@keyframes spinningAnimation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@-webkit-keyframes spinningAnimation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.os-btn {
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    border-radius: 6px;
    text-transform: uppercase;
    vertical-align: middle;
}

.os-btn-primary {
    color: #fff;
    background-color: #2abe96;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 5px 0px 0px #219475;
    box-shadow: 0px 5px 0px 0px #219475;
    border: 1px solid #2abe96;
}

.os-btn-lg {
    padding: 8px 25px;
    font-size: 22px;
}

.os-btn-md {
    padding: 6px 20px;
    font-size: 19px;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 3px 0px 0px #219475;
    box-shadow: 0px 3px 0px 0px #219475;
}

.mobile-header-w {
    display: none;
}

    .mobile-header-w .mobile-header {
        display: table;
        width: 100%;
        table-layout: fixed;
        background-color: #fff;
    }

        .mobile-header-w .mobile-header .mobile-menu-toggler {
            width: 80px;
            font-size: 40px;
            display: table-cell;
            vertical-align: middle;
            padding-left: 30px;
        }

        .mobile-header-w .mobile-header .mobile-logo {
            vertical-align: middle;
            padding: 20px 0px;
            display: table-cell;
            text-align: center;
        }

        .mobile-header-w .mobile-header .mobile-menu-search-toggler {
            vertical-align: middle;
            width: 80px;
            font-size: 40px;
            display: table-cell;
            text-align: right;
            padding-right: 30px;
        }

    .mobile-header-w .mobile-header-menu-w {
        display: none;
        background-color: #000;
        text-align: center;
        padding: 20px 0px;
    }

        .mobile-header-w .mobile-header-menu-w.active {
            display: block;
        }

        .mobile-header-w .mobile-header-menu-w ul {
            padding: 0px;
            margin: 0px;
        }

            .mobile-header-w .mobile-header-menu-w ul li a {
                color: #fff;
                padding: 7px 10px;
                border-bottom: 1px solid rgba(0,0,0,0.1);
                display: block;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 22px;
            }

            .mobile-header-w .mobile-header-menu-w ul.sub-menu {
                background-color: rgba(255,255,255,0.1);
                display: none;
            }

        .mobile-header-w .mobile-header-menu-w > ul > li.menu-item-has-children {
            position: relative;
            padding: 7px;
        }

            .mobile-header-w .mobile-header-menu-w > ul > li.menu-item-has-children > a {
                display: inline;
            }

            .mobile-header-w .mobile-header-menu-w > ul > li.menu-item-has-children > span {
                font-size: 20px;
                color: #fff;
                font-weight: 600;
                position: relative;
                left: 10px;
                float: left;
                top: 2px;
            }

            .mobile-header-w .mobile-header-menu-w > ul > li.menu-item-has-children .sub-menu .menu-item-has-children {
                position: relative;
            }

                .mobile-header-w .mobile-header-menu-w > ul > li.menu-item-has-children .sub-menu .menu-item-has-children > a:before {
                    font-family: 'osfont';
                    speak: none;
                    font-style: normal;
                    font-weight: normal;
                    font-variant: normal;
                    text-transform: none;
                    line-height: 1;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    content: "\f067";
                    position: absolute;
                    left: 15px;
                    font-size: 9px;
                    top: 20px;
                    color: #fff;
                }

            .mobile-header-w .mobile-header-menu-w > ul > li.menu-item-has-children.active > .sub-menu {
                display: block;
            }

                .mobile-header-w .mobile-header-menu-w > ul > li.menu-item-has-children.active > .sub-menu li.active > .sub-menu {
                    display: block;
                }

        .mobile-header-w .mobile-header-menu-w.color-scheme-light ul li a {
            color: rgba(0,0,0,0.9);
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .mobile-header-w .mobile-header-menu-w.color-scheme-light ul.sub-menu {
            background-color: rgba(0,0,0,0.1);
        }

        .mobile-header-w .mobile-header-menu-w.color-scheme-light > ul > li.menu-item-has-children > a:before {
            color: rgba(0,0,0,0.8);
        }

        .mobile-header-w .mobile-header-menu-w.color-scheme-light > ul > li.menu-item-has-children .sub-menu .menu-item-has-children > a:before {
            color: rgba(0,0,0,0.8);
        }

.top-profile-links-box-w {
    position: relative;
}

.top-profile-links-box {
    position: absolute;
    z-index: 9997;
    top: -67px;
    right: 0px;
    background-color: #99317d;
    padding: 7px 10px;
    border-radius: 0px 0px 6px 6px;
}

    .top-profile-links-box ul {
        list-style: none;
    }

        .top-profile-links-box ul li {
            display: inline-block;
            border-right: 1px solid rgba(255,255,255,0.3);
            padding: 0px 20px;
        }

            .top-profile-links-box ul li a, .top-profile-links-box ul li span {
                color: #fff;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                vertical-align: middle;
                text-transform: uppercase;
                line-height: 1;
                display: inline-block;
            }

                .top-profile-links-box ul li a .os-icon, .top-profile-links-box ul li span .os-icon {
                    vertical-align: middle;
                    font-size: 16px;
                    margin-right: 10px;
                }

            .top-profile-links-box ul li span {
                color: #eee;
            }

                .top-profile-links-box ul li span strong {
                    font-weight: 400;
                    color: #fff;
                }

            .top-profile-links-box ul li:last-child {
                border-right: none;
            }

.fixed-header-w {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    position: fixed;
    z-index: 9998;
    background-color: #fff;
    padding: 5px 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
}

    .fixed-header-w .fixed-header-i {
        display: table;
        table-layout: fixed;
        width: 100%;
    }

    .fixed-header-w .fixed-logo-w {
        display: table-cell;
        vertical-align: middle;
    }

        .fixed-header-w .fixed-logo-w img {
            max-width: 100%;
            height: auto;
            min-height: 50px;
        }

    .fixed-header-w .fixed-search-trigger-w {
        display: table-cell;
        vertical-align: middle;
        width: 80px;
        text-align: right;
        font-size: 28px;
        padding-right: 20px;
    }

    .fixed-header-w .fixed-top-menu-w {
        vertical-align: middle;
        display: table-cell;
        padding-left: 40px;
    }

        .fixed-header-w .fixed-top-menu-w ul {
            list-style: none;
        }

            .fixed-header-w .fixed-top-menu-w ul.sub-menu {
                display: none;
                padding: 0px;
                background-color: #fff;
                z-index: 9999;
            }

                .fixed-header-w .fixed-top-menu-w ul.sub-menu li {
                    min-width: 200px;
                    border-bottom: 1px solid rgba(255,255,255,0.1);
                    position: relative;
                }

                    .fixed-header-w .fixed-top-menu-w ul.sub-menu li a {
                        padding: 12px 35px;
                        font-size: 18px;
                        display: block;
                        white-space: nowrap;
                        color: #fff;
                        position: relative;
                    }

                        .fixed-header-w .fixed-top-menu-w ul.sub-menu li a:hover {
                            background-color: rgba(0,0,0,0.1);
                        }

                    .fixed-header-w .fixed-top-menu-w ul.sub-menu li:last-child {
                        border-bottom: none;
                    }

        .fixed-header-w .fixed-top-menu-w > ul > li {
            display: inline-block;
            padding: 0px 20px;
            border-right: 1px solid rgba(0,0,0,0.1);
            position: relative;
        }

            .fixed-header-w .fixed-top-menu-w > ul > li:first-child {
                border-left: 1px solid rgba(0,0,0,0.1);
            }

            .fixed-header-w .fixed-top-menu-w > ul > li > a {
                font-size: 24px;
                color: rgba(0,0,0,0.9);
            }

            .fixed-header-w .fixed-top-menu-w > ul > li a {
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                text-transform: uppercase;
            }

            .fixed-header-w .fixed-top-menu-w > ul > li.menu-item-has-children {
                padding-left: 35px;
            }

                .fixed-header-w .fixed-top-menu-w > ul > li.menu-item-has-children > a:before {
                    font-family: 'osfont';
                    speak: none;
                    font-style: normal;
                    font-weight: normal;
                    font-variant: normal;
                    text-transform: none;
                    line-height: 1;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    content: "\f067";
                    position: absolute;
                    font-size: 9px;
                    left: 15px;
                    top: 50%;
                    -webkit-transform: translateY(-50%);
                    -moz-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    -o-transform: translateY(-50%);
                    -webkit-transition: all 0.2s ease;
                    transition: all 0.2s ease;
                }

                .fixed-header-w .fixed-top-menu-w > ul > li.menu-item-has-children .sub-menu .menu-item-has-children > a:before {
                    content: "\f054";
                    font-family: 'osfont';
                    speak: none;
                    font-style: normal;
                    font-weight: normal;
                    font-variant: normal;
                    text-transform: none;
                    line-height: 1;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    font-size: 12px;
                    position: absolute;
                    right: 15px;
                    top: 50%;
                    -webkit-transform: translateY(-50%);
                    -moz-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    -o-transform: translateY(-50%);
                    -webkit-transition: all 0.4s ease;
                    transition: all 0.4s ease;
                }

                .fixed-header-w .fixed-top-menu-w > ul > li.menu-item-has-children.active > .sub-menu {
                    display: block;
                    position: absolute;
                    left: -10px;
                }

                    .fixed-header-w .fixed-top-menu-w > ul > li.menu-item-has-children.active > .sub-menu li.active > .sub-menu {
                        display: block;
                        position: absolute;
                        right: -100%;
                        top: 0px;
                    }

                    .fixed-header-w .fixed-top-menu-w > ul > li.menu-item-has-children.active > .sub-menu li.active.active-left > .sub-menu {
                        right: auto;
                        left: -100%;
                    }

            .fixed-header-w .fixed-top-menu-w > ul > li > a {
                -webkit-transition: all 0.4s ease;
                transition: all 0.4s ease;
            }

            .fixed-header-w .fixed-top-menu-w > ul > li:last-child > a {
                border-bottom: none;
            }

    .fixed-header-w.color-scheme-dark .fixed-top-menu-w > ul > li {
        border-right-color: rgba(255,255,255,0.15);
    }

        .fixed-header-w.color-scheme-dark .fixed-top-menu-w > ul > li:first-child {
            border-left-color: rgba(255,255,255,0.15);
        }

        .fixed-header-w.color-scheme-dark .fixed-top-menu-w > ul > li > a {
            color: rgba(255,255,255,0.9);
        }

    .fixed-header-w.color-scheme-dark .search-trigger {
        color: rgba(255,255,255,0.7);
    }

        .fixed-header-w.color-scheme-dark .search-trigger:hover i {
            color: #fff;
        }

body.fix-top-menu .fixed-header-w {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.main-header {
    background-color: #fff;
    display: table;
    padding: 10px 0px;
    border-radius: 6px 6px 0px 0px;
    position: relative;
    width: 100%;
    table-layout: fixed;
}

    .main-header .logo {
        display: table-cell;
        vertical-align: middle;
        padding: 0px 50px;
        text-align: left;
        position: relative;
    }

        .main-header .logo .edit-link {
            position: absolute;
            top: -30px;
            left: 0px;
            background-color: red;
            padding: 2px 10px;
            font-size: 16px;
        }

            .main-header .logo .edit-link a {
                color: #fff;
                line-height: 20px;
                font-size: 16px;
                text-transform: uppercase;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
            }

        .main-header .logo a {
            display: block;
        }

            .main-header .logo a img {
                display: block;
                /*max-width: 100%;*/
                height: auto;
                /*width: 140px;*/
                margin-left: -33px;
            }

    .main-header .top-menu {
        display: table-cell;
        vertical-align: middle;
        text-align: left;
    }

        .main-header .top-menu ul {
            margin: 0px;
            padding: 0px;
            padding-left: 30px;
            list-style: none;
        }

            .main-header .top-menu ul li {
                position: relative;
            }

                .main-header .top-menu ul li a {
                    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                    font-size: 25px;
                    color: #111;
                    text-decoration: none;
                    text-transform: uppercase;
                }

        .main-header .top-menu > ul {
            float: left;
            padding-left: 0px;
        }

            .main-header .top-menu > ul > li {
                float: left;
                margin-right: 13px;
                position: relative;
                border-left: 1px solid rgba(0,0,0,0.08);
                padding-left: 13px;
            }

                .main-header .top-menu > ul > li > a {
                    padding: 7px 0px;
                    display: inline-block;
                }

                .main-header .top-menu > ul > li.menu-item-has-children {
                    padding-left: 30px;
                }

                    .main-header .top-menu > ul > li.menu-item-has-children > a:before {
                        font-family: 'osfont';
                        speak: none;
                        font-style: normal;
                        font-weight: normal;
                        font-variant: normal;
                        text-transform: none;
                        line-height: 1;
                        -webkit-font-smoothing: antialiased;
                        -moz-osx-font-smoothing: grayscale;
                        content: "\f067";
                        position: absolute;
                        font-size: 9px;
                        left: 15px;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                        -moz-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                        -o-transform: translateY(-50%);
                        -webkit-transition: all 0.2s ease;
                        transition: all 0.2s ease;
                    }

                    .main-header .top-menu > ul > li.menu-item-has-children .sub-menu .menu-item-has-children > a:before {
                        content: "\f054";
                        font-family: 'osfont';
                        speak: none;
                        font-style: normal;
                        font-weight: normal;
                        font-variant: normal;
                        text-transform: none;
                        line-height: 1;
                        -webkit-font-smoothing: antialiased;
                        -moz-osx-font-smoothing: grayscale;
                        font-size: 12px;
                        position: absolute;
                        right: 15px;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                        -moz-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                        -o-transform: translateY(-50%);
                        -webkit-transition: all 0.4s ease;
                        transition: all 0.4s ease;
                    }

                    .main-header .top-menu > ul > li.menu-item-has-children.active > .sub-menu {
                        display: block;
                        position: absolute;
                        left: -10px;
                    }

                        .main-header .top-menu > ul > li.menu-item-has-children.active > .sub-menu li.active > .sub-menu {
                            display: block;
                            position: absolute;
                            right: -100%;
                            top: 0px;
                        }

                        .main-header .top-menu > ul > li.menu-item-has-children.active > .sub-menu li.active.active-left > .sub-menu {
                            right: auto;
                            left: -100%;
                        }

                .main-header .top-menu > ul > li > a {
                    -webkit-transition: all 0.4s ease;
                    transition: all 0.4s ease;
                }

                .main-header .top-menu > ul > li:last-child > a {
                    border-bottom: none;
                }

        .main-header .top-menu ul.sub-menu {
            display: none;
            padding: 0px;
            background-color: #fff;
            z-index: 9999;
        }

            .main-header .top-menu ul.sub-menu li {
                min-width: 200px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

                .main-header .top-menu ul.sub-menu li a {
                    padding: 12px 35px;
                    font-size: 18px;
                    display: block;
                    white-space: nowrap;
                    color: #fff;
                }

                    .main-header .top-menu ul.sub-menu li a:hover {
                        background-color: rgba(0,0,0,0.1);
                    }

                .main-header .top-menu ul.sub-menu li:last-child {
                    border-bottom: none;
                }

    .main-header .search-trigger {
        display: table-cell;
        vertical-align: middle;
        font-size: 36px;
        width: 120px;
        text-align: right;
        padding-right: 50px;
    }

        .main-header .search-trigger i {
            -webkit-transition: all 0.5s ease;
            transition: all 0.5s ease;
        }

        .main-header .search-trigger:hover i {
            -webkit-transform: rotate(360deg);
            -moz-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            -o-transform: rotate(360deg);
            cursor: pointer;
            color: #000;
        }

    .main-header.color-scheme-dark .top-menu > ul > li {
        border-left: 1px solid rgba(255,255,255,0.1);
    }

        .main-header.color-scheme-dark .top-menu > ul > li > a {
            color: rgba(255,255,255,0.9);
        }

    .main-header.color-scheme-dark .search-trigger {
        color: rgba(255,255,255,0.7);
    }

        .main-header.color-scheme-dark .search-trigger:hover i {
            color: #fff;
        }

.main-header-w.main-header-version_2 .main-header {
    display: block;
}

    .main-header-w.main-header-version_2 .main-header .top-logo-w {
        text-align: center;
        padding: 20px;
        padding-bottom: 30px;
        position: relative;
    }

        .main-header-w.main-header-version_2 .main-header .top-logo-w .edit-link {
            position: absolute;
            bottom: 0px;
            left: 0px;
            background-color: red;
            color: #fff;
            text-transform: uppercase;
            font-size: 12px;
            padding: 5px 10px;
            display: inline-block;
        }

            .main-header-w.main-header-version_2 .main-header .top-logo-w .edit-link a {
                color: #fff;
            }

    .main-header-w.main-header-version_2 .main-header .top-menu-w {
        padding: 0px;
    }

    .main-header-w.main-header-version_2 .main-header .social-trigger-w {
        position: absolute;
        z-index: 9997;
        font-size: 36px;
        left: 30px;
        top: 10px;
    }

        .main-header-w.main-header-version_2 .main-header .social-trigger-w:before, .main-header-w.main-header-version_2 .main-header .social-trigger-w:after {
            content: " ";
            display: table;
        }

        .main-header-w.main-header-version_2 .main-header .social-trigger-w:after {
            clear: both;
        }

        .main-header-w.main-header-version_2 .main-header .social-trigger-w .social-trigger {
            float: left;
        }

            .main-header-w.main-header-version_2 .main-header .social-trigger-w .social-trigger i {
                -webkit-transition: all 0.2s ease;
                transition: all 0.2s ease;
                display: inline-block;
            }

            .main-header-w.main-header-version_2 .main-header .social-trigger-w .social-trigger:hover i {
                cursor: pointer;
            }

        .main-header-w.main-header-version_2 .main-header .social-trigger-w .bar-social {
            float: left;
            list-style: none;
            padding: 0px;
            margin: 0px;
            padding-left: 20px;
            margin-left: 20px;
            border-left: 1px solid rgba(0,0,0,0.2);
            -webkit-transform: translateY(-20px);
            -moz-transform: translateY(-20px);
            -ms-transform: translateY(-20px);
            -o-transform: translateY(-20px);
            -webkit-opacity: 0;
            -moz-opacity: 0;
            opacity: 0;
            -webkit-transition: all 0.6s ease;
            transition: all 0.6s ease;
        }

            .main-header-w.main-header-version_2 .main-header .social-trigger-w .bar-social li {
                float: left;
                margin-right: 10px;
                -webkit-opacity: 0;
                -moz-opacity: 0;
                opacity: 0;
                -webkit-transition: all 0.4s ease;
                transition: all 0.4s ease;
                -webkit-transform: translateX(-20px);
                -moz-transform: translateX(-20px);
                -ms-transform: translateX(-20px);
                -o-transform: translateX(-20px);
            }

                .main-header-w.main-header-version_2 .main-header .social-trigger-w .bar-social li:nth-child(1) {
                    -webkit-transition-delay: 0.1s;
                    transition-delay: 0.1s;
                }

                .main-header-w.main-header-version_2 .main-header .social-trigger-w .bar-social li:nth-child(2) {
                    -webkit-transition-delay: 0.2s;
                    transition-delay: 0.2s;
                }

                .main-header-w.main-header-version_2 .main-header .social-trigger-w .bar-social li:nth-child(3) {
                    -webkit-transition-delay: 0.3s;
                    transition-delay: 0.3s;
                }

                .main-header-w.main-header-version_2 .main-header .social-trigger-w .bar-social li:nth-child(4) {
                    -webkit-transition-delay: 0.4s;
                    transition-delay: 0.4s;
                }

                .main-header-w.main-header-version_2 .main-header .social-trigger-w .bar-social li:nth-child(5) {
                    -webkit-transition-delay: 0.5s;
                    transition-delay: 0.5s;
                }

                .main-header-w.main-header-version_2 .main-header .social-trigger-w .bar-social li:nth-child(6) {
                    -webkit-transition-delay: 0.6s;
                    transition-delay: 0.6s;
                }

                .main-header-w.main-header-version_2 .main-header .social-trigger-w .bar-social li:nth-child(7) {
                    -webkit-transition-delay: 0.7s;
                    transition-delay: 0.7s;
                }

                .main-header-w.main-header-version_2 .main-header .social-trigger-w .bar-social li:nth-child(8) {
                    -webkit-transition-delay: 0.8s;
                    transition-delay: 0.8s;
                }

        .main-header-w.main-header-version_2 .main-header .social-trigger-w:hover .bar-social {
            -webkit-opacity: 1;
            -moz-opacity: 1;
            opacity: 1;
            -webkit-transform: translateY(0px);
            -moz-transform: translateY(0px);
            -ms-transform: translateY(0px);
            -o-transform: translateY(0px);
        }

            .main-header-w.main-header-version_2 .main-header .social-trigger-w:hover .bar-social li {
                -webkit-opacity: 1;
                -moz-opacity: 1;
                opacity: 1;
                -webkit-transform: translateX(0px);
                -moz-transform: translateX(0px);
                -ms-transform: translateX(0px);
                -o-transform: translateX(0px);
            }

    .main-header-w.main-header-version_2 .main-header .logo {
        display: block;
        margin: 0px auto;
    }

    .main-header-w.main-header-version_2 .main-header .top-menu {
        display: block;
        text-align: center;
        border-top: 1px solid rgba(0,0,0,0.1);
        padding-top: 15px;
        padding-bottom: 5px;
    }

        .main-header-w.main-header-version_2 .main-header .top-menu > ul {
            float: none;
        }

            .main-header-w.main-header-version_2 .main-header .top-menu > ul > li {
                display: inline-block;
                float: none;
                border-right: 1px solid #f0f0f0;
                padding-right: 20px;
                padding-left: 0px;
                margin-right: 10px;
                margin-left: 10px;
                border-left: none;
                text-align: left;
            }

                .main-header-w.main-header-version_2 .main-header .top-menu > ul > li > a {
                    padding: 1px 0px;
                }

                .main-header-w.main-header-version_2 .main-header .top-menu > ul > li.menu-item-has-children {
                    padding-left: 15px;
                }

                    .main-header-w.main-header-version_2 .main-header .top-menu > ul > li.menu-item-has-children > a:before {
                        top: 15px;
                        left: 0px;
                    }

    .main-header-w.main-header-version_2 .main-header .search-trigger {
        display: block;
        position: absolute;
        top: 10px;
        right: 30px;
        width: auto;
        padding: 0px;
    }

    .main-header-w.main-header-version_2 .main-header.color-scheme-dark .top-menu {
        border-top-color: rgba(255,255,255,0.1);
    }

        .main-header-w.main-header-version_2 .main-header.color-scheme-dark .top-menu > ul > li {
            border-right-color: rgba(255,255,255,0.2);
        }

    .main-header-w.main-header-version_2 .main-header.color-scheme-dark .social-trigger {
        color: rgba(255,255,255,0.7);
    }

        .main-header-w.main-header-version_2 .main-header.color-scheme-dark .social-trigger:hover i {
            color: #fff;
        }

.top-bar {
    background-color: #fff;
    border-top: 1px solid rgba(0,0,0,0.1);
    position: relative;
}

    .top-bar:before, .top-bar:after {
        content: " ";
        display: table;
    }

    .top-bar:after {
        clear: both;
    }

    .top-bar.bordered {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .top-bar .edit-post-link {
        position: absolute;
        top: 5px;
        right: 5px;
    }

        .top-bar .edit-post-link a {
            display: inline-block;
            padding: 5px 10px;
            background-color: #ae2b2b;
            color: #fff;
            text-transform: uppercase;
            font-size: 11px;
        }

    .top-bar .bar-breadcrumbs, .top-bar .bbp-breadcrumb {
        float: left;
        list-style: none;
        margin: 0px;
        padding: 25px 0px 25px 50px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
    }

        .top-bar .bar-breadcrumbs p, .top-bar .bbp-breadcrumb p {
            margin: 0px;
        }

        .top-bar .bar-breadcrumbs li, .top-bar .bbp-breadcrumb li {
            float: left;
            margin-right: 20px;
            font-size: 20px;
            color: rgba(0,0,0,0.5);
        }

            .top-bar .bar-breadcrumbs li a, .top-bar .bbp-breadcrumb li a {
                color: rgba(0,0,0,0.8);
                position: relative;
                display: inline-block;
            }

                .top-bar .bar-breadcrumbs li a:hover, .top-bar .bbp-breadcrumb li a:hover {
                    text-decoration: underline;
                }

                .top-bar .bar-breadcrumbs li a:after, .top-bar .bbp-breadcrumb li a:after {
                    font-family: 'osfont';
                    speak: none;
                    font-style: normal;
                    font-weight: normal;
                    font-variant: normal;
                    text-transform: none;
                    line-height: 1;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    content: "\f105";
                    position: absolute;
                    right: -12px;
                    top: 6px;
                    font-size: 12px;
                }

        .top-bar .bar-breadcrumbs p, .top-bar .bbp-breadcrumb p {
            float: left;
        }

            .top-bar .bar-breadcrumbs p .bbp-breadcrumb-sep, .top-bar .bbp-breadcrumb p .bbp-breadcrumb-sep {
                display: none;
            }

            .top-bar .bar-breadcrumbs p span, .top-bar .bbp-breadcrumb p span {
                margin-right: 20px;
                font-size: 20px;
                color: rgba(0,0,0,0.5);
                float: left;
            }

            .top-bar .bar-breadcrumbs p a, .top-bar .bbp-breadcrumb p a {
                float: left;
                margin-right: 20px;
                font-size: 20px;
                color: rgba(0,0,0,0.5);
                color: rgba(0,0,0,0.8);
                position: relative;
            }

                .top-bar .bar-breadcrumbs p a:hover, .top-bar .bbp-breadcrumb p a:hover {
                    text-decoration: underline;
                }

                .top-bar .bar-breadcrumbs p a:after, .top-bar .bbp-breadcrumb p a:after {
                    font-family: 'osfont';
                    speak: none;
                    font-style: normal;
                    font-weight: normal;
                    font-variant: normal;
                    text-transform: none;
                    line-height: 1;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    content: "\f105";
                    position: absolute;
                    right: -12px;
                    top: 6px;
                    font-size: 12px;
                }

    .top-bar .bar-social {
        float: right;
        list-style: none;
        margin: 0px;
        padding: 17px 50px 17px 0px;
    }

        .top-bar .bar-social li {
            float: left;
            margin-left: 10px;
        }

            .top-bar .bar-social li a {
                text-decoration: none;
                font-size: 32px;
            }

.dropdown-menu-rounded-corners .main-header-w ul.sub-menu, .dropdown-menu-rounded-corners .fixed-header-w ul.sub-menu {
    border-radius: 6px;
}

    .dropdown-menu-rounded-corners .main-header-w ul.sub-menu li:first-child a, .dropdown-menu-rounded-corners .fixed-header-w ul.sub-menu li:first-child a {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .dropdown-menu-rounded-corners .main-header-w ul.sub-menu li:last-child a, .dropdown-menu-rounded-corners .fixed-header-w ul.sub-menu li:last-child a {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }

.dropdown-menu-color-scheme-light .main-header-w ul.sub-menu, .dropdown-menu-color-scheme-light .fixed-header-w ul.sub-menu {
    -webkit-box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.2);
}

    .dropdown-menu-color-scheme-light .main-header-w ul.sub-menu li, .dropdown-menu-color-scheme-light .fixed-header-w ul.sub-menu li {
        border-bottom-color: rgba(0,0,0,0.1);
    }

        .dropdown-menu-color-scheme-light .main-header-w ul.sub-menu li a, .dropdown-menu-color-scheme-light .fixed-header-w ul.sub-menu li a {
            color: rgba(0,0,0,0.8);
        }

            .dropdown-menu-color-scheme-light .main-header-w ul.sub-menu li a:hover, .dropdown-menu-color-scheme-light .fixed-header-w ul.sub-menu li a:hover {
                background-color: rgba(0,0,0,0.05);
                color: #000;
            }

        .dropdown-menu-color-scheme-light .main-header-w ul.sub-menu li:last-child, .dropdown-menu-color-scheme-light .fixed-header-w ul.sub-menu li:last-child {
            border-bottom: none;
        }

.dropdown-menu-color-scheme-dark .main-header-w ul.sub-menu li, .dropdown-menu-color-scheme-dark .fixed-header-w ul.sub-menu li {
    border-bottom-color: rgba(255,255,255,0.1);
}

    .dropdown-menu-color-scheme-dark .main-header-w ul.sub-menu li a, .dropdown-menu-color-scheme-dark .fixed-header-w ul.sub-menu li a {
        color: rgba(255,255,255,0.8);
    }

        .dropdown-menu-color-scheme-dark .main-header-w ul.sub-menu li a:hover, .dropdown-menu-color-scheme-dark .fixed-header-w ul.sub-menu li a:hover {
            background-color: rgba(255,255,255,0.05);
            color: #fff;
        }

    .dropdown-menu-color-scheme-dark .main-header-w ul.sub-menu li:last-child, .dropdown-menu-color-scheme-dark .fixed-header-w ul.sub-menu li:last-child {
        border-bottom: none;
    }

body {
    background-color: #eef3f2;
}

.page-content-field-w {
    padding: 50px;
    background-color: #fff;
}

    .page-content-field-w + .archive-posts-w {
        padding-top: 0px;
    }

.archive-posts-w + .page-content-field-w {
    padding-top: 0px;
}

.all-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

article.post img, article.page img {
    max-width: 100%;
    height: auto;
}

.page-content ul, .page-content ol, .single-content ul, .single-content ol {
    padding-left: 40px;
    margin-bottom: 1em;
    margin-top: 1em;
}

.my-recipes-list {
    list-style: none;
    margin-top: 20px;
}

    .my-recipes-list li {
        padding-bottom: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0,0,0,0.1);
        display: table;
        width: 100%;
        table-layout: fixed;
    }

        .my-recipes-list li .my-recipe-img {
            display: table-cell;
            width: 150px;
            vertical-align: top;
        }

            .my-recipes-list li .my-recipe-img img {
                max-width: 100%;
                height: auto;
                border-radius: 6px;
            }

        .my-recipes-list li .my-recipe-info {
            vertical-align: top;
            display: table-cell;
            padding-left: 50px;
            padding-top: 10px;
            position: relative;
        }

            .my-recipes-list li .my-recipe-info h3 {
                margin-top: 0px;
            }

                .my-recipes-list li .my-recipe-info h3 a {
                    color: rgba(0,0,0,0.9);
                }

        .my-recipes-list li .my-recipe-status {
            font-size: 14px;
            margin-bottom: 10px;
        }

            .my-recipes-list li .my-recipe-status span {
                background-color: #fff4b8;
                padding: 3px;
                display: inline-block;
            }

            .my-recipes-list li .my-recipe-status.status-publish span {
                background-color: #dbf3c6;
            }

        .my-recipes-list li .edit-my-recipe-link {
            display: inline-block;
            color: rgba(0,0,0,0.8);
            background: #eee;
            padding: 10px 15px;
            font-size: 14px;
            margin-top: 20px;
        }

            .my-recipes-list li .edit-my-recipe-link .os-icon {
                margin-right: 5px;
            }

.read-comments-link {
    font-size: 16px;
    background-color: #d3dbe0;
    color: #40494f;
    padding: 1px 5px;
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.1);
    border: 1px solid #828f98;
    border-bottom-color: #5d6971;
    margin-left: 15px;
    padding: 5px 7px;
}

.single-post-comments-w {
    background-color: #fff;
}

    .single-post-comments-w.with-ads:before, .single-post-comments-w.with-ads:after {
        content: " ";
        display: table;
    }

    .single-post-comments-w.with-ads:after {
        clear: both;
    }

    .single-post-comments-w.with-ads .single-post-comments {
        padding: 50px;
        width: 70%;
        float: left;
    }

        .single-post-comments-w.with-ads .single-post-comments.hide-them .comment-list {
            display: none;
        }

    .single-post-comments-w.with-ads .single-post-comments-sidebar {
        width: 30%;
        padding-top: 50px !important;
        padding-right: 20px;
        float: left;
    }

        .single-post-comments-w.with-ads .single-post-comments-sidebar img {
            max-width: 100%;
            height: auto;
        }

.comment-list, .children {
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-top: 40px;
    margin-bottom: 40px;
}

    .comment-list .comment, .children .comment {
        position: relative;
        padding-left: 80px;
        padding-bottom: 20px;
        padding-top: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

        .comment-list .comment p, .children .comment p {
            margin-top: 10px;
        }

        .comment-list .comment a, .children .comment a {
            color: rgba(0,0,0,0.8);
        }

        .comment-list .comment .comment-edit-link, .children .comment .comment-edit-link {
            text-transform: none;
            padding: 2px 4px;
            background-color: #ec5a5a;
            color: #fff;
            margin-left: 10px;
        }

        .comment-list .comment:last-child, .children .comment:last-child {
            border-bottom: none;
            margin-bottom: 0px;
            padding-bottom: 0px;
        }

        .comment-list .comment .comment, .children .comment .comment {
            border-bottom: none;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

    .comment-list .comment-awaiting-moderation, .children .comment-awaiting-moderation {
        position: absolute;
        top: 0px;
        right: 0px;
        padding: 2px 5px;
        background-color: #cd4c4c;
        color: #fff;
        font-size: 12.8px;
        display: inline-block;
    }

    .comment-list .comment-meta, .children .comment-meta {
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 20px;
    }

        .comment-list .comment-meta:before, .comment-list .comment-meta:after, .children .comment-meta:before, .children .comment-meta:after {
            content: " ";
            display: table;
        }

        .comment-list .comment-meta:after, .children .comment-meta:after {
            clear: both;
        }

    .comment-list .comment-author, .children .comment-author {
        display: table;
        margin-bottom: 0px;
        vertical-align: middle;
    }

        .comment-list .comment-author img, .children .comment-author img {
            position: absolute;
            left: 0px;
            top: 25px;
            margin-right: 10px;
            border-radius: 50%;
        }

        .comment-list .comment-author .fn, .children .comment-author .fn {
            margin: 0px;
            padding: 0px;
            display: table-cell;
        }

    .comment-list .comment-metadata, .children .comment-metadata {
        text-transform: uppercase;
        font-size: 14px;
        background-color: #e3e7ea;
        padding: 2px 4px;
        display: inline-block;
    }

    .comment-list .says, .children .says {
        display: none;
    }

    .comment-list .reply, .children .reply {
        display: inline-block;
        position: absolute;
        top: 90px;
        left: 5px;
        background-color: #d3dbe0;
        color: #40494f;
        padding: 1px 5px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 14px;
        border-radius: 3px;
        -webkit-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.1);
        border: 1px solid #828f98;
        border-bottom-color: #5d6971;
    }

    .comment-list .comment-content p:last-child, .children .comment-content p:last-child {
        margin-bottom: 0px;
    }

    .comment-list ol.children {
        padding-left: 40px;
    }

    .comment-list > li:last-child .comment-body {
        border-bottom: none;
    }

#respond h3 {
    display: inline-block;
    background-color: #f2f4f5;
    padding: 15px 30px;
    margin-bottom: 0px;
    border-radius: 6px 6px 0px 0px;
}

#respond #commentform {
    padding: 40px;
    background-color: #f2f4f5;
    border-top-left-radius: 0px;
    border-radius: 0px 6px 6px 6px;
}

    #respond #commentform:before, #respond #commentform:after {
        content: " ";
        display: table;
    }

    #respond #commentform:after {
        clear: both;
    }

    #respond #commentform p {
        margin-bottom: 5px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    #respond #commentform label {
        display: block;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 16px;
        margin-bottom: 1px;
    }

    #respond #commentform .comment-form-author {
        float: left;
        width: 45%;
        margin-right: 10%;
    }

    #respond #commentform .comment-form-email {
        float: left;
        width: 45%;
    }

    #respond #commentform .comment-form-url {
        float: left;
        width: 45%;
        margin-right: 10%;
        clear: both;
    }

    #respond #commentform .comment-form-comment {
        width: 100%;
        clear: both;
        float: left;
    }

    #respond #commentform .form-submit {
        float: left;
        clear: both;
        width: 100%;
        border-bottom: none;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

    #respond #commentform input#author, #respond #commentform input#email, #respond #commentform input#url {
        display: block;
        width: 100%;
        border: 1px solid rgba(0,0,0,0.3);
        padding: 2px 10px;
    }

    #respond #commentform textarea {
        padding: 5px 10px;
        height: 80px;
        display: block;
        width: 100%;
        border: 1px solid rgba(0,0,0,0.3);
    }

    #respond #commentform #submit {
        background-color: #eaf0f3;
        color: #40494f;
        padding: 5px 15px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 19px;
        border-radius: 3px;
        -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
        border: 1px solid #828f98;
        border-bottom-color: #5d6971;
    }

.featured-recipes-slider-w {
    background-color: #faf5eb;
    padding: 30px 0px;
    overflow: hidden;
    height: 470px;
    position: relative;
}

    .featured-recipes-slider-w .featured-recipes-fade-left, .featured-recipes-slider-w .featured-recipes-fade-right {
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .featured-recipes-slider-w .featured-recipes-fade-left .icon-w, .featured-recipes-slider-w .featured-recipes-fade-right .icon-w {
            display: inline-block;
            font-size: 60px;
            line-height: 1;
            background-color: rgba(0,0,0,0.3);
            color: #fff;
            padding: 20px 10px 10px 20px;
            text-align: center;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%,-50%);
            -moz-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
            -o-transform: translate(-50%,-50%);
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
            border-radius: 6px;
        }

    .featured-recipes-slider-w .featured-recipes-fade-left {
        position: absolute;
        z-index: 2;
        top: 0px;
        left: 0px;
        right: 90%;
        bottom: 0px;
        width: 10%;
        background-image: -webkit-linear-gradient(left,color-stop(rgba(255,255,255,0.8) 0%),color-stop(rgba(255,255,255,0) 100%));
        background-image: linear-gradient(to right,rgba(255,255,255,0.8) 0%,rgba(255,255,255,0) 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccffffff', endColorstr='#00ffffff', GradientType=1);
    }

        .featured-recipes-slider-w .featured-recipes-fade-left .icon-w {
            padding: 20px 20px 10px 10px;
        }

        .featured-recipes-slider-w .featured-recipes-fade-left:hover .icon-w {
            background-color: rgba(0,0,0,0.8);
        }

    .featured-recipes-slider-w .featured-recipes-fade-right {
        position: absolute;
        z-index: 2;
        top: 0px;
        right: 0px;
        left: 90%;
        bottom: 0px;
        width: 10%;
        background-image: -webkit-linear-gradient(left,color-stop(rgba(255,255,255,0) 0%),color-stop(rgba(255,255,255,0.8) 100%));
        background-image: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ccffffff', GradientType=1);
    }

        .featured-recipes-slider-w .featured-recipes-fade-right:hover .icon-w {
            background-color: rgba(0,0,0,0.8);
        }

    .featured-recipes-slider-w .featured-recipes-slider-i {
        text-align: center;
    }

    .featured-recipes-slider-w .featured-recipes-slider-item {
        text-align: left;
        display: inline-block;
        width: 400px;
    }

        .featured-recipes-slider-w .featured-recipes-slider-item:before, .featured-recipes-slider-w .featured-recipes-slider-item:after {
            content: " ";
            display: table;
        }

        .featured-recipes-slider-w .featured-recipes-slider-item:after {
            clear: both;
        }

        .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item {
            padding: 8px;
            float: left;
        }

            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item .featured-recipes-item-i {
                background-color: #fff;
                padding: 16px;
                border-radius: 6px;
            }

            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item .featured-recipe-title-w .featured-recipe-title {
                margin-top: 0px;
                margin-bottom: 0px;
            }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item .featured-recipe-title-w .featured-recipe-title a {
                    color: rgba(0,0,0,0.9);
                }

            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item .featured-recipe-categories-w {
                display: none;
            }

            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item .featured-recipe-details-w {
                display: none;
            }

            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item .featured-recipe-features-w {
                display: none;
            }

            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item .featured-recipe-thumbnail {
                border-radius: 6px;
                display: block;
                position: relative;
            }

            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full {
                width: 100%;
            }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-title-w {
                    max-height: 28.8px;
                    overflow: hidden;
                }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-media-w {
                    margin-bottom: 15px;
                }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-thumbnail {
                    height: 275px;
                }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w {
                    display: block;
                    border-top: 1px dashed rgba(0,0,0,0.2);
                    margin-top: 10px;
                }

                    .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w:before, .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w:after {
                        content: " ";
                        display: table;
                    }

                    .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w:after {
                        clear: both;
                    }

                    .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w .featured-recipe-cooking-time {
                        padding-top: 10px;
                        float: left;
                    }

                        .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w .featured-recipe-cooking-time ul {
                            list-style: none;
                        }

                            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w .featured-recipe-cooking-time ul li {
                                display: inline-block;
                            }

                                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w .featured-recipe-cooking-time ul li a {
                                    color: rgba(0,0,0,0.8);
                                    padding: 3px 6px;
                                    font-size: 12px;
                                    display: inline-block;
                                    border: 1px solid rgba(0,0,0,0.8);
                                    border-radius: 3px;
                                    margin-right: 3px;
                                }

                    .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w .featured-recipe-features {
                        display: block;
                        float: right;
                        padding-top: 8px;
                    }

                        .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w .featured-recipe-features ul {
                            list-style: none;
                            margin: 0px;
                            height: 25px;
                        }

                            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w .featured-recipe-features ul li {
                                display: inline-block;
                                margin-left: 10px;
                            }

                                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_full .featured-recipe-details-w .featured-recipe-features ul li img {
                                    width: 25px;
                                    height: auto;
                                }

            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half {
                width: 100%;
            }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipes-item-i:before, .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipes-item-i:after {
                    content: " ";
                    display: table;
                }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipes-item-i:after {
                    clear: both;
                }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipe-title-w {
                    max-height: 57.6px;
                    overflow: hidden;
                }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipe-media-w {
                    float: left;
                    width: 50%;
                    padding-right: 24px;
                }

                    .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipe-media-w .featured-recipe-thumbnail {
                        height: 120px;
                    }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipe-content-w {
                    float: left;
                    width: 50%;
                }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipe-categories-w {
                    display: block;
                    margin-top: 10px;
                }

                    .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipe-categories-w ul {
                        list-style: none;
                    }

                        .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipe-categories-w ul li {
                            display: inline-block;
                        }

                            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.full_half .featured-recipe-categories-w ul li a {
                                color: rgba(0,0,0,0.8);
                                padding: 2px 6px;
                                border: 1px solid rgba(0,0,0,0.8);
                                margin-right: 5px;
                                margin-bottom: 5px;
                                border-radius: 4px;
                                display: inline-block;
                                font-size: 12px;
                            }

            .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.half_half {
                float: left;
                width: 50%;
            }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.half_half .featured-recipe-title-w {
                    height: 57.6px;
                    overflow: hidden;
                }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.half_half .featured-recipe-media-w {
                    margin-bottom: 15px;
                }

                .featured-recipes-slider-w .featured-recipes-slider-item .featured-recipes-item.half_half .featured-recipe-thumbnail {
                    height: 120px;
                }

    .featured-recipes-slider-w.featured-layout-wide {
        height: 195px;
        padding: 15px 0px;
    }

    .featured-recipes-slider-w.featured-layout-small {
        height: 265px;
        padding: 20px 0px;
    }

        .featured-recipes-slider-w.featured-layout-small .featured-recipes-slider-item {
            width: 210px;
        }

            .featured-recipes-slider-w.featured-layout-small .featured-recipes-slider-item .featured-recipes-item.half_half {
                width: 100%;
                padding: 0px 10px;
            }

.related-recipes-w {
    background-color: #f5f1ec;
    padding: 50px 40px 50px 40px;
}

    .related-recipes-w .related-recipes-heading {
        padding: 10px 20px;
        display: inline-block;
        background-color: #fff;
        border-radius: 6px;
        margin-bottom: 30px;
        margin-left: 10px;
    }

        .related-recipes-w .related-recipes-heading:before, .related-recipes-w .related-recipes-heading:after {
            content: " ";
            display: table;
        }

        .related-recipes-w .related-recipes-heading:after {
            clear: both;
        }

        .related-recipes-w .related-recipes-heading .bordered-title {
            float: left;
            margin-top: 0px;
            margin-bottom: 0px;
        }

            .related-recipes-w .related-recipes-heading .bordered-title span {
                padding-bottom: 0px;
                border-bottom: 0px;
            }

        .related-recipes-w .related-recipes-heading ul {
            list-style: none;
            margin: 0px;
            padding-left: 30px;
            float: left;
            padding-top: 8px;
        }

            .related-recipes-w .related-recipes-heading ul li {
                display: inline-block;
                margin-right: 10px;
            }

                .related-recipes-w .related-recipes-heading ul li a {
                    padding: 5px 8px;
                    border: 1px solid rgba(0,0,0,0.7);
                    border-radius: 3px;
                    color: rgba(0,0,0,0.7);
                    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                    font-weight: 400;
                    font-size: 16px;
                }

    .related-recipes-w .related-recipes {
        list-style: none;
        padding: 0px;
    }

        .related-recipes-w .related-recipes:before, .related-recipes-w .related-recipes:after {
            content: " ";
            display: table;
        }

        .related-recipes-w .related-recipes:after {
            clear: both;
        }

        .related-recipes-w .related-recipes li {
            float: left;
            width: 20%;
            padding: 0px 10px;
        }

            .related-recipes-w .related-recipes li a {
                background-color: #fff;
                border-radius: 6px;
                display: block;
                padding: 20px;
                color: rgba(0,0,0,0.8);
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 20px;
            }

                .related-recipes-w .related-recipes li a figure {
                    text-align: center;
                    margin: 0px;
                    margin-bottom: 10px;
                    position: relative;
                }

                    .related-recipes-w .related-recipes li a figure img {
                        display: block;
                        max-width: 100%;
                        height: auto;
                        border-radius: 6px;
                    }

                .related-recipes-w .related-recipes li a span {
                    display: block;
                }

.related-recipes-landing .related-recipes li {
    width: 33% !important;
}

.hero-roll-w {
    background-color: #fff;
}

    .hero-roll-w .owl-controls .owl-nav .owl-prev, .hero-roll-w .owl-controls .owl-nav .owl-next {
        background-color: #fff;
        padding: 10px 12px;
        border-radius: 6px;
    }

        .hero-roll-w .owl-controls .owl-nav .owl-prev i, .hero-roll-w .owl-controls .owl-nav .owl-next i {
            display: block;
        }

    .hero-roll-w .owl-controls .owl-nav .owl-prev {
        position: absolute;
        left: 0px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

    .hero-roll-w .owl-controls .owl-nav .owl-next {
        position: absolute;
        right: 0px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

    .hero-roll-w .owl-controls .owl-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        z-index: 4;
    }

        .hero-roll-w .owl-controls .owl-dots:before, .hero-roll-w .owl-controls .owl-dots:after {
            content: " ";
            display: table;
        }

        .hero-roll-w .owl-controls .owl-dots:after {
            clear: both;
        }

        .hero-roll-w .owl-controls .owl-dots .owl-dot {
            height: 10px;
            width: 10px;
            margin: 0px 5px;
            background-color: rgba(255,255,255,0.5);
            float: left;
        }

            .hero-roll-w .owl-controls .owl-dots .owl-dot.active {
                background-color: #fff;
            }

    .hero-roll-w .archive-item-i {
        height: 550px;
        position: relative;
        overflow: hidden;
    }

        .hero-roll-w .archive-item-i .archive-item-media {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            z-index: 1;
        }

            .hero-roll-w .archive-item-i .archive-item-media a {
                height: 100%;
                display: block;
                background-position: center center;
                border-radius: 6px;
            }

                .hero-roll-w .archive-item-i .archive-item-media a .image-fader {
                    background-color: transparent;
                    -webkit-transform: none;
                    -moz-transform: none;
                    -ms-transform: none;
                    -o-transform: none;
                    top: 0px;
                    left: 0px;
                    right: 0px;
                    bottom: 0px;
                    z-index: 1;
                    -webkit-opacity: 1;
                    -moz-opacity: 1;
                    opacity: 1;
                }

                    .hero-roll-w .archive-item-i .archive-item-media a .image-fader .hover-icon-w {
                        display: none;
                    }

        .hero-roll-w .archive-item-i .archive-item-content {
            padding: 40px;
            background-color: #fff;
            position: absolute;
            -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.2);
            box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.2);
            z-index: 3;
            right: 100px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            max-height: 400px;
            width: 350px;
            border-radius: 6px;
        }

    .hero-roll-w .archive-item-i {
        padding: 20px;
    }

        .hero-roll-w .archive-item-i .archive-item-content .entry-title {
            margin: 0px;
            margin-bottom: 15px;
            /*padding-bottom: 15px;*/
            border-bottom: 1px dashed rgba(0,0,0,0.3);
            font-size: 30px;
        }

            .hero-roll-w .archive-item-i .archive-item-content .entry-title a {
                color: rgba(0,0,0,0.9);
            }

        .hero-roll-w .archive-item-i .archive-item-content .archive-item-content-text {
            font-size: 12px;
        }

        .hero-roll-w .archive-item-i .archive-item-meta {
            display: none;
            padding: 10px 10px;
            border: 1px dashed rgba(0,0,0,0.3);
            margin-bottom: 10px;
        }

            .hero-roll-w .archive-item-i .archive-item-meta:before, .hero-roll-w .archive-item-i .archive-item-meta:after {
                content: " ";
                display: table;
            }

            .hero-roll-w .archive-item-i .archive-item-meta:after {
                clear: both;
            }

            .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-categories {
                float: left;
                padding: 2px 0px;
            }

                .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-categories ul {
                    list-style: none;
                    margin: 0px;
                    padding: 0px;
                    float: left;
                }

                    .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-categories ul li {
                        float: left;
                        padding: 2px 5px;
                        border: 1px solid rgba(0,0,0,0.5);
                        border-radius: 3px;
                        font-size: 12px;
                        margin-right: 5px;
                    }

                        .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-categories ul li a {
                            color: rgba(0,0,0,0.8);
                        }

            .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-cooking-time {
                float: left;
                padding: 3px 0px;
                padding-right: 10px;
                margin-right: 10px;
                border-right: 1px dashed rgba(0,0,0,0.3);
                font-size: 12px;
                line-height: 20px;
            }

            .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-cuisines {
                float: right;
                list-style: none;
                margin: 0px;
                padding: 0px;
            }

                .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-cuisines li {
                    float: left;
                    margin-left: 10px;
                    line-height: 20px;
                }

                .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-cuisines a {
                    vertical-align: middle;
                    text-decoration: none;
                    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                    font-weight: 400;
                    color: rgba(0,0,0,0.9);
                    text-transform: uppercase;
                    font-size: 16px;
                    position: relative;
                    display: inline-block;
                }

                    .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-label {
                        padding: 3px 12px;
                        line-height: 20px;
                        vertical-align: middle;
                        border: 1px solid rgba(0,0,0,0.8);
                        border-radius: 4px;
                        margin-right: 5px;
                        display: block;
                        float: left;
                        display: none;
                    }

                    .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-image {
                        float: left;
                        vertical-align: middle;
                        line-height: 20px;
                        display: block;
                    }

                        .hero-roll-w .archive-item-i .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-image img {
                            height: 20px;
                            width: auto;
                            vertical-align: middle;
                        }

        .hero-roll-w .archive-item-i .archive-item-share-w {
            position: absolute;
            left: 10px;
            top: 10px;
            z-index: -1;
            display: block;
            -webkit-opacity: 0;
            -moz-opacity: 0;
            opacity: 0;
            -webkit-transform: translateY(-20px) translate3d(0,0,0);
            -moz-transform: translateY(-20px) translate3d(0,0,0);
            -ms-transform: translateY(-20px) translate3d(0,0,0);
            -o-transform: translateY(-20px) translate3d(0,0,0);
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger {
                background-color: rgba(0,0,0,0.7);
                color: #fff;
                border-radius: 4px;
                cursor: pointer;
            }

                .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger:before, .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger:after {
                    content: " ";
                    display: table;
                }

                .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger:after {
                    clear: both;
                }

                .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger .archive-item-share-plus {
                    float: left;
                    padding: 5px 10px;
                    vertical-align: middle;
                }

                    .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger .archive-item-share-plus .os-icon {
                        font-size: 18px;
                        line-height: 18px;
                        vertical-align: middle;
                        -webkit-transition: all 0.6s ease;
                        transition: all 0.6s ease;
                    }

                .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger .archive-item-share-label {
                    float: left;
                    vertical-align: middle;
                    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                    font-weight: 400;
                    font-size: 18px;
                    text-transform: uppercase;
                    padding: 5px 10px;
                    border-left: 1px solid rgba(255,255,255,0.1);
                }

                .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons {
                    display: none;
                    float: left;
                }

                    .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a {
                        display: block;
                        float: left;
                        padding: 5px 10px;
                        text-align: center;
                        font-size: 18px;
                        cursor: pointer;
                        color: #fff;
                        border-left: 1px solid rgba(255,255,255,0.1);
                        display: inline-block;
                    }

                        .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a:hover {
                            background-color: #000;
                        }

                        .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a:last-child {
                            border-radius: 0px 4px 4px 0px;
                            border-bottom: none;
                        }

                .hero-roll-w .archive-item-i .archive-item-share-w .archive-item-share-trigger:hover .archive-item-share-plus .os-icon {
                    -webkit-transform: rotate(360deg);
                    -moz-transform: rotate(360deg);
                    -ms-transform: rotate(360deg);
                    -o-transform: rotate(360deg);
                }

        .hero-roll-w .archive-item-i:hover .archive-item-share-w {
            z-index: 4;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            opacity: 1;
            -webkit-transform: translateY(0px);
            -moz-transform: translateY(0px);
            -ms-transform: translateY(0px);
            -o-transform: translateY(0px);
        }

            .hero-roll-w .archive-item-i:hover .archive-item-share-w:hover .archive-item-share-icons {
                display: block;
            }

        .hero-roll-w .archive-item-i .archive-item-author-meta {
            padding: 17px 0px 0px;
            margin-top: 15px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

            .hero-roll-w .archive-item-i .archive-item-author-meta:before, .hero-roll-w .archive-item-i .archive-item-author-meta:after {
                content: " ";
                display: table;
            }

            .hero-roll-w .archive-item-i .archive-item-author-meta:after {
                clear: both;
            }

            .hero-roll-w .archive-item-i .archive-item-author-meta .author-avatar-w {
                float: left;
                margin-right: 15px;
            }

                .hero-roll-w .archive-item-i .archive-item-author-meta .author-avatar-w img {
                    border-radius: 50%;
                    height: 50px;
                    width: 50px;
                }

            .hero-roll-w .archive-item-i .archive-item-author-meta .author-details {
                float: left;
            }

                .hero-roll-w .archive-item-i .archive-item-author-meta .author-details .author-name {
                    margin: 0px;
                    padding: 0px;
                    padding-bottom: 3px;
                    display: inline-block;
                    border-bottom: 2px solid rgba(0,0,0,0.9);
                }

                    .hero-roll-w .archive-item-i .archive-item-author-meta .author-details .author-name a {
                        color: rgba(0,0,0,0.9);
                    }

                .hero-roll-w .archive-item-i .archive-item-author-meta .author-details .archive-item-date-posted {
                    margin-top: 5px;
                    color: rgba(0,0,0,0.5);
                    font-size: 12px;
                }

            .hero-roll-w .archive-item-i .archive-item-author-meta .archive-item-views-count-likes {
                float: right;
                text-align: center;
            }

                .hero-roll-w .archive-item-i .archive-item-author-meta .archive-item-views-count-likes .os-icon {
                    font-size: 30px;
                    color: rgba(0,0,0,0.9);
                    display: block;
                    margin-bottom: 2px;
                }

                .hero-roll-w .archive-item-i .archive-item-author-meta .archive-item-views-count-likes .slide-button-label {
                    color: rgba(0,0,0,0.9);
                    font-size: 12px;
                }

                .hero-roll-w .archive-item-i .archive-item-author-meta .archive-item-views-count-likes .slide-button-sub-label {
                    color: rgba(0,0,0,0.9);
                    font-size: 12px;
                    color: #d53452;
                }

        .hero-roll-w .archive-item-i .archive-item-deep-meta {
            margin-top: 15px;
            padding: 15px 0px 0px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

            .hero-roll-w .archive-item-i .archive-item-deep-meta:before, .hero-roll-w .archive-item-i .archive-item-deep-meta:after {
                content: " ";
                display: table;
            }

            .hero-roll-w .archive-item-i .archive-item-deep-meta:after {
                clear: both;
            }

            .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-rating-and-read-more {
                float: left;
            }

                .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-rating-and-read-more .archive-item-read-more-btn .read-more-link {
                    margin-top: -7px;
                }

                .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-rating-and-read-more .archive-item-rating + .archive-item-read-more-btn .read-more-link {
                    margin-top: 10px;
                }

                .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-rating-and-read-more .read-more-link a {
                    color: rgba(0,0,0,0.9);
                    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                    font-weight: 400;
                    display: inline-block;
                    padding-bottom: 3px;
                    border-bottom: 2px solid rgba(0,0,0,0.9);
                    font-size: 18px;
                }

            .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-rating:before, .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-rating:after {
                content: " ";
                display: table;
            }

            .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-rating:after {
                clear: both;
            }

            .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-rating .review-summary-average {
                float: left;
            }

            .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-rating .review-summary-total {
                float: left;
                color: rgba(0,0,0,0.9);
                font-size: 14px;
                margin-left: 5px;
            }

            .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-comments {
                float: right;
                color: rgba(0,0,0,0.9);
                font-size: 12px;
                margin-left: 20px;
                margin-bottom: 5px;
            }

                .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-comments a {
                    color: rgba(0,0,0,0.9);
                }

                .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-comments .os-icon {
                    margin-right: 2px;
                    font-size: 16px;
                }

            .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-views-count {
                float: right;
                color: rgba(0,0,0,0.9);
                font-size: 12px;
            }

                .hero-roll-w .archive-item-i .archive-item-deep-meta .archive-item-views-count .os-icon {
                    margin-right: 2px;
                    font-size: 16px;
                }

.mobile-header-w + .hero-roll-w {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.page-intro-header {
    background-color: #fff;
    padding: 50px;
}

    .page-intro-header h2 {
        font-size: 50px;
        margin: 0px;
    }

    .page-intro-header .smaller-text {
        font-size: 24px;
        color: rgba(77,77,77,0.9);
    }

    .page-intro-header .intro-icon {
        color: rgba(0,0,0,0.3);
        margin-right: 30px;
        font-size: 40px;
    }

    .page-intro-header.with-background h2, .page-intro-header.with-background h1, .page-intro-header.with-background h2, .page-intro-header.with-background p {
        background-color: #fff;
        padding: 10px 20px;
        display: inline-block;
    }

    .page-intro-header.with-background .page-intro-description {
        background-color: rgba(255,255,255,0.8);
        padding: 20px;
    }

    .page-intro-header.without-background {
        background-color: #fff;
        border-top: 1px solid rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

        .page-intro-header.without-background .page-intro-description {
            padding-top: 20px;
            border-top: 1px dashed rgba(0,0,0,0.1);
            margin-top: 10px;
        }

.archive-posts-w {
    background-color: #fff;
    padding: 50px;
}

    .archive-posts-w.bordered {
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .archive-posts-w.with-sidebar {
        display: table;
        table-layout: fixed;
        width: 100%;
    }

        .archive-posts-w.with-sidebar .archive-posts {
            display: table-cell;
            vertical-align: top;
            width: 70%;
        }

        .archive-posts-w.with-sidebar .archive-sidebar {
            width: 30%;
            vertical-align: top;
            display: table-cell;
            background-color: #f0f7f7;
            border-radius: 6px;
            padding: 40px 30px;
        }

            .archive-posts-w.with-sidebar .archive-sidebar img {
                max-width: 100%;
                height: auto;
            }

        .archive-posts-w.with-sidebar.sidebar-location-left .archive-posts {
            padding-left: 50px;
        }

        .archive-posts-w.with-sidebar.sidebar-location-right .archive-posts {
            padding-right: 50px;
        }

.archive-posts .archive-title-w {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

    .archive-posts .archive-title-w.with-avatar:before, .archive-posts .archive-title-w.with-avatar:after {
        content: " ";
        display: table;
    }

    .archive-posts .archive-title-w.with-avatar:after {
        clear: both;
    }

    .archive-posts .archive-title-w .page-title-avatar-self {
        float: left;
        width: 20%;
    }

        .archive-posts .archive-title-w .page-title-avatar-self img {
            border-radius: 50%;
            max-width: 100%;
            height: auto;
        }

    .archive-posts .archive-title-w .page-title-avatar-side {
        float: right;
        width: 70%;
    }

        .archive-posts .archive-title-w .page-title-avatar-side .page-title-social-icons {
            margin-bottom: 15px;
        }

            .archive-posts .archive-title-w .page-title-avatar-side .page-title-social-icons a {
                display: inline-block;
                margin-right: 5px;
            }

                .archive-posts .archive-title-w .page-title-avatar-side .page-title-social-icons a .os-icon {
                    font-size: 25px;
                }

.archive-posts .page-title {
    border-bottom: 2px solid rgba(0,0,0,0.9);
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 0px;
}

.archive-posts .page-content-sub-title {
    padding-bottom: 10px;
    margin-bottom: 0px;
    font-size: 19px;
    margin-top: 0px;
}

    .archive-posts .page-content-sub-title p {
        margin: 0px;
    }

.archive-posts .archive-item-i {
    position: relative;
}

.archive-posts .edit-link {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 2;
    display: inline-block;
}

    .archive-posts .edit-link a {
        background-color: #d41337;
        color: #fff;
        padding: 5px 10px;
        font-size: 8px;
        text-transform: uppercase;
        display: block;
    }

        .archive-posts .edit-link a:hover {
            background-color: #000;
        }

.archive-posts .entry-title a {
    color: rgba(0,0,0,0.9);
}

.archive-posts .read-more-link {
    margin-top: 10px;
}

    .archive-posts .read-more-link a {
        color: rgba(0,0,0,0.8);
        display: inline-block;
        padding: 3px 10px;
        border: 2px solid rgba(0,0,0,0.8);
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 16px;
    }

.payment_button_orange {
    background-color: #f8d390;
    padding: 10px 20px !important;
    font-size: 18px !important;
}

.archive-posts .archive-item-media img {
    max-width: 100%;
    height: auto;
}

.archive-posts.masonry-grid-w .masonry-grid:before, .archive-posts.masonry-grid-w .masonry-grid:after {
    content: " ";
    display: table;
}

.archive-posts.masonry-grid-w .masonry-grid:after {
    clear: both;
}

.archive-posts.masonry-grid-w .masonry-grid .masonry-item {
    float: left;
    margin-bottom: 40px;
    padding: 0px 20px 0px 20px;
}

    .archive-posts.masonry-grid-w .masonry-grid .masonry-item.full {
        width: 100%;
    }

    .archive-posts.masonry-grid-w .masonry-grid .masonry-item.half {
        width: 50%;
    }

    .archive-posts.masonry-grid-w .masonry-grid .masonry-item.third {
        width: 33.3%;
        padding-right: 30px;
        margin-bottom: 30px;
    }

    .archive-posts.masonry-grid-w .masonry-grid .masonry-item.fourth {
        width: 25%;
        padding-right: 20px;
        margin-bottom: 20px;
    }

    .archive-posts.masonry-grid-w .masonry-grid .masonry-item.first-in-row {
        padding-left: 0px;
    }

    .archive-posts.masonry-grid-w .masonry-grid .masonry-item.last-in-row {
        padding-right: 0px;
    }

.archive-posts.masonry-grid-w.magazine-v1 .masonry-grid .masonry-item.first-in-row {
    clear: left;
}

.archive-posts.masonry-grid-w.magazine-v1 .masonry-grid .masonry-item.full {
    clear: left;
}

.archive-posts.masonry-grid-w.magazine-v1 .masonry-grid .archive-item.format-video.full_third .archive-item-media {
    padding-top: 10px;
}

.archive-posts.masonry-grid-w.magazine-v1 .masonry-grid .archive-item.format-video.full_third .entry-title {
    padding-top: 0px;
}

.archive-posts.masonry-grid-w.magazine-v2 .masonry-grid .masonry-item.first-in-row {
    clear: left;
}

.archive-posts.masonry-grid-w.magazine-v2 .masonry-grid .masonry-item.full {
    clear: left;
}

.archive-posts.masonry-grid-w.magazine-v2 .masonry-grid .archive-item.full_third.format-video .archive-item-media {
    padding-top: 20px;
}

.archive-posts.masonry-grid-w.per-row-4 .masonry-grid .masonry-item {
    padding-left: 12px;
    padding-right: 12px;
}

    .archive-posts.masonry-grid-w.per-row-4 .masonry-grid .masonry-item .archive-item .archive-item-views-count, .archive-posts.masonry-grid-w.per-row-4 .masonry-grid .masonry-item .archive-item .archive-item-comments {
        font-size: 12px;
    }

        .archive-posts.masonry-grid-w.per-row-4 .masonry-grid .masonry-item .archive-item .archive-item-views-count .os-icon, .archive-posts.masonry-grid-w.per-row-4 .masonry-grid .masonry-item .archive-item .archive-item-comments .os-icon {
            display: none;
        }

    .archive-posts.masonry-grid-w.per-row-4 .masonry-grid .masonry-item .archive-item .archive-item-comments {
        margin-left: 15px;
    }

.archive-posts.masonry-grid-w.per-row-4 .masonry-grid .archive-item-author-meta h4 {
    font-size: 16px;
}

.archive-posts.masonry-grid-w.per-row-4 .masonry-grid .archive-item-author-meta .archive-item-date-posted {
    font-size: 11px;
}

.archive-posts.masonry-grid-w.per-row-4 .masonry-grid .archive-item-author-meta .author-avatar-w {
    margin-right: 10px;
}

    .archive-posts.masonry-grid-w.per-row-4 .masonry-grid .archive-item-author-meta .author-avatar-w img {
        width: 30px;
        height: 30px;
    }

.archive-posts.masonry-grid-w.per-row-4 .masonry-grid .archive-item-author-meta .archive-item-views-count-likes .os-icon {
    font-size: 22px;
}

.archive-posts.masonry-grid-w.per-row-4 .masonry-grid .masonry-item.first-in-row {
    clear: left;
    padding-left: 0px;
}

.archive-posts.masonry-grid-w.per-row-4 .masonry-grid .masonry-item.last-in-row {
    padding-right: 0px;
}

.archive-posts.masonry-grid-w.per-row-4 .masonry-grid .masonry-item.full {
    clear: left;
}

.archive-posts.masonry-grid-w.per-row-3 .masonry-grid .masonry-item {
    padding-left: 12px;
    padding-right: 12px;
}

    .archive-posts.masonry-grid-w.per-row-3 .masonry-grid .masonry-item.first-in-row {
        clear: left;
        padding-left: 0px;
        padding-right: 24px;
    }

    .archive-posts.masonry-grid-w.per-row-3 .masonry-grid .masonry-item.last-in-row {
        padding-right: 0px;
        padding-left: 24px;
    }

    .archive-posts.masonry-grid-w.per-row-3 .masonry-grid .masonry-item.full {
        clear: left;
    }

.archive-posts.masonry-grid-w.per-row-2 .masonry-grid .masonry-item.first-in-row {
    clear: left;
}

.archive-posts.masonry-grid-w.per-row-2 .masonry-grid .masonry-item.full {
    clear: left;
}

.archive-posts.masonry-grid-w.per-row-2 .archive-item {
    width: 50%;
}

    .archive-posts.masonry-grid-w.per-row-2 .archive-item .archive-item-i {
        padding-right: 40px;
        padding-bottom: 40px;
    }

.archive-posts.masonry-grid-w.per-row-2 .archive-item-content-text {
    font-size: 16px;
}

.archive-posts.masonry-grid-w.masonry-title-image .masonry-grid {
    margin-right: -20px;
    border: none;
}

.archive-posts.masonry-grid-w.masonry-title-image .masonry-item.third {
    margin-bottom: 20px;
    padding-right: 20px;
}

    .archive-posts.masonry-grid-w.masonry-title-image .masonry-item.third .archive-item.full_full {
        padding: 20px;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
        border-radius: 6px;
        border: 1px solid #ddd;
    }

        .archive-posts.masonry-grid-w.masonry-title-image .masonry-item.third .archive-item.full_full .archive-item-media .archive-item-media-thumbnail {
            height: auto;
            overflow: auto;
        }

            .archive-posts.masonry-grid-w.masonry-title-image .masonry-item.third .archive-item.full_full .archive-item-media .archive-item-media-thumbnail img {
                display: block;
                max-width: 100%;
                height: auto;
            }

        .archive-posts.masonry-grid-w.masonry-title-image .masonry-item.third .archive-item.full_full .archive-item-content-text {
            color: rgba(51,51,51,0.8);
        }

.archive-posts.list-items-w.list-items-full-width .masonry-item {
    margin-bottom: 40px;
}

    .archive-posts.list-items-w.list-items-full-width .masonry-item .archive-item {
        padding-bottom: 40px;
    }

.archive-posts.list-items-w.list-items-half-image .masonry-item {
    margin-bottom: 40px;
}

    .archive-posts.list-items-w.list-items-half-image .masonry-item .archive-item {
        padding-bottom: 40px;
    }

.archive-posts .sticky-roll-w {
    margin-bottom: 40px;
}

    .archive-posts .sticky-roll-w .owl-controls {
        position: relative;
    }

        .archive-posts .sticky-roll-w .owl-controls .owl-nav .owl-prev, .archive-posts .sticky-roll-w .owl-controls .owl-nav .owl-next {
            background-color: #fff;
            padding: 10px 12px;
        }

            .archive-posts .sticky-roll-w .owl-controls .owl-nav .owl-prev i, .archive-posts .sticky-roll-w .owl-controls .owl-nav .owl-next i {
                display: block;
            }

        .archive-posts .sticky-roll-w .owl-controls .owl-nav .owl-prev {
            position: absolute;
            left: 10px;
            top: -46px;
        }

        .archive-posts .sticky-roll-w .owl-controls .owl-nav .owl-next {
            position: absolute;
            right: 10px;
            top: -46px;
        }

        .archive-posts .sticky-roll-w .owl-controls .owl-dots {
            position: absolute;
            top: -33px;
            right: 55px;
        }

            .archive-posts .sticky-roll-w .owl-controls .owl-dots:before, .archive-posts .sticky-roll-w .owl-controls .owl-dots:after {
                content: " ";
                display: table;
            }

            .archive-posts .sticky-roll-w .owl-controls .owl-dots:after {
                clear: both;
            }

            .archive-posts .sticky-roll-w .owl-controls .owl-dots .owl-dot {
                height: 10px;
                width: 10px;
                margin: 0px 5px;
                background-color: rgba(255,255,255,0.5);
                float: left;
            }

                .archive-posts .sticky-roll-w .owl-controls .owl-dots .owl-dot.active {
                    background-color: #fff;
                }

    .archive-posts .masonry-grid .magic-box-w a, .archive-posts .sticky-roll-w .magic-box-w a, .archive-posts .list-items .magic-box-w a {
        display: block;
    }

    .archive-posts .masonry-grid .magic-box-w img, .archive-posts .sticky-roll-w .magic-box-w img, .archive-posts .list-items .magic-box-w img {
        max-width: 100%;
        height: auto;
    }

    .archive-posts .masonry-grid .archive-item, .archive-posts .sticky-roll-w .archive-item, .archive-posts .list-items .archive-item {
        -webkit-backface-visibility: hidden;
    }

    .archive-posts .masonry-grid .archive-item-author-meta, .archive-posts .sticky-roll-w .archive-item-author-meta, .archive-posts .list-items .archive-item-author-meta {
        padding: 17px 0px 0px;
        margin-top: 15px;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

        .archive-posts .masonry-grid .archive-item-author-meta:before, .archive-posts .masonry-grid .archive-item-author-meta:after, .archive-posts .sticky-roll-w .archive-item-author-meta:before, .archive-posts .sticky-roll-w .archive-item-author-meta:after, .archive-posts .list-items .archive-item-author-meta:before, .archive-posts .list-items .archive-item-author-meta:after {
            content: " ";
            display: table;
        }

        .archive-posts .masonry-grid .archive-item-author-meta:after, .archive-posts .sticky-roll-w .archive-item-author-meta:after, .archive-posts .list-items .archive-item-author-meta:after {
            clear: both;
        }

        .archive-posts .masonry-grid .archive-item-author-meta .author-avatar-w, .archive-posts .sticky-roll-w .archive-item-author-meta .author-avatar-w, .archive-posts .list-items .archive-item-author-meta .author-avatar-w {
            float: left;
            margin-right: 15px;
        }

            .archive-posts .masonry-grid .archive-item-author-meta .author-avatar-w img, .archive-posts .sticky-roll-w .archive-item-author-meta .author-avatar-w img, .archive-posts .list-items .archive-item-author-meta .author-avatar-w img {
                border-radius: 50%;
                height: 50px;
                width: 50px;
            }

        .archive-posts .masonry-grid .archive-item-author-meta .author-details, .archive-posts .sticky-roll-w .archive-item-author-meta .author-details, .archive-posts .list-items .archive-item-author-meta .author-details {
            float: left;
        }

            .archive-posts .masonry-grid .archive-item-author-meta .author-details .author-name, .archive-posts .sticky-roll-w .archive-item-author-meta .author-details .author-name, .archive-posts .list-items .archive-item-author-meta .author-details .author-name {
                margin: 0px;
                padding: 0px;
                padding-bottom: 3px;
                display: inline-block;
                border-bottom: 2px solid rgba(0,0,0,0.9);
            }

                .archive-posts .masonry-grid .archive-item-author-meta .author-details .author-name a, .archive-posts .sticky-roll-w .archive-item-author-meta .author-details .author-name a, .archive-posts .list-items .archive-item-author-meta .author-details .author-name a {
                    color: rgba(0,0,0,0.9);
                }

            .archive-posts .masonry-grid .archive-item-author-meta .author-details .archive-item-date-posted, .archive-posts .sticky-roll-w .archive-item-author-meta .author-details .archive-item-date-posted, .archive-posts .list-items .archive-item-author-meta .author-details .archive-item-date-posted {
                margin-top: 5px;
                color: rgba(0,0,0,0.5);
                font-size: 12px;
            }

        .archive-posts .masonry-grid .archive-item-author-meta .archive-item-views-count-likes, .archive-posts .sticky-roll-w .archive-item-author-meta .archive-item-views-count-likes, .archive-posts .list-items .archive-item-author-meta .archive-item-views-count-likes {
            float: right;
            text-align: center;
        }

            .archive-posts .masonry-grid .archive-item-author-meta .archive-item-views-count-likes .os-icon, .archive-posts .sticky-roll-w .archive-item-author-meta .archive-item-views-count-likes .os-icon, .archive-posts .list-items .archive-item-author-meta .archive-item-views-count-likes .os-icon {
                font-size: 30px;
                color: rgba(0,0,0,0.9);
                display: block;
                margin-bottom: 2px;
            }

            .archive-posts .masonry-grid .archive-item-author-meta .archive-item-views-count-likes .slide-button-label, .archive-posts .sticky-roll-w .archive-item-author-meta .archive-item-views-count-likes .slide-button-label, .archive-posts .list-items .archive-item-author-meta .archive-item-views-count-likes .slide-button-label {
                color: rgba(0,0,0,0.9);
                font-size: 12px;
            }

            .archive-posts .masonry-grid .archive-item-author-meta .archive-item-views-count-likes .slide-button-sub-label, .archive-posts .sticky-roll-w .archive-item-author-meta .archive-item-views-count-likes .slide-button-sub-label, .archive-posts .list-items .archive-item-author-meta .archive-item-views-count-likes .slide-button-sub-label {
                color: rgba(0,0,0,0.9);
                font-size: 12px;
                color: #d53452;
            }

    .archive-posts .masonry-grid .archive-item-deep-meta, .archive-posts .sticky-roll-w .archive-item-deep-meta, .archive-posts .list-items .archive-item-deep-meta {
        margin-top: 15px;
        padding: 10px 0px 10px;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

        .archive-posts .masonry-grid .archive-item-deep-meta:before, .archive-posts .masonry-grid .archive-item-deep-meta:after, .archive-posts .sticky-roll-w .archive-item-deep-meta:before, .archive-posts .sticky-roll-w .archive-item-deep-meta:after, .archive-posts .list-items .archive-item-deep-meta:before, .archive-posts .list-items .archive-item-deep-meta:after {
            content: " ";
            display: table;
        }

        .archive-posts .masonry-grid .archive-item-deep-meta:after, .archive-posts .sticky-roll-w .archive-item-deep-meta:after, .archive-posts .list-items .archive-item-deep-meta:after {
            clear: both;
        }

        .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-rating-and-read-more, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-rating-and-read-more, .archive-posts .list-items .archive-item-deep-meta .archive-item-rating-and-read-more {
            float: left;
        }

            .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-rating-and-read-more .archive-item-read-more-btn .read-more-link, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-rating-and-read-more .archive-item-read-more-btn .read-more-link, .archive-posts .list-items .archive-item-deep-meta .archive-item-rating-and-read-more .archive-item-read-more-btn .read-more-link {
                margin-top: -7px;
            }

            .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-rating-and-read-more .archive-item-rating + .archive-item-read-more-btn .read-more-link, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-rating-and-read-more .archive-item-rating + .archive-item-read-more-btn .read-more-link, .archive-posts .list-items .archive-item-deep-meta .archive-item-rating-and-read-more .archive-item-rating + .archive-item-read-more-btn .read-more-link {
                margin-top: 10px;
            }

        .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-rating:before, .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-rating:after, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-rating:before, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-rating:after, .archive-posts .list-items .archive-item-deep-meta .archive-item-rating:before, .archive-posts .list-items .archive-item-deep-meta .archive-item-rating:after {
            content: " ";
            display: table;
        }

        .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-rating:after, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-rating:after, .archive-posts .list-items .archive-item-deep-meta .archive-item-rating:after {
            clear: both;
        }

        .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-rating .review-summary-average, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-rating .review-summary-average, .archive-posts .list-items .archive-item-deep-meta .archive-item-rating .review-summary-average {
            float: left;
        }

        .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-rating .review-summary-total, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-rating .review-summary-total, .archive-posts .list-items .archive-item-deep-meta .archive-item-rating .review-summary-total {
            float: left;
            color: rgba(0,0,0,0.9);
            font-size: 14px;
            margin-left: 5px;
        }

        .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-comments, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-comments, .archive-posts .list-items .archive-item-deep-meta .archive-item-comments {
            float: right;
            color: rgba(0,0,0,0.9);
            font-size: 14px;
            margin-left: 20px;
        }

            .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-comments a, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-comments a, .archive-posts .list-items .archive-item-deep-meta .archive-item-comments a {
                color: rgba(0,0,0,0.9);
            }

            .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-comments .os-icon, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-comments .os-icon, .archive-posts .list-items .archive-item-deep-meta .archive-item-comments .os-icon {
                margin-right: 2px;
                font-size: 16px;
            }

        .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-views-count, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-views-count, .archive-posts .list-items .archive-item-deep-meta .archive-item-views-count {
            float: right;
            color: rgba(0,0,0,0.9);
            font-size: 14px;
        }

            .archive-posts .masonry-grid .archive-item-deep-meta .archive-item-views-count .os-icon, .archive-posts .sticky-roll-w .archive-item-deep-meta .archive-item-views-count .os-icon, .archive-posts .list-items .archive-item-deep-meta .archive-item-views-count .os-icon {
                margin-right: 2px;
                font-size: 16px;
            }

    .archive-posts .masonry-grid .archive-item-media, .archive-posts .sticky-roll-w .archive-item-media, .archive-posts .list-items .archive-item-media {
        position: relative;
    }

        .archive-posts .masonry-grid .archive-item-media .gallery-image-next, .archive-posts .masonry-grid .archive-item-media .gallery-image-previous, .archive-posts .sticky-roll-w .archive-item-media .gallery-image-next, .archive-posts .sticky-roll-w .archive-item-media .gallery-image-previous, .archive-posts .list-items .archive-item-media .gallery-image-next, .archive-posts .list-items .archive-item-media .gallery-image-previous {
            background-color: rgba(0,0,0,0.6);
            line-height: 22px;
            vertical-align: middle;
            text-align: center;
            width: 25px;
            height: 25px;
            border-radius: 2px;
            color: #fff;
            z-index: 3;
        }

            .archive-posts .masonry-grid .archive-item-media .gallery-image-next i, .archive-posts .masonry-grid .archive-item-media .gallery-image-previous i, .archive-posts .sticky-roll-w .archive-item-media .gallery-image-next i, .archive-posts .sticky-roll-w .archive-item-media .gallery-image-previous i, .archive-posts .list-items .archive-item-media .gallery-image-next i, .archive-posts .list-items .archive-item-media .gallery-image-previous i {
                vertical-align: middle;
                line-height: 16px;
                font-size: 16px;
            }

            .archive-posts .masonry-grid .archive-item-media .gallery-image-next:hover, .archive-posts .masonry-grid .archive-item-media .gallery-image-previous:hover, .archive-posts .sticky-roll-w .archive-item-media .gallery-image-next:hover, .archive-posts .sticky-roll-w .archive-item-media .gallery-image-previous:hover, .archive-posts .list-items .archive-item-media .gallery-image-next:hover, .archive-posts .list-items .archive-item-media .gallery-image-previous:hover {
                cursor: pointer;
                background-color: #000;
            }

        .archive-posts .masonry-grid .archive-item-media .gallery-image-next, .archive-posts .sticky-roll-w .archive-item-media .gallery-image-next, .archive-posts .list-items .archive-item-media .gallery-image-next {
            position: absolute;
            left: 35px;
            bottom: 5px;
        }

        .archive-posts .masonry-grid .archive-item-media .gallery-image-previous, .archive-posts .sticky-roll-w .archive-item-media .gallery-image-previous, .archive-posts .list-items .archive-item-media .gallery-image-previous {
            position: absolute;
            left: 5px;
            bottom: 5px;
        }

    .archive-posts .masonry-grid .archive-item-share-w, .archive-posts .sticky-roll-w .archive-item-share-w, .archive-posts .list-items .archive-item-share-w {
        position: absolute;
        left: 10px;
        top: 10px;
        z-index: -1;
        display: block;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        -webkit-transform: translateY(-20px) translate3d(0,0,0);
        -moz-transform: translateY(-20px) translate3d(0,0,0);
        -ms-transform: translateY(-20px) translate3d(0,0,0);
        -o-transform: translateY(-20px) translate3d(0,0,0);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger {
            background-color: rgba(0,0,0,0.7);
            color: #fff;
            border-radius: 4px;
            cursor: pointer;
        }

            .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger:before, .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger:after, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger:before, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger:after, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger:before, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger:after {
                content: " ";
                display: table;
            }

            .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger:after, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger:after, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger:after {
                clear: both;
            }

            .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger .archive-item-share-plus, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger .archive-item-share-plus, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger .archive-item-share-plus {
                float: left;
                padding: 5px 10px;
                vertical-align: middle;
            }

                .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger .archive-item-share-plus .os-icon, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger .archive-item-share-plus .os-icon, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger .archive-item-share-plus .os-icon {
                    font-size: 18px;
                    line-height: 18px;
                    vertical-align: middle;
                    -webkit-transition: all 0.6s ease;
                    transition: all 0.6s ease;
                }

            .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger .archive-item-share-label, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger .archive-item-share-label, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger .archive-item-share-label {
                float: left;
                vertical-align: middle;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 18px;
                text-transform: uppercase;
                padding: 5px 10px;
                border-left: 1px solid rgba(255,255,255,0.1);
            }

            .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons {
                display: none;
                float: left;
            }

                .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a {
                    display: block;
                    float: left;
                    padding: 5px 10px;
                    text-align: center;
                    font-size: 18px;
                    cursor: pointer;
                    color: #fff;
                    border-left: 1px solid rgba(255,255,255,0.1);
                    display: inline-block;
                }

                    .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a:hover, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a:hover, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a:hover {
                        background-color: #000;
                    }

                    .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a:last-child, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a:last-child, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger .archive-item-share-icons a:last-child {
                        border-radius: 0px 4px 4px 0px;
                        border-bottom: none;
                    }

            .archive-posts .masonry-grid .archive-item-share-w .archive-item-share-trigger:hover .archive-item-share-plus .os-icon, .archive-posts .sticky-roll-w .archive-item-share-w .archive-item-share-trigger:hover .archive-item-share-plus .os-icon, .archive-posts .list-items .archive-item-share-w .archive-item-share-trigger:hover .archive-item-share-plus .os-icon {
                -webkit-transform: rotate(360deg);
                -moz-transform: rotate(360deg);
                -ms-transform: rotate(360deg);
                -o-transform: rotate(360deg);
            }

    .archive-posts .masonry-grid .archive-item:hover .archive-item-share-w, .archive-posts .sticky-roll-w .archive-item:hover .archive-item-share-w, .archive-posts .list-items .archive-item:hover .archive-item-share-w {
        z-index: 4;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }

        .archive-posts .masonry-grid .archive-item:hover .archive-item-share-w:hover .archive-item-share-icons, .archive-posts .sticky-roll-w .archive-item:hover .archive-item-share-w:hover .archive-item-share-icons, .archive-posts .list-items .archive-item:hover .archive-item-share-w:hover .archive-item-share-icons {
            display: block;
        }

    .archive-posts .masonry-grid .archive-item-media-thumbnail, .archive-posts .sticky-roll-w .archive-item-media-thumbnail, .archive-posts .list-items .archive-item-media-thumbnail {
        position: relative;
        border-radius: 6px;
        display: block;
    }

    .archive-posts .masonry-grid .archive-item-content, .archive-posts .sticky-roll-w .archive-item-content, .archive-posts .list-items .archive-item-content {
        border-radius: 6px;
    }

    .archive-posts .masonry-grid .extra-styling-box, .archive-posts .sticky-roll-w .extra-styling-box, .archive-posts .list-items .extra-styling-box {
        display: none;
    }

    .archive-posts .masonry-grid .archive-item-meta, .archive-posts .sticky-roll-w .archive-item-meta, .archive-posts .list-items .archive-item-meta {
        display: none;
        padding: 10px 10px;
        border: 1px dashed rgba(0,0,0,0.3);
        margin-bottom: 10px;
    }

        .archive-posts .masonry-grid .archive-item-meta:before, .archive-posts .masonry-grid .archive-item-meta:after, .archive-posts .sticky-roll-w .archive-item-meta:before, .archive-posts .sticky-roll-w .archive-item-meta:after, .archive-posts .list-items .archive-item-meta:before, .archive-posts .list-items .archive-item-meta:after {
            content: " ";
            display: table;
        }

        .archive-posts .masonry-grid .archive-item-meta:after, .archive-posts .sticky-roll-w .archive-item-meta:after, .archive-posts .list-items .archive-item-meta:after {
            clear: both;
        }

        .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-categories, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-categories, .archive-posts .list-items .archive-item-meta .archive-item-meta-categories {
            float: left;
            padding: 2px 0px;
        }

            .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-categories ul, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-categories ul, .archive-posts .list-items .archive-item-meta .archive-item-meta-categories ul {
                list-style: none;
                margin: 0px;
                padding: 0px;
                float: left;
            }

                .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-categories ul li, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-categories ul li, .archive-posts .list-items .archive-item-meta .archive-item-meta-categories ul li {
                    float: left;
                    padding: 2px 5px;
                    border: 1px solid rgba(0,0,0,0.5);
                    border-radius: 3px;
                    font-size: 12px;
                    margin-right: 5px;
                }

                    .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-categories ul li a, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-categories ul li a, .archive-posts .list-items .archive-item-meta .archive-item-meta-categories ul li a {
                        color: rgba(0,0,0,0.8);
                    }

        .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-cooking-time, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-cooking-time, .archive-posts .list-items .archive-item-meta .archive-item-meta-cooking-time {
            float: left;
            padding: 3px 0px;
            padding-right: 10px;
            margin-right: 10px;
            border-right: 1px dashed rgba(0,0,0,0.3);
            font-size: 14px;
            line-height: 20px;
        }

        .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-cuisines, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-cuisines, .archive-posts .list-items .archive-item-meta .archive-item-meta-cuisines {
            float: right;
            list-style: none;
            margin: 0px;
            padding: 0px;
        }

            .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-cuisines li, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-cuisines li, .archive-posts .list-items .archive-item-meta .archive-item-meta-cuisines li {
                float: left;
                margin-left: 10px;
                line-height: 20px;
            }

            .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-cuisines a, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-cuisines a, .archive-posts .list-items .archive-item-meta .archive-item-meta-cuisines a {
                vertical-align: middle;
                text-decoration: none;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                color: rgba(0,0,0,0.9);
                text-transform: uppercase;
                font-size: 16px;
                position: relative;
                display: inline-block;
            }

                .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-label, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-label, .archive-posts .list-items .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-label {
                    padding: 3px 12px;
                    line-height: 20px;
                    vertical-align: middle;
                    border: 1px solid rgba(0,0,0,0.8);
                    border-radius: 4px;
                    margin-right: 5px;
                    display: block;
                    float: left;
                    display: none;
                }

                .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-image, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-image, .archive-posts .list-items .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-image {
                    float: left;
                    vertical-align: middle;
                    line-height: 20px;
                    display: block;
                }

                    .archive-posts .masonry-grid .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-image img, .archive-posts .sticky-roll-w .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-image img, .archive-posts .list-items .archive-item-meta .archive-item-meta-cuisines a .single-recipe-cuisine-image img {
                        height: 20px;
                        width: auto;
                        vertical-align: middle;
                    }

    .archive-posts .masonry-grid .archive-item.full_full_over, .archive-posts .sticky-roll-w .archive-item.full_full_over, .archive-posts .list-items .archive-item.full_full_over {
        width: 100%;
    }

        .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-i, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-i, .archive-posts .list-items .archive-item.full_full_over .archive-item-i {
            padding: 0px;
            position: relative;
        }

        .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-media-thumbnail, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-media-thumbnail, .archive-posts .list-items .archive-item.full_full_over .archive-item-media-thumbnail {
            border-radius: 0px;
            height: 450px;
        }

        .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-media:hover .image-fader, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-media:hover .image-fader, .archive-posts .list-items .archive-item.full_full_over .archive-item-media:hover .image-fader {
            display: none;
        }

        .archive-posts .masonry-grid .archive-item.full_full_over .extra-styling-box, .archive-posts .sticky-roll-w .archive-item.full_full_over .extra-styling-box, .archive-posts .list-items .archive-item.full_full_over .extra-styling-box {
            position: absolute;
            top: 10px;
            bottom: 10px;
            left: 10px;
            right: 10px;
            border: 2px solid #fff;
            z-index: 1;
            display: block;
            border-radius: 0px;
        }

        .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-meta, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-meta, .archive-posts .list-items .archive-item.full_full_over .archive-item-meta {
            color: rgba(255,255,255,0.8);
            border: none;
            border-bottom: 2px solid rgba(255,255,255,0.4);
            display: block;
            padding: 0px 0px 8px 0px;
        }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-meta:before, .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-meta:after, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-meta:before, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-meta:after, .archive-posts .list-items .archive-item.full_full_over .archive-item-meta:before, .archive-posts .list-items .archive-item.full_full_over .archive-item-meta:after {
                content: " ";
                display: table;
            }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-meta:after, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-meta:after, .archive-posts .list-items .archive-item.full_full_over .archive-item-meta:after {
                clear: both;
            }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-meta .archive-item-meta-cooking-time, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-meta .archive-item-meta-cooking-time, .archive-posts .list-items .archive-item.full_full_over .archive-item-meta .archive-item-meta-cooking-time {
                float: left;
                width: 50%;
                margin: 0px;
                padding: 3px 10px 3px 0px;
                border-right: 2px solid rgba(255,255,255,0.2);
            }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-meta .archive-item-meta-categories, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-meta .archive-item-meta-categories, .archive-posts .list-items .archive-item.full_full_over .archive-item-meta .archive-item-meta-categories {
                width: 50%;
                float: left;
                padding-left: 10px;
            }

                .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-meta .archive-item-meta-categories ul li, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-meta .archive-item-meta-categories ul li, .archive-posts .list-items .archive-item.full_full_over .archive-item-meta .archive-item-meta-categories ul li {
                    border: 1px solid rgba(255,255,255,0.5);
                    margin-bottom: 5px;
                }

                    .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-meta .archive-item-meta-categories ul li a, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-meta .archive-item-meta-categories ul li a, .archive-posts .list-items .archive-item.full_full_over .archive-item-meta .archive-item-meta-categories ul li a {
                        color: rgba(255,255,255,0.8);
                    }

        .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content, .archive-posts .list-items .archive-item.full_full_over .archive-item-content {
            border-radius: 0px;
            background-color: rgba(30,127,147,0.7);
            position: absolute;
            bottom: 0px;
            top: 0px;
            width: 55%;
            right: 0px;
            padding: 50px;
            z-index: 2;
        }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .entry-title, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .entry-title, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .entry-title {
                font-size: 44px;
                padding-bottom: 10px;
                border-bottom: 2px solid rgba(255,255,255,0.4);
                text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
                margin-top: 0px;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
            }

                .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .entry-title a, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .entry-title a, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .entry-title a {
                    color: #fff;
                }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .archive-item-content-text, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-content-text, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .archive-item-content-text {
                color: rgba(255,255,255,0.9);
                font-size: 14px;
                margin-top: 20px;
            }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .read-more-link, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .read-more-link, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .read-more-link {
                margin-top: 15px;
            }

                .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .read-more-link a, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .read-more-link a, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .read-more-link a {
                    border-color: #fff;
                    color: #fff;
                }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .archive-item-meta-cuisines, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-meta-cuisines, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .archive-item-meta-cuisines {
                position: absolute;
                top: 12px;
                right: 12px;
            }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .archive-item-author-meta, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-author-meta, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .archive-item-author-meta {
                display: none;
            }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .archive-item-rating, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-rating, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .archive-item-rating {
                line-height: 18px;
            }

                .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .archive-item-rating .review-stars-w, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-rating .review-stars-w, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .archive-item-rating .review-stars-w {
                    font-size: 14px;
                }

                .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .archive-item-rating .review-summary-total, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-rating .review-summary-total, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .archive-item-rating .review-summary-total {
                    color: rgba(255,255,255,0.8);
                    font-size: 12px;
                    line-height: 18px;
                }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .archive-item-deep-meta, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-deep-meta, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .archive-item-deep-meta {
                border-top-color: rgba(255,255,255,0.2);
                border-top-width: 2px;
            }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .archive-item-views-count, .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .archive-item-comments a, .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .review-summary-average a, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-views-count, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-comments a, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .review-summary-average a, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .archive-item-views-count, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .archive-item-comments a, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .review-summary-average a {
                color: rgba(255,255,255,0.8);
            }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .author-details .author-name, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .author-details .author-name, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .author-details .author-name {
                border-bottom-color: rgba(255,255,255,0.8);
            }

                .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .author-details .author-name a, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .author-details .author-name a, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .author-details .author-name a {
                    color: rgba(255,255,255,0.7);
                }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .author-details .archive-item-date-posted, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .author-details .archive-item-date-posted, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .author-details .archive-item-date-posted {
                color: rgba(255,255,255,0.5);
            }

            .archive-posts .masonry-grid .archive-item.full_full_over .archive-item-content .archive-item-date-posted, .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-date-posted, .archive-posts .list-items .archive-item.full_full_over .archive-item-content .archive-item-date-posted {
                color: rgba(255,255,255,0.7);
            }

    .archive-posts .masonry-grid .archive-item.full_full, .archive-posts .sticky-roll-w .archive-item.full_full, .archive-posts .list-items .archive-item.full_full {
        width: 100%;
        border-bottom: 1px dashed rgba(0,0,0,0.2);
        /*padding-bottom: 20px;*/
    }

        .archive-posts .masonry-grid .archive-item.full_full .archive-item-i, .archive-posts .sticky-roll-w .archive-item.full_full .archive-item-i, .archive-posts .list-items .archive-item.full_full .archive-item-i {
            padding: 0px;
        }

        .archive-posts .masonry-grid .archive-item.full_full .archive-item-media-thumbnail, .archive-posts .sticky-roll-w .archive-item.full_full .archive-item-media-thumbnail, .archive-posts .list-items .archive-item.full_full .archive-item-media-thumbnail {
            height: auto;
            padding-bottom: 56.2%;
        }

        .archive-posts .masonry-grid .archive-item.full_full .archive-item-meta, .archive-posts .sticky-roll-w .archive-item.full_full .archive-item-meta, .archive-posts .list-items .archive-item.full_full .archive-item-meta {
            display: block;
            border-radius: 6px;
        }

        .archive-posts .masonry-grid .archive-item.full_full .entry-title, .archive-posts .sticky-roll-w .archive-item.full_full .entry-title, .archive-posts .list-items .archive-item.full_full .entry-title {
            font-size: 32px;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
        }

        .archive-posts .masonry-grid .archive-item.full_full .archive-item-content-text, .archive-posts .sticky-roll-w .archive-item.full_full .archive-item-content-text, .archive-posts .list-items .archive-item.full_full .archive-item-content-text {
            /*font-size: 16px;*/
        }

            .archive-posts .masonry-grid .archive-item.full_full .archive-item-content-text .read-more-link, .archive-posts .sticky-roll-w .archive-item.full_full .archive-item-content-text .read-more-link, .archive-posts .list-items .archive-item.full_full .archive-item-content-text .read-more-link {
                margin-top: 15px;
            }

    .archive-posts .masonry-grid .archive-item.full_third, .archive-posts .sticky-roll-w .archive-item.full_third, .archive-posts .list-items .archive-item.full_third {
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px dashed rgba(0,0,0,0.2);
    }

        .archive-posts .masonry-grid .archive-item.full_third .archive-item-i, .archive-posts .sticky-roll-w .archive-item.full_third .archive-item-i, .archive-posts .list-items .archive-item.full_third .archive-item-i {
            padding: 0px;
        }

            .archive-posts .masonry-grid .archive-item.full_third .archive-item-i:before, .archive-posts .masonry-grid .archive-item.full_third .archive-item-i:after, .archive-posts .sticky-roll-w .archive-item.full_third .archive-item-i:before, .archive-posts .sticky-roll-w .archive-item.full_third .archive-item-i:after, .archive-posts .list-items .archive-item.full_third .archive-item-i:before, .archive-posts .list-items .archive-item.full_third .archive-item-i:after {
                content: " ";
                display: table;
            }

            .archive-posts .masonry-grid .archive-item.full_third .archive-item-i:after, .archive-posts .sticky-roll-w .archive-item.full_third .archive-item-i:after, .archive-posts .list-items .archive-item.full_third .archive-item-i:after {
                clear: both;
            }

        .archive-posts .masonry-grid .archive-item.full_third .archive-item-media, .archive-posts .sticky-roll-w .archive-item.full_third .archive-item-media, .archive-posts .list-items .archive-item.full_third .archive-item-media {
            float: left;
            width: 40%;
            padding-right: 20px;
        }

            .archive-posts .masonry-grid .archive-item.full_third .archive-item-media .archive-item-media-thumbnail, .archive-posts .sticky-roll-w .archive-item.full_third .archive-item-media .archive-item-media-thumbnail, .archive-posts .list-items .archive-item.full_third .archive-item-media .archive-item-media-thumbnail {
                height: 140px;
            }

        .archive-posts .masonry-grid .archive-item.full_third .archive-item-content, .archive-posts .sticky-roll-w .archive-item.full_third .archive-item-content, .archive-posts .list-items .archive-item.full_third .archive-item-content {
            float: left;
            width: 60%;
        }

            .archive-posts .masonry-grid .archive-item.full_third .archive-item-content .entry-title, .archive-posts .sticky-roll-w .archive-item.full_third .archive-item-content .entry-title, .archive-posts .list-items .archive-item.full_third .archive-item-content .entry-title {
                margin-top: 0px;
                font-size: 24px;
                padding-top: 10px;
            }

            .archive-posts .masonry-grid .archive-item.full_third .archive-item-content .archive-item-content-text, .archive-posts .sticky-roll-w .archive-item.full_third .archive-item-content .archive-item-content-text, .archive-posts .list-items .archive-item.full_third .archive-item-content .archive-item-content-text {
                font-size: 12px;
            }

                .archive-posts .masonry-grid .archive-item.full_third .archive-item-content .archive-item-content-text .read-more-link, .archive-posts .sticky-roll-w .archive-item.full_third .archive-item-content .archive-item-content-text .read-more-link, .archive-posts .list-items .archive-item.full_third .archive-item-content .archive-item-content-text .read-more-link {
                    display: none;
                }

        .archive-posts .masonry-grid .archive-item.full_third:last-child, .archive-posts .sticky-roll-w .archive-item.full_third:last-child, .archive-posts .list-items .archive-item.full_third:last-child {
            margin-bottom: 0px;
        }

    .archive-posts .masonry-grid .masonry-item.half .archive-item.full_full .archive-item-media-thumbnail, .archive-posts .sticky-roll-w .masonry-item.half .archive-item.full_full .archive-item-media-thumbnail, .archive-posts .list-items .masonry-item.half .archive-item.full_full .archive-item-media-thumbnail {
        height: auto;
        padding-bottom: 56.2%;
    }

    .archive-posts .masonry-grid .masonry-item.half .archive-item.full_full .archive-item-meta, .archive-posts .sticky-roll-w .masonry-item.half .archive-item.full_full .archive-item-meta, .archive-posts .list-items .masonry-item.half .archive-item.full_full .archive-item-meta {
        display: block;
        border-radius: 6px;
    }

    .archive-posts .masonry-grid .masonry-item.half .archive-item.full_full .entry-title, .archive-posts .sticky-roll-w .masonry-item.half .archive-item.full_full .entry-title, .archive-posts .list-items .masonry-item.half .archive-item.full_full .entry-title {
        font-size: 32px;
    }

    .archive-posts .masonry-grid .masonry-item.half .archive-item.full_full .archive-item-content-text, .archive-posts .sticky-roll-w .masonry-item.half .archive-item.full_full .archive-item-content-text, .archive-posts .list-items .masonry-item.half .archive-item.full_full .archive-item-content-text {
        /*font-size: 18px;*/
    }

        .archive-posts .masonry-grid .masonry-item.half .archive-item.full_full .archive-item-content-text .read-more-link, .archive-posts .sticky-roll-w .masonry-item.half .archive-item.full_full .archive-item-content-text .read-more-link, .archive-posts .list-items .masonry-item.half .archive-item.full_full .archive-item-content-text .read-more-link {
            margin-top: 15px;
        }

    .archive-posts .masonry-grid .masonry-item.third .archive-item.full_full .archive-item-media-thumbnail, .archive-posts .sticky-roll-w .masonry-item.third .archive-item.full_full .archive-item-media-thumbnail, .archive-posts .list-items .masonry-item.third .archive-item.full_full .archive-item-media-thumbnail {
        height: auto;
        padding-bottom: 56.2%;
    }

    .archive-posts .masonry-grid .masonry-item.third .archive-item.full_full .archive-item-meta, .archive-posts .sticky-roll-w .masonry-item.third .archive-item.full_full .archive-item-meta, .archive-posts .list-items .masonry-item.third .archive-item.full_full .archive-item-meta {
        display: block;
        border-radius: 6px;
        border: none;
        padding: 0px;
    }

        .archive-posts .masonry-grid .masonry-item.third .archive-item.full_full .archive-item-meta .archive-item-meta-cooking-time, .archive-posts .sticky-roll-w .masonry-item.third .archive-item.full_full .archive-item-meta .archive-item-meta-cooking-time, .archive-posts .list-items .masonry-item.third .archive-item.full_full .archive-item-meta .archive-item-meta-cooking-time {
            display: none;
        }

        .archive-posts .masonry-grid .masonry-item.third .archive-item.full_full .archive-item-meta .post-categories li, .archive-posts .sticky-roll-w .masonry-item.third .archive-item.full_full .archive-item-meta .post-categories li, .archive-posts .list-items .masonry-item.third .archive-item.full_full .archive-item-meta .post-categories li {
            font-size: 12px;
        }

    .archive-posts .masonry-grid .masonry-item.third .archive-item.full_full .entry-title, .archive-posts .sticky-roll-w .masonry-item.third .archive-item.full_full .entry-title, .archive-posts .list-items .masonry-item.third .archive-item.full_full .entry-title {
        font-size: 24px;
    }

    .archive-posts .masonry-grid .masonry-item.third .archive-item.full_full .archive-item-content-text, .archive-posts .sticky-roll-w .masonry-item.third .archive-item.full_full .archive-item-content-text, .archive-posts .list-items .masonry-item.third .archive-item.full_full .archive-item-content-text {
        font-size: 14px;
    }

        .archive-posts .masonry-grid .masonry-item.third .archive-item.full_full .archive-item-content-text .read-more-link, .archive-posts .sticky-roll-w .masonry-item.third .archive-item.full_full .archive-item-content-text .read-more-link, .archive-posts .list-items .masonry-item.third .archive-item.full_full .archive-item-content-text .read-more-link {
            margin-top: 15px;
        }

            .archive-posts .masonry-grid .masonry-item.third .archive-item.full_full .archive-item-content-text .read-more-link a, .archive-posts .sticky-roll-w .masonry-item.third .archive-item.full_full .archive-item-content-text .read-more-link a, .archive-posts .list-items .masonry-item.third .archive-item.full_full .archive-item-content-text .read-more-link a {
                border: none;
                border-bottom: 2px solid rgba(0,0,0,0.8);
                padding: 0px 3px;
                padding-bottom: 3px;
            }

    .archive-posts .masonry-grid .masonry-item.fourth .archive-item.full_full .archive-item-media-thumbnail, .archive-posts .sticky-roll-w .masonry-item.fourth .archive-item.full_full .archive-item-media-thumbnail, .archive-posts .list-items .masonry-item.fourth .archive-item.full_full .archive-item-media-thumbnail {
        height: auto;
        padding-bottom: 56.2%;
    }

    .archive-posts .masonry-grid .masonry-item.fourth .archive-item.full_full .archive-item-meta, .archive-posts .sticky-roll-w .masonry-item.fourth .archive-item.full_full .archive-item-meta, .archive-posts .list-items .masonry-item.fourth .archive-item.full_full .archive-item-meta {
        display: block;
        border-radius: 6px;
        border: none;
        padding: 0px;
    }

        .archive-posts .masonry-grid .masonry-item.fourth .archive-item.full_full .archive-item-meta .archive-item-meta-cooking-time, .archive-posts .sticky-roll-w .masonry-item.fourth .archive-item.full_full .archive-item-meta .archive-item-meta-cooking-time, .archive-posts .list-items .masonry-item.fourth .archive-item.full_full .archive-item-meta .archive-item-meta-cooking-time {
            display: none;
        }

        .archive-posts .masonry-grid .masonry-item.fourth .archive-item.full_full .archive-item-meta .post-categories li, .archive-posts .sticky-roll-w .masonry-item.fourth .archive-item.full_full .archive-item-meta .post-categories li, .archive-posts .list-items .masonry-item.fourth .archive-item.full_full .archive-item-meta .post-categories li {
            font-size: 11px;
        }

    .archive-posts .masonry-grid .masonry-item.fourth .archive-item.full_full .entry-title, .archive-posts .sticky-roll-w .masonry-item.fourth .archive-item.full_full .entry-title, .archive-posts .list-items .masonry-item.fourth .archive-item.full_full .entry-title {
        font-size: 18px;
    }

    .archive-posts .masonry-grid .masonry-item.fourth .archive-item.full_full .archive-item-content-text, .archive-posts .sticky-roll-w .masonry-item.fourth .archive-item.full_full .archive-item-content-text, .archive-posts .list-items .masonry-item.fourth .archive-item.full_full .archive-item-content-text {
        font-size: 12px;
    }

        .archive-posts .masonry-grid .masonry-item.fourth .archive-item.full_full .archive-item-content-text .read-more-link, .archive-posts .sticky-roll-w .masonry-item.fourth .archive-item.full_full .archive-item-content-text .read-more-link, .archive-posts .list-items .masonry-item.fourth .archive-item.full_full .archive-item-content-text .read-more-link {
            margin-top: 15px;
        }

            .archive-posts .masonry-grid .masonry-item.fourth .archive-item.full_full .archive-item-content-text .read-more-link a, .archive-posts .sticky-roll-w .masonry-item.fourth .archive-item.full_full .archive-item-content-text .read-more-link a, .archive-posts .list-items .masonry-item.fourth .archive-item.full_full .archive-item-content-text .read-more-link a {
                border: none;
                border-bottom: 2px solid rgba(0,0,0,0.8);
                padding: 0px 3px;
                padding-bottom: 3px;
            }

.archive-posts .list-items .masonry-item.full .archive-item .archive-item-media-thumbnail {
    height: 500px;
}

.archive-posts .list-items .masonry-item.full .archive-item .archive-item-meta {
    display: block;
    border-radius: 6px;
}

.archive-posts .list-items .masonry-item.full .archive-item .entry-title {
    font-size: 44px;
    margin-bottom: 20px;
}

.archive-posts .list-items .masonry-item.full .archive-item .archive-item-meta {
    margin-bottom: 20px;
}

.archive-posts .list-items .masonry-item.full .archive-item .archive-item-content-text {
    font-size: 19px;
}

    .archive-posts .list-items .masonry-item.full .archive-item .archive-item-content-text .read-more-link {
        margin-top: 25px;
    }

        .archive-posts .list-items .masonry-item.full .archive-item .archive-item-content-text .read-more-link a {
            font-size: 20px;
        }

.archive-posts .list-items .masonry-item.full .archive-item.full_half {
    border-bottom: 1px dashed rgba(0,0,0,0.2);
}

    .archive-posts .list-items .masonry-item.full .archive-item.full_half:before, .archive-posts .list-items .masonry-item.full .archive-item.full_half:after {
        content: " ";
        display: table;
    }

    .archive-posts .list-items .masonry-item.full .archive-item.full_half:after {
        clear: both;
    }

    .archive-posts .list-items .masonry-item.full .archive-item.full_half .archive-item-media {
        width: 40%;
        float: left;
    }

        .archive-posts .list-items .masonry-item.full .archive-item.full_half .archive-item-media .archive-item-media-thumbnail {
            height: 300px;
        }

    .archive-posts .list-items .masonry-item.full .archive-item.full_half .archive-item-content {
        width: 60%;
        float: left;
        padding-left: 40px;
    }

        .archive-posts .list-items .masonry-item.full .archive-item.full_half .archive-item-content .entry-title {
            margin-top: 0px;
            font-size: 32px;
        }

        .archive-posts .list-items .masonry-item.full .archive-item.full_half .archive-item-content .archive-item-content-text {
            font-size: 16px;
        }

            .archive-posts .list-items .masonry-item.full .archive-item.full_half .archive-item-content .archive-item-content-text .read-more-link {
                margin-top: 20px;
            }

                .archive-posts .list-items .masonry-item.full .archive-item.full_half .archive-item-content .archive-item-content-text .read-more-link a {
                    font-size: 16px;
                }

.archive-pagination {
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding: 15px;
    margin-top: 30px;
    text-align: center;
}

    .archive-pagination:before, .archive-pagination:after {
        content: " ";
        display: table;
    }

    .archive-pagination:after {
        clear: both;
    }

    .archive-pagination a {
        margin: 0px 10px;
        display: inline-block;
        color: rgba(0,0,0,0.8);
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        font-size: 18px;
    }

    .archive-pagination .archive-pagination-prev {
        float: left;
    }

        .archive-pagination .archive-pagination-prev a:before {
            margin-right: 10px;
            content: "\f053";
            font-family: 'osfont';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            color: rgba(0,0,0,0.8);
            font-size: 14px;
        }

    .archive-pagination .archive-pagination-next {
        float: right;
    }

        .archive-pagination .archive-pagination-next a:after {
            margin-left: 10px;
            content: "\f054";
            font-family: 'osfont';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            color: rgba(0,0,0,0.8);
            font-size: 14px;
        }

.fader-activator .image-fader {
    display: none;
}

.with-animations .fader-activator .image-fader {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 6px;
    display: block;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scale(0.4) rotate(50deg);
    -moz-transform: scale(0.4) rotate(50deg);
    -ms-transform: scale(0.4) rotate(50deg);
    -o-transform: scale(0.4) rotate(50deg);
    z-index: 2;
}

    .with-animations .fader-activator .image-fader.lighter {
        background-color: rgba(255,255,255,0.2);
    }

        .with-animations .fader-activator .image-fader.lighter .hover-icon-w {
            text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
        }

.with-animations .fader-activator .hover-icon-w {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,30px);
    -moz-transform: translate(-50%,30px);
    -ms-transform: translate(-50%,30px);
    -o-transform: translate(-50%,30px);
    color: #fff;
    font-size: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.with-animations .fader-activator:hover .image-fader {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.with-animations .fader-activator:hover .hover-icon-w {
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}

.recipe-floating-box {
    position: fixed;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #000;
    border-radius: 6px 6px 0px 0px;
    padding: 10px 10px 8px 10px;
    z-index: 9999;
    width: 1100px;
}

    .recipe-floating-box:before, .recipe-floating-box:after {
        content: " ";
        display: table;
    }

    .recipe-floating-box:after {
        clear: both;
    }

.review-images {
    padding-top: 20px;
}

    .review-images:before, .review-images:after {
        content: " ";
        display: table;
    }

    .review-images:after {
        clear: both;
    }

    .review-images .review-image {
        width: 25%;
        float: left;
        padding: 5px;
    }

        .review-images .review-image img {
            border-radius: 6px;
            max-width: 100%;
            height: auto;
            display: block;
        }

.recipe-big-titled-header-box {
    background-color: #fff;
}

    .recipe-big-titled-header-box .recipe-big-titled-header-image {
        position: relative;
    }

        .recipe-big-titled-header-box .recipe-big-titled-header-image .recipe-big-titled-header-fader {
            position: absolute;
            top: 0px;
            left: 0px;
            bottom: 0px;
            right: 0px;
            z-index: 1;
            /*background-color: rgba(0,0,0,0.4);*/
        }

        .recipe-big-titled-header-box .recipe-big-titled-header-image .header-title,
        .recipe-big-titled-header-box .recipe-big-titled-header-image h1 {
            margin: 0px;
            z-index: 2;
            font-size: 80px;
            position: absolute;
            top: 40%;
            left: 50%;
            text-align: center;
            -webkit-transform: translate(-50%,-50%);
            -moz-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
            -o-transform: translate(-50%,-50%);
            color: #fff;
            text-shadow: 1px 1px 7px rgba(0,0,0,0.9);
            width: 80%;
            line-height: 1;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
        }

        .recipe-big-titled-header-box .recipe-big-titled-header-image .recipe-header-image-sub-title {
            display: inline-block;
            border-top: 2px solid rgba(255,255,255,0.8);
            padding-top: 10px;
            font-size: 30px;
            color: rgba(255,255,255,0.8);
            text-transform: uppercase;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
        }

.cooking-mode-btn-w {
    float: left;
}

    .cooking-mode-btn-w .cooking-mode-btn {
        border-radius: 4px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 18px;
        float: left;
        display: block;
        text-transform: uppercase;
        line-height: 34px;
        background-color: #dd2c2c;
        padding: 0px 15px;
    }

        .cooking-mode-btn-w .cooking-mode-btn .os-icon {
            float: left;
            font-size: 18px;
            line-height: 34px;
            margin-right: 15px;
            color: #fff;
            border-right: 1px solid rgba(255,255,255,0.3);
            padding-right: 15px;
            vertical-align: middle;
        }

        .cooking-mode-btn-w .cooking-mode-btn span {
            vertical-align: middle;
            float: left;
            color: #fff;
        }

.thumbs-votes-w {
    float: left;
    margin-left: 30px;
    border-left: 1px solid rgba(255,255,255,0.4);
    padding: 6px 20px 6px 50px;
}

    .thumbs-votes-w a {
        color: #fff;
        display: inline-block;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

        .thumbs-votes-w a span {
            font-size: 12px;
            margin-right: 30px;
            vertical-align: middle;
            color: #aaa;
        }

        .thumbs-votes-w a .os-icon {
            vertical-align: middle;
            font-size: 26px;
            margin-right: 7px;
        }

        .thumbs-votes-w a:hover {
            -webkit-transform: scale(1.2);
            -moz-transform: scale(1.2);
            -ms-transform: scale(1.2);
            -o-transform: scale(1.2);
        }

        .thumbs-votes-w a.rotated span {
            margin-right: 0px;
        }

.print-share-recipe-btn-w {
    float: left;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(255,255,255,0.4);
}

    .print-share-recipe-btn-w .print-recipe-btn, .print-share-recipe-btn-w .share-recipe-btn {
        color: #fff;
        border: 2px solid #555;
        border-radius: 6px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        line-height: 27px;
        font-size: 18px;
        text-transform: uppercase;
        vertical-align: middle;
        display: block;
        float: left;
        padding: 2px 15px;
    }

    .print-share-recipe-btn-w .share-recipe-btn {
        margin-left: 15px;
    }

    .print-share-recipe-btn-w .os-icon {
        margin-right: 10px;
        font-size: 18px;
        vertical-align: middle;
    }

    .print-share-recipe-btn-w span {
        vertical-align: middle;
    }

.timer-w {
    color: #fff;
    float: left;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(255,255,255,0.4);
}

    .timer-w .os-icon {
        margin-right: 10px;
        font-size: 18px;
        vertical-align: middle;
    }

    .timer-w .timer-counter {
        display: none;
    }

    .timer-w button {
        display: inline-block;
        border: none;
        background-color: #2c77dd;
        color: #fff;
        border-radius: 6px;
        padding: 0px 10px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        line-height: 35px;
        font-size: 18px;
        text-transform: uppercase;
        vertical-align: middle;
    }

    .timer-w #timer-minutes {
        vertical-align: middle;
        line-height: 30px;
        background-color: #444;
        border-radius: 6px;
        border: 1px solid #777;
        width: 100px;
        text-align: center;
        height: 35px;
        padding: 5px 10px;
        padding-right: 55px;
        display: inline-block;
        font-size: 14px;
    }

    .timer-w .timer-counter.is-countdown {
        margin-right: 10px;
        background-color: #333;
        border-radius: 6px;
        padding: 5px 10px;
    }

    .timer-w label {
        vertical-align: middle;
        line-height: 35px;
        margin-left: -55px;
        margin-right: 20px;
        color: #aaa;
        border-left: 1px solid rgba(0,0,0,0.5);
        padding-left: 10px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 18px;
    }

    .timer-w #pause-resume-timer-btn {
        margin-right: 5px;
        display: none;
    }

    .timer-w #stop-timer-btn {
        background-color: #2c77dc;
        display: none;
    }

    .timer-w.is-counting #timer-minutes, .timer-w.is-counting #start-timer-btn, .timer-w.is-counting label {
        display: none;
    }

    .timer-w.is-counting .timer-counter, .timer-w.is-counting #pause-resume-timer-btn, .timer-w.is-counting #stop-timer-btn {
        display: inline-block;
    }

    .timer-w.is-counting #stop-timer-btn {
        background-color: #dc2c2c;
    }

    .timer-w.counter-stopped #stop-timer-btn {
        display: inline-block;
    }

.single-content .cooking-mode-close-btn-w {
    display: none;
}

.single-content-self img {
    max-width: 100%;
    height: auto;
}

.full-screen-share-box {
    position: fixed;
    z-index: 9998;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(215,239,233,0.5);
    overflow-y: scroll;
}

    .full-screen-share-box .post-share-box {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        background-color: rgba(255,255,255,0.95);
        padding: 80px 120px;
        -webkit-box-shadow: 0 0 40px 0px rgba(0,0,0,0.1);
        box-shadow: 0 0 40px 0px rgba(0,0,0,0.1);
    }

        .full-screen-share-box .post-share-box .psb-close {
            font-size: 35px;
            right: 30px;
        }

.cooking-mode-w {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #fff;
    overflow-y: scroll;
}

    .cooking-mode-w .cooking-mode-i {
        position: relative;
        width: 800px;
        margin: 0px auto;
        padding: 100px 0px;
        font-size: 25px;
    }

        .cooking-mode-w .cooking-mode-i h2 {
            font-size: 38px;
            margin-top: 40px;
            margin-bottom: 50px;
        }

    .cooking-mode-w .cooking-mode-close-btn-w {
        display: block;
        position: fixed;
        right: 80px;
        top: 50px;
    }

        .cooking-mode-w .cooking-mode-close-btn-w .cooking-mode-close-btn {
            color: rgba(0,0,0,0.5);
            font-size: 70px;
        }

            .cooking-mode-w .cooking-mode-close-btn-w .cooking-mode-close-btn:hover {
                color: #000;
            }

.osetin-vote-count.hidden {
    display: none;
}

.osetin-vote-has-voted i.os-icon {
    color: #e74343;
}

.single article.post .content-link-pages, .single article.page .content-link-pages {
    border-top: 1px dashed rgba(0,0,0,0.2);
    padding-top: 20px;
    margin-top: 20px;
}

    .single article.post .content-link-pages a, .single article.post .content-link-pages > span, .single article.page .content-link-pages a, .single article.page .content-link-pages > span {
        font-size: 16px;
        color: rgba(0,0,0,0.8);
        padding: 5px 12px;
        border: 1px solid rgba(0,0,0,0.4);
        border-radius: 6px;
        display: inline-block;
        margin: 0px 5px 5px 0px;
    }

    .single article.post .content-link-pages > span, .single article.page .content-link-pages > span {
        border-color: rgba(0,0,0,0.1);
    }

.single article.post .single-post-about-author, .single article.page .single-post-about-author {
    margin-top: 20px;
}

.single article.post .single-post-meta, .single article.page .single-post-meta {
    padding-bottom: 10px;
    margin-bottom: 2em;
    margin-top: 10px;
    border-bottom: 1px dashed rgba(0,0,0,0.3);
    font-size: 14px;
}

    .single article.post .single-post-meta .post-date, .single article.page .single-post-meta .post-date {
        display: inline-block;
        padding: 8px 0px;
    }

    .single article.post .single-post-meta .post-author, .single article.page .single-post-meta .post-author {
        display: inline-block;
        padding: 8px 0px;
    }

    .single article.post .single-post-meta .post-categories-w, .single article.page .single-post-meta .post-categories-w {
        border-left: 1px dashed rgba(0,0,0,0.1);
        display: inline-block;
        padding-left: 15px;
        margin-left: 15px;
    }

        .single article.post .single-post-meta .post-categories-w:before, .single article.post .single-post-meta .post-categories-w:after, .single article.page .single-post-meta .post-categories-w:before, .single article.page .single-post-meta .post-categories-w:after {
            content: " ";
            display: table;
        }

        .single article.post .single-post-meta .post-categories-w:after, .single article.page .single-post-meta .post-categories-w:after {
            clear: both;
        }

        .single article.post .single-post-meta .post-categories-w .post-categories-label, .single article.page .single-post-meta .post-categories-w .post-categories-label {
            display: inline-block;
            margin: 5px 10px 5px 0px;
            padding: 3px 0px;
        }

    .single article.post .single-post-meta .post-categories, .single article.page .single-post-meta .post-categories {
        display: inline-block;
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

        .single article.post .single-post-meta .post-categories li, .single article.page .single-post-meta .post-categories li {
            display: inline-block;
            margin: 5px 5px 5px 0px;
        }

            .single article.post .single-post-meta .post-categories li a, .single article.page .single-post-meta .post-categories li a {
                display: inline-block;
                color: rgba(0,0,0,0.8);
                background-color: #fdf7e6;
                padding: 3px 6px;
            }

.single article.post .single-post-tags, .single article.page .single-post-tags {
    border-top: 1px dashed rgba(0,0,0,0.5);
    padding: 20px;
    padding-left: 60px;
    margin-top: 2em;
    position: relative;
}

    .single article.post .single-post-tags .os-icon, .single article.page .single-post-tags .os-icon {
        position: absolute;
        color: rgba(0,0,0,0.2);
        font-size: 30px;
        left: 5px;
        top: 20px;
    }

    .single article.post .single-post-tags ul, .single article.page .single-post-tags ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

        .single article.post .single-post-tags ul li, .single article.page .single-post-tags ul li {
            display: inline-block;
            margin: 5px 5px 5px 0px;
            font-size: 12px;
        }

            .single article.post .single-post-tags ul li a, .single article.page .single-post-tags ul li a {
                color: rgba(0,0,0,0.8);
                display: inline-block;
                background-color: #e9f4fb;
                border-radius: 6px;
                padding: 3px 6px;
            }

                .single article.post .single-post-tags ul li a:hover, .single article.page .single-post-tags ul li a:hover {
                    text-decoration: none;
                    background-color: #111;
                    color: #fff;
                }

.single-big-media {
    background-color: #fff;
}

    .single-big-media .single-main-media {
        text-align: center;
        padding: 10px;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

        .single-big-media .single-main-media .arve-wrapper {
            margin-bottom: 0px;
        }

        .single-big-media .single-main-media img {
            display: inline-block;
            max-width: 100%;
            height: auto;
            border-radius: 6px;
        }

.big-meta-box {
    border-top: 1px solid rgba(0,0,0,0.1);
    background-color: #fff;
    padding: 20px 0px;
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    font-size: 22px;
}

    .big-meta-box ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
        text-align: center;
    }

        .big-meta-box ul li {
            display: inline-block;
            padding: 5px 25px;
            border-right: 1px solid rgba(0,0,0,0.1);
        }

            .big-meta-box ul li a {
                color: rgba(0,0,0,0.8);
            }

            .big-meta-box ul li i {
                margin-right: 10px;
            }

            .big-meta-box ul li:last-child {
                margin-right: 0px;
                border-right: none;
            }

            .big-meta-box ul li .review-stars-w {
                display: inline-block;
                vertical-align: top;
            }

                .big-meta-box ul li .review-stars-w .os-icon {
                    font-size: 15px;
                    margin-right: 7px;
                }

                    .big-meta-box ul li .review-stars-w .os-icon.rating-star-on {
                        color: #f8c100;
                    }

                    .big-meta-box ul li .review-stars-w .os-icon.rating-star-off {
                        color: #a3a3a3;
                    }

            .big-meta-box ul li .single-meta-total-reviews {
                vertical-align: middle;
                color: rgba(0,0,0,0.4);
                font-size: 16px;
            }

.side-meta-box {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 20px 0px;
    margin-bottom: 20px;
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    font-size: 24px;
}

    .side-meta-box ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
        text-align: center;
    }

        .side-meta-box ul li {
            display: inline-block;
            padding: 5px 25px;
            border-right: 1px solid rgba(0,0,0,0.1);
        }

            .side-meta-box ul li a {
                color: rgba(0,0,0,0.8);
            }

            .side-meta-box ul li i {
                margin-right: 10px;
            }

            .side-meta-box ul li:last-child {
                margin-right: 0px;
                border-right: none;
            }

.margin-t0 {
    margin-top: 0 !important;
}

.scroll-to {
    scroll-margin-top: 100px;
}

.text-box {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px 0px;
    margin-bottom: 20px;
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    font-size: 24px;
}

    .text-box h2 {
        list-style: none;
        margin: 0px;
        padding: 0px;
        text-align: center;
        margin-top: 0 !important;
    }

    .text-box ul li {
        display: inline-block;
        padding: 5px 25px;
        border-right: 1px solid rgba(0,0,0,0.1);
    }

    .text-box h2 a {
        color: rgba(0,0,0,0.8);
    }

    .text-box ul li i {
        margin-right: 10px;
    }

    .text-box ul li:last-child {
        margin-right: 0px;
        border-right: none;
    }

.post-share-box {
    background-color: #eff5f8;
    padding: 30px;
    padding-top: 20px;
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    display: none;
    border-radius: 6px;
}

    .post-share-box .psb-close {
        position: absolute;
        right: 20px;
        top: 20px;
        color: rgba(0,0,0,0.6);
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
        font-size: 18px;
    }

        .post-share-box .psb-close:hover {
            cursor: pointer;
            -webkit-transform: rotate(360deg);
            -moz-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            -o-transform: rotate(360deg);
        }

    .post-share-box .post-share-header {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 20px;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .post-share-box .psb-links {
        text-align: center;
    }

        .post-share-box .psb-links .psb-link {
            width: 60px;
            height: 60px;
            padding: 10px;
            margin: 0px 5px;
            display: inline-block;
            color: #fff;
            text-align: center;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
            text-decoration: none !important;
            -webkit-opacity: 0.8;
            -moz-opacity: 0.8;
            opacity: 0.8;
        }

            .post-share-box .psb-links .psb-link i {
                font-size: 32px;
                line-height: 40px;
            }

            .post-share-box .psb-links .psb-link.psb-facebook {
                background-color: #3b5998;
            }

            .post-share-box .psb-links .psb-link.psb-twitter {
                background-color: #5ea9dd;
            }

            .post-share-box .psb-links .psb-link.psb-pinterest {
                background-color: #cc2026;
            }

            .post-share-box .psb-links .psb-link.psb-mail {
                background-color: #272727;
            }

            .post-share-box .psb-links .psb-link:hover {
                text-decoration: none;
                cursor: pointer;
                -webkit-opacity: 1;
                -moz-opacity: 1;
                opacity: 1;
            }

    .post-share-box .psb-url {
        margin-top: 30px;
    }

        .post-share-box .psb-url .psb-url-heading {
            font-size: 10px;
            color: rgba(0,0,0,0.5);
            text-transform: uppercase;
            margin-bottom: 5px;
            text-align: center;
        }

        .post-share-box .psb-url .psb-url-input {
            display: block;
            padding: 5px;
            border: 1px solid rgba(0,0,0,0.2);
            font-size: 14px;
            color: rgba(0,0,0,0.6);
            width: 100%;
            text-align: center;
        }

.single-panel {
    background-color: #fff;
    display: table;
    table-layout: fixed;
    border-top: 1px solid rgba(0,0,0,0.1);
}

    .single-panel .single-panel-main {
        display: table-cell;
        vertical-align: top;
        width: 55%;
        padding: 50px;
        position: relative;
        padding-bottom: 0px;
    }

    .single-panel .single-panel-main-no-top-padding {
        padding-top: 0px !important;
    }

    .single-panel .single-panel-main .edit-post-link {
        position: absolute;
        top: 5px;
        right: 5px;
    }

        .single-panel .single-panel-main .edit-post-link a {
            display: inline-block;
            padding: 5px 10px;
            background-color: #ae2b2b;
            color: #fff;
            text-transform: uppercase;
            font-size: 11px;
        }

    .single-panel .single-panel-main .single-title {
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 30px;
        padding-top: 20px;
    }

        .single-panel .single-panel-main .single-title h1,
        .single-panel .single-panel-main .single-title .like-title {
            font-size: 61px;
        }

        .single-panel .single-panel-main .single-title h3 {
            text-transform: uppercase;
            color: rgba(128,128,128,0.9);
            margin-top: 10px;
        }

    .single-panel .single-panel-main .quick-description-quote {
        font-size: 27px;
        line-height: 1.4;
        padding: 20px 80px;
        font-style: italic;
        position: relative;
        z-index: 1;
        text-align: center;
        font-family: 'Neucha', cursive;
    }

    .single-panel .single-panel-main .single-recipe-custom-taxonomies {
        border-bottom: 1px dashed rgba(0,0,0,0.1);
        padding-bottom: 10px;
        padding-top: 10px;
    }

        .single-panel .single-panel-main .single-recipe-custom-taxonomies.position-single {
            border-top: 1px dashed rgba(0,0,0,0.1);
            padding: 10px 40px;
        }

        .single-panel .single-panel-main .single-recipe-custom-taxonomies:before, .single-panel .single-panel-main .single-recipe-custom-taxonomies:after {
            content: " ";
            display: table;
        }

        .single-panel .single-panel-main .single-recipe-custom-taxonomies:after {
            clear: both;
        }

        .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-features {
            float: left;
        }

            .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-features .single-recipe-features-header {
                float: left;
                margin-right: 20px;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 16px;
                color: rgba(0,0,0,0.4);
                text-transform: uppercase;
                padding: 3px 0px;
            }

            .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-features ul {
                list-style: none;
                float: right;
            }

                .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-features ul li {
                    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                    font-weight: 400;
                    font-size: 16px;
                    text-transform: uppercase;
                    float: left;
                    margin-right: 15px;
                    position: relative;
                }

                    .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-features ul li img {
                        height: 25px;
                        width: auto;
                    }

        .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-cuisines {
            float: right;
            margin-left: 50px;
        }

            .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-cuisines .single-recipe-cuisines-header {
                float: left;
                margin-right: 0px;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 16px;
                color: rgba(0,0,0,0.4);
                text-transform: uppercase;
                padding: 3px 0px;
            }

            .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-cuisines ul {
                list-style: none;
                float: left;
            }

                .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-cuisines ul li {
                    float: left;
                    margin-left: 10px;
                }

            .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-cuisines a {
                float: left;
                text-decoration: none;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                color: rgba(0,0,0,0.9);
                text-transform: uppercase;
                font-size: 16px;
                position: relative;
                display: inline-block;
            }

                .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-cuisines a .single-recipe-cuisine-label {
                    padding: 3px 12px;
                    line-height: 20px;
                    vertical-align: middle;
                    border: 1px solid rgba(0,0,0,0.8);
                    border-radius: 4px;
                    margin-right: 5px;
                    display: block;
                    float: left;
                    display: none;
                }

                .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-cuisines a .single-recipe-cuisine-image {
                    float: left;
                    vertical-align: middle;
                    line-height: 24px;
                    display: block;
                }

                    .single-panel .single-panel-main .single-recipe-custom-taxonomies .single-recipe-cuisines a .single-recipe-cuisine-image img {
                        height: 20px;
                        width: auto;
                        vertical-align: middle;
                    }

    .single-panel .single-panel-main .single-meta {
        background-color: #ecf6f6;
        padding: 10px 0px;
        margin-bottom: 60px;
        border-radius: 6px;
    }

        .single-panel .single-panel-main .single-meta ul {
            list-style: none;
            padding: 0px;
            text-align: center;
        }

            .single-panel .single-panel-main .single-meta ul li {
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 24px;
                display: inline-block;
                border-right: 1px solid rgba(0,0,0,0.1);
                padding: 10px 30px;
            }

                .single-panel .single-panel-main .single-meta ul li:first-child {
                    border-left: none;
                }

                .single-panel .single-panel-main .single-meta ul li:last-child {
                    border-right: none;
                }

                .single-panel .single-panel-main .single-meta ul li .os-icon {
                    margin-right: 15px;
                    font-size: 28px;
                    vertical-align: middle;
                }

                .single-panel .single-panel-main .single-meta ul li span {
                    vertical-align: middle;
                }

        .single-panel .single-panel-main .single-meta.single-meta-at-bottom {
            background-color: #f2f4f5;
            text-transform: uppercase;
            margin-top: 50px;
        }

            .single-panel .single-panel-main .single-meta.single-meta-at-bottom ul li {
                font-size: 19px;
            }

                .single-panel .single-panel-main .single-meta.single-meta-at-bottom ul li .os-icon {
                    color: rgba(0,0,0,0.5);
                    font-size: 16px;
                    line-height: 32px;
                }

                .single-panel .single-panel-main .single-meta.single-meta-at-bottom ul li.social-bottom-comments .os-icon {
                    font-size: 24px;
                    color: #000;
                }

                .single-panel .single-panel-main .single-meta.single-meta-at-bottom ul li.social-bottom-author {
                    padding: 0px 0px 0px 20px;
                    line-height: 50px;
                }

                    .single-panel .single-panel-main .single-meta.single-meta-at-bottom ul li.social-bottom-author a {
                        vertical-align: middle;
                        display: inline-block;
                    }

                        .single-panel .single-panel-main .single-meta.single-meta-at-bottom ul li.social-bottom-author a img {
                            vertical-align: middle;
                        }

            .single-panel .single-panel-main .single-meta.single-meta-at-bottom img {
                border-radius: 50%;
                margin-right: 10px;
            }

            .single-panel .single-panel-main .single-meta.single-meta-at-bottom a {
                color: rgba(0,0,0,0.8);
            }

            .single-panel .single-panel-main .single-meta.single-meta-at-bottom .social-links .os-icon {
                font-size: 25px;
                margin-right: 2px;
                color: rgba(0,0,0,0.8);
            }

    .single-panel .single-panel-details {
        display: table-cell;
        vertical-align: top;
        width: 45%;
        border-right: 1px solid rgba(0,0,0,0.1);
        padding: 50px;
        position: relative;
    }

        .single-panel .single-panel-details .single-panel-details-i {
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .single-panel .single-panel-details img {
            max-width: 100%;
            height: auto;
        }

        .single-panel .single-panel-details .magic-box-w {
            padding-top: 50px;
        }

            .single-panel .single-panel-details .magic-box-w img {
                max-width: 100%;
                height: auto;
            }

            .single-panel .single-panel-details .magic-box-w:first-child {
                padding-top: 0px;
            }

    .single-panel .single-main-media {
        margin-bottom: 40px;
    }

.single-content {
    padding: 0px 40px;
}

    .single-content h2 {
        margin-top: 60px;
    }

.single-recipe-bookmark-box .bookmark-label {
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #aab9c3;
    margin-bottom: 5px;
}

.single-ingredients, .single-nutritions, .single-recipe-bookmark-box {
    position: relative;
}

    .single-ingredients .close-btn, .single-nutritions .close-btn, .single-recipe-bookmark-box .close-btn {
        display: none;
        font-size: 18px;
        color: rgba(0,0,0,0.7);
        position: absolute;
        right: 22px;
        top: 22px;
    }

.single-ingredients {
    background-color: #faf5f1;
    padding: 40px 60px;
    margin-bottom: 40px;
    border-radius: 6px;
}

    .single-ingredients h3 {
        font-size: 34px;
        padding-bottom: 30px;
        border-bottom: 1px dashed rgba(0,0,0,0.1);
    }

        .single-ingredients h3 i {
            margin-right: 25px;
            font-size: 30px;
        }

    .single-ingredients table.ingredients-table {
        width: 100%;
    }

        .single-ingredients table.ingredients-table td {
            border-bottom: 1px solid #efe0d3;
            padding: 10px 20px;
            font-size: 20px;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
        }

            .single-ingredients table.ingredients-table td.ingredient-action {
                cursor: pointer;
                width: 40px;
                padding: 10px 5px;
                text-align: center;
                border-right: 1px solid #efe0d3;
            }

                .single-ingredients table.ingredients-table td.ingredient-action .ingredient-mark-icon {
                    font-size: 16px;
                }

                .single-ingredients table.ingredients-table td.ingredient-action .ingredient-mark-icon {
                    color: rgba(0,0,0,0.4);
                }

            .single-ingredients table.ingredients-table td .ingredient-heading {
                font-size: 18px;
                padding-top: 30px;
                text-transform: uppercase;
                color: rgba(0,0,0,0.5);
            }

            .single-ingredients table.ingredients-table td .ingredient-name a {
                color: rgba(0,0,0,0.8);
                border-bottom: 1px dotted rgba(0,0,0,0.8);
            }

                .single-ingredients table.ingredients-table td .ingredient-name a:hover {
                    border-bottom: 1px solid #111;
                }

            .single-ingredients table.ingredients-table td .ingredient-info-popup {
                display: none;
                position: absolute;
                bottom: 20px;
                left: 20px;
                z-index: 999;
            }

            .single-ingredients table.ingredients-table td .ingredient-info-icon {
                margin-left: 5px;
                color: #836a57;
                font-size: 16px;
                position: relative;
            }

                .single-ingredients table.ingredients-table td .ingredient-info-icon:hover .ingredient-info-popup {
                    display: block;
                    width: 300px;
                    background-color: #000;
                    color: #fff;
                    padding: 10px 15px;
                    font-size: 18px;
                }

        .single-ingredients table.ingredients-table tr.ingredient-off .ingredient-amount, .single-ingredients table.ingredients-table tr.ingredient-off .ingredient-name {
            text-decoration: line-through;
        }

        .single-ingredients table.ingredients-table tr.ingredient-off td .ingredient-mark-icon {
            color: rgba(111,150,44,0.8);
        }

.single-nutritions {
    background-color: #e5f3eb;
    padding: 40px 60px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.single-allergens {
    background-color: #dcdcdc !important;
}

.single-nutritions h3 {
    font-size: 34px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

    .single-nutritions h3 i {
        margin-right: 25px;
        font-size: 30px;
    }

.single-nutritions .single-nutritions-list {
    text-align: center;
    margin: 0px -8%;
}

    .single-nutritions .single-nutritions-list .single-nutrition {
        display: inline-block;
        width: 25%;
        margin: 2%;
        background-color: rgba(255,255,255,0.5);
        padding: 10px;
        border-radius: 6px;
    }

        .single-nutritions .single-nutritions-list .single-nutrition .single-nutrition-value {
            font-size: 22px;
            font-weight: 700;
            color: rgba(0,0,0,0.7);
        }

        .single-nutritions .single-nutritions-list .single-nutrition .single-nutrition-name {
            margin-top: 5px;
            padding-top: 10px;
            border-top: 1px solid rgba(0,0,0,0.1);
            color: rgba(0,0,0,0.4);
        }

.single-steps table.recipe-steps-table {
    table-layout: fixed;
    width: 100%;
}

    .single-steps table.recipe-steps-table tr {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

        .single-steps table.recipe-steps-table tr td {
            vertical-align: top;
        }

        .single-steps table.recipe-steps-table tr:last-child {
            border-bottom: none;
        }

.single-steps .single-step-title {
    font-size: 21px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    text-transform: uppercase;
}

.single-steps .single-step-description {
    padding-bottom: 40px;
    padding-top: 40px;
    padding-left: 40px;
}

    .single-steps .single-step-description .single-step-description-i {
        position: relative;
    }

.single-steps .single-step-number {
    padding-top: 40px;
    width: 80px;
    text-align: center;
}

    .single-steps .single-step-number .single-step-number-i {
        cursor: pointer;
        border-radius: 6px;
        padding: 5px 0px 7px 0px;
        border: 1px solid #f9f9f9;
        background-color: #f9f9f9;
    }

        .single-steps .single-step-number .single-step-number-i:hover {
            border-color: #ccc;
            background-color: #fff;
        }

            .single-steps .single-step-number .single-step-number-i:hover .single-step-control {
                border-top-color: #ccc;
            }

    .single-steps .single-step-number .single-step-duration {
        margin-top: 30px;
        background-color: #cf2b55;
        color: #fff;
        padding: 4px 5px;
        text-align: center;
        border-radius: 4px;
        font-size: 12px;
        vertical-align: middle;
    }

        .single-steps .single-step-number .single-step-duration i.os-icon {
            margin-right: 3px;
            font-size: 18px;
            vertical-align: middle;
        }

    .single-steps .single-step-number .single-step-number-value {
        font-size: 48px;
        line-height: 62px;
        font-weight: 700;
        color: rgba(0,0,0,0.1);
    }

    .single-steps .single-step-number .single-step-control {
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 7px;
        margin-top: 3px;
    }

        .single-steps .single-step-number .single-step-control i.os-icon {
            font-size: 16px;
            color: rgba(0,0,0,0.8);
        }

        .single-steps .single-step-number .single-step-control .single-step-complete-label {
            font-size: 18px;
            display: inline-block;
            margin-left: 5px;
            text-transform: uppercase;
            color: rgba(0,0,0,0.8);
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
        }

.single-steps .single-step-media {
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-bottom: 30px;
}

    .single-steps .single-step-media:before, .single-steps .single-step-media:after {
        content: " ";
        display: table;
    }

    .single-steps .single-step-media:after {
        clear: both;
    }

    .single-steps .single-step-media li {
        float: left;
        width: 25%;
        padding-right: 5px;
        padding-bottom: 5px;
    }

        .single-steps .single-step-media li img {
            max-width: 100%;
            height: auto;
        }

    .single-steps .single-step-media.single-media-1-image li {
        width: 100%;
    }

    .single-steps .single-step-media.single-media-2-image li {
        width: 50%;
    }

    .single-steps .single-step-media.single-media-3-image li {
        width: 33%;
    }

    .single-steps .single-step-media.single-media-4-image li {
        width: 25%;
    }

    .single-steps .single-step-media.single-media-5-image li {
        width: 20%;
    }

.single-steps tr.step-off .single-step-number-i {
    background-color: #fff;
    border-color: #bbb;
}

    .single-steps tr.step-off .single-step-number-i:hover {
        border-color: #bbb;
    }

        .single-steps tr.step-off .single-step-number-i:hover .single-step-control {
            border-top: 1px solid #bbb;
        }

    .single-steps tr.step-off .single-step-number-i .single-step-control {
        border-top: 1px solid #ccc;
    }

        .single-steps tr.step-off .single-step-number-i .single-step-control i.os-icon {
            color: #327e53;
        }

.single-steps tr.step-off .single-step-description-i {
    /*height: 200px;*/
    overflow: hidden;
}

    .single-steps tr.step-off .single-step-description-i .step-off-fader {
        background-image: -webkit-linear-gradient(top,rgba(255,255,255,0) 0%,#fff 100%);
        background-image: linear-gradient(to bottom,rgba(255,255,255,0) 0%,#fff 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffffff', GradientType=0);
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
    }

.single-main-media {
    text-align: center;
}

    .single-main-media .single-main-media-image-w {
        position: relative;
        cursor: pointer;
        display: none;
    }

        .single-main-media .single-main-media-image-w.active {
            display: block;
        }

        .single-main-media .single-main-media-image-w.has-gallery {
            margin: 0px 5px 10px 5px;
        }

    .single-main-media img {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 6px;
    }

    .single-main-media .owl-carousel {
        position: relative;
    }

    .single-main-media .owl-controls .owl-nav .owl-prev, .single-main-media .owl-controls .owl-nav .owl-next {
        background-color: #fff;
        padding: 8px 12px;
        color: #000;
        border-radius: 6px;
        text-align: center;
        transform: translateZ(0);
    }

        .single-main-media .owl-controls .owl-nav .owl-prev i, .single-main-media .owl-controls .owl-nav .owl-next i {
            vertical-align: middle;
        }

    .single-main-media .owl-controls .owl-nav .owl-prev {
        position: absolute;
        left: -40px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        padding-right: 14px;
    }

    .single-main-media .owl-controls .owl-nav .owl-next {
        position: absolute;
        right: -40px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        padding-left: 14px;
    }

.single-post-gallery-images {
    margin-top: 5px;
}

    .single-post-gallery-images .single-post-gallery-images-i {
        margin: 0px;
        padding: 0px;
    }

        .single-post-gallery-images .single-post-gallery-images-i .gallery-image-source {
            position: relative;
            display: inline-block;
            margin: 0px 5px;
            cursor: pointer;
        }

            .single-post-gallery-images .single-post-gallery-images-i .gallery-image-source img {
                border-radius: 6px;
            }

        .single-post-gallery-images .single-post-gallery-images-i:not(.owl-carousel) {
            height: 0px;
            overflow: hidden;
            padding-bottom: 23%;
        }

            .single-post-gallery-images .single-post-gallery-images-i:not(.owl-carousel) .gallery-image-source {
                width: 25%;
                margin: 0px;
                padding: 0px 1%;
            }

.single-post-navigation {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 50px 0px;
    margin-top: 40px;
}

    .single-post-navigation:before, .single-post-navigation:after {
        content: " ";
        display: table;
    }

    .single-post-navigation:after {
        clear: both;
    }

    .single-post-navigation a {
        display: block;
        float: left;
        width: 45%;
        margin: 0px 5%;
        background-color: #ecf2f5;
        padding: 20px;
        color: rgba(0,0,0,0.8);
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 20px;
        border-radius: 6px;
    }

        .single-post-navigation a figure {
            margin-bottom: 15px;
            position: relative;
        }

            .single-post-navigation a figure .fader {
                position: absolute;
                top: 0px;
                right: 0px;
                bottom: 0px;
                left: 0px;
                background-color: rgba(0,0,0,0.3);
                border-radius: 6px;
            }

                .single-post-navigation a figure .fader .fader-label {
                    text-align: center;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    display: inline-block;
                    -webkit-transform: translate(-50%,-50%);
                    -moz-transform: translate(-50%,-50%);
                    -ms-transform: translate(-50%,-50%);
                    -o-transform: translate(-50%,-50%);
                    color: #fff;
                    font-weight: 400;
                    font-size: 22px;
                    padding: 2px 8px;
                }

                    .single-post-navigation a figure .fader .fader-label i {
                        display: inline-block;
                    }

                    .single-post-navigation a figure .fader .fader-label span {
                        display: block;
                    }

            .single-post-navigation a figure img {
                display: block;
                max-width: 100%;
                height: auto;
                border-radius: 6px;
            }

        .single-post-navigation a span {
            display: block;
        }

        .single-post-navigation a:hover .fader {
            background-color: rgba(0,0,0,0.5);
        }

        .single-post-navigation a:first-child {
            margin-left: 0px;
        }

        .single-post-navigation a:last-child {
            margin-right: 0px;
        }

.single-post-about-author {
    padding: 40px;
    background-color: #faf5f1;
    border-radius: 6px;
}

    .single-post-about-author:before, .single-post-about-author:after {
        content: " ";
        display: table;
    }

    .single-post-about-author:after {
        clear: both;
    }

    .single-post-about-author h3 {
        margin-top: 0px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    }

    .single-post-about-author .author-avatar-w {
        float: left;
        width: 20%;
    }

        .single-post-about-author .author-avatar-w img {
            max-width: 100%;
            height: auto;
            border-radius: 50px;
        }

    .single-post-about-author .author-details {
        float: left;
        width: 80%;
        padding-left: 30px;
    }

        .single-post-about-author .author-details .author-name {
            margin-top: 0px;
            margin-bottom: 5px;
            padding-bottom: 0px;
        }

            .single-post-about-author .author-details .author-name a {
                color: rgba(0,0,0,0.9);
            }

        .single-post-about-author .author-details p {
            margin: 0px 0px 10px;
            font-size: 14px;
        }

        .single-post-about-author .author-details .author-social-links {
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 5px;
        }

            .single-post-about-author .author-details .author-social-links a {
                display: inline-block;
                color: rgba(0,0,0,0.4);
                margin-right: 5px;
                font-size: 24px;
            }

                .single-post-about-author .author-details .author-social-links a:hover {
                    color: #000;
                }

.widget .shortcode-categories-icons table {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

    .widget .shortcode-categories-icons table tr td {
        padding: 25px 0px 25px 0px;
        border-right: 1px dashed rgba(0,0,0,0.1);
        border-bottom: 1px dashed rgba(0,0,0,0.1);
    }

        .widget .shortcode-categories-icons table tr td:last-child {
            border-right: none;
        }

    .widget .shortcode-categories-icons table tr:last-child td {
        border-bottom: none;
    }

.widget .shortcode-categories-icons a {
    color: rgba(0,0,0,0.9);
}

.widget .shortcode-categories-icons h3 {
    margin-top: 10px;
    margin-bottom: 0px;
}

.widget .shortcode-categories-icons img {
    width: 48px;
    height: auto;
}

.widget.with-ribbon .shortcode-categories-icons table {
    margin-top: -30px;
}

.widget.widget_mc4wp_widget, .widget.widget_mc4wp_form_widget {
    text-align: center;
    margin-bottom: 40px;
}

    .widget.widget_mc4wp_widget label, .widget.widget_mc4wp_form_widget label {
        color: rgba(0,0,0,0.6);
        font-size: 12px;
        margin-bottom: 15px;
        display: block;
    }

    .widget.widget_mc4wp_widget #mc4wp_email, .widget.widget_mc4wp_widget input[type="email"], .widget.widget_mc4wp_widget input[type="text"], .widget.widget_mc4wp_form_widget #mc4wp_email, .widget.widget_mc4wp_form_widget input[type="email"], .widget.widget_mc4wp_form_widget input[type="text"] {
        background-color: #f2f5f5;
        border: 1px solid #d5dfdf;
        -webkit-box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,0.1);
        box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,0.1);
        font-size: 14px;
        padding: 15px 10px;
        border-radius: 4px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .widget.widget_mc4wp_widget input[type="submit"], .widget.widget_mc4wp_form_widget input[type="submit"] {
        background-color: #eaf0f3;
        color: #40494f;
        padding: 5px 15px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 19px;
        border-radius: 3px;
        -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
        border: 1px solid #828f98;
        border-bottom-color: #5d6971;
        display: none;
    }

    .widget.widget_mc4wp_widget .mc4wp-alert, .widget.widget_mc4wp_form_widget .mc4wp-alert {
        font-size: 14px;
        padding: 10px;
        margin-top: 10px;
        border-radius: 4px;
    }

        .widget.widget_mc4wp_widget .mc4wp-alert.mc4wp-success, .widget.widget_mc4wp_form_widget .mc4wp-alert.mc4wp-success {
            background-color: #d8ecc6;
            color: #414a39;
            border: 1px solid #b9c9ab;
        }

    .widget.widget_mc4wp_widget p, .widget.widget_mc4wp_form_widget p {
        margin-bottom: 0px;
    }

.widget.widget_calendar .details-heading:before {
    font-family: 'osfont';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f133";
    font-size: 20px;
    margin-right: 15px;
}

.widget.widget_calendar caption {
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 5px;
}

.widget.widget_calendar table {
    width: 100%;
    font-size: 15px;
}

.widget.widget_calendar th {
    text-align: right;
    padding: 5px;
    border: none;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.widget.widget_calendar tfoot td {
    padding-top: 10px;
}

.widget.widget_calendar tbody td {
    text-align: right;
    padding: 5px;
    border: 1px solid rgba(0,0,0,0.05);
}

.widget.widget_categories ul, .widget.widget_pages ul, .widget.widget_meta ul, .widget.widget_recent_entries ul, .widget.widget_nav_menu ul, .widget.widget_archive ul, .widget.widget_recent_comments ul {
    list-style: none;
}

    .widget.widget_categories ul li, .widget.widget_pages ul li, .widget.widget_meta ul li, .widget.widget_recent_entries ul li, .widget.widget_nav_menu ul li, .widget.widget_archive ul li, .widget.widget_recent_comments ul li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 8px;
        margin-bottom: 3px;
        font-size: 14px;
        color: rgba(77,77,77,0.8);
    }

        .widget.widget_categories ul li a, .widget.widget_pages ul li a, .widget.widget_meta ul li a, .widget.widget_recent_entries ul li a, .widget.widget_nav_menu ul li a, .widget.widget_archive ul li a, .widget.widget_recent_comments ul li a {
            font-size: 16px;
            color: rgba(0,0,0,0.8);
            border-bottom: 1px solid rgba(0,0,0,0.8);
            padding-bottom: 2px;
            display: inline-block;
        }

        .widget.widget_categories ul li:last-child, .widget.widget_pages ul li:last-child, .widget.widget_meta ul li:last-child, .widget.widget_recent_entries ul li:last-child, .widget.widget_nav_menu ul li:last-child, .widget.widget_archive ul li:last-child, .widget.widget_recent_comments ul li:last-child {
            border-bottom: none;
        }

.widget.widget_nav_menu li ul {
    padding: 0px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
    list-style-type: square;
}

    .widget.widget_nav_menu li ul li {
        padding: 0px;
    }

.widget.widget_recent_comments {
    text-align: left;
    font-size: 14px;
}

    .widget.widget_recent_comments ul li a, .widget.widget_recent_comments ul li {
        font-size: 14px;
    }

    .widget.widget_recent_comments .comment-author-link {
        display: block;
        margin-bottom: 5px;
        font-size: 20px;
        text-transform: uppercase;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
    }

        .widget.widget_recent_comments .comment-author-link a {
            font-size: 20px;
        }

.widget.widget_categories .screen-reader-text, .widget.widget_archive .screen-reader-text {
    display: none;
    font-size: 12px;
    margin-bottom: 5px;
    text-align: center;
}

.widget.widget_categories select, .widget.widget_archive select {
    display: block;
    width: 100%;
    padding: 5px;
}

.widget.widget_rss .screen-reader-text {
    display: none;
}

.widget.widget_rss .details-heading .rsswidget img {
    display: none;
}

.widget.widget_rss .details-heading .rsswidget {
    margin-left: -3px;
}

.widget.widget_rss .details-heading:before {
    font-family: 'osfont';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f143";
    font-size: 20px;
    margin-right: 15px;
}

.widget.widget_rss .rssSummary {
    font-size: 14px;
}

.widget.widget_rss cite {
    display: block;
    text-align: right;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
}

.widget.widget_rss .rss-date {
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    border-bottom: 1px dotted rgba(0,0,0,0.1);
    border-top: 1px dotted rgba(0,0,0,0.1);
    padding: 5px 0px;
    margin: 5px 0px;
}

.widget.widget_rss li {
    list-style: none;
    margin-bottom: 20px;
}

.widget.widget_text img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    margin-top: 10px;
}

.widget.widget_text .details-heading:before {
    font-family: 'osfont';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f1ea";
    font-size: 20px;
    margin-right: 15px;
}

.widget.widget_text select {
    max-width: 100%;
}

.widget.widget_search label {
    display: block;
}

.widget.widget_search .search-field {
    border: none;
    padding: 15px;
    font-size: 19px;
    line-height: 1.2;
    height: 50px;
    border-radius: 4px;
    width: 100%;
    display: block;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.15);
}

.widget.widget_search .screen-reader-text {
    display: none;
}

.widget.widget_search .details-heading:before {
    font-family: 'osfont';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f002";
    font-size: 20px;
    margin-right: 15px;
}

.widget.widget_search .search-submit {
    display: none;
}

.widget.widget_tag_cloud .tagcloud {
    text-align: center;
}

    .widget.widget_tag_cloud .tagcloud a {
        display: inline-block;
        margin-right: 2px;
        margin-bottom: 5px;
        padding: 2px 7px 1px;
        border: 1px solid rgba(51,51,51,0.8);
        border-radius: 4px;
        font-size: 12px !important;
        color: rgba(0,0,0,0.8);
    }

        .widget.widget_tag_cloud .tagcloud a:hover {
            text-decoration: none;
        }

.widget.widget_widget_tptn_pop ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

    .widget.widget_widget_tptn_pop ul li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 5px 8px;
        margin-bottom: 3px;
    }

        .widget.widget_widget_tptn_pop ul li:before, .widget.widget_widget_tptn_pop ul li:after {
            content: " ";
            display: table;
        }

        .widget.widget_widget_tptn_pop ul li:after {
            clear: both;
        }

        .widget.widget_widget_tptn_pop ul li > a {
            display: block;
            float: left;
            width: 30%;
        }

            .widget.widget_widget_tptn_pop ul li > a img {
                max-width: 100%;
                height: auto;
                border-radius: 6px;
            }

        .widget.widget_widget_tptn_pop ul li .tptn_after_thumb {
            padding-left: 15px;
            display: block;
            width: 70%;
            float: left;
        }

            .widget.widget_widget_tptn_pop ul li .tptn_after_thumb a {
                font-size: 14px;
                color: rgba(0,0,0,0.8);
                display: block;
            }

.widget .shortcode-social-links {
    list-style: none;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

    .widget .shortcode-social-links li {
        line-height: 1;
        display: inline-block;
        margin: 0px 2px 5px 2px;
    }

        .widget .shortcode-social-links li a {
            font-size: 42px;
        }

.single-panel-details .widget {
    padding-bottom: 40px;
}

.archive-sidebar .widget, .page-sidebar .widget {
    margin-top: 40px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding-bottom: 20px;
}

    .archive-sidebar .widget:first-child, .page-sidebar .widget:first-child {
        margin-top: 0px;
    }

    .archive-sidebar .widget .widget-title, .page-sidebar .widget .widget-title {
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 30px;
    }

        .archive-sidebar .widget .widget-title span, .page-sidebar .widget .widget-title span {
            display: inline-block;
            padding: 5px 0px;
            border-bottom: 2px solid rgba(0,0,0,0.9);
        }

        .archive-sidebar .widget .widget-title a, .page-sidebar .widget .widget-title a {
            color: rgba(0,0,0,0.9);
        }

    .archive-sidebar .widget:last-child, .page-sidebar .widget:last-child {
        border-bottom: none;
    }

    .archive-sidebar .widget.widget_categories ul li:last-child, .page-sidebar .widget.widget_categories ul li:last-child {
        border-bottom: none;
    }

    .archive-sidebar .widget .shortcode-about-author, .page-sidebar .widget .shortcode-about-author {
        text-align: center;
    }

        .archive-sidebar .widget .shortcode-about-author .saa-avatar, .page-sidebar .widget .shortcode-about-author .saa-avatar {
            margin-bottom: 20px;
        }

            .archive-sidebar .widget .shortcode-about-author .saa-avatar img, .page-sidebar .widget .shortcode-about-author .saa-avatar img {
                max-width: 100%;
                height: auto;
            }

        .archive-sidebar .widget .shortcode-about-author .saa-content, .page-sidebar .widget .shortcode-about-author .saa-content {
            font-style: italic;
        }

    .archive-sidebar .widget.widget_widget_tptn_pop .tptn_after_thumb, .page-sidebar .widget.widget_widget_tptn_pop .tptn_after_thumb {
        padding-top: 5px;
    }

        .archive-sidebar .widget.widget_widget_tptn_pop .tptn_after_thumb .tptn_link, .page-sidebar .widget.widget_widget_tptn_pop .tptn_after_thumb .tptn_link {
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            font-size: 18px;
        }

        .archive-sidebar .widget.widget_widget_tptn_pop .tptn_after_thumb .tptn_excerpt, .page-sidebar .widget.widget_widget_tptn_pop .tptn_after_thumb .tptn_excerpt {
            font-size: 12px;
            margin-top: 5px;
            padding-top: 8px;
            border-top: 1px dashed rgba(0,0,0,0.1);
            display: block;
        }

    .archive-sidebar .widget.widget_widget_tptn_pop ul li, .page-sidebar .widget.widget_widget_tptn_pop ul li {
        padding: 0px 0px 10px 0px;
        margin: 0px 0px 10px 0px;
    }

        .archive-sidebar .widget.widget_widget_tptn_pop ul li:last-child, .page-sidebar .widget.widget_widget_tptn_pop ul li:last-child {
            border-bottom: none;
            padding-bottom: 0px;
        }

    .archive-sidebar .widget.widget_mc4wp_widget, .archive-sidebar .widget.widget_mc4wp_form_widget, .page-sidebar .widget.widget_mc4wp_widget, .page-sidebar .widget.widget_mc4wp_form_widget {
        padding: 20px 30px;
        border-radius: 6px;
        -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
        background-color: #fff;
        border-bottom: none;
    }

        .archive-sidebar .widget.widget_mc4wp_widget .widget-title, .archive-sidebar .widget.widget_mc4wp_form_widget .widget-title, .page-sidebar .widget.widget_mc4wp_widget .widget-title, .page-sidebar .widget.widget_mc4wp_form_widget .widget-title {
            margin-top: 0px;
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px dashed rgba(0,0,0,0.2);
        }

            .archive-sidebar .widget.widget_mc4wp_widget .widget-title span, .archive-sidebar .widget.widget_mc4wp_form_widget .widget-title span, .page-sidebar .widget.widget_mc4wp_widget .widget-title span, .page-sidebar .widget.widget_mc4wp_form_widget .widget-title span {
                padding: 0px;
                border-bottom: none;
            }

    .archive-sidebar .widget.with-ribbon .widget-title, .archive-sidebar .header-ribbon, .page-sidebar .widget.with-ribbon .widget-title, .page-sidebar .header-ribbon {
        background-image: url('/img/ribbon-dark.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top center;
        text-transform: uppercase;
        text-align: center;
        height: 90px;
        padding-top: 7px;
    }

        .archive-sidebar .widget.with-ribbon .widget-title span, .archive-sidebar .header-ribbon span, .page-sidebar .widget.with-ribbon .widget-title span, .page-sidebar .header-ribbon span {
            border-bottom: none;
            padding: 0px;
        }

.archive-sidebar.color-scheme-dark, .page-sidebar.color-scheme-dark {
    color: rgba(255,255,255,0.7);
}

    .archive-sidebar.color-scheme-dark .widget, .page-sidebar.color-scheme-dark .widget {
        border-bottom-color: rgba(255,255,255,0.2);
    }

    .archive-sidebar.color-scheme-dark .widget-title, .page-sidebar.color-scheme-dark .widget-title {
        color: rgba(255,255,255,0.8);
    }

        .archive-sidebar.color-scheme-dark .widget-title span, .page-sidebar.color-scheme-dark .widget-title span {
            border-bottom: 2px solid rgba(255,255,255,0.7);
        }

        .archive-sidebar.color-scheme-dark .widget-title a, .page-sidebar.color-scheme-dark .widget-title a {
            color: rgba(255,255,255,0.7);
        }

    .archive-sidebar.color-scheme-dark .widget.with-ribbon .widget-title, .archive-sidebar.color-scheme-dark .header-ribbon, .page-sidebar.color-scheme-dark .widget.with-ribbon .widget-title, .page-sidebar.color-scheme-dark .header-ribbon {
        color: rgba(255,255,255,0.8);
        background-image: url('/img/ribbon-light.png');
    }

    .archive-sidebar.color-scheme-dark .widget.widget_widget_tptn_pop ul li, .page-sidebar.color-scheme-dark .widget.widget_widget_tptn_pop ul li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        .archive-sidebar.color-scheme-dark .widget.widget_widget_tptn_pop ul li .tptn_after_thumb a, .page-sidebar.color-scheme-dark .widget.widget_widget_tptn_pop ul li .tptn_after_thumb a {
            color: rgba(255,255,255,0.8);
        }

        .archive-sidebar.color-scheme-dark .widget.widget_widget_tptn_pop ul li .tptn_after_thumb .tptn_excerpt, .page-sidebar.color-scheme-dark .widget.widget_widget_tptn_pop ul li .tptn_after_thumb .tptn_excerpt {
            border-top-color: rgba(255,255,255,0.3);
        }

    .archive-sidebar.color-scheme-dark .shortcode-categories-icons table tr td, .page-sidebar.color-scheme-dark .shortcode-categories-icons table tr td {
        border-right: 1px dashed rgba(255,255,255,0.1);
        border-bottom: 1px dashed rgba(255,255,255,0.1);
    }

        .archive-sidebar.color-scheme-dark .shortcode-categories-icons table tr td:last-child, .page-sidebar.color-scheme-dark .shortcode-categories-icons table tr td:last-child {
            border-right: none;
        }

    .archive-sidebar.color-scheme-dark .shortcode-categories-icons table tr:last-child td, .page-sidebar.color-scheme-dark .shortcode-categories-icons table tr:last-child td {
        border-bottom: none;
    }

    .archive-sidebar.color-scheme-dark .shortcode-categories-icons a, .page-sidebar.color-scheme-dark .shortcode-categories-icons a {
        color: rgba(255,255,255,0.8);
    }

    .archive-sidebar.color-scheme-dark .widget.widget_tag_cloud .tagcloud a, .page-sidebar.color-scheme-dark .widget.widget_tag_cloud .tagcloud a {
        border-color: rgba(255,255,255,0.5);
        color: rgba(255,255,255,0.8);
    }

    .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_widget, .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget, .page-sidebar.color-scheme-dark .widget.widget_mc4wp_widget, .page-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget {
        -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
        background-color: rgba(0,0,0,0.2);
    }

        .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_widget .widget-title, .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget .widget-title, .page-sidebar.color-scheme-dark .widget.widget_mc4wp_widget .widget-title, .page-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget .widget-title {
            border-bottom: 1px dashed rgba(255,255,255,0.2);
        }

        .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_widget label, .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget label, .page-sidebar.color-scheme-dark .widget.widget_mc4wp_widget label, .page-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget label {
            color: rgba(255,255,255,0.7);
        }

        .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_widget #mc4wp_email, .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_widget input[type="email"], .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_widget input[type="text"], .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget #mc4wp_email, .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget input[type="email"], .archive-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget input[type="text"], .page-sidebar.color-scheme-dark .widget.widget_mc4wp_widget #mc4wp_email, .page-sidebar.color-scheme-dark .widget.widget_mc4wp_widget input[type="email"], .page-sidebar.color-scheme-dark .widget.widget_mc4wp_widget input[type="text"], .page-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget #mc4wp_email, .page-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget input[type="email"], .page-sidebar.color-scheme-dark .widget.widget_mc4wp_form_widget input[type="text"] {
            background-color: rgba(0,0,0,0.2);
            border: rgba(0,0,0,0.3);
            -webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.1);
            box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.1);
        }

.pre-footer .widget {
    background-color: #fff;
    float: left;
    border-radius: 6px;
}

    .pre-footer .widget .widget-title {
        border-bottom: 1px dashed rgba(0,0,0,0.1);
        padding-bottom: 15px;
        margin-bottom: 15px;
        margin-top: 0px;
        text-align: center;
    }

    .pre-footer .widget .shortcode-categories-icons table {
        margin-top: 0px;
    }

.pre-footer.widgets-count-2 .widget {
    width: 47.5%;
    padding: 40px;
    margin-right: 5%;
}

    .pre-footer.widgets-count-2 .widget:last-child {
        margin-right: 0px;
    }

.pre-footer.widgets-count-3 .widget {
    width: 30%;
    padding: 30px;
    margin-right: 5%;
}

    .pre-footer.widgets-count-3 .widget:last-child {
        margin-right: 0px;
    }

.pre-footer.widgets-count-4 .widget {
    width: 22%;
    padding: 20px;
    margin-right: 4%;
}

    .pre-footer.widgets-count-4 .widget:last-child {
        margin-right: 0px;
    }

.pre-footer.widgets-count-4 .widget {
    width: 22%;
    padding: 20px;
    margin-right: 4%;
    margin-bottom: 4%;
}

    .pre-footer.widgets-count-4 .widget:last-child, .pre-footer.widgets-count-4 .widget:nth-child(4n) {
        margin-right: 0px;
    }

    .pre-footer.widgets-count-4 .widget:nth-child(4n + 5) {
        clear: left;
    }

.tooltip-trigger {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.tooltip-box {
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 4px;
    text-transform: uppercase;
    background-color: rgba(44,171,161,0.8);
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
}

    .tooltip-box .tooltip-box-header {
        white-space: nowrap;
    }

.big-meta-box .tooltip-box {
    top: -40px;
    background-color: rgba(44,171,161,0.9);
    font-size: 22px;
    padding: 5px 20px;
    text-transform: none;
    z-index: 9;
}

.main-search-form-overlay {
    position: fixed;
    display: none;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 9998;
    background-color: rgba(0,0,0,0.2);
}

.main-search-form {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 100px 5px rgba(0,0,0,0.7);
    box-shadow: 0px 0px 100px 5px rgba(0,0,0,0.7);
    border-radius: 6px;
    position: fixed;
    left: 50%;
    top: -400px;
    z-index: 9999;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    border: 2px solid rgba(0,0,0,0.9);
    overflow: auto;
    width: 550px;
}

    .main-search-form form .search-field-w:before {
        font-family: 'osfont';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f002";
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 32px;
        color: rgba(0,0,0,0.2);
    }

    /*.main-search-form form.search-loading .search-field-w:before {
        content: "\f110";
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
        -webkit-animation: spinningAnimation 0.8s linear infinite;
        animation: spinningAnimation 0.8s linear infinite;
    }*/

    .main-search-form form .search-field {
        padding: 20px;
        padding-left: 85px;
        font-size: 30px;
        border: none;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        background-color: transparent;
        outline: none;
        display: block;
        position: relative;
    }

        .main-search-form form .search-field:focus {
            outline: none;
        }

    .main-search-form form .search-submit {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #000;
        color: #fff;
        padding: 15px 30px;
        border: none;
        font-size: 24px;
        text-transform: uppercase;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        border-radius: 6px;
    }

.autosuggest-results .no-results-augosuggest {
    padding: 20px;
    color: rgba(0,0,0,0.6);
    margin: 0px;
}

.autosuggest-results .autosuggest-items {
    max-height: 300px;
    overflow-y: scroll;
    padding: 10px 0px;
}

.autosuggest-results .autosuggest-items-shadow {
    height: 1px;
    background-color: #111;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
    position: fixed;
    top: 81px;
    left: 0px;
    right: 0px;
}

.autosuggest-results .autosuggest-item {
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
    display: table;
    table-layout: fixed;
    width: 100%;
}

    .autosuggest-results .autosuggest-item .autosuggest-item-title {
        margin: 0px;
        padding: 20px;
        display: table-cell;
        vertical-align: middle;
    }

    .autosuggest-results .autosuggest-item .autosuggest-item-media-w {
        width: 80px;
        display: table-cell;
        vertical-align: middle;
    }

    .autosuggest-results .autosuggest-item .autosuggest-item-media-thumbnail {
        height: 80px;
        width: 100%;
        border-radius: 6px;
        position: relative;
        display: block;
    }

    .autosuggest-results .autosuggest-item:hover {
        background-color: #eee;
    }

        .autosuggest-results .autosuggest-item:hover .autosuggest-item-title {
            color: #000;
        }

.active-search-form .main-search-form {
    top: 50%;
}

.frontend-publisher-w {
    padding: 40px 60px;
    background-color: #f0f6f9;
    border-radius: 6px;
}

    .frontend-publisher-w #arve-btn {
        display: none;
    }

    .frontend-publisher-w .select2-container.-acf .select2-choice {
        border-color: #adc9da;
    }

        .frontend-publisher-w .select2-container.-acf .select2-choice .select2-arrow {
            border-left-color: #adc9da;
        }

    .frontend-publisher-w .select2-container .select2-choice .select2-arrow b {
        background-position: 0 6px;
    }

    .frontend-publisher-w .select2-default {
        color: #577d93 !important;
    }

    .frontend-publisher-w #message.updated {
        background-color: #4ba667;
        color: #fff;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 20px;
        padding: 30px;
        padding-left: 130px;
        position: relative;
    }

        .frontend-publisher-w #message.updated:before {
            font-family: 'osfont';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "\f00c";
            color: #fff;
            border-right: 1px solid #fff;
            padding-right: 30px;
            position: absolute;
            left: 35px;
            font-size: 30px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
        }

        .frontend-publisher-w #message.updated p {
            margin: 0px;
        }

    .frontend-publisher-w .acf-actions li {
        float: left;
        margin-top: 10px;
    }

    .frontend-publisher-w .acf-gallery-sort {
        display: none;
    }

    .frontend-publisher-w .acf-fields.-left > .acf-field:before {
        background: transparent;
    }

    .frontend-publisher-w .view.hide-if-value {
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 18px;
        color: #567c92;
    }

        .frontend-publisher-w .view.hide-if-value .acf-button {
            margin-left: 10px;
        }

    .frontend-publisher-w .form-header {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 10px;
        font-size: 28px;
        margin-bottom: 30px;
    }

    .frontend-publisher-w .acf-tab-wrap {
        display: none;
    }

    .frontend-publisher-w .acf-fields > .acf-field {
        padding: 25px 0px;
        border-top: 1px solid #dde8ef;
    }

        .frontend-publisher-w .acf-fields > .acf-field:first-child {
            border-top: none;
        }

        .frontend-publisher-w .acf-fields > .acf-field ul {
            padding-left: 0px;
            margin: 0px;
        }

        .frontend-publisher-w .acf-fields > .acf-field .acf-label label {
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #567c92;
            text-transform: uppercase;
        }

        .frontend-publisher-w .acf-fields > .acf-field input[type="text"] {
            padding: 10px;
            height: 40px;
            border: 1px solid #adc9da;
            border-radius: 4px;
        }

        .frontend-publisher-w .acf-fields > .acf-field textarea {
            border: 1px solid #adc9da;
            border-radius: 4px;
        }

        .frontend-publisher-w .acf-fields > .acf-field .acf-editor-wrap textarea {
            border-radius: 0px;
            border: none;
        }

        .frontend-publisher-w .acf-fields > .acf-field .wp-core-ui .button, .frontend-publisher-w .acf-fields > .acf-field .acf-button {
            background-color: #eaf0f3 !important;
            color: #40494f !important;
            padding: 5px 15px !important;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif !important;
            font-weight: 400 !important;
            font-size: 19px !important;
            border-radius: 3px !important;
            -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1) !important;
            box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1) !important;
            border: 1px solid #828f98 !important;
            border-bottom-color: #5d6971 !important;
            height: auto !important;
            line-height: 1.3 !important;
            font-size: 18px !important;
            text-shadow: 1px 1px 1px #fff;
            -webkit-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.1) !important;
            box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.1) !important;
        }

            .frontend-publisher-w .acf-fields > .acf-field .wp-core-ui .button span, .frontend-publisher-w .acf-fields > .acf-field .acf-button span {
                margin-right: 10px;
            }

        .frontend-publisher-w .acf-fields > .acf-field .acf-button {
            padding-right: 12px;
        }

        .frontend-publisher-w .acf-fields > .acf-field .wp-editor-tabs .wp-switch-editor {
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            font-size: 18px;
            border: 1px solid #adc9da;
            height: 32px;
            padding: 2px 25px;
            text-transform: uppercase;
            background-color: #f5f9fb;
            color: #567c92;
            border-radius: 4px 4px 0px 0px;
        }

        .frontend-publisher-w .acf-fields > .acf-field .mce-toolbar .mce-ico {
            color: #567c92;
        }

        .frontend-publisher-w .acf-fields > .acf-field .mce-toolbar .mce-btn-group .mce-btn.mce-listbox {
            border-color: #8eb8d1;
            border-radius: 3px;
        }

            .frontend-publisher-w .acf-fields > .acf-field .mce-toolbar .mce-btn-group .mce-btn.mce-listbox button {
                color: #567c92;
            }

        .frontend-publisher-w .acf-fields > .acf-field .acf-editor-wrap .wp-editor-container {
            border: 1px solid #adc9da;
            border-radius: 4px 0px 4px 4px;
            overflow: hidden;
        }

        .frontend-publisher-w .acf-fields > .acf-field div.mce-toolbar-grp, .frontend-publisher-w .acf-fields > .acf-field div.quicktags-toolbar {
            border-bottom: 1px solid #adc9da;
        }

        .frontend-publisher-w .acf-fields > .acf-field div.quicktags-toolbar {
            padding: 15px;
        }

        .frontend-publisher-w .acf-fields > .acf-field .tmce-active .switch-tmce {
            border-bottom-color: #f5f9fb;
        }

        .frontend-publisher-w .acf-fields > .acf-field .html-active .switch-html {
            border-bottom-color: #f5f9fb;
        }

        .frontend-publisher-w .acf-fields > .acf-field div.mce-toolbar-grp, .frontend-publisher-w .acf-fields > .acf-field .quicktags-toolbar {
            background-color: #f5f9fb;
        }

            .frontend-publisher-w .acf-fields > .acf-field .quicktags-toolbar .button {
                height: 25px;
                font-size: 16px;
                line-height: 1;
                text-transform: none;
                padding: 3px 6px;
                border-radius: 3px;
            }

        .frontend-publisher-w .acf-fields > .acf-field div.mce-statusbar {
            border-top-color: #adc9da;
            background-color: #f5f9fb;
            padding: 5px;
        }

        .frontend-publisher-w .acf-fields > .acf-field .mce-panel iframe {
            height: 201px !important;
        }

        .frontend-publisher-w .acf-fields > .acf-field[data-name="ingredients"] {
            clear: both;
        }

        .frontend-publisher-w .acf-fields > .acf-field .acf-th[data-key="field_5752abd7c7346"] p {
            display: none;
        }

        .frontend-publisher-w .acf-fields > .acf-field[data-name="sub_title"], .frontend-publisher-w .acf-fields > .acf-field[data-name="show_featured_recipes_slider"], .frontend-publisher-w .acf-fields > .acf-field[data-name="featured_recipes_background_image"], .frontend-publisher-w .acf-fields > .acf-field[data-name="background_image"], .frontend-publisher-w .acf-fields > .acf-field[data-name="featured_recipes"], .frontend-publisher-w .acf-fields > .acf-field[data-name="parallax_background"], .frontend-publisher-w .acf-fields > .acf-field[data-name="use_custom_header"], .frontend-publisher-w .acf-fields > .acf-field[data-name="searchable_ingredients"], .frontend-publisher-w .acf-fields > .acf-field[data-name="step_duration"], .frontend-publisher-w .acf-fields > .acf-field[data-name="step_title"], .frontend-publisher-w .acf-fields > .acf-field[data-name="featured_recipes_layout_type"], .frontend-publisher-w .acf-fields > .acf-field[data-name="make_featured_recipes_fixed_width"], .frontend-publisher-w .acf-fields > .acf-field[data-name="recipe_details_position"], .frontend-publisher-w .acf-fields > .acf-field[data-name="custom_image_for_header"], .frontend-publisher-w .acf-fields > .acf-field[data-name="layout_type_for_single_recipe"] {
            display: none;
        }

        .frontend-publisher-w .acf-fields > .acf-field[data-name="quick_description"] {
            padding-right: 15px;
        }

            .frontend-publisher-w .acf-fields > .acf-field[data-name="quick_description"] textarea {
                height: 100px;
            }

        .frontend-publisher-w .acf-fields > .acf-field[data-name="recipe_serves"] {
            padding-left: 15px;
            padding-right: 15px;
        }

            .frontend-publisher-w .acf-fields > .acf-field[data-name="recipe_serves"] .acf-label .description {
                display: none;
            }

        .frontend-publisher-w .acf-fields > .acf-field[data-name="recipe_difficulty"] {
            padding-left: 15px;
            padding-right: 15px;
        }

            .frontend-publisher-w .acf-fields > .acf-field[data-name="recipe_difficulty"] .acf-label .description {
                display: none;
            }

        .frontend-publisher-w .acf-fields > .acf-field[data-name="recipe_preparation_time"] {
            padding-right: 15px;
        }

        .frontend-publisher-w .acf-fields > .acf-field[data-name="recipe_just_cooking_time"] {
            padding-left: 15px;
            padding-right: 15px;
        }

        .frontend-publisher-w .acf-fields > .acf-field[data-name="recipe_cooking_time"] {
            padding-left: 15px;
            padding-right: 15px;
        }

        .frontend-publisher-w .acf-fields > .acf-field[data-name="recipe_cooking_temperature"] {
            padding-left: 15px;
        }

    .frontend-publisher-w .acf-hl > li.acf-fr {
        float: left;
    }

    .frontend-publisher-w .acf-table {
        border-color: #adc9da;
    }

        .frontend-publisher-w .acf-table > thead > tr > th {
            background-color: #f0f6f9;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            color: #7d9db0;
            font-size: 16px;
            text-transform: uppercase;
            border-color: #adc9da;
        }

        .frontend-publisher-w .acf-table > tbody > tr > td {
            border-color: #adc9da;
        }

            .frontend-publisher-w .acf-table > tbody > tr > td.order + td {
                border-color: #adc9da;
            }

        .frontend-publisher-w .acf-table .acf-fields .acf-field {
            padding-left: 20px;
            padding-right: 20px;
        }

    .frontend-publisher-w .acf-repeater > table > tbody > tr > td.remove, .frontend-publisher-w .acf-repeater > table > tbody > tr > td.order {
        background-color: #f4f8fa;
        color: #749aad;
        border-color: #adc9da;
    }

    .frontend-publisher-w .select2-container .select2-choice, .frontend-publisher-w .select2-container.-acf .select2-choices {
        height: 39px;
        line-height: 39px;
        background-image: none;
        background-color: #fff;
        border-color: #adc9da;
        border-radius: 4px;
    }

        .frontend-publisher-w .select2-container .select2-choice input[type="text"], .frontend-publisher-w .select2-container.-acf .select2-choices input[type="text"] {
            border: none;
            padding: 0px 10px;
            font-family: 'Droid Serif', serif;
            font-weight: 400;
        }

        .frontend-publisher-w .select2-container.-acf .select2-choices .select2-search-choice {
            margin: 5px 0 5px 5px;
            padding: 7px 9px 7px 24px;
            border-color: #809eb1;
            background: #fff;
            box-shadow: none;
            color: #567c92;
        }

    .frontend-publisher-w .select2-container.-acf .select2-search-choice-close {
        margin-top: 3px;
        left: 5px;
    }

    .frontend-publisher-w .acf-form-submit {
        text-align: right;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #c7d5de;
    }

        .frontend-publisher-w .acf-form-submit .button {
            background-color: #eaf0f3 !important;
            color: #40494f !important;
            padding: 5px 15px !important;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif !important;
            font-weight: 400 !important;
            font-size: 19px !important;
            border-radius: 3px !important;
            -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1) !important;
            box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1) !important;
            border: 1px solid #828f98 !important;
            border-bottom-color: #5d6971 !important;
            font-size: 22px !important;
            padding: 8px 25px !important;
        }

.review-login-w > div {
    max-width: 600px !important;
}

div.all-wrapper .userpro-sc-bar .userpro-sc-left .userpro-count-link, div.userpro-overlay-inner .userpro-sc-bar .userpro-sc-left .userpro-count-link {
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    font-size: 18px !important;
    border-right: 1px solid #afc8d9;
    color: #5e7b8f !important;
    text-decoration: underline;
}

    div.all-wrapper .userpro-sc-bar .userpro-sc-left .userpro-count-link:hover, div.userpro-overlay-inner .userpro-sc-bar .userpro-sc-left .userpro-count-link:hover {
        background-color: transparent !important;
        color: #3d5667 !important;
    }

div.all-wrapper .userpro-sc-bar .userpro-sc-right, div.userpro-overlay-inner .userpro-sc-bar .userpro-sc-right {
    padding-right: 0px;
    padding-bottom: 20px;
    padding-top: 0px;
}

    div.all-wrapper .userpro-sc-bar .userpro-sc-right .userpro-button.secondary, div.userpro-overlay-inner .userpro-sc-bar .userpro-sc-right .userpro-button.secondary {
        padding-left: 60px !important;
        position: relative;
        height: auto !important;
    }

        div.all-wrapper .userpro-sc-bar .userpro-sc-right .userpro-button.secondary:before, div.userpro-overlay-inner .userpro-sc-bar .userpro-sc-right .userpro-button.secondary:before {
            font-family: 'osfont';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "\e641";
            color: rgba(0,0,0,0.8);
            position: absolute;
            left: 15px;
            top: 3px;
            font-size: 28px;
        }

div.all-wrapper div.userpro, div.userpro-overlay-inner div.userpro {
    border-radius: 6px;
    border: none;
    background-color: #f0f6f9;
    padding: 40px !important;
}

div.all-wrapper div.userpro-head, div.userpro-overlay-inner div.userpro-head {
    border-radius: 6px 6px 0px 0px;
    background-image: none;
    background-color: #f0f6f9;
    border-bottom: 1px solid #dde8ef;
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
    padding-top: 0px;
}

    div.all-wrapper div.userpro-head div.userpro-left, div.userpro-overlay-inner div.userpro-head div.userpro-left {
        font-weight: 400 !important;
        font-size: 24px !important;
        color: rgba(0,0,0,0.9);
        padding-left: 30px;
    }

        div.all-wrapper div.userpro-head div.userpro-left:before, div.userpro-overlay-inner div.userpro-head div.userpro-left:before {
            font-family: 'osfont';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "\e638";
            position: absolute;
            font-size: 32px;
            left: 0px;
            top: -4px;
        }

    div.all-wrapper div.userpro-head div.userpro-right, div.userpro-overlay-inner div.userpro-head div.userpro-right {
        text-decoration: underline;
        font-size: 18px !important;
    }

        div.all-wrapper div.userpro-head div.userpro-right a, div.userpro-overlay-inner div.userpro-head div.userpro-right a {
            color: #7596aa !important;
        }

div.all-wrapper div.userpro-body, div.userpro-overlay-inner div.userpro-body {
    background-color: #f0f6f9;
    padding-bottom: 0px;
}

div.all-wrapper div.userpro-input input[type=text], div.all-wrapper div.userpro-input input[type=password], div.all-wrapper div.userpro-input textarea, div.userpro-overlay-inner div.userpro-input input[type=text], div.userpro-overlay-inner div.userpro-input input[type=password], div.userpro-overlay-inner div.userpro-input textarea {
    background-color: #fff !important;
    border-radius: 4px !important;
    border: 1px solid #adc9da !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding: 10px !important;
}

div.all-wrapper div.userpro-input input[type=text], div.all-wrapper div.userpro-input input[type=password], div.userpro-overlay-inner div.userpro-input input[type=text], div.userpro-overlay-inner div.userpro-input input[type=password] {
    height: 40px !important;
}

div.all-wrapper div.userpro-float div.userpro-label, div.userpro-overlay-inner div.userpro-float div.userpro-label {
    width: 38%;
    margin-top: 12px;
}

div.all-wrapper div.userpro-float div.userpro-input, div.userpro-overlay-inner div.userpro-float div.userpro-input {
    width: 60%;
}

div.all-wrapper div.userpro-label label, div.userpro-overlay-inner div.userpro-label label {
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    font-size: 18px !important;
    text-transform: uppercase;
    color: #567c92 !important;
    font-weight: 400 !important;
}

div.all-wrapper div.userpro-label .userpro-field-icon, div.userpro-overlay-inner div.userpro-label .userpro-field-icon {
    background-color: transparent !important;
    left: -15px;
    border-right: 1px solid #c2d6e2;
    border-radius: 0px;
    color: #8bb5cb;
    width: 35px !important;
    margin-right: 10px;
}

    div.all-wrapper div.userpro-label .userpro-field-icon.icon-active, div.userpro-overlay-inner div.userpro-label .userpro-field-icon.icon-active {
        background-color: transparent !important;
        color: #6296b2 !important;
        border-right: 1px solid #c2d6e2;
    }

        div.all-wrapper div.userpro-label .userpro-field-icon.icon-active i, div.userpro-overlay-inner div.userpro-label .userpro-field-icon.icon-active i {
            color: #6296b2 !important;
        }

div.all-wrapper .userpro-tip, div.userpro-overlay-inner .userpro-tip {
    color: #e7bc26;
}

div.all-wrapper .required, div.userpro-overlay-inner .required {
    color: #b74e3d;
    margin-left: -5px;
    margin-right: 5px;
    float: left;
}

div.all-wrapper .userpro-field, div.userpro-overlay-inner .userpro-field {
    margin-top: 20px;
}

    div.all-wrapper .userpro-field.userpro-submit, div.userpro-overlay-inner .userpro-field.userpro-submit {
        border-top: 1px solid #dde8ef;
    }

div.all-wrapper div.userpro-submit input[type=button].userpro-button, div.all-wrapper div.userpro-submit input[type=submit].userpro-button, div.userpro-overlay-inner div.userpro-submit input[type=button].userpro-button, div.userpro-overlay-inner div.userpro-submit input[type=submit].userpro-button {
    background: none !important;
    background-color: #eaf0f3 !important;
    color: #40494f !important;
    padding: 5px 15px !important;
    font-family: 'YanoneKaffeesatz-Regular', sans-serif !important;
    font-weight: 400 !important;
    font-size: 19px !important;
    border-radius: 3px !important;
    -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1) !important;
    box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1) !important;
    border: 1px solid #828f98 !important;
    border-bottom-color: #5d6971 !important;
    height: 42px !important;
}

    div.all-wrapper div.userpro-submit input[type=button].userpro-button.red, div.all-wrapper div.userpro-submit input[type=submit].userpro-button.red, div.userpro-overlay-inner div.userpro-submit input[type=button].userpro-button.red, div.userpro-overlay-inner div.userpro-submit input[type=submit].userpro-button.red {
        background-color: #a53b3b !important;
        border-color: #7c1c1c !important;
        color: #fff !important;
        -webkit-box-shadow: 0px 4px 0px 0px #cfa2a2 !important;
        box-shadow: 0px 4px 0px 0px #cfa2a2 !important;
    }

div.all-wrapper div.userpro-submit input.userpro-button.fullwidth-block, div.userpro-overlay-inner div.userpro-submit input.userpro-button.fullwidth-block {
    margin-bottom: 15px !important;
}

div.all-wrapper input.userpro-button.secondary, div.all-wrapper a.userpro-button.secondary, div.all-wrapper div.userpro div.ajax-file-upload, div.userpro-overlay-inner input.userpro-button.secondary, div.userpro-overlay-inner a.userpro-button.secondary, div.userpro-overlay-inner div.userpro div.ajax-file-upload {
    background: none !important;
    background-color: #eaf0f3 !important;
    color: #40494f !important;
    padding: 5px 15px !important;
    font-family: 'YanoneKaffeesatz-Regular', sans-serif !important;
    font-weight: 400 !important;
    font-size: 19px !important;
    border-radius: 3px !important;
    -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1) !important;
    box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1) !important;
    border: 1px solid #828f98 !important;
    border-bottom-color: #5d6971 !important;
    height: 42px !important;
}

div.all-wrapper div.userpro-input label.userpro-checkbox.hide-field, div.userpro-overlay-inner div.userpro-input label.userpro-checkbox.hide-field {
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    font-size: 16px !important;
    color: #7596aa !important;
}

div.all-wrapper div.userpro-section, div.userpro-overlay-inner div.userpro-section {
    border-radius: 0px !important;
    border: none;
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    padding: 15px 20px !important;
    font-size: 20px !important;
    margin: 30px -15px 30px;
    color: #5e879b !important;
    background-color: #f8fbfc;
    border-bottom: 1px solid #99b2bf;
    border-top: 1px solid #99b2bf;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
}

    div.all-wrapper div.userpro-section:hover, div.userpro-overlay-inner div.userpro-section:hover {
        border-bottom: 1px solid #3f6477;
        border-top: 1px solid #3f6477;
        color: #325b6f !important;
    }

    div.all-wrapper div.userpro-section.userpro-collapsed-0, div.userpro-overlay-inner div.userpro-section.userpro-collapsed-0 {
        background-color: #f8fbfc;
        color: #567c92 !important;
    }

    div.all-wrapper div.userpro-section i, div.userpro-overlay-inner div.userpro-section i {
        color: #567c92 !important;
    }

div.userpro-overlay-inner {
    width: 600px;
    margin-left: -300px;
}

    div.userpro-overlay-inner div.userpro, div.userpro-overlay-inner div.userpro-body, div.userpro-overlay-inner div.userpro-head {
        background-color: #fff !important;
    }

div.userpro-head, div.userpro-centered {
    background: transparent !important;
}

div.userpro-alert {
    background: transparent !important;
    padding: 0px;
    margin-top: 25px;
    margin-bottom: 20px;
}

    div.userpro-alert .userpro-alert-edit {
        top: -20px;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
    }

        div.userpro-alert .userpro-alert-edit i {
            color: #5f9bc5 !important;
        }

    div.userpro-alert .userpro-alert-close {
        top: -21px;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
    }

        div.userpro-alert .userpro-alert-close i {
            color: #c55f5f !important;
        }

    div.userpro-alert .userpro-alert-input {
        padding: 0px;
    }

        div.userpro-alert .userpro-alert-input .userpro-input {
            width: 100% !important;
            position: relative;
        }

            div.userpro-alert .userpro-alert-input .userpro-input input[type="text"] {
                width: 100% !important;
                display: block;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 20px !important;
                height: auto !important;
                padding: 20px 20px !important;
            }

            div.userpro-alert .userpro-alert-input .userpro-input input[type="button"] {
                position: absolute;
                top: 13px;
                right: 0px;
                height: auto !important;
                margin-right: 0px;
                -webkit-box-shadow: none !important;
                box-shadow: none !important;
                border-radius: 4px !important;
                background-color: #111 !important;
                color: #fff !important;
                border: none !important;
            }

div.userpro .userpro-field-view {
    margin-top: 0px;
}

    div.userpro .userpro-field-view .userpro-label {
        width: 30% !important;
        margin-top: 0px !important;
        padding-top: 20px;
        border-top: 1px solid #d1dfe4;
        padding-bottom: 20px;
    }

        div.userpro .userpro-field-view .userpro-label .userpro-field-icon {
            top: 10px;
        }

    div.userpro .userpro-field-view .userpro-input {
        width: 70% !important;
        margin-top: 0px !important;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 18px !important;
        padding-bottom: 20px;
        padding-top: 20px;
        border-left: 1px solid #d1dfe4;
        border-top: 1px solid #d1dfe4;
        padding-left: 30px;
        color: #597b86;
    }

div.userpro .userpro-section + .userpro-field-view .userpro-label {
    border-top: none;
}

div.userpro .userpro-section + .userpro-field-view .userpro-input {
    border-top: none;
}

div.userpro .userpro-centered .userpro-profile-img {
    float: left;
    width: 100px;
}

    div.userpro .userpro-centered .userpro-profile-img img {
        border-radius: 50%;
        width: 100px;
        height: 100px;
    }

div.userpro .userpro-centered .userpro-profile-img-after {
    float: left;
    margin-left: 20px;
    padding-left: 40px;
    border-left: 1px dashed rgba(0,0,0,0.1);
}

    div.userpro .userpro-centered .userpro-profile-img-after .userpro-profile-name {
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 28px !important;
    }

        div.userpro .userpro-centered .userpro-profile-img-after .userpro-profile-name .userpro-badges {
            position: absolute;
            left: -20px;
            top: -30px;
        }

    div.userpro .userpro-centered .userpro-profile-img-after .userpro-button {
        font-size: 14px !important;
        padding: 2px 10px !important;
        line-height: 1.4 !important;
        text-transform: uppercase;
        height: auto !important;
    }

div.userpro .userpro-centered .userpro-centered-icons {
    float: right;
}

div.userpro .userpro-centered div.userpro-profile-icons.top {
    top: -15px;
    right: 0px;
}

.single-recipe-bookmark-box {
    background-color: #ecf2f6;
    padding: 40px 60px;
    margin-bottom: 40px;
    border-radius: 6px;
}

    .single-recipe-bookmark-box h3 {
        font-size: 34px;
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 1px dashed rgba(0,0,0,0.1);
    }

        .single-recipe-bookmark-box h3 i {
            margin-right: 25px;
            font-size: 30px;
        }

    .single-recipe-bookmark-box > p {
        background-color: #daebf6;
        color: #49535f;
        padding: 40px;
        border-radius: 6px;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 0px;
        margin-top: 0px;
        text-align: center;
    }

        .single-recipe-bookmark-box > p a {
            color: #2e3844;
            text-decoration: underline;
        }

    .single-recipe-bookmark-box div.userpro-bm {
        border: none;
        background-color: transparent;
        padding: 0px !important;
        border-radius: 6px;
        margin: 0px;
    }

        .single-recipe-bookmark-box div.userpro-bm .userpro-bm-dialog {
            border-radius: 6px;
            border-color: #8b8b8b;
        }

            .single-recipe-bookmark-box div.userpro-bm .userpro-bm-dialog .userpro-bm-input {
                border-radius: 4px !important;
                margin-bottom: 10px !important;
                padding: 15px !important;
                -webkit-box-shadow: none !important;
                box-shadow: none !important;
            }

                .single-recipe-bookmark-box div.userpro-bm .userpro-bm-dialog .userpro-bm-input:focus {
                    outline: none;
                }

            .single-recipe-bookmark-box div.userpro-bm .userpro-bm-dialog .userpro_bm_radio {
                margin-right: 5px;
            }

        .single-recipe-bookmark-box div.userpro-bm .userpro-bm-dialog-icon {
            top: 19px;
        }

        .single-recipe-bookmark-box div.userpro-bm .chosen-container-single .chosen-results {
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            font-size: 18px;
        }

            .single-recipe-bookmark-box div.userpro-bm .chosen-container-single .chosen-results li {
                padding: 12px;
            }

        .single-recipe-bookmark-box div.userpro-bm .chosen-container-single .chosen-single {
            height: 50px;
            background-image: none;
            background: none;
            background-color: #fff !important;
            border-color: #adc9da;
            -webkit-box-shadow: none;
            box-shadow: none;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            font-size: 20px;
            line-height: 45px;
        }

            .single-recipe-bookmark-box div.userpro-bm .chosen-container-single .chosen-single div b {
                background-position: -2px 14px;
            }

        .single-recipe-bookmark-box div.userpro-bm .userpro-bm-btn {
            background: none !important;
            background-color: #eaf0f3 !important;
            color: #40494f !important;
            padding: 5px 15px !important;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif !important;
            font-weight: 400 !important;
            font-size: 19px !important;
            border-radius: 3px !important;
            -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1) !important;
            box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1) !important;
            border: 1px solid #828f98 !important;
            border-bottom-color: #5d6971 !important;
            height: auto !important;
            line-height: 27px !important;
        }

            .single-recipe-bookmark-box div.userpro-bm .userpro-bm-btn.bookmarked {
                background: #f7e4e4 !important;
                border-color: #a27474 !important;
            }

        .single-recipe-bookmark-box div.userpro-bm .userpro-bm-inner {
            text-align: center;
        }

            .single-recipe-bookmark-box div.userpro-bm .userpro-bm-inner img {
                display: none;
            }

            .single-recipe-bookmark-box div.userpro-bm .userpro-bm-inner .userpro-bm-count {
                padding: 15px;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 24px;
                display: inline-block;
                padding-left: 50px;
                position: relative;
                display: none;
            }

.br-theme-fontawesome-stars .br-widget {
    height: 28px;
    white-space: nowrap;
}

    .br-theme-fontawesome-stars .br-widget a {
        font-family: 'osfont';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin-right: 2px;
    }

        .br-theme-fontawesome-stars .br-widget a:after {
            content: "\f005";
            color: #a3a3a3;
        }

        .br-theme-fontawesome-stars .br-widget a.br-active:after {
            color: #f6bf29;
        }

        .br-theme-fontawesome-stars .br-widget a.br-selected:after {
            color: #f6bf29;
        }

    .br-theme-fontawesome-stars .br-widget .br-current-rating {
        display: none;
    }

@media print {
    .br-theme-fontawesome-stars .br-widget a:after {
        content: '\f005';
        color: black;
    }

    .br-theme-fontawesome-stars .br-widget a.br-active:after, .br-theme-fontawesome-stars .br-widget a.br-selected:after {
        content: '\f005';
        color: black;
    }
}

.reviews-summary {
    padding: 0px 0px 20px 0px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(0,0,0,0.5);
}

    .reviews-summary:before, .reviews-summary:after {
        content: " ";
        display: table;
    }

    .reviews-summary:after {
        clear: both;
    }

    .reviews-summary .review-summary-average .review-summary-value {
        font-weight: 700;
        color: rgba(0,0,0,0.8);
    }

    .reviews-summary .review-summary-average .review-summary-label {
        vertical-align: middle;
    }

    .reviews-summary .review-summary-average .review-summary-value {
        vertical-align: middle;
    }

    .reviews-summary .review-stars-w {
        display: inline-block;
        margin-right: 10px;
        margin-left: 10px;
        font-size: 16px;
        vertical-align: middle;
    }

        .reviews-summary .review-stars-w .os-icon {
            margin-right: 2px;
        }

        .reviews-summary .review-stars-w .rating-star-on {
            color: #f7c000;
        }

        .reviews-summary .review-stars-w .rating-star-off {
            color: #a3a3a3;
        }

    .reviews-summary .review-summary-average {
        float: left;
    }

    .reviews-summary .review-summary-total {
        float: right;
    }

.archive-item-rating .review-stars-w {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
}

    .archive-item-rating .review-stars-w .os-icon {
        margin-right: 2px;
    }

    .archive-item-rating .review-stars-w .rating-star-on {
        color: #f7c000;
    }

    .archive-item-rating .review-stars-w .rating-star-off {
        color: #a3a3a3;
    }

.existing-reviews-w {
    padding: 40px;
    background-color: #f2f4f5;
    margin-top: 40px;
    border-radius: 6px;
}

    .existing-reviews-w .box-heading {
        margin-bottom: 25px;
        margin-top: 0px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

        .existing-reviews-w .box-heading .os-icon {
            margin-right: 15px;
            font-size: 27px;
        }

    .existing-reviews-w .review-box-w {
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

        .existing-reviews-w .review-box-w:last-child {
            margin-bottom: 0px;
            border-bottom: none;
            padding-bottom: 0px;
        }

        .existing-reviews-w .review-box-w .review-head {
            padding-bottom: 10px;
        }

            .existing-reviews-w .review-box-w .review-head:before, .existing-reviews-w .review-box-w .review-head:after {
                content: " ";
                display: table;
            }

            .existing-reviews-w .review-box-w .review-head:after {
                clear: both;
            }

            .existing-reviews-w .review-box-w .review-head .review-author-avatar {
                float: left;
                width: 70px;
            }

                .existing-reviews-w .review-box-w .review-head .review-author-avatar img {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                }

            .existing-reviews-w .review-box-w .review-head .review-author-meta {
                float: left;
                width: 40%;
                overflow: hidden;
                padding-top: 10px;
            }

                .existing-reviews-w .review-box-w .review-head .review-author-meta .review-author-name {
                    font-weight: 700;
                }

                .existing-reviews-w .review-box-w .review-head .review-author-meta .review-post-date {
                    font-size: 12px;
                }

            .existing-reviews-w .review-box-w .review-head .review-rating {
                float: right;
                padding-top: 15px;
            }

        .existing-reviews-w .review-box-w .review-body {
            padding: 20px 40px;
            background-color: #fff;
            font-size: 17px;
            border-radius: 6px;
            position: relative;
            -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.05);
            box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.05);
        }

            .existing-reviews-w .review-box-w .review-body:before {
                content: "";
                width: 20px;
                height: 20px;
                background-color: #fff;
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                display: block;
                position: absolute;
                left: 15px;
                top: -5px;
            }

            .existing-reviews-w .review-box-w .review-body p:first-child {
                margin-top: 0px;
            }

            .existing-reviews-w .review-box-w .review-body p:last-child {
                margin-bottom: 0px;
            }

.recipe-review-form-w {
    padding: 40px;
    background-color: #eff5fa;
    border-radius: 6px;
    margin-top: 40px;
}

    .recipe-review-form-w .form-header {
        font-size: 24px;
        margin-top: 0px;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        color: rgba(0,0,0,0.9);
    }

        .recipe-review-form-w .form-header .os-icon {
            color: rgba(0,0,0,0.9);
            margin-right: 15px;
            font-size: 27px;
        }

    .recipe-review-form-w .acf-field[data-name="recipe"] {
        display: none;
    }

    .recipe-review-form-w .bulk-actions {
        display: none;
    }

    .recipe-review-form-w .acf-gallery {
        height: 170px !important;
    }

        .recipe-review-form-w .acf-gallery .acf-gallery-sort {
            display: none;
        }

        .recipe-review-form-w .acf-gallery .add-attachment, .recipe-review-form-w .acf-gallery .acf-gallery-add {
            position: absolute;
            top: -100px;
            left: 50%;
            color: #444 !important;
            font-size: 15px !important;
            line-height: 15px;
            text-transform: uppercase;
            height: 40px !important;
            background-color: #fff;
            content: "Add";
            color: transparent !important;
            width: 40px !important;
            border: none;
            border-radius: 0px;
            text-shadow: none;
            box-shadow: none;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            padding: 10px;
        }

            .recipe-review-form-w .acf-gallery .add-attachment:before, .recipe-review-form-w .acf-gallery .acf-gallery-add:before {
                content: "\f067";
                font-family: 'osfont';
                speak: none;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                line-height: 1;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                position: absolute;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%,-50%);
                -moz-transform: translate(-50%,-50%);
                -ms-transform: translate(-50%,-50%);
                -o-transform: translate(-50%,-50%);
                color: #567c92;
                font-size: 35px;
            }

            .recipe-review-form-w .acf-gallery .add-attachment:hover:before, .recipe-review-form-w .acf-gallery .acf-gallery-add:hover:before {
                color: #000;
            }

        .recipe-review-form-w .acf-gallery .acf-gallery-attachments {
            bottom: 0px;
        }

        .recipe-review-form-w .acf-gallery .acf-gallery-toolbar {
            height: 0px;
            border-top: none;
            padding: 0px;
        }

    .recipe-review-form-w .acf-fields:before, .recipe-review-form-w .acf-fields:after {
        content: " ";
        display: table;
    }

    .recipe-review-form-w .acf-fields:after {
        clear: both;
    }

    .recipe-review-form-w .acf-fields > .acf-field {
        padding: 0px;
        margin-bottom: 20px;
        border-top: none;
    }

        .recipe-review-form-w .acf-fields > .acf-field[data-name="rating"] {
            width: 30%;
            clear: none;
        }

            .recipe-review-form-w .acf-fields > .acf-field[data-name="rating"] .br-wrapper {
                padding: 15px 20px 5px;
                background-color: #f4f8fb;
                border-radius: 6px;
                box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
                padding-top: 10px;
                padding-bottom: 0px;
                border-top: 1px solid rgba(0,0,0,0.05);
            }

            .recipe-review-form-w .acf-fields > .acf-field[data-name="rating"] .acf-label {
                margin-bottom: 2px;
            }

        .recipe-review-form-w .acf-fields > .acf-field[data-name="body"] {
            width: 70%;
            float: left;
            padding-right: 30px;
        }

            .recipe-review-form-w .acf-fields > .acf-field[data-name="body"] .acf-label {
                margin-bottom: 2px;
            }

        .recipe-review-form-w .acf-fields > .acf-field label {
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #567c92;
            text-transform: uppercase;
        }

        .recipe-review-form-w .acf-fields > .acf-field .acf-required {
            display: none;
        }

    .recipe-review-form-w input[type="text"] {
        border: 1px solid #9dbad3;
        padding: 5px 10px;
        border-radius: 4px;
        height: 35px;
        width: 100%;
    }

    .recipe-review-form-w textarea {
        border: 1px solid #9dbad3;
        padding: 5px 10px;
        border-radius: 4px;
        height: 150px;
        width: 100%;
    }

    .recipe-review-form-w input.button {
        background-color: #eaf0f3;
        color: #40494f;
        padding: 5px 15px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 19px;
        border-radius: 3px;
        -webkit-box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
        box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.1);
        border: 1px solid #828f98;
        border-bottom-color: #5d6971;
    }

.review-login-w {
    margin-top: 40px;
}

.thanks-for-review {
    background-color: #e5f3eb;
    color: #667844;
    padding: 40px;
    border-radius: 6px;
    margin-top: 40px;
}

.page-w {
    background-color: #fff;
    padding: 50px;
}

    .page-w .not-found-icon {
        font-size: 60px;
        color: rgba(0,0,0,0.2);
    }

    .page-w.bordered {
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .page-w .page-title {
        border-bottom: 2px solid rgba(0,0,0,0.9);
        padding-bottom: 10px;
        display: inline-block;
        margin-bottom: 30px;
        margin-top: 10px;
    }

    .page-w .page-content-sub-title {
        border-bottom: 2px solid rgba(0,0,0,0.9);
        padding-bottom: 10px;
        display: inline-block;
        margin-bottom: 30px;
    }

    .page-w .page-title + .page-content-sub-title {
        border: none;
        display: block;
        margin-top: 0px;
        color: rgba(77,77,77,0.9);
    }

    .page-w.with-sidebar {
        display: table;
        table-layout: fixed;
        width: 100%;
    }

        .page-w.with-sidebar .page-content {
            display: table-cell;
            vertical-align: top;
            width: 70%;
            padding-right: 50px;
        }

        .page-w.with-sidebar .page-sidebar {
            width: 30%;
            vertical-align: top;
            display: table-cell;
            background-color: #f0f7f7;
            border-radius: 6px;
            padding: 40px 30px;
        }

            .page-w.with-sidebar .page-sidebar img {
                max-width: 100%;
                height: auto;
            }

.error404 .page-w {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.pre-footer {
    background-color: #f6efef;
    padding: 50px 50px;
}

    .pre-footer:before, .pre-footer:after {
        content: " ";
        display: table;
    }

    .pre-footer:after {
        clear: both;
    }

.main-footer {
    background-color: #fff;
    padding: 30px 50px;
    border-radius: 0px 0px 6px 6px;
}

    .main-footer .menu {
        list-style: none;
        padding: 0px;
        margin: 0px;
        margin-bottom: 10px;
    }

        .main-footer .menu li {
            display: inline-block;
            margin-right: 20px;
        }

            .main-footer .menu li a {
                color: rgba(0,0,0,0.8);
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 24px;
            }

    .main-footer .footer-copyright {
        padding-top: 10px;
        border-top: 1px dotted rgba(0,0,0,0.1);
        font-size: 12px;
    }

    .main-footer p {
        margin: 0px;
    }

    .main-footer.with-social:before, .main-footer.with-social:after {
        content: " ";
        display: table;
    }

    .main-footer.with-social:after {
        clear: both;
    }

    .main-footer.with-social .footer-copy-and-menu-w {
        float: left;
        width: 70%;
    }

    .main-footer.with-social .footer-social-w {
        float: left;
        width: 30%;
        text-align: right;
    }

        .main-footer.with-social .footer-social-w ul {
            display: inline-block;
            list-style: none;
            padding: 0px;
            margin: 0px;
        }

            .main-footer.with-social .footer-social-w ul li {
                display: inline-block;
            }

                .main-footer.with-social .footer-social-w ul li a {
                    font-size: 32px;
                    color: #000;
                }

    .main-footer.color-scheme-dark {
        color: rgba(255,255,255,0.8);
    }

        .main-footer.color-scheme-dark .menu li a {
            color: rgba(255,255,255,0.9);
        }

        .main-footer.color-scheme-dark .footer-copyright {
            border-top: 1px dotted rgba(255,255,255,0.2);
        }

div.wpcf7 {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 6px;
}

    div.wpcf7 h2 {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin-bottom: 20px;
        padding-bottom: 10px;
        margin-top: 0px;
        font-size: 20px;
        color: rgba(0,0,0,0.3);
    }

    div.wpcf7 form {
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        text-transform: uppercase;
    }

        div.wpcf7 form input[type="text"], div.wpcf7 form input[type="email"], div.wpcf7 form input[type="password"], div.wpcf7 form textarea {
            padding: 7px 10px;
            border: 1px solid #111;
            border-radius: 6px;
            margin-top: 5px;
            display: block;
            width: 100%;
        }

    div.wpcf7 .wpcf7-submit {
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        border-radius: 6px;
        text-transform: uppercase;
        vertical-align: middle;
        color: #fff;
        background-color: #2abe96;
        text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
        -webkit-box-shadow: 0px 5px 0px 0px #219475;
        box-shadow: 0px 5px 0px 0px #219475;
        border: 1px solid #2abe96;
        padding: 8px 25px;
        font-size: 22px;
    }

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.ingredients-search-box-w {
    background-color: #fff;
    padding: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

    .ingredients-search-box-w .ingredients-search-box-i {
        background-color: #f8f8f8;
        background-position: 0 0;
        background-repeat: repeat;
        padding: 60px 50px 100px 50px;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

        .ingredients-search-box-w .ingredients-search-box-i .box-heading {
            -webkit-transition: all 0.5s ease;
            transition: all 0.5s ease;
            margin-bottom: 30px;
            color: #5a92ac;
            font-size: 50px;
            color: #d6d6d6;
            text-transform: uppercase;
            text-align: center;
        }

            .ingredients-search-box-w .ingredients-search-box-i .box-heading span {
                border-bottom: 1px solid rgba(0,0,0,0.1);
                padding-bottom: 5px;
                display: inline-block;
            }

        .ingredients-search-box-w .ingredients-search-box-i .ingredient-search-btn-w {
            position: absolute;
            top: 15px;
            right: 20px;
        }

            .ingredients-search-box-w .ingredients-search-box-i .ingredient-search-btn-w .ingredient-loading-icon-w {
                position: absolute;
                left: -30px;
                top: 20px;
                -webkit-opacity: 0;
                -moz-opacity: 0;
                opacity: 0;
                -webkit-transform: translateX(-20px);
                -moz-transform: translateX(-20px);
                -ms-transform: translateX(-20px);
                -o-transform: translateX(-20px);
                -webkit-transition: all 0.2s ease;
                transition: all 0.2s ease;
            }

        .ingredients-search-box-w .ingredients-search-box-i .trigger-ingredient-search {
            background-color: #f96760;
            color: #fff;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            font-size: 24px;
            padding: 10px 20px;
            border: 1px solid #d24039;
        }

            .ingredients-search-box-w .ingredients-search-box-i .trigger-ingredient-search:hover {
                cursor: pointer;
                border-color: #000;
                background-color: #000;
            }

        .ingredients-search-box-w .ingredients-search-box-i .ingredient-search-icon {
            position: absolute;
            top: 25px;
            left: 30px;
            font-size: 30px;
            color: rgba(0,0,0,0.8);
            z-index: 999;
        }

        .ingredients-search-box-w .ingredients-search-box-i .ingredients-select-box-w {
            position: relative;
        }

            .ingredients-search-box-w .ingredients-search-box-i .ingredients-select-box-w select {
                display: none;
            }

        .ingredients-search-box-w .ingredients-search-box-i .chosen-container.chosen-container-multi .chosen-choices {
            background-color: #fff;
            background-image: none;
            border: 1px solid #111;
            padding: 20px 30px 20px 80px;
        }

            .ingredients-search-box-w .ingredients-search-box-i .chosen-container.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
                font-size: 28px;
                height: 42px;
                color: rgba(0,0,0,0.8);
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
            }

            .ingredients-search-box-w .ingredients-search-box-i .chosen-container.chosen-container-multi .chosen-choices li.search-choice {
                background-image: none;
                border: 1px solid #111;
                padding: 9px 40px 6px 15px;
                height: 36px;
                color: #111;
                margin: 5px 10px 5px 0px;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 20px;
                background-color: transparent;
                border-radius: 0px;
            }

                .ingredients-search-box-w .ingredients-search-box-i .chosen-container.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
                    top: 13px;
                    right: 8px;
                }

        .ingredients-search-box-w .ingredients-search-box-i .chosen-container.chosen-container-multi .chosen-drop {
            border: 1px solid #111;
            border-top: none;
        }

            .ingredients-search-box-w .ingredients-search-box-i .chosen-container.chosen-container-multi .chosen-drop .chosen-results li {
                padding: 14px 20px;
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 22px;
                border-bottom: 1px solid #e2eef4;
            }

                .ingredients-search-box-w .ingredients-search-box-i .chosen-container.chosen-container-multi .chosen-drop .chosen-results li.result-selected {
                    color: #a9bbc8;
                }

                .ingredients-search-box-w .ingredients-search-box-i .chosen-container.chosen-container-multi .chosen-drop .chosen-results li.active-result {
                    color: rgba(0,0,0,0.8);
                }

                .ingredients-search-box-w .ingredients-search-box-i .chosen-container.chosen-container-multi .chosen-drop .chosen-results li.highlighted {
                    background-image: none;
                    background-color: #2687cb;
                    color: #fff;
                }

        .ingredients-search-box-w .ingredients-search-box-i .chosen-container.chosen-container-multi.chosen-container-active .chosen-choices {
            -webkit-box-shadow: none;
            box-shadow: none;
            border-color: #111;
        }

    .ingredients-search-box-w.search-in-progress .ingredient-search-btn-w .ingredient-loading-icon-w {
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
    }

    .ingredients-search-box-w.compacted .ingredients-search-box-i {
        background-color: transparent;
        padding: 0px;
    }

        .ingredients-search-box-w.compacted .ingredients-search-box-i .box-heading {
            font-size: 30px;
            margin-top: 0px;
        }

.woocommerce .woocommerce-pagination {
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding: 15px;
    margin-top: 30px;
    text-align: center;
}

    .woocommerce .woocommerce-pagination:before, .woocommerce .woocommerce-pagination:after {
        content: " ";
        display: table;
    }

    .woocommerce .woocommerce-pagination:after {
        clear: both;
    }

    .woocommerce .woocommerce-pagination ul.page-numbers {
        border: none;
    }

    .woocommerce .woocommerce-pagination li {
        margin: 0px 7px !important;
        border: none !important;
    }

        .woocommerce .woocommerce-pagination li span, .woocommerce .woocommerce-pagination li a {
            background-color: transparent !important;
            padding: 3px 5px !important;
            font-size: 20px !important;
        }

    .woocommerce .woocommerce-pagination a {
        margin: 0px 10px;
        display: inline-block;
        color: rgba(0,0,0,0.8);
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        border-bottom: 2px solid transparent;
    }

        .woocommerce .woocommerce-pagination a:hover {
            background-color: transparent !important;
            color: rgba(0,0,0,0.8) !important;
            border-bottom: 2px solid rgba(0,0,0,0.8);
        }

    .woocommerce .woocommerce-pagination .archive-pagination-prev {
        float: left;
    }

        .woocommerce .woocommerce-pagination .archive-pagination-prev a:before {
            margin-right: 10px;
            content: "\f053";
            font-family: 'osfont';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            color: rgba(0,0,0,0.8);
            font-size: 14px;
        }

    .woocommerce .woocommerce-pagination .archive-pagination-next {
        float: right;
    }

        .woocommerce .woocommerce-pagination .archive-pagination-next a:after {
            margin-left: 10px;
            content: "\f054";
            font-family: 'osfont';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            color: rgba(0,0,0,0.8);
            font-size: 14px;
        }

.woocommerce .star-rating {
    color: #f6bf2a;
}

.woocommerce ul.products li.product span.price {
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: rgba(0,0,0,0.9);
}

    .woocommerce ul.products li.product span.price del {
        display: inline-block;
    }

    .woocommerce ul.products li.product span.price ins {
        display: inline-block;
        margin-left: 5px;
    }

.woocommerce ul.products li.product a img {
    border-radius: 6px;
}

.woocommerce ul.products li.product h3 {
    font-size: 24px;
}

.woocommerce .woocommerce-ordering + ul.products {
    border-top: 1px dashed rgba(0,0,0,0.2);
    margin-top: 20px;
    padding-top: 20px;
}

.woocommerce a.add_to_cart_button, .woocommerce a.added_to_cart, .woocommerce button.button.alt {
    background-color: #fff;
    color: rgba(0,0,0,0.8);
    border-radius: 0px;
    display: inline-block;
    padding: 3px 10px;
    border: 2px solid rgba(0,0,0,0.8);
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 5px;
}

    .woocommerce a.add_to_cart_button:hover, .woocommerce a.added_to_cart:hover, .woocommerce button.button.alt:hover {
        background-color: transparent;
        color: rgba(0,0,0,0.8);
    }

    .woocommerce a.add_to_cart_button:after, .woocommerce a.added_to_cart:after, .woocommerce button.button.alt:after {
        top: 3px !important;
        right: 12px !important;
    }

.woocommerce div.product form.cart .single_add_to_cart_button.button.alt {
    font-size: 22px;
    padding: 10px 20px;
}

.woocommerce div.product form.cart div.quantity {
    margin-right: 0px;
}

    .woocommerce div.product form.cart div.quantity input {
        text-align: center !important;
        border: 2px solid rgba(0,0,0,0.8);
        border-right: none;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 22px;
        line-height: 1.4;
        padding: 10px 20px;
    }

.woocommerce div.product .woocommerce-tabs {
    margin-bottom: 40px;
    border-bottom: 1px solid #d3ced2;
}

    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        background-color: transparent;
    }

        .woocommerce div.product .woocommerce-tabs ul.tabs li a {
            padding: 12px 20px;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            font-size: 22px;
            color: rgba(0,0,0,0.9);
        }

            .woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
                color: rgba(0,0,0,0.9);
            }

        .woocommerce div.product .woocommerce-tabs ul.tabs li:before {
            left: -5px;
            right: auto;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .woocommerce div.product .woocommerce-tabs ul.tabs li:after {
            right: -5px;
            left: auto;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

    .woocommerce div.product .woocommerce-tabs .panel {
        padding: 0px 20px;
    }

        .woocommerce div.product .woocommerce-tabs .panel h2 {
            font-size: 24px;
        }

.woocommerce #review_form_wrapper #respond .comment-form-author label {
    margin-bottom: 5px;
}

.woocommerce #review_form_wrapper #respond .comment-form-email {
    float: right !important;
}

    .woocommerce #review_form_wrapper #respond .comment-form-email label {
        margin-bottom: 5px;
    }

.woocommerce #review_form_wrapper #respond .comment-form-rating {
    clear: left;
}

    .woocommerce #review_form_wrapper #respond .comment-form-rating label {
        margin-bottom: 10px;
    }

.woocommerce #review_form_wrapper #respond .comment-form-comment label {
    margin-bottom: 5px;
}

.os-parallax {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
}

    .os-parallax img {
        width: 100%;
        height: auto;
    }

.osetin-lightbox-trigger, .osetin-lightbox-trigger-native, .osetin-lightbox-trigger-step-images {
    cursor: zoom-in !important;
}

.os-lightbox {
    background-color: rgba(0,0,0,0.9);
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
}

    .os-lightbox .lightbox-caption {
        background-color: rgba(0,0,0,0.8);
        padding: 5px 10px;
        border-radius: 4px;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        position: absolute;
        top: 20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }

        .os-lightbox .lightbox-caption.hidden {
            display: none;
        }

    .os-lightbox .os-lb-active-image {
        position: absolute;
        top: 0px;
        right: 0px;
        left: 0px;
        bottom: 0px;
        -webkit-background-size: contain;
        background-size: contain;
        z-index: 9998;
        background-position: center center;
        background-repeat: no-repeat;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .os-lightbox .os-lb-loader {
        position: absolute;
        z-index: 9997;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        width: 32px;
        height: 32px;
        background-image: url('/img/ajax-loaders/loader-circle.gif');
        background-position: center center;
        background-repeat: no-repeat;
    }

    .os-lightbox.has-thumbnails .os-lb-active-image {
        top: 10px;
        bottom: 120px;
    }

    .os-lightbox.has-thumbnails.hide-thumbnails .os-lb-active-image {
        bottom: 10px;
    }

    .os-lightbox.has-thumbnails.hide-thumbnails .os-lb-thumbnails-w {
        -webkit-transform: translateY(110px);
        -moz-transform: translateY(110px);
        -ms-transform: translateY(110px);
        -o-transform: translateY(110px);
    }

    .os-lightbox.has-thumbnails.hide-thumbnails .os-lb-toggle-thumbnails-btn {
        -webkit-transform: translate(-50%,110px);
        -moz-transform: translate(-50%,110px);
        -ms-transform: translate(-50%,110px);
        -o-transform: translate(-50%,110px);
    }

.os-lb-thumbnails-w {
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 9998;
    overflow: hidden;
    height: 110px;
    padding-bottom: 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    .os-lb-thumbnails-w .os-lb-thumbnails-i {
        margin: 0px auto;
        position: relative;
    }

        .os-lb-thumbnails-w .os-lb-thumbnails-i:before, .os-lb-thumbnails-w .os-lb-thumbnails-i:after {
            content: " ";
            display: table;
        }

        .os-lb-thumbnails-w .os-lb-thumbnails-i:after {
            clear: both;
        }

        .os-lb-thumbnails-w .os-lb-thumbnails-i .os-lb-thumbnail-trigger {
            float: left;
            margin: 0px 5px;
            cursor: pointer;
            position: relative;
        }

            .os-lb-thumbnails-w .os-lb-thumbnails-i .os-lb-thumbnail-trigger .thumbnail-item-bg {
                width: 110px;
                height: 100px;
            }

            .os-lb-thumbnails-w .os-lb-thumbnails-i .os-lb-thumbnail-trigger .thumbnail-fader {
                position: absolute;
                top: 0px;
                right: 0px;
                left: 0px;
                bottom: 0px;
                background-color: rgba(0,0,0,0.4);
                -webkit-transition: all 0.3s linear;
                transition: all 0.3s linear;
            }

            .os-lb-thumbnails-w .os-lb-thumbnails-i .os-lb-thumbnail-trigger.active .thumbnail-fader, .os-lb-thumbnails-w .os-lb-thumbnails-i .os-lb-thumbnail-trigger:hover .thumbnail-fader {
                background-color: rgba(0,0,0,0);
            }

            .os-lb-thumbnails-w .os-lb-thumbnails-i .os-lb-thumbnail-trigger.active .thumbnail-fader {
                -webkit-box-shadow: inset 0px 0px 0px 5px #fff;
                box-shadow: inset 0px 0px 0px 5px #fff;
            }

.os-lb-close-btn {
    display: inline-block;
    cursor: pointer;
    z-index: 9999;
    position: absolute;
    right: 50px;
    top: 30px;
    color: rgba(255,255,255,0.8);
    font-size: 40px;
    text-align: center;
}

    .os-lb-close-btn i {
        vertical-align: middle;
        display: inline-block;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        -webkit-transition: all 0.6s ease;
        transition: all 0.6s ease;
    }

    .os-lb-close-btn:hover {
        color: #fff;
    }

        .os-lb-close-btn:hover i {
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
        }

.os-lb-controls .os-lb-close-btn, .os-lb-controls .os-lb-navigation-next, .os-lb-controls .os-lb-navigation-prev, .os-lb-controls .os-lb-toggle-thumbnails-btn, .os-lb-controls .os-lb-close-btn {
    display: inline-block;
    cursor: pointer;
    z-index: 9999;
    position: absolute;
    color: rgba(255,255,255,0.8);
    font-size: 40px;
}

    .os-lb-controls .os-lb-close-btn i, .os-lb-controls .os-lb-navigation-next i, .os-lb-controls .os-lb-navigation-prev i, .os-lb-controls .os-lb-toggle-thumbnails-btn i, .os-lb-controls .os-lb-close-btn i {
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .os-lb-controls .os-lb-close-btn:hover, .os-lb-controls .os-lb-navigation-next:hover, .os-lb-controls .os-lb-navigation-prev:hover, .os-lb-controls .os-lb-toggle-thumbnails-btn:hover, .os-lb-controls .os-lb-close-btn:hover {
        color: #fff;
    }

.os-lb-controls .os-lb-navigation-next {
    right: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.os-lb-controls .os-lb-navigation-prev {
    left: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.os-lb-controls .os-lb-toggle-thumbnails-btn {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    bottom: 140px;
}

.category-tiles.columns-3:before, .category-tiles.columns-3:after {
    content: " ";
    display: table;
}

.category-tiles.columns-3:after {
    clear: both;
}

.category-tiles.columns-3 .category-tile {
    width: 32%;
    float: left;
    height: 300px;
    position: relative;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
}

    .category-tiles.columns-3 .category-tile .category-recipes-count {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: rgba(0,0,0,0.6);
        color: #fff;
        font-size: 12px;
        padding: 5px;
        z-index: 3;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .category-tiles.columns-3 .category-tile .category-fader {
        position: absolute;
        z-index: 1;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background-color: rgba(0,0,0,0.2);
        background-image: -webkit-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.2) 60%,rgba(0,0,0,0.8));
        background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.2) 60%,rgba(0,0,0,0.8));
        background-repeat: no-repeat;
        -webkit-transition: all 0.7s ease;
        transition: all 0.7s ease;
    }

    .category-tiles.columns-3 .category-tile h2 {
        -webkit-transition: all 0.7s ease;
        transition: all 0.7s ease;
        z-index: 2;
        position: absolute;
        color: #fff;
        display: inline-block;
        border-bottom: 1px solid rgba(255,255,255,0.5);
        padding-bottom: 5px;
        margin: 0px;
        bottom: 40px;
        left: 40px;
        right: 40px;
        font-size: 30px;
    }

    .category-tiles.columns-3 .category-tile:nth-child(3n + 3) {
        margin-right: 0px;
    }

    .category-tiles.columns-3 .category-tile:nth-child(3n + 4) {
        clear: left;
    }

    .category-tiles.columns-3 .category-tile:hover h2 {
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
    }

    .category-tiles.columns-3 .category-tile:hover .category-fader {
        opacity: 0;
    }

    .category-tiles.columns-3 .category-tile:hover .category-recipes-count {
        -webkit-transform: translateY(-50px);
        -moz-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        -o-transform: translateY(-50px);
    }

.list-of-users .user-item {
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 6px;
    /*border: 1px solid rgba(0,0,0,0.2);*/
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.05);
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.05);
}

    .list-of-users .user-item .user-item-data:before, .list-of-users .user-item .user-item-data:after {
        content: " ";
        display: table;
    }

    .list-of-users .user-item .user-item-data:after {
        clear: both;
    }

    .list-of-users .user-item .user-item-avatar {
        float: left;
        width: 15%;
        padding-bottom: 30px;
    }

        .list-of-users .user-item .user-item-avatar img {
            border-radius: 50%;
            max-width: 100%;
            height: auto;
        }

    .list-of-users .user-item .user-item-description-w {
        float: right;
        width: 80%;
        padding-bottom: 30px;
    }

        .list-of-users .user-item .user-item-description-w .user-item-name {
            margin-top: 0px;
            display: inline-block;
            border-bottom: 2px solid rgba(0,0,0,0.9);
            padding-bottom: 5px;
        }

            .list-of-users .user-item .user-item-description-w .user-item-name a {
                color: rgba(0,0,0,0.9);
            }

        .list-of-users .user-item .user-item-description-w .user-item-description {
            margin-top: 10px;
        }

        .list-of-users .user-item .user-item-description-w .user-item-social {
            padding-top: 10px;
        }

            .list-of-users .user-item .user-item-description-w .user-item-social a {
                display: inline-block;
                margin-right: 5px;
                font-size: 25px;
            }

    .list-of-users .user-item .user-item-recent-posts .user-item-recent-posts-header {
        padding-left: 20px;
        color: rgba(0,0,0,0.6);
        text-transform: uppercase;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 10px;
    }

    .list-of-users .user-item .user-item-recent-posts:before, .list-of-users .user-item .user-item-recent-posts:after {
        content: " ";
        display: table;
    }

    .list-of-users .user-item .user-item-recent-posts:after {
        clear: both;
    }

    .list-of-users .user-item .user-item-recent-posts .user-item-recent-post {
        float: left;
        width: 31%;
        margin: 1%;
        padding: 0px 10px;
        border-right: 1px solid rgba(0,0,0,0.1);
        display: table;
        table-layout: fixed;
    }

        .list-of-users .user-item .user-item-recent-posts .user-item-recent-post .user-item-recent-post-img {
            display: table-cell;
            width: 30%;
        }

            .list-of-users .user-item .user-item-recent-posts .user-item-recent-post .user-item-recent-post-img img {
                border-radius: 6px;
                max-width: 100%;
                height: auto;
            }

        .list-of-users .user-item .user-item-recent-posts .user-item-recent-post .user-item-recent-post-title {
            width: 70%;
            margin: 0px;
            display: table-cell;
            vertical-align: middle;
            padding-left: 20px;
        }

#bbpress-forums .bbp-breadcrumb {
    display: none;
}

#bbpress-forums .bbp-pagination {
    margin-bottom: 25px;
}

    #bbpress-forums .bbp-pagination .bbp-pagination-count {
        text-transform: uppercase;
        font-size: 11px;
        color: rgba(0,0,0,0.4);
    }

#bbpress-forums .bbp-topic-tags a {
    display: inline-block;
    padding: 3px 2px;
    background-color: transparent;
    border-bottom: 1px solid #111;
    color: rgba(0,0,0,0.8);
    font-size: 12px;
    line-height: 12px;
}

    #bbpress-forums .bbp-topic-tags a:hover {
        border-color: #000;
    }

#bbpress-forums div.bbp-forum-header, #bbpress-forums div.bbp-topic-header, #bbpress-forums div.bbp-reply-header {
    background-color: transparent;
    border: none;
    border-bottom: 1px dashed rgba(0,0,0,0.5);
    border-top: 1px solid rgba(0,0,0,0.5);
    padding: 10px 15px;
}

#bbpress-forums span.bbp-admin-links a {
    color: #2a88c5;
}

#bbpress-forums div.bbp-search-form {
    float: none;
    margin-bottom: 20px;
}

    #bbpress-forums div.bbp-search-form #bbp-search-form {
        position: relative;
    }

        #bbpress-forums div.bbp-search-form #bbp-search-form #bbp_search {
            padding: 12px 15px;
            display: block;
            width: 100%;
            float: none;
            border: 1px solid rgba(0,0,0,0.5);
            background-color: transparent;
            font-size: 17.6px;
            border-radius: 2px;
        }

            #bbpress-forums div.bbp-search-form #bbp-search-form #bbp_search:focus {
                outline: none;
            }

        #bbpress-forums div.bbp-search-form #bbp-search-form .button {
            position: absolute;
            right: 9px;
            top: 9px;
            display: block;
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            border-radius: 6px;
            text-transform: uppercase;
            vertical-align: middle;
            color: #fff;
            background-color: #2abe96;
            text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
            -webkit-box-shadow: 0px 5px 0px 0px #219475;
            box-shadow: 0px 5px 0px 0px #219475;
            border: 1px solid #2abe96;
            padding: 6px 20px;
            font-size: 19px;
            text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
            -webkit-box-shadow: 0px 3px 0px 0px #219475;
            box-shadow: 0px 3px 0px 0px #219475;
            padding: 3px 15px;
            font-size: 16px;
            border-radius: 2px;
        }

#bbpress-forums div.bbp-forum-content, #bbpress-forums div.bbp-topic-content, #bbpress-forums div.bbp-reply-content {
    margin-left: 150px;
    padding: 15px 15px 15px 0px;
}

    #bbpress-forums div.bbp-forum-content #subscription-toggle, #bbpress-forums div.bbp-forum-content #favorite-toggle, #bbpress-forums div.bbp-topic-content #subscription-toggle, #bbpress-forums div.bbp-topic-content #favorite-toggle, #bbpress-forums div.bbp-reply-content #subscription-toggle, #bbpress-forums div.bbp-reply-content #favorite-toggle {
        font-size: 0px;
        display: inline-block;
    }

        #bbpress-forums div.bbp-forum-content #subscription-toggle span, #bbpress-forums div.bbp-forum-content #subscription-toggle a, #bbpress-forums div.bbp-forum-content #favorite-toggle span, #bbpress-forums div.bbp-forum-content #favorite-toggle a, #bbpress-forums div.bbp-topic-content #subscription-toggle span, #bbpress-forums div.bbp-topic-content #subscription-toggle a, #bbpress-forums div.bbp-topic-content #favorite-toggle span, #bbpress-forums div.bbp-topic-content #favorite-toggle a, #bbpress-forums div.bbp-reply-content #subscription-toggle span, #bbpress-forums div.bbp-reply-content #subscription-toggle a, #bbpress-forums div.bbp-reply-content #favorite-toggle span, #bbpress-forums div.bbp-reply-content #favorite-toggle a {
            font-size: 16px;
            display: inline-block;
            vertical-align: middle;
        }

        #bbpress-forums div.bbp-forum-content #subscription-toggle .subscription-toggle, #bbpress-forums div.bbp-forum-content #favorite-toggle .subscription-toggle, #bbpress-forums div.bbp-topic-content #subscription-toggle .subscription-toggle, #bbpress-forums div.bbp-topic-content #favorite-toggle .subscription-toggle, #bbpress-forums div.bbp-reply-content #subscription-toggle .subscription-toggle, #bbpress-forums div.bbp-reply-content #favorite-toggle .subscription-toggle {
            margin-left: 15px;
            padding-left: 15px;
            border-left: 1px solid rgba(0,0,0,0.4);
        }

#bbpress-forums .bbp-row-actions #favorite-toggle span.is-favorite a, #bbpress-forums .bbp-row-actions #favorite-toggle span.is-favorite a:hover, #bbpress-forums .bbp-row-actions #favorite-toggle a, #bbpress-forums .bbp-row-actions #favorite-toggle a:hover, #bbpress-forums .bbp-row-actions #subscription-toggle span.is-subscribed a, #bbpress-forums .bbp-row-actions #subscription-toggle span.is-subscribed a:hover, #bbpress-forums .bbp-row-actions #subscription-toggle a, #bbpress-forums .bbp-row-actions #subscription-toggle a:hover {
    border-color: transparent;
    background-color: transparent;
    color: #111;
}

#bbpress-forums div.bbp-forum-author img.avatar, #bbpress-forums div.bbp-topic-author img.avatar, #bbpress-forums div.bbp-reply-author img.avatar {
    border-radius: 50%;
}

#bbpress-forums div.bbp-forum-author .bbp-author-name, #bbpress-forums div.bbp-topic-author .bbp-author-name, #bbpress-forums div.bbp-reply-author .bbp-author-name {
    color: rgba(0,0,0,0.8);
    border-bottom: 1px dashed rgba(0,0,0,0.3);
    padding-bottom: 3px;
}

#bbpress-forums div.bbp-forum-author .bbp-author-role, #bbpress-forums div.bbp-topic-author .bbp-author-role, #bbpress-forums div.bbp-reply-author .bbp-author-role {
    background-color: #fbf6db;
    color: #605a38;
    font-size: 9px;
    padding: 3px 6px;
    display: inline-block;
    border-radius: 4px;
    font-style: normal;
    text-transform: uppercase;
}

#bbpress-forums div.bbp-forum-author .bbp-author-ip, #bbpress-forums div.bbp-topic-author .bbp-author-ip, #bbpress-forums div.bbp-reply-author .bbp-author-ip {
    background-color: #eee;
    font-weight: 400;
    font-size: 9px;
    padding: 3px 6px;
    color: #333;
}

#bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results {
    width: 100%;
    border: none;
}

    #bbpress-forums ul.bbp-forums li.bbp-header, #bbpress-forums ul.bbp-forums li.bbp-footer, #bbpress-forums ul.bbp-lead-topic li.bbp-header, #bbpress-forums ul.bbp-lead-topic li.bbp-footer, #bbpress-forums ul.bbp-topics li.bbp-header, #bbpress-forums ul.bbp-topics li.bbp-footer, #bbpress-forums ul.bbp-forums li.bbp-header, #bbpress-forums ul.bbp-forums li.bbp-footer, #bbpress-forums ul.bbp-replies li.bbp-header, #bbpress-forums ul.bbp-replies li.bbp-footer, #bbpress-forums ul.bbp-search-results li.bbp-header, #bbpress-forums ul.bbp-search-results li.bbp-footer {
        padding: 15px;
        background-color: transparent;
        border-top: 1px solid rgba(0,0,0,0.5);
        border-bottom: 1px solid rgba(0,0,0,0.5);
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 18px;
        text-transform: uppercase;
    }

    #bbpress-forums ul.bbp-forums li.bbp-body, #bbpress-forums ul.bbp-lead-topic li.bbp-body, #bbpress-forums ul.bbp-topics li.bbp-body, #bbpress-forums ul.bbp-forums li.bbp-body, #bbpress-forums ul.bbp-replies li.bbp-body, #bbpress-forums ul.bbp-search-results li.bbp-body {
        padding: 0px;
    }

        #bbpress-forums ul.bbp-forums li.bbp-body ul.forum, #bbpress-forums ul.bbp-forums li.bbp-body ul.topic, #bbpress-forums ul.bbp-lead-topic li.bbp-body ul.forum, #bbpress-forums ul.bbp-lead-topic li.bbp-body ul.topic, #bbpress-forums ul.bbp-topics li.bbp-body ul.forum, #bbpress-forums ul.bbp-topics li.bbp-body ul.topic, #bbpress-forums ul.bbp-forums li.bbp-body ul.forum, #bbpress-forums ul.bbp-forums li.bbp-body ul.topic, #bbpress-forums ul.bbp-replies li.bbp-body ul.forum, #bbpress-forums ul.bbp-replies li.bbp-body ul.topic, #bbpress-forums ul.bbp-search-results li.bbp-body ul.forum, #bbpress-forums ul.bbp-search-results li.bbp-body ul.topic {
            padding: 30px 25px;
            border-top: 1px solid rgba(0,0,0,0.2);
        }

            #bbpress-forums ul.bbp-forums li.bbp-body ul.forum:first-child, #bbpress-forums ul.bbp-forums li.bbp-body ul.topic:first-child, #bbpress-forums ul.bbp-lead-topic li.bbp-body ul.forum:first-child, #bbpress-forums ul.bbp-lead-topic li.bbp-body ul.topic:first-child, #bbpress-forums ul.bbp-topics li.bbp-body ul.forum:first-child, #bbpress-forums ul.bbp-topics li.bbp-body ul.topic:first-child, #bbpress-forums ul.bbp-forums li.bbp-body ul.forum:first-child, #bbpress-forums ul.bbp-forums li.bbp-body ul.topic:first-child, #bbpress-forums ul.bbp-replies li.bbp-body ul.forum:first-child, #bbpress-forums ul.bbp-replies li.bbp-body ul.topic:first-child, #bbpress-forums ul.bbp-search-results li.bbp-body ul.forum:first-child, #bbpress-forums ul.bbp-search-results li.bbp-body ul.topic:first-child {
                border-top-color: transparent;
            }

            #bbpress-forums ul.bbp-forums li.bbp-body ul.topic .bbp-topic-title .bbp-topic-permalink, #bbpress-forums ul.bbp-lead-topic li.bbp-body ul.topic .bbp-topic-title .bbp-topic-permalink, #bbpress-forums ul.bbp-topics li.bbp-body ul.topic .bbp-topic-title .bbp-topic-permalink, #bbpress-forums ul.bbp-forums li.bbp-body ul.topic .bbp-topic-title .bbp-topic-permalink, #bbpress-forums ul.bbp-replies li.bbp-body ul.topic .bbp-topic-title .bbp-topic-permalink, #bbpress-forums ul.bbp-search-results li.bbp-body ul.topic .bbp-topic-title .bbp-topic-permalink {
                font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                font-weight: 400;
                font-size: 20px;
                color: rgba(0,0,0,0.9);
                border-bottom: 1px solid rgba(0,0,0,0.9);
                padding-bottom: 1px;
                margin-bottom: 10px;
                display: inline-block;
            }

    #bbpress-forums ul.bbp-forums .bbp-forum-title, #bbpress-forums ul.bbp-lead-topic .bbp-forum-title, #bbpress-forums ul.bbp-topics .bbp-forum-title, #bbpress-forums ul.bbp-forums .bbp-forum-title, #bbpress-forums ul.bbp-replies .bbp-forum-title, #bbpress-forums ul.bbp-search-results .bbp-forum-title {
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 22px;
        color: rgba(0,0,0,0.9);
        border-bottom: 2px solid rgba(0,0,0,0.8);
        padding-bottom: 3px;
        margin-bottom: 10px;
        display: inline-block;
    }

#bbpress-forums .bbp-topics-front ul.super-sticky, #bbpress-forums .bbp-topics-front ul.sticky, #bbpress-forums .bbp-topics ul.super-sticky, #bbpress-forums .bbp-topics ul.sticky, #bbpress-forums .bbp-topics ul.super-sticky, #bbpress-forums .bbp-topics ul.sticky, #bbpress-forums .bbp-forum-content ul.super-sticky, #bbpress-forums .bbp-forum-content ul.sticky {
    background-color: #fdfbf3 !important;
    border-bottom: 3px solid #fce9a7;
}

#bbpress-forums ul.odd, #bbpress-forums div.odd {
    background-color: transparent;
}

#bbpress-forums ul.even, #bbpress-forums div.even {
    background-color: transparent;
}

#bbpress-forums div.bbp-template-notice, #bbpress-forums div.indicator-hint {
    border-radius: 0px;
    padding: 15px 20px;
    border: none;
    border-bottom: 2px solid #e5e0a6;
    background-color: #f9f8ec;
    color: #787553;
}

    #bbpress-forums div.bbp-template-notice p, #bbpress-forums div.indicator-hint p {
        font-size: 14px;
    }

    #bbpress-forums div.bbp-template-notice.info, #bbpress-forums div.indicator-hint.info {
        border: none;
        background-color: #eef6fc;
        color: #4a677c;
        border-bottom: 2px solid #c6e0f4;
    }

    #bbpress-forums div.bbp-template-notice .bbp-forum-description .bbp-author-name, #bbpress-forums div.indicator-hint .bbp-forum-description .bbp-author-name {
        color: #2a88c5;
        border-bottom: 1px solid #2a88c5;
        display: inline-block;
        padding-bottom: 2px;
    }

        #bbpress-forums div.bbp-template-notice .bbp-forum-description .bbp-author-name + a, #bbpress-forums div.indicator-hint .bbp-forum-description .bbp-author-name + a {
            color: #2a88c5;
            border-bottom: 1px solid #2a88c5;
            display: inline-block;
            padding-bottom: 2px;
            margin-left: 5px;
        }

    #bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums .widget_display_replies img.avatar {
        border: none;
        border-radius: 50%;
        margin-bottom: -3px;
    }

#bbpress-forums fieldset.bbp-form {
    padding: 0px;
    border: none;
    background-color: transparent;
    margin-bottom: 20px;
}

    #bbpress-forums fieldset.bbp-form legend {
        padding: 10px 5px;
        margin-bottom: 20px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 24px;
        border-bottom: 1px dashed rgba(0,0,0,0.5);
    }

    #bbpress-forums fieldset.bbp-form label {
        color: rgba(0,0,0,0.8);
        font-size: 16px;
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        margin-bottom: 2px;
        margin-top: 15px;
        display: inline-block;
    }

        #bbpress-forums fieldset.bbp-form label[for="bbp_topic_subscription"] {
            margin-left: 5px;
            margin-bottom: 0px;
            font-size: 12px;
        }

    #bbpress-forums fieldset.bbp-form input[type="text"] {
        padding: 10px;
        border: 1px solid rgba(0,0,0,0.5);
    }

    #bbpress-forums fieldset.bbp-form .button.submit {
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        border-radius: 6px;
        text-transform: uppercase;
        vertical-align: middle;
        color: #fff;
        background-color: #2abe96;
        text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
        -webkit-box-shadow: 0px 5px 0px 0px #219475;
        box-shadow: 0px 5px 0px 0px #219475;
        border: 1px solid #2abe96;
        padding: 8px 25px;
        font-size: 22px;
        padding: 5px 20px 4px 20px;
    }

    #bbpress-forums fieldset.bbp-form .bbp-submit-wrapper {
        float: none;
        border-top: 1px dashed rgba(0,0,0,0.3);
        padding-top: 20px;
        text-align: left;
        margin-top: 20px;
    }

#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar {
    background-color: #ecf4f9;
    border-bottom: 1px solid #111;
    padding: 15px;
}

#bbpress-forums .wp-editor-container {
    border: 1px solid rgba(0,0,0,0.5);
}

#bbpress-forums .wp-core-ui .button, #bbpress-forums .wp-core-ui .button-secondary {
    background-color: transparent;
    border: 1px solid #111;
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 4px 10px;
    margin-right: 5px;
    background-color: #f4f8fb;
}

#bbpress-forums #bbp-user-wrapper {
    background-color: #f9f7ef;
    border-radius: 6px;
}

    #bbpress-forums #bbp-user-wrapper #bbp-single-user-details {
        width: 200px;
        background-color: #ddd8c7;
        border-radius: 6px;
        padding: 50px 0px;
    }

        #bbpress-forums #bbp-user-wrapper #bbp-single-user-details #bbp-user-avatar {
            text-align: center;
            width: auto;
        }

            #bbpress-forums #bbp-user-wrapper #bbp-single-user-details #bbp-user-avatar img.avatar {
                border-radius: 50%;
            }

        #bbpress-forums #bbp-user-wrapper #bbp-single-user-details #bbp-user-navigation {
            padding-left: 30px;
            padding-top: 30px;
        }

            #bbpress-forums #bbp-user-wrapper #bbp-single-user-details #bbp-user-navigation ul li {
                border-top: 1px solid rgba(0,0,0,0.1);
            }

                #bbpress-forums #bbp-user-wrapper #bbp-single-user-details #bbp-user-navigation ul li.current {
                    border-top-color: transparent;
                }

                    #bbpress-forums #bbp-user-wrapper #bbp-single-user-details #bbp-user-navigation ul li.current a {
                        opacity: 1;
                        background-color: #f9f7ef;
                        border-radius: 6px 0px 0px 6px;
                        font-weight: 400;
                    }

                    #bbpress-forums #bbp-user-wrapper #bbp-single-user-details #bbp-user-navigation ul li.current + li {
                        border-top-color: transparent;
                    }

                #bbpress-forums #bbp-user-wrapper #bbp-single-user-details #bbp-user-navigation ul li a {
                    color: rgba(0,0,0,0.8);
                    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
                    font-weight: 400;
                    font-size: 17px;
                    padding: 10px 20px;
                }

    #bbpress-forums #bbp-user-wrapper #bbp-user-body {
        margin-left: 200px;
        padding: 50px 50px 50px 50px;
    }

        #bbpress-forums #bbp-user-wrapper #bbp-user-body h2.entry-title {
            font-size: 32px;
            border-bottom: 1px dashed rgba(0,0,0,0.2);
            padding-bottom: 10px;
            margin-bottom: 30px;
        }

        #bbpress-forums #bbp-user-wrapper #bbp-user-body #bbp-user-profile .bbp-user-section .bbp-user-description {
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding-bottom: 30px;
            font-size: 17px;
        }

        #bbpress-forums #bbp-user-wrapper #bbp-user-body #bbp-user-profile .bbp-user-section .bbp-user-forum-role {
            font-size: 17px;
            background-color: #fcf8da;
            padding: 15px;
            border-bottom: 2px solid #fdf3b3;
        }

        #bbpress-forums #bbp-user-wrapper #bbp-user-body #bbp-user-profile .bbp-user-section .bbp-user-topic-count {
            font-size: 17px;
            background-color: rgba(0,0,0,0.02);
            padding: 15px;
            margin-bottom: 0px;
            border-bottom: 1px solid #ccc;
        }

        #bbpress-forums #bbp-user-wrapper #bbp-user-body #bbp-user-profile .bbp-user-section .bbp-user-reply-count {
            font-size: 17px;
            background-color: rgba(0,0,0,0.02);
            padding: 15px;
            border-bottom: 1px solid #ccc;
            margin-top: 0px;
        }

        #bbpress-forums #bbp-user-wrapper #bbp-user-body .bbp-form {
            background-color: transparent;
            padding: 0px;
        }

#bbpress-forums #bbp-your-profile fieldset {
    border: none;
}

    #bbpress-forums #bbp-your-profile fieldset.submit {
        border-top: 1px dashed rgba(0,0,0,0.3);
    }

        #bbpress-forums #bbp-your-profile fieldset.submit .button {
            font-family: 'YanoneKaffeesatz-Regular', sans-serif;
            font-weight: 400;
            border-radius: 6px;
            text-transform: uppercase;
            vertical-align: middle;
            padding: 6px 20px;
            font-size: 19px;
            text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
            -webkit-box-shadow: 0px 3px 0px 0px #219475;
            box-shadow: 0px 3px 0px 0px #219475;
            color: #fff;
            background-color: #2abe96;
            text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
            -webkit-box-shadow: 0px 5px 0px 0px #219475;
            box-shadow: 0px 5px 0px 0px #219475;
            border: 1px solid #2abe96;
        }

    #bbpress-forums #bbp-your-profile fieldset + fieldset.submit {
        margin-top: -20px;
    }

    #bbpress-forums #bbp-your-profile fieldset label[for] {
        width: 35%;
        margin-top: 0px;
        padding-top: 4px;
        font-size: 14px;
    }

    #bbpress-forums #bbp-your-profile fieldset input.regular-text, #bbpress-forums #bbp-your-profile fieldset input[type="password"], #bbpress-forums #bbp-your-profile fieldset textarea {
        border: 1px solid #c6bd99;
        border-radius: 2px;
        -webkit-box-shadow: inset 0px 1px 2px 0px rgba(0,0,0,0.05);
        box-shadow: inset 0px 1px 2px 0px rgba(0,0,0,0.05);
    }

    #bbpress-forums #bbp-your-profile fieldset span.description {
        background-color: #faf3d9;
        border: none;
        border-radius: 0px;
        border-bottom: 2px solid #dfcf90;
        font-style: normal;
        font-size: 11px;
        color: #8d8461;
        padding: 10px 20px;
        line-height: 1.29;
    }

#bbpress-forums .bbp-forum-freshness > a {
    font-size: 11px;
    padding: 2px;
    color: #2a88c5;
    border-bottom: 1px solid #2a88c5;
}

#bbpress-forums .bbp-forum-freshness .bbp-topic-meta {
    margin-top: 10px;
}

    #bbpress-forums .bbp-forum-freshness .bbp-topic-meta .bbp-topic-freshness-author .bbp-author-name {
        color: rgba(0,0,0,0.8);
        border-bottom: 1px solid rgba(0,0,0,0.8);
        display: inline-block;
        padding-bottom: 2px;
        margin-left: 5px;
    }

#bbpress-forums > #subscription-toggle {
    margin-bottom: 20px;
    display: inline-block;
}

    #bbpress-forums > #subscription-toggle a.subscription-toggle {
        font-family: 'YanoneKaffeesatz-Regular', sans-serif;
        font-weight: 400;
        font-size: 20px;
        padding-bottom: 5px;
        border-bottom: 1px solid #2a88c5;
        display: inline-block;
    }

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .animated.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

    .animated.bounceIn, .animated.bounceOut {
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
    }

    .animated.flipOutX, .animated.flipOutY {
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
    }

@keyframes shake {
    from,to {
        transform: translate3d(0,0,0);
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(-10px,0,0);
    }

    20%,40%,60%,80% {
        transform: translate3d(10px,0,0);
    }
}

.animation-shake {
    animation-name: shake;
}

@media print {
    *, *:before, *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after, a[href^="javascript:"]:after {
        content: "";
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr, img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    .print-w {
        display: block;
    }

    .print-logo-w {
        text-align: center;
        padding-bottom: 40px;
        display: none;
    }

    .mobile-header-w, .main-header-w, .top-bar-w, .main-search-form, .main-search-form-overlay, .single-post-comments-w, .pre-footer, .footer-menu, .footer-social-w, .related-recipes-w, .single-post-navigation, .recipe-floating-box, .single-meta-at-bottom, .side-meta-box, .fixed-header-w, .top-profile-links-box-w, .single-post-reviews-w, .author-social-links {
        display: none;
    }

    .quick-description-quote:before, .quick-description-quote:after {
        display: none;
    }

    .single-panel {
        display: block;
        border: none;
    }

        .single-panel .single-panel-details, .single-panel .single-panel-main {
            display: block;
            width: auto;
        }

        .single-panel .single-panel-details-i {
            -webkit-transform: translateY(0px !important);
            -moz-transform: translateY(0px !important);
            -ms-transform: translateY(0px !important);
            -o-transform: translateY(0px !important);
        }

        .single-panel .single-panel-mail {
            padding: 40px 15%;
        }

        .single-panel .single-panel-details {
            border: none;
        }

            .single-panel .single-panel-details .single-main-media {
                display: none;
            }

    .os-parallax {
        display: none;
    }

    .os-container {
        width: auto;
        margin: 0px;
    }

    .footer-copy-and-menu-w {
        float: none;
        width: 100% !important;
        text-align: center;
    }

    /*.single-ingredients table.ingredients-table tr td:first-child {
        display: none;
    }*/

    .single-ingredients table.ingredients-table tr td {
        font-size: 16px;
        padding: 5px 10px;
    }

    .single-panel-details-i:before, .single-panel-details-i:after {
        content: " ";
        display: table;
    }

    .single-panel-details-i:after {
        clear: both;
    }

    .single-ingredients {
        width: 45%;
        padding-right: 40px;
    }

    .single-nutritions {
        width: 55%;
    }

    .single-ingredients, .single-nutritions {
        float: left;
        padding: 0px;
        margin: 0px;
    }

        .single-ingredients h3, .single-nutritions h3 {
            font-size: 24px;
        }

    .single-title {
        padding-top: 0px;
        margin-top: 0px;
    }

        .single-title h1, .single-title .like-title {
            margin-top: 0px;
            padding-top: 0px;
        }

    .single-panel-details {
        display: none !important;
    }

    .mobile-header-w .mobile-header .mobile-menu-toggler {
        display: none !important;
    }

    .mobile-header-w .mobile-header .mobile-menu-search-toggler {
        display: none !important;
    }

    a[href]:after {
        content: none !important;
    }

    .single-panel .single-panel-main .single-title h1,
    .single-panel .single-panel-main .single-title .like-title {
        font-size: 40px;
    }

    .single-panel .single-panel-main .single-title h3 {
        font-size: 18px;
    }

    .single-panel .single-panel-main .quick-description-quote {
        font-size: 22px;
    }

    .ingredient-print-note {
        color: #aaa;
        font-size: 14px;
        margin-top: 5px;
    }

    .single-print-ingredients {
        display: block !important;
    }
}

@media (max-width: 1239px) {
    .os-container {
        width: 100%;
    }

    .all-wrapper {
        padding: 0px;
    }

    .main-header, .main-footer {
        border-radius: 0px;
    }
}

@media (max-width: 991px) {
    .top-profile-links-box-container {
        display: none;
    }

        .top-profile-links-box-container .top-profile-links-box {
            text-align: left;
        }

            .top-profile-links-box-container .top-profile-links-box ul {
                display: flex;
            }

                .top-profile-links-box-container .top-profile-links-box ul li {
                    flex: 1;
                    border-right: 1px solid rgba(255, 255, 255, 0.1);
                    padding: 7px 10px;
                    text-align: center;
                }

                    .top-profile-links-box-container .top-profile-links-box ul li:last-child {
                        border-right: none;
                    }

    .frontend-publisher-w {
        padding: 20px;
    }

    .fixed-header-w {
        display: none !important;
    }

    .recipe-floating-box {
        width: 100%;
        border-radius: 0px;
        text-align: center;
    }

        .recipe-floating-box .thumbs-votes-w {
            display: none;
        }

        .recipe-floating-box .print-share-recipe-btn-w {
            display: none;
        }

        .recipe-floating-box .cooking-mode-btn-w {
            display: inline-block;
            float: none;
            vertical-align: middle;
        }

        .recipe-floating-box .timer-w {
            display: inline-block;
            float: none;
            vertical-align: middle;
        }

    .cooking-mode-w .cooking-mode-i {
        width: 100%;
        padding: 60px 20px 40px 20px;
    }

    .cooking-mode-w .cooking-mode-close-btn-w {
        z-index: 9999;
        left: 0px;
        right: 0px;
        top: 0px;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
        border-bottom: 1px solid #111;
        text-align: center;
        padding: 5px;
    }

        .cooking-mode-w .cooking-mode-close-btn-w .cooking-mode-close-btn {
            font-size: 30px;
            display: inline-block;
        }

            .cooking-mode-w .cooking-mode-close-btn-w .cooking-mode-close-btn .os-icon {
                vertical-align: middle;
            }

    .archive-posts-w {
        padding: 20px 10px;
    }

        .archive-posts-w.with-sidebar .archive-sidebar {
            display: none;
            position: fixed;
            top: 0px;
            right: 0px;
            width: 100%;
            max-width: 350px;
            bottom: 0px;
            z-index: 9999;
        }

        .archive-posts-w .archive-posts {
            padding-right: 0px !important;
            padding-left: 0px !important;
        }

            .archive-posts-w .archive-posts .masonry-grid {
                margin-right: 0px !important;
            }

        .archive-posts-w .sticky-roll-w {
            margin-right: 0px !important;
            margin-bottom: 20px !important;
        }

    .single-nutritions .single-nutritions-list {
        margin: 0px;
    }

    .mobile-header-w {
        display: block;
    }

        .mobile-header-w .mobile-header .mobile-logo {
            padding-left: 30px;
            padding-right: 30px;
        }

            .mobile-header-w .mobile-header .mobile-logo img {
                width: auto;
                height: auto;
                max-width: 100%;
            }

    .main-header {
        display: none !important;
    }

    .single-panel {
        display: block;
        table-layout: auto;
    }

        .single-panel .single-panel-details {
            display: block;
            width: 100%;
        }

        .single-panel .single-panel-main {
            display: block;
            width: 100%;
        }

    /*.sidebar-single-w {
        display: none;
    }*/

    .single-post-comments-w.with-ads .single-post-comments-sidebar {
        padding-left: 0px;
    }

    .top-bar .bar-breadcrumbs {
        display: none;
    }

    .top-bar .bar-social {
        float: none;
        padding: 15px;
        text-align: center;
    }

        .top-bar .bar-social li {
            display: inline-block;
            float: none;
            margin-right: 10px;
        }

    .active-search-form .main-search-form {
        top: 10px;
        -webkit-transform: translate(-50%,0);
        -moz-transform: translate(-50%,0);
        -ms-transform: translate(-50%,0);
        -o-transform: translate(-50%,0);
    }
}

@media (max-width: 454px) {
    .list-of-users .user-item .user-item-recent-posts .user-item-recent-post {
        width: 100%;
        border: none;
        padding-bottom: 10px;
    }

    .archive-item-deep-meta {
        padding: 10px 0px 10px !important;
    }

    .highlighted_recipies .archive-item-deep-meta {
        display: none;
    }

    .highlighted_recipies .entry-title {
        margin: 0px;
        margin-bottom: 0px;
        padding-bottom: 0px;
        border-bottom: 0px;
    }

    .hero-roll-w .archive-item-i .archive-item-content {
        right: auto;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        width: 70%;
        max-width: 350px;
    }

    .recipe-big-titled-header-box .recipe-big-titled-header-image {
        height: 280px !important;
    }

        .recipe-big-titled-header-box .recipe-big-titled-header-image .header-title,
        .recipe-big-titled-header-box .recipe-big-titled-header-image h1 {
            font-size: 34px;
        }

            .recipe-big-titled-header-box .recipe-big-titled-header-image h1 .recipe-header-image-sub-title {
                margin-top: 10px;
                font-size: 18px;
            }

    .main_logo_description {
        font-size: 15px;
    }

    .page-template-page-publish-recipe-php .page-w {
        padding: 0px;
    }

    .frontend-publisher-w .acf-fields > .acf-field {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .frontend-publisher-w .acf-row-handle.order, .frontend-publisher-w th.acf-row-handle:first-child {
        display: none;
    }

    .frontend-publisher-w th.acf-row-handle:last-child {
        width: 40px;
    }

    .frontend-publisher-w .acf-fields > .acf-field .wp-editor-tabs .wp-switch-editor {
        height: 26px;
    }

    .frontend-publisher-w .wp-media-buttons {
        margin-bottom: 20px;
    }

    .frontend-publisher-w .wp-editor-tabs {
        float: left;
    }

    .frontend-publisher-w .acf-soh .acf-soh-target {
        visibility: visible;
        opacity: 100;
    }

    .frontend-publisher-w .acf-field[data-name="google_rich_meta_field"], .frontend-publisher-w .acf-field[data-name="ingredient_note"], .frontend-publisher-w .acf-field[data-name="separator"] {
        display: none;
    }

    .frontend-publisher-w .wp-media-buttons {
        float: none;
    }

    .frontend-publisher-w #arve-btn {
        display: none;
    }

    .frontend-publisher-w .acf-field[data-name="ingredients"] .acf-th {
        width: auto !important;
    }

        .frontend-publisher-w .acf-field[data-name="ingredients"] .acf-th[data-key="field_5620350d903a1"] {
            width: 60% !important;
        }

        .frontend-publisher-w .acf-field[data-name="ingredients"] .acf-th[data-key="field_5588b2c5b4dc5"], .frontend-publisher-w .acf-field[data-name="ingredients"] .acf-th[data-key="field_558532249b50d"] {
            display: none;
        }

    .frontend-publisher-w .acf-field[data-name="nutritions"] .acf-th {
        width: auto !important;
    }

        .frontend-publisher-w .acf-field[data-name="nutritions"] .acf-th[data-key="field_558bba516bc25"], .frontend-publisher-w .acf-field[data-name="nutritions"] .acf-th[data-key="field_5752abd7c7346"], .frontend-publisher-w .acf-field[data-name="nutritions"] .acf-field[data-name="nutrition_extra_info"] {
            display: none;
        }

    .frontend-publisher-w .acf-field[data-name="quick_description"], .frontend-publisher-w .acf-field[data-name="recipe_serves"], .frontend-publisher-w .acf-field[data-name="recipe_difficulty"], .frontend-publisher-w .acf-field[data-name="recipe_preparation_time"], .frontend-publisher-w .acf-field[data-name="recipe_just_cooking_time"], .frontend-publisher-w .acf-field[data-name="recipe_cooking_time"], .frontend-publisher-w .acf-field[data-name="recipe_cooking_temperature"] {
        width: 100% !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .frontend-publisher-w .acf-field[data-name="recipe_just_cooking_time"], .frontend-publisher-w .acf-field[data-name="recipe_cooking_temperature"] {
        padding-right: 0px !important;
    }

    .frontend-publisher-w .acf-field[data-name="recipe_preparation_time"], .frontend-publisher-w .acf-field[data-name="recipe_cooking_time"] {
        padding-left: 0px !important;
    }

    .full-screen-share-box .post-share-box {
        padding: 40px;
        width: 90%;
    }

        .full-screen-share-box .post-share-box .post-share-header {
            font-size: 18px;
        }

        .full-screen-share-box .post-share-box .psb-close {
            top: 10px;
            right: 20px;
            font-size: 22px;
        }

        .full-screen-share-box .post-share-box .psb-links .psb-link {
            width: 40px;
            height: 40px;
            margin: 0px;
        }

            .full-screen-share-box .post-share-box .psb-links .psb-link i {
                font-size: 22px;
                line-height: 22px;
            }

        .full-screen-share-box .post-share-box .psb-url .psb-url-heading {
            font-size: 8px;
        }

    .tooltip-box {
        display: none;
    }

    .big-meta-box {
        padding-top: 0px;
        font-size: 19px;
    }

        .big-meta-box ul:before, .big-meta-box ul:after {
            content: " ";
            display: table;
        }

        .big-meta-box ul:after {
            clear: both;
        }

        .big-meta-box ul li {
            float: left;
            width: 50%;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding: 7px 15px;
        }

            .big-meta-box ul li .single-meta-total-reviews {
                display: none;
            }

            .big-meta-box ul li:nth-child(even) {
                border-right: none;
            }

    .single-main-media .owl-controls {
        display: none;
    }

        .single-main-media .owl-controls .owl-nav .owl-prev {
            left: 20px;
        }

        .single-main-media .owl-controls .owl-nav .owl-next {
            right: 20px;
        }

    .category-tiles.columns-3 .category-tile {
        width: auto;
        margin: 0px 0px 10px;
        height: auto;
        float: none;
        display: block;
        padding: 40px 20px;
    }

        .category-tiles.columns-3 .category-tile h2 {
            font-size: 28px;
            left: auto;
            top: auto;
            bottom: auto;
            right: auto;
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            -o-transform: none;
            display: block;
            text-align: center;
            position: relative;
            border-bottom: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }

        .category-tiles.columns-3 .category-tile:hover .category-fader {
            -webkit-opacity: 1;
            -moz-opacity: 1;
            opacity: 1;
        }

        .category-tiles.columns-3 .category-tile:hover h2 {
            -webkit-transform: none;
            -moz-transform: none;
            -ms-transform: none;
            -o-transform: none;
        }

    .ingredients-search-box-w {
        padding: 20px;
    }

        .ingredients-search-box-w .ingredients-search-box-i {
            padding: 0px;
            background-color: transparent;
        }

            .ingredients-search-box-w .ingredients-search-box-i .box-heading {
                font-size: 28px;
            }

            .ingredients-search-box-w .ingredients-search-box-i .ingredient-search-icon {
                display: none;
            }

            .ingredients-search-box-w .ingredients-search-box-i select.ingredients-multi-select {
                display: block;
                width: 100%;
                margin-bottom: 15px;
                text-align: center;
                padding: 10px;
            }

            .ingredients-search-box-w .ingredients-search-box-i .ingredient-search-btn-w {
                position: relative;
                top: auto;
                right: auto;
                text-align: center;
            }

    .display-type {
        content: "phone";
    }

    .recipe-floating-box {
        text-align: center;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
        box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
    }

        .recipe-floating-box .cooking-mode-btn-w {
            float: none;
            display: inline-block;
        }

        .recipe-floating-box .print-share-recipe-btn-w {
            display: none;
        }

        .recipe-floating-box .timer-w {
            display: none;
        }

        .recipe-floating-box .thumbs-votes-w {
            display: none;
        }

    .single-ingredients .close-btn, .single-nutritions .close-btn, .single-recipe-bookmark-box .close-btn {
        display: block;
    }

    .single-ingredients table.ingredients-table {
        margin-top: 10px;
        border-top: 1px dashed rgba(0,0,0,0.2);
    }

    .single-nutritions {
        margin-bottom: 10px;
    }

        .single-nutritions .single-nutritions-list {
            padding-top: 10px;
            margin-top: 10px;
            border-top: 1px dashed rgba(0,0,0,0.2);
        }

            .single-nutritions .single-nutritions-list .single-nutrition .single-nutrition-value {
                font-size: 19px;
            }

            .single-nutritions .single-nutritions-list .single-nutrition .single-nutrition-name {
                font-size: 14px;
            }

    .single-recipe-bookmark-box {
        margin-bottom: 0px;
    }

        .single-recipe-bookmark-box div.userpro-bm {
            padding-top: 10px !important;
            padding-bottom: 10px !important;
            margin-top: 10px;
            border-top: 1px dashed rgba(0,0,0,0.2);
            display: none;
        }

            .single-recipe-bookmark-box div.userpro-bm .chosen-select-collections {
                width: 100%;
            }

            .single-recipe-bookmark-box div.userpro-bm .userpro-bm-btn {
                font-size: 16px !important;
            }

    .featured-recipes-slider-w .featured-recipes-slider-item {
        width: 310px;
    }

    .featured-recipes-slider-w .featured-recipes-fade-left .icon-w, .featured-recipes-slider-w .featured-recipes-fade-right .icon-w {
        font-size: 24px;
        padding: 15px;
    }

    .archive-posts.masonry-grid-w .masonry-grid .masonry-item.any {
        width: 100%;
        float: none;
        margin-bottom: 0px;
        padding: 10px;
    }

        .archive-posts.masonry-grid-w .masonry-grid .masonry-item.any .archive-item-media {
            padding: 0px;
        }

            .archive-posts.masonry-grid-w .masonry-grid .masonry-item.any .archive-item-media .archive-item-media-thumbnail {
                height: 200px;
            }

    .archive-posts .list-items .masonry-item.any .archive-item.any .archive-item-media, .archive-posts .masonry-grid .masonry-item.any .archive-item.any .archive-item-media {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }

    .archive-posts .list-items .masonry-item.any .archive-item.any .archive-item-content, .archive-posts .masonry-grid .masonry-item.any .archive-item.any .archive-item-content {
        width: 100%;
        float: none;
        padding: 0px;
    }

    .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content {
        position: absolute;
        top: auto;
        bottom: 0px;
        max-height: 60%;
        left: 0px;
        width: 100%;
        padding: 20px;
        padding-bottom: 70px;
    }

        .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .read-more-link {
            display: none;
        }

        .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .entry-title {
            font-size: 28px;
            margin-top: 0px;
        }

        .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-content .archive-item-meta {
            display: none;
        }

    .page-w {
        padding: 20px;
    }

        .page-w.with-sidebar .page-content {
            width: 100%;
            padding-right: 0px;
        }

        .page-w.with-sidebar .page-sidebar {
            display: none;
        }

    blockquote {
        padding: 10px 10px 10px 70px;
        margin: 25px 15px;
        font-size: 14px;
    }

    .page-intro-header {
        padding: 30px;
    }

        .page-intro-header h2 {
            font-size: 28px;
        }

    .single-steps .single-step-duration {
        display: none;
    }

    .single-steps .single-step-number {
        width: 35px;
        font-size: 24px;
    }

        .single-steps .single-step-number .single-step-number-i {
            padding: 0px;
            background-color: #fff;
            border: none;
        }

            .single-steps .single-step-number .single-step-number-i .single-step-control .single-step-complete-label {
                display: none;
            }

    .single-steps .single-step-description {
        padding-top: 30px;
        padding-left: 20px;
    }

    .main-search-form {
        width: 95%;
    }

        .main-search-form .search-submit {
            margin-top: -14px;
            margin-right: -10px;
        }

        .main-search-form form .search-field {
            padding: 15px;
            padding-left: 55px;
            font-size: 19px;
        }

        .main-search-form form .search-field-w:before {
            font-size: 24px;
            top: 15px;
            left: 15px;
        }

    .autosuggest-results .autosuggest-items {
        max-height: 220px;
    }

    .autosuggest-results .autosuggest-items-shadow {
        top: 56px;
    }

    .autosuggest-results .autosuggest-item .autosuggest-item-media-w {
        width: 40px;
    }

    .autosuggest-results .autosuggest-item .autosuggest-item-media-thumbnail {
        height: 40px;
    }

    .autosuggest-results .autosuggest-item .autosuggest-item-title {
        font-size: 18px;
        padding: 5px 10px;
    }

    .mobile-header-w .mobile-header .mobile-menu-toggler {
        font-size: 30px;
    }

    .mobile-header-w .mobile-header .mobile-logo img {
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .mobile-header-w .mobile-header .mobile-menu-search-toggler {
        font-size: 30px;
    }

    .main-footer {
        padding: 20px 10px;
    }

        .main-footer.with-social .footer-copy-and-menu-w {
            float: none;
            width: 100%;
            text-align: center;
        }

        .main-footer.with-social .footer-social-w {
            margin-top: 20px;
            float: none;
            width: 100%;
            text-align: center;
        }

    .pre-footer {
        padding: 20px 10px;
    }

        .pre-footer.widgets-count-4 .widget, .pre-footer.widgets-count-3 .widget, .pre-footer.widgets-count-2 .widget, .pre-footer.widgets-count-1 .widget, .pre-footer.widgets-count-5 .widget {
            width: 100%;
            float: none;
            margin: 0px 0px 20px 0px;
            padding: 10px;
        }

    .single-post-comments-w.with-ads .single-post-comments {
        width: 100%;
        float: none;
        padding: 10px;
    }

    .single-post-comments-w.with-ads .single-post-comments-sidebar {
        width: 100%;
        padding: 10px;
        float: none;
    }

    .single-post-comments-w.with-ads .comment-list .comment-meta {
        margin-bottom: 20px;
    }

    .single-post-comments-w.with-ads .comment-list .reply {
        top: 40px;
        right: 5px;
        left: auto;
    }

    .single-post-comments-w.with-ads .comment-list .comment-metadata {
        display: block;
    }

    .single-post-comments-w.with-ads .comment-list .comment-author {
        margin-bottom: 10px;
    }

        .single-post-comments-w.with-ads .comment-list .comment-author img {
            position: relative;
            top: auto;
            left: auto;
            max-width: 0px 0px 10px;
            display: inline-block;
        }

        .single-post-comments-w.with-ads .comment-list .comment-author .fn {
            display: inline-block;
        }

    .single-post-comments-w.with-ads .comment-list .comment, .single-post-comments-w.with-ads .children .comment {
        padding-left: 0px;
    }

    .related-recipes-w {
        padding: 20px 10px;
    }

        .related-recipes-w .related-recipes-heading {
            text-align: center;
            display: block;
            padding-bottom: 15px;
        }

            .related-recipes-w .related-recipes-heading h2.bordered-title {
                display: block;
                font-size: 25px;
                float: none;
                margin-bottom: 10px;
            }

            .related-recipes-w .related-recipes-heading ul {
                float: none;
                padding: 0px;
            }

        .related-recipes-w .related-recipes li {
            width: 50%;
            margin-bottom: 10px;
            display: none;
        }

    .related-recipes-landing .related-recipes li {
        width: 100% !important;
    }

    .related-recipes-w .related-recipes li {
        display: block;
        min-height: 275px;
    }

    .single-post-about-author .author-avatar-w {
        width: 100%;
        float: none;
        text-align: center;
        margin-bottom: 15px;
        border-bottom: 1px dashed rgba(0,0,0,0.1);
        padding-bottom: 10px;
    }

    .single-post-about-author .author-details {
        width: 100%;
        float: none;
        padding: 0px;
        text-align: center;
    }

    .single-post-navigation {
        padding: 20px 0px;
    }

        .single-post-navigation a {
            padding: 10px;
        }

    .single-panel .single-main-media {
        margin-bottom: 10px;
    }

    .single-panel .single-panel-details {
        padding: 10px;
    }

    .single-panel .single-content {
        padding: 0px 10px;
    }

    .single-panel .single-panel-main {
        padding: 20px 10px;
    }

        .single-panel .single-panel-main .single-title h1,
        .single-panel .single-panel-main .single-title .like-title {
            font-size: 30px;
        }

        .single-panel .single-panel-main .single-title h3 {
            margin-top: 5px;
            font-size: 19px;
        }

        .single-panel .single-panel-main .quick-description-quote {
            font-size: 20px;
            padding: 20px 30px;
            margin-bottom: 20px;
        }

            .single-panel .single-panel-main .quick-description-quote:before, .single-panel .single-panel-main .quick-description-quote:after {
                font-size: 42px;
            }

            .single-panel .single-panel-main .quick-description-quote:before {
                left: 10px;
                top: 10px;
            }

            .single-panel .single-panel-main .quick-description-quote:after {
                right: 10px;
                bottom: 10px;
            }

        .single-panel .single-panel-main .single-meta ul li {
            font-size: 20px;
            padding: 5px 10px;
        }

            .single-panel .single-panel-main .single-meta ul li i {
                margin-right: 5px;
                font-size: 16px;
            }

        .single-panel .single-panel-main .single-meta.single-meta-at-bottom .social-bottom-author {
            display: none;
        }

        .single-panel .single-panel-main .single-meta.single-meta-at-bottom .social-links {
            border-right: 0px;
            margin-right: 0px;
        }

    .single-panel .single-meta-views {
        display: none;
    }

    .side-meta-box {
        padding: 10px 0px;
    }

    .top-bar .bar-social {
        padding-top: 10px;
        padding-bottom: 5px;
    }

    .single-ingredients {
        margin-bottom: 10px;
    }

    .single-ingredients, .single-nutritions, .single-recipe-bookmark-box {
        padding: 10px;
    }

        .single-ingredients h3, .single-nutritions h3, .single-recipe-bookmark-box h3 {
            margin-top: 0px;
            border-bottom: none;
            margin-bottom: 0px;
            padding: 10px 10px 10px 20px;
            font-size: 24px;
        }

            .single-ingredients h3 i, .single-nutritions h3 i, .single-recipe-bookmark-box h3 i {
                font-size: 20px;
            }

        .single-ingredients table, .single-nutritions table, .single-recipe-bookmark-box table {
            display: none;
        }

        .single-ingredients .single-nutritions-list, .single-nutritions .single-nutritions-list, .single-recipe-bookmark-box .single-nutritions-list {
            display: none;
        }

    .other-links ul {
        padding-bottom: 20px;
        list-style: none;
    }

        .other-links ul:last-of-type {
            padding-bottom: 0px;
            list-style: none;
        }

        .other-links ul li {
            padding-top: 3px;
            padding-bottom: 3px;
        }
}

@media (min-width: 455px) and (max-width: 991px) {
    .display-type {
        content: "tablet";
    }

    .big-meta-box {
        font-size: 19px;
    }

        .big-meta-box ul li {
            padding: 5px 15px;
        }

    .frontend-publisher-w .form-header {
        margin-bottom: 10px;
    }

    .archive-posts.masonry-grid-w .masonry-grid .masonry-item {
        padding: 0px 10px 0px 10px;
        margin-bottom: 20px;
    }

    .single-panel .single-panel-details {
        padding-bottom: 0px;
    }

    .single-panel .single-panel-main {
        padding-top: 0px;
    }

    .page-w {
        padding: 0px 0px;
    }

        .page-w .page-content {
            padding: 20px 20px 20px 30px;
        }

        .page-w.with-sidebar .page-content {
            width: 65%;
            padding: 20px 20px 20px 20px;
        }

        .page-w.with-sidebar .page-sidebar {
            padding: 30px 20px;
            width: 35%;
        }

        .page-w blockquote {
            margin: 20px;
            padding: 20px 30px 20px 60px;
        }

    .pre-footer {
        padding: 20px 30px;
    }

        .pre-footer.widgets-count-4 .widget, .pre-footer.widgets-count-3 .widget, .pre-footer.widgets-count-2 .widget, .pre-footer.widgets-count-5 .widget {
            width: 47.5%;
            float: none;
            margin: 0px 5% 5% 0px;
            padding: 10px;
            float: left;
        }

            .pre-footer.widgets-count-4 .widget:last-child, .pre-footer.widgets-count-4 .widget:nth-child(2), .pre-footer.widgets-count-4 .widget:nth-child(4), .pre-footer.widgets-count-3 .widget:last-child, .pre-footer.widgets-count-3 .widget:nth-child(2), .pre-footer.widgets-count-3 .widget:nth-child(4), .pre-footer.widgets-count-2 .widget:last-child, .pre-footer.widgets-count-2 .widget:nth-child(2), .pre-footer.widgets-count-2 .widget:nth-child(4), .pre-footer.widgets-count-5 .widget:last-child, .pre-footer.widgets-count-5 .widget:nth-child(2), .pre-footer.widgets-count-5 .widget:nth-child(4) {
                margin-right: 0px;
            }

    .related-recipes-w {
        padding: 50px 30px 50px 30px;
    }

        .related-recipes-w .related-recipes li a {
            padding: 12px;
            font-size: 16px;
        }

    .single-recipe-ingredients-nutritions:before, .single-recipe-ingredients-nutritions:after {
        content: " ";
        display: table;
    }

    .single-recipe-ingredients-nutritions:after {
        clear: both;
    }

    .single-nutritions {
        float: right;
        width: 40%;
    }

    .single-ingredients {
        float: left;
        width: 55%;
    }

    .single-nutritions, .single-ingredients {
        padding: 30px 20px;
    }

        .single-nutritions h3, .single-ingredients h3 {
            font-size: 23px;
            margin-top: 0px;
        }

            .single-nutritions h3 i, .single-ingredients h3 i {
                margin-right: 10px;
                font-size: 24px;
            }

        .single-nutritions .single-nutritions-list .single-nutrition, .single-ingredients .single-nutritions-list .single-nutrition {
            width: 44%;
        }

            .single-nutritions .single-nutritions-list .single-nutrition .single-nutrition-value, .single-ingredients .single-nutritions-list .single-nutrition .single-nutrition-value {
                font-size: 21px;
            }
}

@media (min-width: 992px) and (max-width: 1150px) {
    body {
        font-size: 13px;
    }

    .big-meta-box ul li {
        padding: 5px 20px;
    }

    h1, .h1 {
        font-size: 37px;
    }

    h2, .h2 {
        font-size: 27px;
    }

    h3, .h3 {
        font-size: 21px;
    }

    h4, .h4 {
        font-size: 15px;
    }

    h5, .h5 {
        font-size: 13px;
    }

    h6, .h6 {
        font-size: 11px;
    }

    .main-header .top-menu ul li a {
        font-size: 22px;
    }

    .archive-sidebar .widget.with-ribbon .widget-title, .archive-sidebar .header-ribbon, .page-sidebar .widget.with-ribbon .widget-title, .page-sidebar .header-ribbon {
        padding-top: 4px;
    }

    .archive-posts-w .archive-posts .sticky-roll-w .archive-item.full_full_over .archive-item-i .archive-item-content {
        width: 65%;
    }

    .sticky-roll-w .entry-title {
        font-size: 35px;
    }

    .single-panel .single-panel-main .quick-description-quote {
        font-size: 22px;
    }

        .single-panel .single-panel-main .quick-description-quote:before, .single-panel .single-panel-main .quick-description-quote:after {
            font-size: 110px;
        }

    .single-panel .single-panel-main .single-title h1,
    .single-panel .single-panel-main .single-title .like-title {
        font-size: 48px;
    }

    .single-panel .single-panel-main .single-meta ul li {
        font-size: 20px;
        padding: 10px 20px;
    }

    .single-panel .single-panel-main .single-meta.single-meta-at-bottom .social-links {
        border-right: none;
        margin-right: 0px;
    }

        .single-panel .single-panel-main .single-meta.single-meta-at-bottom .social-links i {
            font-size: 19px;
        }

    .single-panel .single-panel-main .single-meta.single-meta-at-bottom li {
        padding: 6px 20px;
    }

        .single-panel .single-panel-main .single-meta.single-meta-at-bottom li.social-bottom-author {
            display: none;
        }

    .side-meta-box {
        font-size: 20px;
    }

        .side-meta-box ul li {
            padding: 10px 15px;
        }

    .single-ingredients, .single-nutritions, .single-recipe-bookmark-box {
        padding: 30px 40px;
    }

        .single-ingredients h3, .single-nutritions h3, .single-recipe-bookmark-box h3 {
            font-size: 28px;
            margin-top: 10px;
            padding-bottom: 20px;
        }

            .single-ingredients h3 i, .single-nutritions h3 i, .single-recipe-bookmark-box h3 i {
                margin-right: 20px;
                font-size: 20px;
            }

        .single-recipe-bookmark-box div.userpro-bm .userpro-bm-btn {
            font-size: 16px !important;
        }
}

/*
Theme Name: Neptune by Osetin
Theme URI: http://neptune.pinsupreme.com
Author: Tamik Soziev
Author URI: http://soziev.com/
Description: Food Recipes Wordpress Theme
Version: 4.0
License:
License URI:
Tags: black, blue, gray, white, yellow, dark, light, responsive-layout, custom-background, custom-colors, custom-menu, featured-images, post-formats
Text Domain: neptune-by-osetin
*/

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
}

.sticky {
}

.gallery-caption {
}

.bypostauthor {
}

img.alignright, figure.alignright {
    float: right;
    margin: 0 0 2em 2.5em;
}

img.alignleft, figure.alignleft {
    float: left;
    margin: 0 2.5em 2em 0;
}

img.aligncenter, figure.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.screen-reader-text {
    display: none;
}

body {
    font-family: 'Lora', serif;
}

.notification-error {
    text-align: center;
    color: red;
}

.notification-success {
    text-align: center;
    color: green;
}

#page-11 > p, .posts > p {
    font-family: 'PlovdivScript', serif;
}

.field-validation-valid {
    display: none;
}

.field-validation-error {
    color: red;
}

.notification-success {
    background-color: green;
    padding: 15px;
    color: white;
    text-align: center;
    font-size: x-large;
}

.notification-error {
    background-color: red;
    padding: 15px;
    color: white;
    text-align: center;
    font-size: x-large;
}

.custom-page-numbers {
    display: inline;
    padding-bottom: 5px;
}

.current-page {
    background-color: rgba(44,171,161,0.8);
    padding-bottom: 5px;
}

#copyright li a {
    font-size: 19px;
}

.custom-hidden h1 {
    visibility: hidden;
    height: 0.1px;
}

.sidebar-single-w {
    padding-left: 50px;
    padding-right: 50px;
}

.nutrition-more-info-smaller > p, span.nutrition-more-info-smaller {
    font-size: 15px;
}

@media (max-width: 3000px) and (min-width: 678px) {
    .recipe-floating-box {
        width: 475px !important;
    }

    .footer_subcategories .big-meta-box ul li {
        border-right: none;
    }
}

.recipe-yammly-share {
    position: relative;
    top: 10px;
}

.recipe-print {
    margin-left: -8px;
}

.blog-summary, .blog-summary > p, .blog-summary > p > span {
    color: black;
}

.blog-post-meta {
    padding-bottom: 10px;
    margin-bottom: 2em;
    margin-top: 10px;
    border-bottom: 1px dashed rgba(0,0,0,0.3);
    font-size: 16px;
}

.blog-image > a > img {
    float: left;
    margin-right: 40px;
    padding-top: 10px;
}

.review-form-custom {
    display: none;
}

.btn-wrapper .count {
    display: none;
}

.mobile-ad {
    display: none;
    width: 100%;
    padding: 10px;
    float: none;
}

.tablet-ad {
    display: none;
}

@media (max-width: 430px) {
    #archive-item-comments-highlighted {
        display: none;
    }
}

@media (min-width: 1024px) {
    .social-widget-pinterest {
        width: 22.7% !important;
    }

    .google-plus-pinterest {
        width: 21.3% !important;
    }
}

.second-recipe-ad {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

    .second-recipe-ad span {
        margin-left: 27px;
    }

.language-icon {
    width: 36px;
    height: 36px;
    border-radius: 50px;
}

.mobile-ad-two {
    display: none;
}

@media (min-width: 100px) and (max-width: 455px) {
    .mobile-ad-two {
        display: block;
    }

    .desctop-ad-two {
        display: none;
    }

    /*.archive-item-content-text, .archive-item-deep-meta {
        display: none;
    }*/

    .highlighted-recipies-summary {
        display: none !important;
    }

    .hero-roll-w .archive-item-i .archive-item-content {
        top: 79%;
    }

    .main-recipe-summary {
        padding: 20px !important;
    }
}

.padding-40 {
    padding-top: 40px;
}

.magic-box-w {
    width: 100%;
    height: auto;
}

.google-plus-widget {
    text-align: center;
}

#tracking_dialog {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    z-index: 111111;
    color: #fff;
    background-color: gray;
    font-size: 15px;
    display: none;
}

    #tracking_dialog form {
        margin: 0;
    }

    #tracking_dialog a {
        color: #231b12;
    }

    #tracking_dialog input {
        color: black;
        padding: 7px;
    }

.sci-title h3 a {
    font-size: 20px;
}

.other-links ul {
    padding-bottom: 20px;
    list-style: none;
}

    .other-links ul:last-of-type {
        padding-bottom: 0px;
        list-style: none;
    }

    .other-links ul li {
        padding-top: 3px;
        padding-bottom: 3px;
    }

.main-header {
    min-height: 84px;
}

.main_logo_description {
    margin: 0px;
    z-index: 2;
    /*font-size: 80px;*/
    position: absolute;
    top: 52%;
    left: 10%;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 7px rgba(0,0,0,0.9);
    width: 80%;
    line-height: 1;
}

.home-page-image-logo {
    padding: 10px;
}

.all_recipes {
    min-height: 315px;
}

.ingredients-tablе {
    display: table !important;
}

.single-nutritions-list {
    display: block !important;
}

.footer_subcategories .big-meta-box {
    font-size: 19px;
    border-top: none;
    padding: 0px;
}

    .footer_subcategories .big-meta-box ul li {
        padding: 5px 10px;
    }

.like-title {
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(0,0,0,0.9);
}

.tag-description {
    /*margin-top: -20px;*/
}

    .tag-description:last-child {
        padding-bottom: 10px;
    }

    .tag-description > p {
        margin: 0;
    }

    .tag-description > ul {
        margin: 0px 20px 0 35px;
        padding-bottom: 20px;
    }

        .tag-description > ul > li {
            padding: 5px 0;
        }

.span-as-h3 {
    font-family: 'YanoneKaffeesatz-Regular', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(0,0,0,0.9);
    font-size: 24px;
}

.blog_post {
    font-family: 'PlovdivScript', serif;
}

#paypal-button-container-landing {
    pointer-events: none;
    opacity: 0.5;
}

