@import url(../lib/bootstrap/bootstrap.min.css);
@import url(../lib/fontawsome/css/font-awesome.min.css);
@import url(../lib/slick/slick.css);
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900");
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }

.hamburger-box {
  width: 16px;
  height: 12px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 16px;
    height: 2px;
    background-color: #454149;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -5px; }
  .hamburger-inner::after {
    bottom: -5px; }

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 32px; }
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 32px; }
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 32px; }
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 32px; }
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 32px; }
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg); }
  .hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 32px; }
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-3.2px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-3.2px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(3.2px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(3.2px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-3.2px, -4px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-3.2px, 4px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(3.2px, -4px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(3.2px, 4px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -10px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -10px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -5px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 5px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 10px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 5px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 10px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 5px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -32px;
      top: -32px;
      transform: translate3d(32px, 32px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -32px;
      top: -32px;
      transform: translate3d(-32px, 32px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 5px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -32px;
      top: 32px;
      transform: translate3d(32px, -32px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -32px;
      top: 32px;
      transform: translate3d(-32px, -32px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px; }
  .hamburger--slider .hamburger-inner::before {
    top: 5px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 10px; }
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-2.2857142857px, -3px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-90deg); }

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 5px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 10px; }
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(2.2857142857px, -3px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(90deg); }

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 5px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 10px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 5px, 0) rotate(-45deg); }

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -10px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

.relative {
  position: relative;
  z-index: 0; }

.overflow {
  overflow: hidden; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.valign {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%); }

.halign {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%); }

.vhalign {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto; }

/* responsive iframe wrapper */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0; }

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%; }

.typography .alignnone {
  margin: 0px 0px 1.4em 0px; }
.typography .aligncenter,
.typography div.aligncenter {
  display: block;
  margin: 0px auto 1.4em auto; }
.typography .alignright {
  float: right;
  margin: 0px 0px 1.4em 1.4em; }
.typography .alignleft {
  float: left;
  margin: 0px 1.4em 1.4em 0px; }
.typography a img.alignright {
  float: right;
  margin: 0px 0px 1.4em 1.4em; }
.typography a img.alignnone {
  margin: 0px 0px 1.4em 0px; }
.typography a img.alignleft {
  float: left;
  margin: 0px 1.4em 1.4em 0px; }
.typography a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }
.typography img {
  height: auto; }
.typography ul, .typography ol {
  margin: 0px 0px 1.4em 0px;
  padding: 0px 0px 0px 20px;
  overflow: hidden; }
.typography a {
  color: #000000;
  text-decoration: underline; }
.typography a:hover {
  text-decoration: none; }
.typography p {
  margin: 0px 0px 1.4em 0px; }
.typography blockquote {
  /* margin:0px 0px $content-margin 0px;
  p:last-child{
  	margin-bottom:0px;
  } */ }

.the-button, #content .the-content a.tasty-recipes-print-button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  height: 42px;
  line-height: 3.7;
  padding: 0px;
  border: 2px solid #000;
  color: #000000 !important;
  text-decoration: none !important;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4em;
  padding-left: .4em; }
  .the-button:focus, #content .the-content a.tasty-recipes-print-button:focus, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:focus {
    outline: 0; }
  .the-button:hover, #content .the-content a.tasty-recipes-print-button:hover, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:hover {
    border-color: #9387b4;
    color: #9387b4 !important; }
  .the-button:disabled:hover, #content .the-content a.tasty-recipes-print-button:disabled:hover, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:disabled:hover {
    border-color: inherit !important;
    color: inherit !important; }

body, * {
  font-family: "Lato", sans-serif;
  color: #000000; }

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

body.noscroll {
  /* position: fixed; */
  overflow: hidden; }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Lato", sans-serif; }

input, button, select, textarea, .form-control {
  font-family: "Lato", sans-serif;
  line-height: normal; }

*:focus,
a:focus,
a:active {
  outline: none;
  color: inherit;
  text-decoration: inherit; }

br {
  font-size: inherit;
  line-height: inherit; }

section {
  display: block; }

img {
  max-width: 100%;
  height: auto; }

a {
  text-decoration: none;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

i {
  color: inherit;
  font-size: inherit; }

strong {
  font-size: inherit;
  line-height: inherit; }

button, input[type=submit] {
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

.form-control {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  height: 40px;
  border: none;
  border-bottom: 2px solid #000;
  padding: 0px;
  font-size: 13px; }
  .form-control:focus {
    /* border-color:#000; */
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #9387b4; }
  .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000000; }
  .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #000000; }
  .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #000000; }
  .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #000000; }

input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000000; }
input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000; }
input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000000; }
input:-moz-placeholder {
  /* Firefox 18- */
  color: #000000; }

textarea.form-control {
  height: auto; }

select.form-control {
  height: auto; }

.form-group {
  margin-bottom: 25px; }

iframe {
  max-width: 100%; }

svg {
  display: inline-block; }

.container {
  padding-right: 8px;
  padding-left: 8px; }
  .container .row {
    margin-left: -4px;
    margin-right: -4px; }
    .container .row .col, .container .row .col-1, .container .row .col-10, .container .row .col-11, .container .row .col-12, .container .row .col-2, .container .row .col-3, .container .row .col-4, .container .row .col-5, .container .row .col-6, .container .row .col-7, .container .row .col-8, .container .row .col-9, .container .row .col-auto, .container .row .col-lg, .container .row .col-lg-1, .container .row .col-lg-10, .container .row .col-lg-11, .container .row .col-lg-12, .container .row .col-lg-2, .container .row .col-lg-3, .container .row .col-lg-4, .container .row .col-lg-5, .container .row .col-lg-6, .container .row .col-lg-7, .container .row .col-lg-8, .container .row .col-lg-9, .container .row .col-lg-auto, .container .row .col-md, .container .row .col-md-1, .container .row .col-md-10, .container .row .col-md-11, .container .row .col-md-12, .container .row .col-md-2, .container .row .col-md-3, .container .row .col-md-4, .container .row .col-md-5, .container .row .col-md-6, .container .row .col-md-7, .container .row .col-md-8, .container .row .col-md-9, .container .row .col-md-auto, .container .row .col-sm, .container .row .col-sm-1, .container .row .col-sm-10, .container .row .col-sm-11, .container .row .col-sm-12, .container .row .col-sm-2, .container .row .col-sm-3, .container .row .col-sm-4, .container .row .col-sm-5, .container .row .col-sm-6, .container .row .col-sm-7, .container .row .col-sm-8, .container .row .col-sm-9, .container .row .col-sm-auto, .container .row .col-xl, .container .row .col-xl-1, .container .row .col-xl-10, .container .row .col-xl-11, .container .row .col-xl-12, .container .row .col-xl-2, .container .row .col-xl-3, .container .row .col-xl-4, .container .row .col-xl-5, .container .row .col-xl-6, .container .row .col-xl-7, .container .row .col-xl-8, .container .row .col-xl-9, .container .row .col-xl-auto {
      padding-left: 4px;
      padding-right: 4px; }
  @media only screen and (min-width: 576px) {
    .container {
      max-width: 100%; } }
  @media only screen and (min-width: 768px) {
    .container {
      width: 100%;
      max-width: 996px;
      padding-right: 16px;
      padding-left: 16px; }
      .container .row {
        margin-left: -8px;
        margin-right: -8px; }
        .container .row .col, .container .row .col-1, .container .row .col-10, .container .row .col-11, .container .row .col-12, .container .row .col-2, .container .row .col-3, .container .row .col-4, .container .row .col-5, .container .row .col-6, .container .row .col-7, .container .row .col-8, .container .row .col-9, .container .row .col-auto, .container .row .col-lg, .container .row .col-lg-1, .container .row .col-lg-10, .container .row .col-lg-11, .container .row .col-lg-12, .container .row .col-lg-2, .container .row .col-lg-3, .container .row .col-lg-4, .container .row .col-lg-5, .container .row .col-lg-6, .container .row .col-lg-7, .container .row .col-lg-8, .container .row .col-lg-9, .container .row .col-lg-auto, .container .row .col-md, .container .row .col-md-1, .container .row .col-md-10, .container .row .col-md-11, .container .row .col-md-12, .container .row .col-md-2, .container .row .col-md-3, .container .row .col-md-4, .container .row .col-md-5, .container .row .col-md-6, .container .row .col-md-7, .container .row .col-md-8, .container .row .col-md-9, .container .row .col-md-auto, .container .row .col-sm, .container .row .col-sm-1, .container .row .col-sm-10, .container .row .col-sm-11, .container .row .col-sm-12, .container .row .col-sm-2, .container .row .col-sm-3, .container .row .col-sm-4, .container .row .col-sm-5, .container .row .col-sm-6, .container .row .col-sm-7, .container .row .col-sm-8, .container .row .col-sm-9, .container .row .col-sm-auto, .container .row .col-xl, .container .row .col-xl-1, .container .row .col-xl-10, .container .row .col-xl-11, .container .row .col-xl-12, .container .row .col-xl-2, .container .row .col-xl-3, .container .row .col-xl-4, .container .row .col-xl-5, .container .row .col-xl-6, .container .row .col-xl-7, .container .row .col-xl-8, .container .row .col-xl-9, .container .row .col-xl-auto {
          padding-left: 8px;
          padding-right: 8px; } }
  @media only screen and (min-width: 993px) {
    .container {
      width: 100%;
      max-width: 996px;
      padding-right: 14px;
      padding-left: 14px; }
      .container .row {
        margin-left: -14px;
        margin-right: -14px; }
        .container .row .col, .container .row .col-1, .container .row .col-10, .container .row .col-11, .container .row .col-12, .container .row .col-2, .container .row .col-3, .container .row .col-4, .container .row .col-5, .container .row .col-6, .container .row .col-7, .container .row .col-8, .container .row .col-9, .container .row .col-auto, .container .row .col-lg, .container .row .col-lg-1, .container .row .col-lg-10, .container .row .col-lg-11, .container .row .col-lg-12, .container .row .col-lg-2, .container .row .col-lg-3, .container .row .col-lg-4, .container .row .col-lg-5, .container .row .col-lg-6, .container .row .col-lg-7, .container .row .col-lg-8, .container .row .col-lg-9, .container .row .col-lg-auto, .container .row .col-md, .container .row .col-md-1, .container .row .col-md-10, .container .row .col-md-11, .container .row .col-md-12, .container .row .col-md-2, .container .row .col-md-3, .container .row .col-md-4, .container .row .col-md-5, .container .row .col-md-6, .container .row .col-md-7, .container .row .col-md-8, .container .row .col-md-9, .container .row .col-md-auto, .container .row .col-sm, .container .row .col-sm-1, .container .row .col-sm-10, .container .row .col-sm-11, .container .row .col-sm-12, .container .row .col-sm-2, .container .row .col-sm-3, .container .row .col-sm-4, .container .row .col-sm-5, .container .row .col-sm-6, .container .row .col-sm-7, .container .row .col-sm-8, .container .row .col-sm-9, .container .row .col-sm-auto, .container .row .col-xl, .container .row .col-xl-1, .container .row .col-xl-10, .container .row .col-xl-11, .container .row .col-xl-12, .container .row .col-xl-2, .container .row .col-xl-3, .container .row .col-xl-4, .container .row .col-xl-5, .container .row .col-xl-6, .container .row .col-xl-7, .container .row .col-xl-8, .container .row .col-xl-9, .container .row .col-xl-auto {
          padding-left: 14px;
          padding-right: 14px; } }

.the-carousel {
  display: none; }
  .the-carousel.slick-initialized {
    display: block; }

#welcome-popup {
  background-color: rgba(183, 173, 210, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 100;
  backface-visibility: hidden;
  display: none; }
  #welcome-popup .wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0px;
    right: 0px; }
  #welcome-popup .popup-content {
    background-color: #fff;
    text-align: center;
    padding: 33px 18px 38px 18px; }
    #welcome-popup .popup-content h3 {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 15px; }
    #welcome-popup .popup-content p {
      font-size: 12px;
      line-height: 22px;
      margin-bottom: 22px; }
    #welcome-popup .popup-content .the-button, #welcome-popup .popup-content #content .the-content a.tasty-recipes-print-button, #content .the-content #welcome-popup .popup-content a.tasty-recipes-print-button, #welcome-popup .popup-content #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #welcome-popup .popup-content a.button {
      width: 115px;
      text-align: center;
      margin-top: 1px; }
  @media only screen and (min-width: 768px) {
    #welcome-popup .popup-content {
      padding: 33px 28px 38px 28px; } }

#mobile-menu-wrapper {
  background-color: #fff;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10;
  text-align: center;
  backface-visibility: hidden;
  display: none; }
  #mobile-menu-wrapper .col {
    padding-top: 30px;
    height: 100vh;
    overflow: auto;
    padding-bottom: 70px; }
  #mobile-menu-wrapper a.logo {
    display: block;
    width: 180px;
    text-decoration: none;
    margin: 0px auto 11px auto; }
    #mobile-menu-wrapper a.logo img {
      width: 100%; }
  #mobile-menu-wrapper ul.mobile-menu {
    margin: 0px;
    padding: 0px;
    display: block;
    text-align: center;
    margin-bottom: 28px; }
    #mobile-menu-wrapper ul.mobile-menu li {
      list-style: none; }
    #mobile-menu-wrapper ul.mobile-menu > li {
      padding: 15px 0px 23px 0px; }
      #mobile-menu-wrapper ul.mobile-menu > li > a {
        font-size: 8px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: .4em;
        margin-right: -.4em;
        text-transform: uppercase;
        color: #000000; }
      #mobile-menu-wrapper ul.mobile-menu > li:nth-child(1) {
        background: url(../img/mobilenav_divider_1.svg) center bottom no-repeat; }
      #mobile-menu-wrapper ul.mobile-menu > li:nth-child(2) {
        background: url(../img/mobilenav_divider_2.svg) center bottom no-repeat; }
      #mobile-menu-wrapper ul.mobile-menu > li:nth-child(3) {
        background: url(../img/mobilenav_divider_3.svg) center bottom no-repeat; }
      #mobile-menu-wrapper ul.mobile-menu > li:nth-child(4) {
        background: url(../img/mobilenav_divider_4.svg) center bottom no-repeat; }
      #mobile-menu-wrapper ul.mobile-menu > li:nth-child(5) {
        background: url(../img/mobilenav_divider_5.svg) center bottom no-repeat;
        padding-bottom: 28px; }
      #mobile-menu-wrapper ul.mobile-menu > li.menu-item-has-children > a.active {
        color: #b7add2; }
      #mobile-menu-wrapper ul.mobile-menu > li .submenu-wrapper {
        display: none;
        text-align: left;
        margin-bottom: -23px; }
      #mobile-menu-wrapper ul.mobile-menu > li ul.submenu {
        margin: 0px;
        padding: 0px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        width: 252px;
        margin: 0px auto; }
        #mobile-menu-wrapper ul.mobile-menu > li ul.submenu li {
          list-style: none; }
        #mobile-menu-wrapper ul.mobile-menu > li ul.submenu li {
          /* width:50%; */
          padding: 15px 0px 23px 0px; }
          #mobile-menu-wrapper ul.mobile-menu > li ul.submenu li a {
            font-size: 8px;
            line-height: 1;
            font-weight: 900;
            letter-spacing: .4em;
            margin-right: -.4em;
            text-transform: uppercase;
            color: #000000; }
          #mobile-menu-wrapper ul.mobile-menu > li ul.submenu li:nth-child(2n+1) {
            clear: left; }
          #mobile-menu-wrapper ul.mobile-menu > li ul.submenu li:nth-child(even) {
            width: 38%; }
          #mobile-menu-wrapper ul.mobile-menu > li ul.submenu li:nth-child(odd) {
            width: 62%; }
  #mobile-menu-wrapper ul.socialmedia-menu {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0px auto;
    width: 251px; }
    #mobile-menu-wrapper ul.socialmedia-menu li {
      list-style: none; }
    #mobile-menu-wrapper ul.socialmedia-menu li {
      display: flex;
      justify-content: center;
      align-items: center; }
      #mobile-menu-wrapper ul.socialmedia-menu li a {
        display: inline-block; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_instagram {
          width: 14px;
          height: 14px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_twitter {
          width: 14px;
          height: 11px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_pinterest {
          width: 13px;
          height: 13px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_facebook {
          width: 12px;
          height: 12px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_tumblr {
          width: 7px;
          height: 12px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_email {
          width: 14px;
          height: 10px; }
  #mobile-menu-wrapper .close-btn-wrapper {
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 2;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 17px;
    background-color: #fff; }
    #mobile-menu-wrapper .close-btn-wrapper .the-button, #mobile-menu-wrapper .close-btn-wrapper #content .the-content a.tasty-recipes-print-button, #content .the-content #mobile-menu-wrapper .close-btn-wrapper a.tasty-recipes-print-button, #mobile-menu-wrapper .close-btn-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #mobile-menu-wrapper .close-btn-wrapper a.button {
      width: 132px;
      height: 38px;
      line-height: 34px;
      font-size: 9px; }
  @media only screen and (min-width: 768px) {
    #mobile-menu-wrapper .col {
      padding-top: 45px;
      padding-bottom: 95px; }
    #mobile-menu-wrapper .close-btn-wrapper {
      padding-top: 5px;
      padding-bottom: 48px; }
      #mobile-menu-wrapper .close-btn-wrapper .the-button, #mobile-menu-wrapper .close-btn-wrapper #content .the-content a.tasty-recipes-print-button, #content .the-content #mobile-menu-wrapper .close-btn-wrapper a.tasty-recipes-print-button, #mobile-menu-wrapper .close-btn-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #mobile-menu-wrapper .close-btn-wrapper a.button {
        width: 142px;
        height: 42px;
        line-height: 38px;
        font-size: 10px; }
    #mobile-menu-wrapper a.logo {
      width: 268px;
      margin: 0px auto 41px auto; }
    #mobile-menu-wrapper ul.mobile-menu {
      margin-bottom: 36px; }
      #mobile-menu-wrapper ul.mobile-menu > li {
        padding: 24px 0px 30px 0px; }
        #mobile-menu-wrapper ul.mobile-menu > li > a {
          font-size: 10px; }
        #mobile-menu-wrapper ul.mobile-menu > li:nth-child(5) {
          padding-bottom: 28px; }
        #mobile-menu-wrapper ul.mobile-menu > li .submenu-wrapper {
          margin-bottom: -23px; }
        #mobile-menu-wrapper ul.mobile-menu > li ul.submenu {
          width: 352px; }
          #mobile-menu-wrapper ul.mobile-menu > li ul.submenu li {
            flex-grow: 1;
            width: calc(100% * (1/2) - 10px - 1px);
            padding: 15px 0px 23px 0px; }
            #mobile-menu-wrapper ul.mobile-menu > li ul.submenu li a {
              font-size: 10px; }
            #mobile-menu-wrapper ul.mobile-menu > li ul.submenu li:nth-child(2n+1) {
              clear: left; }
    #mobile-menu-wrapper ul.socialmedia-menu {
      width: 236px; }
      #mobile-menu-wrapper ul.socialmedia-menu li a {
        width: 18px;
        height: 18px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_instagram {
          width: 18px;
          height: 18px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_twitter {
          width: 18px;
          height: 15px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_pinterest {
          width: 17px;
          height: 17px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_facebook {
          width: 16px;
          height: 16px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_tumblr {
          width: 9px;
          height: 15px; }
        #mobile-menu-wrapper ul.socialmedia-menu li a svg.i_email {
          width: 18px;
          height: 14px; } }

#search-form-wrapper {
  background-color: #e9e6f1;
  height: 65px;
  margin-bottom: 22px;
  display: none; }
  #search-form-wrapper #searchform {
    position: relative;
    margin-top: 10px; }
    #search-form-wrapper #searchform #s {
      background: none;
      border: none;
      border-bottom: 2px solid #000000;
      position: relative;
      width: 100%;
      height: 40px;
      font-size: 13px; }
    #search-form-wrapper #searchform #searchsubmit {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      right: 0px;
      padding: 0px;
      border: none;
      background: none;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;
      border-radius: 0px;
      background-clip: padding-box;
      text-align: center;
      cursor: pointer;
      width: 15px;
      height: 16px;
      background: url(../img/i_search.svg) center center no-repeat;
      background-size: 15px 16px;
      text-indent: -9999px; }
      #search-form-wrapper #searchform #searchsubmit:focus {
        outline: 0; }
  @media only screen and (min-width: 768px) {
    #search-form-wrapper {
      margin-bottom: 45px; } }

#header .col {
  height: 104px;
  position: relative; }
  #header .col a.logo {
    display: block;
    width: 180px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 4px; }
    #header .col a.logo img {
      width: 100%; }
  #header .col ul.mobile-top-menu {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 4px; }
    #header .col ul.mobile-top-menu li {
      list-style: none; }
    #header .col ul.mobile-top-menu li {
      height: 33px;
      width: 30px;
      /* border:1px solid red; */
      position: relative; }
      #header .col ul.mobile-top-menu li a {
        font-size: 8px;
        font-weight: 900;
        color: #000000;
        text-transform: uppercase;
        letter-spacing: .4em;
        margin-right: -.4em;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: 0px;
        right: 0px;
        margin-left: auto;
        margin-right: auto; }
      #header .col ul.mobile-top-menu li a.btn-menu {
        margin-top: -2px; }
      #header .col ul.mobile-top-menu li a.btn-search {
        margin-top: 1px; }
        #header .col ul.mobile-top-menu li a.btn-search svg.i_close {
          display: none;
          fill: #b7add2; }
        #header .col ul.mobile-top-menu li a.btn-search.active svg.i_search {
          display: none; }
        #header .col ul.mobile-top-menu li a.btn-search.active svg.i_close {
          display: inline-block; }
      #header .col ul.mobile-top-menu li:first-child {
        width: 60px;
        background: url(../img/slash_mobile_topmenu.svg) right center no-repeat;
        margin-left: 2px; }
      #header .col ul.mobile-top-menu li:last-child {
        width: 24px;
        text-align: right; }
@media only screen and (min-width: 768px) {
  #header .col {
    height: 162px; }
    #header .col a.logo {
      width: 268px;
      left: 8px; }
    #header .col ul.mobile-top-menu {
      right: 6px; }
      #header .col ul.mobile-top-menu li {
        height: 33px;
        width: 30px; }
        #header .col ul.mobile-top-menu li a {
          font-size: 10px; }
        #header .col ul.mobile-top-menu li a.btn-menu {
          margin-top: -2px; }
        #header .col ul.mobile-top-menu li a.btn-search {
          margin-top: 1px; }
          #header .col ul.mobile-top-menu li a.btn-search svg.i_search {
            width: 13px;
            height: auto; }
        #header .col ul.mobile-top-menu li:first-child {
          width: 70px;
          margin-left: 2px; }
        #header .col ul.mobile-top-menu li:last-child {
          width: 28px; } }
@media only screen and (min-width: 993px) {
  #header {
    position: relative;
    z-index: 50; }
    #header .col a.logo {
      left: 15px; }
    #header .col ul.top-menu {
      margin: 0px;
      padding: 0px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-wrap: wrap;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      right: 12px; }
      #header .col ul.top-menu li {
        list-style: none; }
      #header .col ul.top-menu > li {
        height: 40px;
        padding-right: 28px;
        padding-left: 12px;
        display: flex;
        justify-content: center;
        align-items: center; }
        #header .col ul.top-menu > li > a {
          font-size: 10px;
          font-weight: 900;
          color: #000000;
          text-transform: uppercase;
          letter-spacing: .4em;
          margin-right: -.4em;
          text-decoration: none; }
        #header .col ul.top-menu > li > a.btn-search {
          width: 16px;
          height: 40px;
          display: block;
          position: relative; }
          #header .col ul.top-menu > li > a.btn-search svg.i_search {
            width: 13px;
            height: 14px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            left: 0px;
            right: 0px;
            margin-left: auto;
            margin-right: auto;
            -moz-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            -webkit-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
          #header .col ul.top-menu > li > a.btn-search svg.i_close {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            left: 0px;
            right: 0px;
            margin-left: auto;
            margin-right: auto;
            width: 11px;
            height: 11px;
            fill: #b7add2;
            opacity: 0;
            visibility: hidden;
            -moz-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            -webkit-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
          #header .col ul.top-menu > li > a.btn-search.active svg.i_search {
            display: inline-block;
            opacity: 0;
            visibility: hidden; }
          #header .col ul.top-menu > li > a.btn-search.active svg.i_close {
            display: inline-block;
            opacity: 1;
            visibility: visible; }
        #header .col ul.top-menu > li:nth-child(1) {
          background: url(../img/desktopnav_divider_1.svg) right center no-repeat; }
        #header .col ul.top-menu > li:nth-child(2) {
          background: url(../img/desktopnav_divider_2.svg) right center no-repeat; }
        #header .col ul.top-menu > li:nth-child(3) {
          background: url(../img/desktopnav_divider_3.svg) right center no-repeat; }
        #header .col ul.top-menu > li:nth-child(4) {
          background: url(../img/desktopnav_divider_4.svg) right center no-repeat; }
        #header .col ul.top-menu > li:nth-child(5) {
          background: url(../img/desktopnav_divider_5.svg) right center no-repeat; }
        #header .col ul.top-menu > li:last-child {
          padding-right: 0px; }
        #header .col ul.top-menu > li:hover > a, #header .col ul.top-menu > li.current-menu-item > a {
          color: #b7add2; }
        #header .col ul.top-menu > li.travel-menu-parent {
          position: relative; }
          #header .col ul.top-menu > li.travel-menu-parent::after {
            content: "";
            display: block;
            position: absolute;
            z-index: 1;
            left: 0px;
            top: 35px;
            width: 100%;
            height: 70px; }
          #header .col ul.top-menu > li.travel-menu-parent a.active {
            color: #b7add2; }
        #header .col ul.top-menu > li.menu-item-has-children {
          position: relative; }
          #header .col ul.top-menu > li.menu-item-has-children .submenu-wrapper {
            opacity: 0;
            visibility: hidden;
            -moz-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            -webkit-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
            position: absolute;
            z-index: 1;
            left: 0;
            width: 200px;
            top: 100px;
            top: 30px;
            background-color: #e9e6f1;
            padding: 10px; }
            #header .col ul.top-menu > li.menu-item-has-children .submenu-wrapper ul.sub-menu {
              margin: 0px;
              padding: 0px;
              display: block; }
              #header .col ul.top-menu > li.menu-item-has-children .submenu-wrapper ul.sub-menu li {
                list-style: none; }
              #header .col ul.top-menu > li.menu-item-has-children .submenu-wrapper ul.sub-menu li a {
                font-size: 10px;
                font-weight: 700;
                color: #000000;
                text-transform: uppercase;
                letter-spacing: .4em;
                margin-right: -.4em;
                text-decoration: none; }
          #header .col ul.top-menu > li.menu-item-has-children:hover .submenu-wrapper {
            opacity: 1;
            visibility: visible; } }

#submenu-wrapper {
  background-color: #e9e6f1;
  /* display: none; */
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  overflow-y: hidden;
  max-height: 0; }
  #submenu-wrapper ul {
    margin: 0px;
    padding: 0px;
    display: block;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    -moz-column-gap: 30px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    float: left; }
    #submenu-wrapper ul li {
      list-style: none; }
    #submenu-wrapper ul li {
      width: 138px; }
      #submenu-wrapper ul li a {
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .4em;
        text-transform: uppercase;
        margin-right: -.4em;
        font-size: 10px;
        color: #000;
        text-decoration: none;
        line-height: 36px;
        display: block; }
      #submenu-wrapper ul li:hover a, #submenu-wrapper ul li.current-menu-item a {
        opacity: .7; }
  #submenu-wrapper.active {
    padding: 18px 0px;
    margin-bottom: 45px;
    max-height: 216px; }

#about-me {
  margin-bottom: 72px; }
  #about-me img {
    width: 123px;
    height: 123px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box;
    margin-bottom: 28px; }
  #about-me h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: -3px;
    margin-bottom: 6px; }
  #about-me p {
    font-size: 10px;
    line-height: 18px;
    margin-bottom: 28px; }
  #about-me ul.socialmedia-menu {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    line-height: 1;
    width: 200px;
    margin: 0px auto 27px auto; }
    #about-me ul.socialmedia-menu li {
      list-style: none; }
    #about-me ul.socialmedia-menu li {
      display: flex;
      justify-content: center;
      align-items: center; }
      #about-me ul.socialmedia-menu li a {
        height: 18px;
        position: relative;
        text-align: center;
        display: block; }
        #about-me ul.socialmedia-menu li a svg {
          display: inline-block;
          vertical-align: middle;
          margin-top: -2px; }
          #about-me ul.socialmedia-menu li a svg.i_instagram {
            width: 18px;
            height: 18px; }
          #about-me ul.socialmedia-menu li a svg.i_twitter {
            width: 18px;
            height: 15px; }
          #about-me ul.socialmedia-menu li a svg.i_pinterest {
            width: 17px;
            height: 17px; }
          #about-me ul.socialmedia-menu li a svg.i_facebook {
            width: 16px;
            height: 16px; }
          #about-me ul.socialmedia-menu li a svg.i_tumblr {
            width: 9px;
            height: 15px; }
          #about-me ul.socialmedia-menu li a svg.i_email {
            width: 18px;
            height: 14px; }
  #about-me a.the-button, #about-me #content .the-content a.tasty-recipes-print-button, #content .the-content #about-me a.tasty-recipes-print-button, #about-me #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #about-me a.button {
    width: 170px; }

#footer {
  background-color: #e9e6f1;
  padding: 17px 0px 26px 0px; }
  #footer ul.footer-menu {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 63px; }
    #footer ul.footer-menu li {
      list-style: none; }
    #footer ul.footer-menu li a {
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      color: #000000;
      letter-spacing: .4em;
      margin-right: -.4em;
      text-decoration: none;
      position: relative; }
      #footer ul.footer-menu li a.go-top {
        padding-left: 12px; }
        #footer ul.footer-menu li a.go-top svg {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          left: 0px; }
      #footer ul.footer-menu li a:hover {
        opacity: .6; }
  #footer .copyright {
    text-align: center;
    font-size: 12px;
    line-height: 22px; }
  @media only screen and (min-width: 993px) {
    #footer ul.footer-menu {
      width: 639px;
      margin: 0px auto 63px auto; } }

.posts {
  overflow: hidden; }
  .posts h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 18px; }
  .posts h3 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .4em;
    text-transform: uppercase;
    margin-right: -.4em;
    margin-bottom: 26px; }
  .posts a.the-post {
    display: block;
    text-decoration: none;
    margin-bottom: 42px; }
    .posts a.the-post img.post-thumb {
      width: 100%;
      height: auto;
      margin-bottom: 14px; }
    .posts a.the-post span.post-category {
      display: block;
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .4em;
      text-transform: uppercase;
      margin-right: -.4em;
      margin-bottom: 4px; }
    .posts a.the-post span.post-title {
      display: block;
      font-size: 18px;
      line-height: 26px; }
  .posts .the-carousel {
    margin-bottom: 55px; }
    .posts .the-carousel .slick-slide {
      padding: 0px 4px; }
      .posts .the-carousel .slick-slide a.the-post {
        margin-bottom: 0px; }
    .posts .the-carousel ul.slick-dots {
      margin: 0px;
      padding: 0px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-wrap: wrap;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      margin-top: 21px; }
      .posts .the-carousel ul.slick-dots li {
        list-style: none; }
      .posts .the-carousel ul.slick-dots li {
        margin: 0px 4px; }
        .posts .the-carousel ul.slick-dots li button {
          padding: 0px;
          border: none;
          background: none;
          -webkit-border-radius: 0px;
          -moz-border-radius: 0px;
          -ms-border-radius: 0px;
          -o-border-radius: 0px;
          border-radius: 0px;
          background-clip: padding-box;
          text-align: center;
          cursor: pointer;
          width: 7px;
          height: 7px;
          -webkit-border-radius: 50%;
          -moz-border-radius: 50%;
          -ms-border-radius: 50%;
          -o-border-radius: 50%;
          border-radius: 50%;
          background-clip: padding-box;
          background-color: #d9d5e5;
          text-indent: -9999px; }
          .posts .the-carousel ul.slick-dots li button:focus {
            outline: 0; }
        .posts .the-carousel ul.slick-dots li.slick-active button {
          background-color: #000; }
    .posts .the-carousel .slick-track {
      /* float:left; */
      margin-left: 0px; }
    .posts .the-carousel .slick-track,
    .posts .the-carousel .slick-list {
      overflow: visible !important; }
  .posts .container.with-carousel {
    width: 272px;
    margin: 0px auto; }
  @media (min-width: 568px) and (max-width: 767px) {
    .posts .container.with-carousel {
      width: 100%; } }
  @media only screen and (min-width: 768px) {
    .posts h1 {
      font-size: 36px;
      margin-bottom: 16px; }
    .posts a.the-post span.post-category {
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .4em;
      text-transform: uppercase;
      margin-right: -.4em;
      -moz-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      -webkit-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      margin-bottom: 7px; }
    .posts a.the-post span.post-title {
      -moz-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      -webkit-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
    .posts a.the-post:hover span.post-category {
      color: #b7add2; }
    .posts a.the-post:hover span.post-title {
      color: #b7add2; }
    .posts .container.with-carousel {
      width: 100%; }
    .posts .the-carousel {
      margin-bottom: 35px;
      margin-left: -7px;
      margin-right: -7px; }
      .posts .the-carousel .slick-slide {
        padding-left: 7px;
        padding-right: 7px; } }
  @media only screen and (min-width: 993px) {
    .posts a.the-post {
      margin-bottom: 38px; }
    .posts .the-carousel {
      margin-bottom: 60px;
      margin-left: -14px;
      margin-right: -14px; }
      .posts .the-carousel .slick-slide {
        padding-left: 14px;
        padding-right: 14px; } }

.home-categories {
  margin-top: -4px;
  margin-bottom: 44px; }
  .home-categories div.the-category {
    margin-bottom: 10px; }
    .home-categories div.the-category a.category-thumb {
      display: block;
      text-decoration: none; }
      .home-categories div.the-category a.category-thumb img {
        width: 100%;
        height: auto; }
    .home-categories div.the-category a.category-title {
      display: block;
      text-decoration: none;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .4em;
      text-transform: uppercase;
      margin-right: -.4em;
      line-height: 18px;
      color: #000000;
      font-weight: 700; }
    .home-categories div.the-category:nth-child(1) a.category-title {
      background: url(../img/underline_1.svg) left bottom no-repeat;
      padding-bottom: 6px; }
    .home-categories div.the-category:nth-child(2) a.category-title {
      background: url(../img/underline_2.svg) left bottom no-repeat;
      padding-bottom: 16px; }
    .home-categories div.the-category:nth-child(3) a.category-title {
      background: url(../img/underline_3.svg) left bottom no-repeat;
      padding-bottom: 10px; }
  .home-categories a.the-category {
    display: block;
    text-decoration: none;
    position: relative;
    text-align: center; }
    .home-categories a.the-category img.category-thumb {
      width: 100%;
      margin-bottom: 16px; }
    .home-categories a.the-category span.category-title {
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .4em;
      text-transform: uppercase;
      margin-right: -.4em;
      font-weight: 700;
      -moz-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      -webkit-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
    .home-categories a.the-category:hover span.category-title {
      color: #b7add2; }
  .home-categories .col-md-4:nth-child(1) a.the-category {
    background: url(../img/underline_1.svg) center bottom no-repeat;
    padding-bottom: 22px; }
  .home-categories .col-md-4:nth-child(2) a.the-category {
    background: url(../img/underline_2.svg) center bottom no-repeat;
    padding-bottom: 22px; }
  .home-categories .col-md-4:nth-child(3) a.the-category {
    background: url(../img/underline_3.svg) center bottom no-repeat;
    padding-bottom: 22px; }
  @media only screen and (min-width: 993px) {
    .home-categories a.the-category img.category-thumb {
      margin-bottom: 20px; }
    .home-categories a.the-category span.category-title {
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .4em;
      text-transform: uppercase;
      margin-right: -.4em;
      font-weight: 700; } }

#newsletter-widget {
  margin-bottom: 46px; }
  #newsletter-widget .wrapper {
    border: 1px solid #b7add2;
    text-align: center;
    padding: 26px 12px; }
    #newsletter-widget .wrapper h4 {
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .4em;
      text-transform: uppercase;
      margin-right: -.4em;
      margin-bottom: 5px; }
    #newsletter-widget .wrapper h3 {
      font-size: 24px;
      margin-bottom: 8px; }
    #newsletter-widget .wrapper p {
      font-size: 11px;
      line-height: 22px;
      margin-bottom: 26px; }
    #newsletter-widget .wrapper .form-group {
      margin-bottom: 15px; }
    #newsletter-widget .wrapper .form-check {
      text-align: left;
      font-size: 10px;
      line-height: 18px;
      margin-bottom: 40px;
      padding: 0px; }
      #newsletter-widget .wrapper .form-check input.form-check-input {
        position: absolute;
        opacity: 0;
        position: relative;
        z-index: 1; }
      #newsletter-widget .wrapper .form-check label.form-check-label {
        position: relative;
        padding-left: 35px;
        padding-top: 5px; }
        #newsletter-widget .wrapper .form-check label.form-check-label::after {
          content: '';
          background: #fff;
          border: 2px solid #000;
          display: inline-block;
          width: 16px;
          height: 16px;
          text-align: center;
          position: absolute;
          z-index: 0;
          left: 5px;
          top: 6px;
          cursor: pointer; }
      #newsletter-widget .wrapper .form-check input.form-check-input:checked + label.form-check-label::after {
        background: url(../img/checkmark.png) center center no-repeat;
        background-size: 14px auto; }
    #newsletter-widget .wrapper .the-button, #newsletter-widget .wrapper #content .the-content a.tasty-recipes-print-button, #content .the-content #newsletter-widget .wrapper a.tasty-recipes-print-button, #newsletter-widget .wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #newsletter-widget .wrapper a.button {
      width: 130px; }
      #newsletter-widget .wrapper .the-button:disabled, #newsletter-widget .wrapper #content .the-content a.tasty-recipes-print-button:disabled, #content .the-content #newsletter-widget .wrapper a.tasty-recipes-print-button:disabled, #newsletter-widget .wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:disabled, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #newsletter-widget .wrapper a.button:disabled {
        opacity: .50; }

#navigation {
  margin-bottom: 46px; }
  #navigation ul.the-navigation {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%; }
    #navigation ul.the-navigation li {
      list-style: none; }
    #navigation ul.the-navigation li a.the-button, #navigation ul.the-navigation li #content .the-content a.tasty-recipes-print-button, #content .the-content #navigation ul.the-navigation li a.tasty-recipes-print-button, #navigation ul.the-navigation li #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #navigation ul.the-navigation li a.button {
      width: 116px; }
      #navigation ul.the-navigation li a.the-button svg, #navigation ul.the-navigation li #content .the-content a.tasty-recipes-print-button svg, #content .the-content #navigation ul.the-navigation li a.tasty-recipes-print-button svg, #navigation ul.the-navigation li #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #navigation ul.the-navigation li a.button svg {
        display: inline-block;
        vertical-align: middle;
        margin-top: -2px;
        fill: #000;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
        #navigation ul.the-navigation li a.the-button svg.pagenav_arrow_left, #navigation ul.the-navigation li #content .the-content a.tasty-recipes-print-button svg.pagenav_arrow_left, #content .the-content #navigation ul.the-navigation li a.tasty-recipes-print-button svg.pagenav_arrow_left, #navigation ul.the-navigation li #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg.pagenav_arrow_left, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #navigation ul.the-navigation li a.button svg.pagenav_arrow_left {
          margin-right: 2px; }
      #navigation ul.the-navigation li a.the-button span, #navigation ul.the-navigation li #content .the-content a.tasty-recipes-print-button span, #content .the-content #navigation ul.the-navigation li a.tasty-recipes-print-button span, #navigation ul.the-navigation li #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button span, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #navigation ul.the-navigation li a.button span {
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        color: inherit;
        display: none; }
      #navigation ul.the-navigation li a.the-button:hover svg, #navigation ul.the-navigation li #content .the-content a.tasty-recipes-print-button:hover svg, #content .the-content #navigation ul.the-navigation li a.tasty-recipes-print-button:hover svg, #navigation ul.the-navigation li #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:hover svg, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #navigation ul.the-navigation li a.button:hover svg {
        fill: #9387b4; }
  @media only screen and (min-width: 768px) {
    #navigation {
      margin-bottom: 74px; }
      #navigation ul.the-navigation li a.the-button, #navigation ul.the-navigation li #content .the-content a.tasty-recipes-print-button, #content .the-content #navigation ul.the-navigation li a.tasty-recipes-print-button, #navigation ul.the-navigation li #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #navigation ul.the-navigation li a.button {
        width: 174px; }
        #navigation ul.the-navigation li a.the-button svg.pagenav_arrow_left, #navigation ul.the-navigation li #content .the-content a.tasty-recipes-print-button svg.pagenav_arrow_left, #content .the-content #navigation ul.the-navigation li a.tasty-recipes-print-button svg.pagenav_arrow_left, #navigation ul.the-navigation li #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg.pagenav_arrow_left, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #navigation ul.the-navigation li a.button svg.pagenav_arrow_left {
          margin-right: 2px; }
        #navigation ul.the-navigation li a.the-button span, #navigation ul.the-navigation li #content .the-content a.tasty-recipes-print-button span, #content .the-content #navigation ul.the-navigation li a.tasty-recipes-print-button span, #navigation ul.the-navigation li #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button span, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #navigation ul.the-navigation li a.button span {
          display: inline-block; }
        #navigation ul.the-navigation li a.the-button.next, #navigation ul.the-navigation li #content .the-content a.next.tasty-recipes-print-button, #content .the-content #navigation ul.the-navigation li a.next.tasty-recipes-print-button, #navigation ul.the-navigation li #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.next.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #navigation ul.the-navigation li a.next.button {
          width: 171px; } }

#book-widget {
  margin-bottom: 46px; }
  #book-widget .the-book {
    border: 1px solid #b7add2;
    text-align: center;
    padding: 28px 12px; }
    #book-widget .the-book img {
      width: 208px;
      margin-bottom: 27px; }
    #book-widget .the-book h4 {
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .4em;
      text-transform: uppercase;
      margin-right: -.4em;
      margin-bottom: 5px; }
    #book-widget .the-book h3 {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 10px; }
    #book-widget .the-book p {
      font-size: 11px;
      line-height: 22px;
      margin-bottom: 22px; }
    #book-widget .the-book a.the-button, #book-widget .the-book #content .the-content a.tasty-recipes-print-button, #content .the-content #book-widget .the-book a.tasty-recipes-print-button, #book-widget .the-book #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons #book-widget .the-book a.button {
      width: 114px; }

#first-post {
  margin-bottom: 44px; }
  #first-post a.the-post {
    display: block;
    text-decoration: none; }
    #first-post a.the-post img.post-thumb {
      width: 100%;
      height: auto;
      margin-bottom: 28px; }
    #first-post a.the-post span.post-category {
      display: block;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .4em;
      text-transform: uppercase;
      margin-right: -.4em;
      margin-bottom: 4px; }
    #first-post a.the-post span.post-title {
      display: block;
      font-size: 24px;
      line-height: 1.2em;
      font-weight: 400; }
  @media only screen and (min-width: 993px) {
    #first-post a.the-post img.post-thumb {
      margin-bottom: 26px; }
    #first-post a.the-post span.post-category {
      -moz-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      -webkit-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
    #first-post a.the-post span.post-title {
      -moz-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      -webkit-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
    #first-post a.the-post:hover span.post-category {
      -moz-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      -webkit-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      color: #b7add2; }
    #first-post a.the-post:hover span.post-title {
      -moz-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      -webkit-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      color: #b7add2; } }

#book-newsletter {
  margin-bottom: 45px; }
  #book-newsletter .wrapper {
    height: 100%; }
  #book-newsletter.default-page .wrapper {
    height: auto; }
  #book-newsletter.default-page .wrapper.book-wrapper {
    margin-bottom: 44px; }
  @media only screen and (min-width: 768px) {
    #book-newsletter.default-page .wrapper {
      height: 100%; }
    #book-newsletter.default-page .wrapper.book-wrapper {
      margin-bottom: 0px; } }

#content {
  margin-top: -5px;
  margin-bottom: 30px; }
  #content .the-content {
    font-size: 12px;
    line-height: 26px; }
    #content .the-content .alignnone {
      margin: 0px 0px 1.4em 0px; }
    #content .the-content .aligncenter,
    #content .the-content div.aligncenter {
      display: block;
      margin: 0px auto 1.4em auto; }
    #content .the-content .alignright {
      float: right;
      margin: 0px 0px 1.4em 1.4em; }
    #content .the-content .alignleft {
      float: left;
      margin: 0px 1.4em 1.4em 0px; }
    #content .the-content a img.alignright {
      float: right;
      margin: 0px 0px 1.4em 1.4em; }
    #content .the-content a img.alignnone {
      margin: 0px 0px 1.4em 0px; }
    #content .the-content a img.alignleft {
      float: left;
      margin: 0px 1.4em 1.4em 0px; }
    #content .the-content a img.aligncenter {
      display: block;
      margin-left: auto;
      margin-right: auto; }
    #content .the-content img {
      height: auto; }
    #content .the-content ul, #content .the-content ol {
      margin: 0px 0px 1.4em 0px;
      padding: 0px 0px 0px 20px;
      overflow: hidden; }
    #content .the-content a {
      color: #000000;
      text-decoration: underline; }
    #content .the-content a:hover {
      text-decoration: none; }
    #content .the-content p {
      margin: 0px 0px 1.4em 0px; }
    #content .the-content blockquote {
      /* margin:0px 0px $content-margin 0px;
      p:last-child{
      	margin-bottom:0px;
      } */ }
    #content .the-content h1 {
      font-size: 18px;
      line-height: 28px;
      font-weight: 400;
      margin-bottom: 4px; }
    #content .the-content h2 {
      font-size: 16px;
      line-height: 28px;
      font-weight: 400;
      margin-bottom: 10px; }
    #content .the-content h3 {
      font-size: 20px;
      line-height: 28px;
      font-weight: 700;
      margin-bottom: 10px; }
    #content .the-content h1.page-title {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 10px; }
    #content .the-content p, #content .the-content ul, #content .the-content ol {
      font-size: 12px;
      line-height: 26px;
      word-wrap: break-word; }
    #content .the-content ul li, #content .the-content ol li {
      /* padding-left:6px; */
      line-height: 18px;
      margin-bottom: 10px; }
      #content .the-content ul li:last-child, #content .the-content ol li:last-child {
        margin-bottom: 0px; }
    #content .the-content blockquote {
      font-size: 15px;
      line-height: 26px;
      font-weight: 700;
      font-style: italic;
      padding: 0px 17px; }
      #content .the-content blockquote p {
        font-size: inherit !important;
        line-height: inherit !important;
        font-weight: inherit;
        font-style: inherit; }
        #content .the-content blockquote p:last-child {
          margin-bottom: 0px; }
    #content .the-content img.fullwidth {
      width: 100%; }
    #content .the-content .pin-wrapper {
      position: relative; }
      #content .the-content .pin-wrapper img {
        position: relative;
        z-index: 1; }
      #content .the-content .pin-wrapper .overlay {
        position: absolute;
        z-index: 2;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 34px;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
        #content .the-content .pin-wrapper .overlay a.the-button, #content .the-content .pin-wrapper .overlay a.tasty-recipes-print-button, #content .the-content .pin-wrapper .overlay .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .pin-wrapper .overlay a.button {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          left: 0px;
          right: 0px;
          margin-left: auto;
          margin-right: auto;
          width: 95px;
          border-color: #fff;
          color: #fff !important; }
          #content .the-content .pin-wrapper .overlay a.the-button svg, #content .the-content .pin-wrapper .overlay a.tasty-recipes-print-button svg, #content .the-content .pin-wrapper .overlay .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .pin-wrapper .overlay a.button svg {
            fill: #fff;
            display: inline-block;
            vertical-align: middle;
            width: 17px;
            height: 16px;
            margin-top: -2px; }
          #content .the-content .pin-wrapper .overlay a.the-button:hover, #content .the-content .pin-wrapper .overlay a.tasty-recipes-print-button:hover, #content .the-content .pin-wrapper .overlay .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:hover, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .pin-wrapper .overlay a.button:hover {
            border-color: rgba(255, 255, 255, 0.8); }
      #content .the-content .pin-wrapper:hover .overlay {
        opacity: 1;
        visibility: visible; }
    #content .the-content .intro-block {
      margin-bottom: 7px; }
      #content .the-content .intro-block img.alignnone {
        width: 200px;
        height: 200px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        background-clip: padding-box;
        margin: 0px auto 30px auto;
        display: block; }
    #content .the-content .instagram-widget ul {
      margin: 0px;
      padding: 0px;
      display: block;
      margin-bottom: 42px; }
      #content .the-content .instagram-widget ul li {
        list-style: none; }
      #content .the-content .instagram-widget ul li {
        width: 54.5%;
        float: left; }
        #content .the-content .instagram-widget ul li a {
          display: block;
          text-decoration: none; }
          #content .the-content .instagram-widget ul li a img {
            width: 100%;
            height: auto; }
        #content .the-content .instagram-widget ul li:nth-child(1) {
          position: relative;
          z-index: 1; }
          #content .the-content .instagram-widget ul li:nth-child(1) a {
            -webkit-box-shadow: 4px 4px 0px 0px #fff;
            -moz-box-shadow: 4px 4px 0px 0px #fff;
            box-shadow: 4px 4px 0px 0px #fff; }
        #content .the-content .instagram-widget ul li:nth-child(2) {
          margin-left: -9.5%;
          margin-top: 42px;
          position: relative;
          z-index: 0; }
        #content .the-content .instagram-widget ul li:nth-child(3) {
          position: relative;
          z-index: 1;
          margin-top: -34px; }
          #content .the-content .instagram-widget ul li:nth-child(3) a {
            -webkit-box-shadow: 4px 4px 0px 0px #fff;
            -moz-box-shadow: 4px 4px 0px 0px #fff;
            box-shadow: 4px 4px 0px 0px #fff; }
        #content .the-content .instagram-widget ul li:nth-child(4) {
          margin-left: -13.5%;
          margin-top: 7px;
          position: relative;
          z-index: 0; }
    #content .the-content ul.socialmedia-share {
      margin: 0px;
      padding: 0px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-wrap: wrap;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      margin-top: 30px; }
      #content .the-content ul.socialmedia-share li {
        list-style: none; }
      #content .the-content ul.socialmedia-share li {
        margin-right: 8px; }
        #content .the-content ul.socialmedia-share li a.the-button, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button {
          width: 42px;
          padding: 0px;
          display: flex;
          justify-content: center;
          align-items: center; }
          #content .the-content ul.socialmedia-share li a.the-button svg, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button svg, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button svg {
            -moz-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            -webkit-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
            #content .the-content ul.socialmedia-share li a.the-button svg.i_pinterest, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button svg.i_pinterest, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg.i_pinterest, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button svg.i_pinterest {
              width: 17px;
              height: 17px; }
            #content .the-content ul.socialmedia-share li a.the-button svg.i_twitter, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button svg.i_twitter, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg.i_twitter, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button svg.i_twitter {
              width: 18px;
              height: 14px; }
            #content .the-content ul.socialmedia-share li a.the-button svg.i_facebook, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button svg.i_facebook, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg.i_facebook, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button svg.i_facebook {
              width: 16px;
              height: 16px; }
          #content .the-content ul.socialmedia-share li a.the-button span, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button span, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button span, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button span {
            /* @include transition; */
            display: none; }
          #content .the-content ul.socialmedia-share li a.the-button:hover svg, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button:hover svg, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:hover svg, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button:hover svg {
            fill: #9387b4; }
          #content .the-content ul.socialmedia-share li a.the-button:hover span, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button:hover span, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:hover span, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button:hover span {
            color: inherit; }
    #content .the-content a.tasty-recipes-print-button {
      width: 114px;
      float: right;
      margin-bottom: 30px;
      display: none; }
    #content .the-content .tasty-recipes-nutrition ul {
      margin: 0px;
      padding: 0px;
      display: block; }
      #content .the-content .tasty-recipes-nutrition ul li {
        list-style: none; }
      #content .the-content .tasty-recipes-nutrition ul li {
        margin-left: 0px;
        padding-left: 0px;
        width: 100%;
        float: none; }
    #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content h2 {
      margin-top: -5px;
      font-weight: 700; }
    #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-details ul {
      margin: 0px;
      padding: 0px;
      display: block; }
      #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-details ul li {
        list-style: none; }
      #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-details ul li {
        margin: 0px;
        padding: 0px;
        height: auto;
        display: block;
        float: left;
        margin-right: 15px;
        margin-bottom: 15px; }
        #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-details ul li:nth-child(3) {
          clear: left; }
        #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-details ul li:nth-child(6) {
          clear: left; }
        #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-details ul li span {
          display: inline-block; }
          #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-details ul li span img {
            margin: 0px;
            display: inline-block;
            vertical-align: middle;
            margin-right: 5px;
            margin-top: -3px;
            height: 15px; }
    #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button {
      margin: 0px;
      width: 100%;
      border-color: #aaa;
      color: #aaa !important; }
      #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button img {
        margin: 0px;
        height: 18px;
        width: auto;
        display: inline-block;
        vertical-align: middle;
        margin-right: 7px;
        margin-top: -3px; }
    #content .the-content .tasty-recipes-ingredients ul {
      margin-left: 0px;
      padding-left: 0px; }
      #content .the-content .tasty-recipes-ingredients ul li {
        margin-left: 18px; }
    #content .the-content .tasty-recipes-notes p {
      padding: 0px 0px 0px 20px; }
      #content .the-content .tasty-recipes-notes p::before {
        top: 8px;
        left: 0px; }
    #content .the-content .tasty-recipes-entry-footer {
      text-align: left;
      padding: 30px 0px 0px 0px; }
      #content .the-content .tasty-recipes-entry-footer .tasty-recipes-footer-content {
        width: 100%; }
      #content .the-content .tasty-recipes-entry-footer img {
        width: 40px;
        margin: 0px 10px 0px 0px;
        float: left; }
      #content .the-content .tasty-recipes-entry-footer h3, #content .the-content .tasty-recipes-entry-footer p {
        margin: 0px; }
      #content .the-content .tasty-recipes-entry-footer h3 {
        margin-top: -5px; }
    #content .the-content.single-content {
      margin-bottom: 62px; }
      #content .the-content.single-content .post-date {
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .4em;
        text-transform: uppercase;
        margin-right: -.4em;
        margin-bottom: 15px; }
  #content .sidebar .about-section {
    margin-bottom: 45px; }
  #content .sidebar .wrapper {
    margin-bottom: 45px; }
    #content .sidebar .wrapper.newsletter-wrapper .col-lg-6, #content .sidebar .wrapper.book-wrapper .col-lg-6 {
      width: 100%;
      max-width: 100%;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  @media only screen and (min-width: 768px) {
    #content {
      margin-top: 0px;
      margin-bottom: 45px; }
      #content .the-content {
        line-height: 28px; }
        #content .the-content h1 {
          font-size: 20px;
          margin-bottom: 8px; }
        #content .the-content h2 {
          font-size: 18px;
          margin-bottom: 10px; }
        #content .the-content p + h2 {
          margin-top: -5px; }
        #content .the-content h1.page-title {
          font-size: 36px;
          line-height: 44px;
          margin-bottom: 28px; }
        #content .the-content p, #content .the-content ul, #content .the-content ol {
          line-height: 28px; }
        #content .the-content .intro-block {
          margin-bottom: 1px; }
          #content .the-content .intro-block h1.page-title {
            margin-bottom: 17px;
            margin-top: -10px; }
          #content .the-content .intro-block img.alignnone {
            width: 216px;
            height: 216px;
            margin: 0px;
            float: left; }
        #content .the-content .instagram-widget ul {
          margin: 0px;
          padding: 0px;
          display: block;
          margin-bottom: 42px; }
          #content .the-content .instagram-widget ul li {
            list-style: none; }
          #content .the-content .instagram-widget ul li {
            width: 54.5%;
            float: left; }
            #content .the-content .instagram-widget ul li a {
              display: block;
              text-decoration: none; }
              #content .the-content .instagram-widget ul li a img {
                width: 100%;
                height: auto; }
            #content .the-content .instagram-widget ul li:nth-child(1) a {
              -webkit-box-shadow: 4px 4px 0px 0px #fff;
              -moz-box-shadow: 4px 4px 0px 0px #fff;
              box-shadow: 4px 4px 0px 0px #fff; }
            #content .the-content .instagram-widget ul li:nth-child(2) {
              margin-left: -9.5%;
              margin-top: 42px; }
            #content .the-content .instagram-widget ul li:nth-child(3) {
              margin-top: -34px; }
              #content .the-content .instagram-widget ul li:nth-child(3) a {
                -webkit-box-shadow: 4px 4px 0px 0px #fff;
                -moz-box-shadow: 4px 4px 0px 0px #fff;
                box-shadow: 4px 4px 0px 0px #fff; }
            #content .the-content .instagram-widget ul li:nth-child(4) {
              margin-left: -13.5%;
              margin-top: 7px; }
        #content .the-content.about-content p {
          font-size: 13px;
          margin-bottom: 38px; }
        #content .the-content.about-content .row p:first-child {
          margin-top: -8px; }
        #content .the-content.single-content {
          margin-bottom: 15px;
          font-size: 13px;
          line-height: 28px; }
          #content .the-content.single-content p, #content .the-content.single-content ul, #content .the-content.single-content ol {
            font-size: 13px;
            line-height: 28px; }
          #content .the-content.single-content .post-date {
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .4em;
            text-transform: uppercase;
            margin-right: -.4em;
            margin-bottom: 15px; }
          #content .the-content.single-content blockquote {
            font-size: 16px;
            line-height: 28px; }
        #content .the-content ul.socialmedia-share {
          margin-top: 38px; }
          #content .the-content ul.socialmedia-share li {
            margin-right: 28px; }
            #content .the-content ul.socialmedia-share li a.the-button, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button {
              width: auto;
              padding: 0px 18px; }
              #content .the-content ul.socialmedia-share li a.the-button svg, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button svg, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button svg {
                margin-right: 10px; }
                #content .the-content ul.socialmedia-share li a.the-button svg.i_pinterest, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button svg.i_pinterest, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg.i_pinterest, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button svg.i_pinterest {
                  width: 17px;
                  height: 17px; }
                #content .the-content ul.socialmedia-share li a.the-button svg.i_twitter, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button svg.i_twitter, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg.i_twitter, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button svg.i_twitter {
                  width: 18px;
                  height: 14px; }
                #content .the-content ul.socialmedia-share li a.the-button svg.i_facebook, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button svg.i_facebook, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg.i_facebook, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button svg.i_facebook {
                  width: 16px;
                  height: 16px; }
              #content .the-content ul.socialmedia-share li a.the-button span, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button span, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button span, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button span {
                display: inline-block; }
              #content .the-content ul.socialmedia-share li a.the-button:hover svg, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button:hover svg, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:hover svg, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button:hover svg {
                fill: #9387b4; }
              #content .the-content ul.socialmedia-share li a.the-button:hover span, #content .the-content ul.socialmedia-share li a.tasty-recipes-print-button:hover span, #content .the-content ul.socialmedia-share li .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:hover span, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons ul.socialmedia-share li a.button:hover span {
                color: inherit; }
        #content .the-content .tasty-recipes-nutrition ul li {
          width: 33.33%;
          float: left;
          margin-right: 0px; } }
  @media only screen and (min-width: 993px) {
    #content .the-content {
      font-size: 13px; }
      #content .the-content p, #content .the-content ul, #content .the-content ol {
        font-size: 13px;
        margin-bottom: 34px; }
      #content .the-content p + h1 {
        margin-top: -2px; }
      #content .the-content img, #content .the-content img.alignnone, #content .the-content img.alignleft, #content .the-content img.alignright, #content .the-content img.aligncenter {
        margin-bottom: 34px; }
      #content .the-content .instagram-widget ul {
        margin-bottom: 42px;
        margin-top: -90px; }
        #content .the-content .instagram-widget ul li {
          width: 54.5%; }
          #content .the-content .instagram-widget ul li a img {
            margin-bottom: 0px !important; }
          #content .the-content .instagram-widget ul li:nth-child(2) {
            margin-left: -9.5%;
            margin-top: 42px; }
          #content .the-content .instagram-widget ul li:nth-child(3) {
            margin-top: -34px; }
          #content .the-content .instagram-widget ul li:nth-child(4) {
            margin-left: -13.5%;
            margin-top: 7px; }
    #content .sidebar .about-section img {
      width: 138px;
      height: 138px;
      margin: 0px auto 22px auto; }
    #content .sidebar .about-section p {
      font-size: 12px;
      line-height: 22px;
      margin-bottom: 32px; }
    #content .sidebar .about-section ul.socialmedia-menu {
      width: 264px; } }

.about-section {
  text-align: center;
  padding-top: 32px; }
  .about-section img {
    width: 112px;
    height: 112px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box;
    display: block;
    margin: 0px auto 20px auto; }
  .about-section h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 6px; }
  .about-section p {
    font-size: 11px;
    line-height: 18px;
    margin-bottom: 28px; }
  .about-section ul.socialmedia-menu {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    line-height: 1;
    width: 200px;
    margin: 0px auto 27px auto; }
    .about-section ul.socialmedia-menu li {
      list-style: none; }
    .about-section ul.socialmedia-menu li {
      display: flex;
      justify-content: center;
      align-items: center; }
      .about-section ul.socialmedia-menu li a {
        height: 18px;
        position: relative;
        text-align: center;
        display: block; }
        .about-section ul.socialmedia-menu li a svg {
          display: inline-block;
          vertical-align: middle;
          margin-top: -2px;
          -moz-transition: all 0.25s ease-in-out;
          -o-transition: all 0.25s ease-in-out;
          -webkit-transition: all 0.25s ease-in-out;
          -ms-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out; }
          .about-section ul.socialmedia-menu li a svg.i_instagram {
            width: 18px;
            height: 18px; }
          .about-section ul.socialmedia-menu li a svg.i_twitter {
            width: 18px;
            height: 15px; }
          .about-section ul.socialmedia-menu li a svg.i_pinterest {
            width: 17px;
            height: 17px; }
          .about-section ul.socialmedia-menu li a svg.i_facebook {
            width: 16px;
            height: 16px; }
          .about-section ul.socialmedia-menu li a svg.i_tumblr {
            width: 9px;
            height: 15px; }
          .about-section ul.socialmedia-menu li a svg.i_email {
            width: 18px;
            height: 14px; }
        .about-section ul.socialmedia-menu li a:hover svg {
          fill: #b7add2; }
  .about-section a.the-button, .about-section #content .the-content a.tasty-recipes-print-button, #content .the-content .about-section a.tasty-recipes-print-button, .about-section #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .about-section a.button {
    width: 172px; }
  @media only screen and (min-width: 993px) {
    .about-section .about-section {
      padding-top: 54px; }
      .about-section .about-section img {
        width: 138px;
        height: 138px;
        margin: 0px auto 21px auto; }
      .about-section .about-section h3 {
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 6px; }
      .about-section .about-section p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 33px; }
      .about-section .about-section ul.socialmedia-menu {
        width: 260px;
        margin: 0px auto 27px auto; }
        .about-section .about-section ul.socialmedia-menu li a {
          height: 18px; }
          .about-section .about-section ul.socialmedia-menu li a svg {
            -moz-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            -webkit-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
          .about-section .about-section ul.socialmedia-menu li a:hover svg {
            fill: #b7add2; }
      .about-section .about-section a.the-button, .about-section .about-section #content .the-content a.tasty-recipes-print-button, #content .the-content .about-section .about-section a.tasty-recipes-print-button, .about-section .about-section #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .about-section .about-section a.button {
        width: 169px;
        height: 41px;
        line-height: 37px; } }

.wrapper.newsletter-wrapper {
  border: 1px solid #b7add2;
  text-align: center;
  padding: 26px 12px; }
  .wrapper.newsletter-wrapper .the-wrapper {
    margin-top: -10px; }
  .wrapper.newsletter-wrapper h4 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .4em;
    text-transform: uppercase;
    margin-right: -.4em;
    margin-bottom: 5px; }
  .wrapper.newsletter-wrapper h3 {
    font-size: 24px;
    margin-bottom: 8px; }
  .wrapper.newsletter-wrapper p {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 26px; }
  .wrapper.newsletter-wrapper .form-group {
    margin-bottom: 15px; }
  .wrapper.newsletter-wrapper .form-check {
    text-align: left;
    font-size: 10px;
    line-height: 18px;
    margin-bottom: 40px;
    padding: 0px; }
    .wrapper.newsletter-wrapper .form-check input.form-check-input {
      position: absolute;
      opacity: 0;
      position: relative;
      z-index: 1; }
    .wrapper.newsletter-wrapper .form-check label.form-check-label {
      position: relative;
      padding-left: 35px;
      padding-top: 5px; }
      .wrapper.newsletter-wrapper .form-check label.form-check-label::after {
        content: '';
        background: #fff;
        border: 2px solid #000;
        display: inline-block;
        width: 16px;
        height: 16px;
        text-align: center;
        position: absolute;
        z-index: 0;
        left: 5px;
        top: 6px;
        cursor: pointer; }
    .wrapper.newsletter-wrapper .form-check input.form-check-input:checked + label.form-check-label::after {
      background: url(../img/checkmark.png) center center no-repeat;
      background-size: 14px auto; }
  .wrapper.newsletter-wrapper .the-button, .wrapper.newsletter-wrapper #content .the-content a.tasty-recipes-print-button, #content .the-content .wrapper.newsletter-wrapper a.tasty-recipes-print-button, .wrapper.newsletter-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .wrapper.newsletter-wrapper a.button {
    width: 130px; }
    .wrapper.newsletter-wrapper .the-button:disabled, .wrapper.newsletter-wrapper #content .the-content a.tasty-recipes-print-button:disabled, #content .the-content .wrapper.newsletter-wrapper a.tasty-recipes-print-button:disabled, .wrapper.newsletter-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:disabled, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .wrapper.newsletter-wrapper a.button:disabled {
      opacity: .50; }
  @media only screen and (min-width: 993px) {
    .wrapper.newsletter-wrapper {
      padding: 26px 29px 22px 29px; }
      .wrapper.newsletter-wrapper .the-wrapper {
        margin-top: -7px; }
      .wrapper.newsletter-wrapper h4 {
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .4em;
        text-transform: uppercase;
        margin-right: -.4em;
        margin-bottom: 5px; }
      .wrapper.newsletter-wrapper h3 {
        font-size: 24px;
        margin-bottom: 8px; }
      .wrapper.newsletter-wrapper p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 23px; }
      .wrapper.newsletter-wrapper .form-group {
        margin-bottom: 15px; }
      .wrapper.newsletter-wrapper .form-check {
        font-size: 10px;
        line-height: 18px;
        margin-bottom: 15px; }
        .wrapper.newsletter-wrapper .form-check label.form-check-label {
          padding-left: 35px;
          padding-top: 5px; } }

#mce-responses #mce-error-response {
  font-size: 12px;
  margin-bottom: 10px;
  color: red; }
#mce-responses #mce-success-response {
  font-size: 12px;
  margin-bottom: 10px;
  color: green; }

.wrapper.book-wrapper {
  border: 1px solid #b7add2;
  text-align: center;
  padding: 28px 12px; }
  .wrapper.book-wrapper img {
    width: 208px;
    margin-bottom: 25px; }
  .wrapper.book-wrapper h4 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .4em;
    text-transform: uppercase;
    margin-right: -.4em;
    margin-bottom: 5px; }
  .wrapper.book-wrapper h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 9px; }
  .wrapper.book-wrapper p {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 22px; }
  .wrapper.book-wrapper a.the-button, .wrapper.book-wrapper #content .the-content a.tasty-recipes-print-button, #content .the-content .wrapper.book-wrapper a.tasty-recipes-print-button, .wrapper.book-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .wrapper.book-wrapper a.button {
    width: 114px; }
  @media only screen and (min-width: 993px) {
    .wrapper.book-wrapper {
      padding: 28px 12px; }
      .wrapper.book-wrapper img {
        width: 208px;
        margin-bottom: 0px; }
      .wrapper.book-wrapper h4 {
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .4em;
        text-transform: uppercase;
        margin-right: -.4em;
        margin-top: 10px;
        margin-bottom: 5px; }
      .wrapper.book-wrapper h3 {
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 9px; }
      .wrapper.book-wrapper p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 22px;
        padding-right: 10px; }
      .wrapper.book-wrapper a.the-button, .wrapper.book-wrapper #content .the-content a.tasty-recipes-print-button, #content .the-content .wrapper.book-wrapper a.tasty-recipes-print-button, .wrapper.book-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .wrapper.book-wrapper a.button {
        width: 114px; } }

#comments {
  margin-bottom: 72px; }
  #comments h3 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .4em;
    text-transform: uppercase;
    margin-right: -.4em;
    margin-bottom: 26px; }
  @media only screen and (min-width: 768px) {
    #comments {
      margin-top: 30px; } }

#category-header h2 {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .4em;
  text-transform: uppercase;
  margin-right: -.4em;
  margin-bottom: 21px; }
#category-header h1 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 18px; }
#category-header p {
  font-size: 12px;
  line-height: 26px;
  margin-bottom: 44px; }
#category-header a.first-post {
  display: block;
  text-decoration: none;
  margin-bottom: 42px; }
  #category-header a.first-post img.post-thumb {
    width: 100%;
    height: auto;
    margin-bottom: 14px; }
  #category-header a.first-post span.post-category {
    display: block;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .4em;
    text-transform: uppercase;
    margin-right: -.4em;
    margin-bottom: 4px; }
  #category-header a.first-post span.post-title {
    display: block;
    font-size: 18px;
    line-height: 26px; }
@media only screen and (min-width: 768px) {
  #category-header {
    margin-bottom: 42px;
    margin-top: -2px; }
    #category-header h2 {
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .4em;
      text-transform: uppercase;
      margin-right: -.4em;
      margin-left: 5px;
      margin-bottom: 16px; }
    #category-header h1 {
      font-size: 36px;
      margin-bottom: 16px; }
    #category-header p {
      line-height: 28px; }
    #category-header a.first-post {
      margin-bottom: 0px;
      margin-top: 38px; }
      #category-header a.first-post img.post-thumb {
        margin-bottom: 25px; }
      #category-header a.first-post span.post-category {
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .4em;
        text-transform: uppercase;
        margin-right: -.4em;
        margin-bottom: 4px; }
      #category-header a.first-post span.post-title {
        font-size: 24px;
        line-height: 28px; } }
@media only screen and (min-width: 993px) {
  #category-header {
    margin-top: -10px; }
    #category-header p {
      font-size: 13px;
      line-height: 28px; }
    #category-header a.first-post {
      margin-top: 8px; }
      #category-header a.first-post img.post-thumb {
        margin-bottom: 25px; }
      #category-header a.first-post span.post-category {
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .4em;
        text-transform: uppercase;
        margin-right: -.4em;
        margin-bottom: 4px;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
      #category-header a.first-post span.post-title {
        font-size: 24px;
        line-height: 28px;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
      #category-header a.first-post:hover span.post-category, #category-header a.first-post:hover span.post-title {
        color: #b7add2; } }

.posts .recipe-categories-wrapper {
  margin-bottom: 28px; }
  .posts .recipe-categories-wrapper h3 {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .4em;
    text-transform: uppercase;
    margin-right: -.4em;
    margin-bottom: 28px; }
  .posts .recipe-categories-wrapper .the-button, .posts .recipe-categories-wrapper #content .the-content a.tasty-recipes-print-button, #content .the-content .posts .recipe-categories-wrapper a.tasty-recipes-print-button, .posts .recipe-categories-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .posts .recipe-categories-wrapper a.button {
    color: #b7add2 !important;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .4em;
    text-transform: uppercase;
    margin-right: -.4em;
    position: relative; }
    .posts .recipe-categories-wrapper .the-button span, .posts .recipe-categories-wrapper #content .the-content a.tasty-recipes-print-button span, #content .the-content .posts .recipe-categories-wrapper a.tasty-recipes-print-button span, .posts .recipe-categories-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button span, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .posts .recipe-categories-wrapper a.button span {
      color: inherit; }
    .posts .recipe-categories-wrapper .the-button svg, .posts .recipe-categories-wrapper #content .the-content a.tasty-recipes-print-button svg, #content .the-content .posts .recipe-categories-wrapper a.tasty-recipes-print-button svg, .posts .recipe-categories-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button svg, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .posts .recipe-categories-wrapper a.button svg {
      width: 16px;
      height: 9px;
      position: absolute;
      top: 15px;
      right: 18px;
      -moz-transition: all 0.25s ease-in-out;
      -o-transition: all 0.25s ease-in-out;
      -webkit-transition: all 0.25s ease-in-out;
      -ms-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
    .posts .recipe-categories-wrapper .the-button:hover, .posts .recipe-categories-wrapper #content .the-content a.tasty-recipes-print-button:hover, #content .the-content .posts .recipe-categories-wrapper a.tasty-recipes-print-button:hover, .posts .recipe-categories-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.button:hover, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .posts .recipe-categories-wrapper a.button:hover {
      border-color: #000; }
    .posts .recipe-categories-wrapper .the-button.active, .posts .recipe-categories-wrapper #content .the-content a.active.tasty-recipes-print-button, #content .the-content .posts .recipe-categories-wrapper a.active.tasty-recipes-print-button, .posts .recipe-categories-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.active.button, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .posts .recipe-categories-wrapper a.active.button {
      border-bottom-color: #e9e6f1; }
      .posts .recipe-categories-wrapper .the-button.active svg, .posts .recipe-categories-wrapper #content .the-content a.active.tasty-recipes-print-button svg, #content .the-content .posts .recipe-categories-wrapper a.active.tasty-recipes-print-button svg, .posts .recipe-categories-wrapper #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons a.active.button svg, #content .the-content .tasty-recipes-entry-header .tasty-recipes-header-content .tasty-recipes-buttons .posts .recipe-categories-wrapper a.active.button svg {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg); }
  .posts .recipe-categories-wrapper ul {
    margin: 0px;
    padding: 0px;
    display: block;
    text-align: center;
    margin-bottom: 28px;
    border: 2px solid #000;
    border-top: none;
    margin-top: -2px;
    padding-top: 2px;
    position: relative;
    display: none; }
    .posts .recipe-categories-wrapper ul li {
      list-style: none; }
    .posts .recipe-categories-wrapper ul li a {
      display: block;
      padding: 17px 0px;
      text-decoration: none;
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .4em;
      text-transform: uppercase;
      margin-right: -.4em;
      line-height: 1;
      color: #000; }
    .posts .recipe-categories-wrapper ul li.current-menu-item {
      display: none; }
  @media only screen and (min-width: 768px) {
    .posts .recipe-categories-wrapper {
      border-right: 1px solid #b7add2; }
      .posts .recipe-categories-wrapper ul {
        display: block;
        text-align: left;
        margin-top: 0px;
        padding-top: 0px;
        border: none; }
        .posts .recipe-categories-wrapper ul li:hover a, .posts .recipe-categories-wrapper ul li.current-menu-item a {
          color: #b7add2; }
        .posts .recipe-categories-wrapper ul li.current-menu-item {
          display: block; }
        .posts .recipe-categories-wrapper ul li a {
          padding: 19px 0px;
          font-size: 10px;
          font-weight: 900;
          letter-spacing: .4em;
          text-transform: uppercase;
          margin-right: -.4em; }
        .posts .recipe-categories-wrapper ul li:first-child a {
          padding-top: 0px; }
        .posts .recipe-categories-wrapper ul li:last-child a {
          padding-bottom: 0px; } }
  @media only screen and (min-width: 993px) {
    .posts .recipe-categories-wrapper ul li a {
      padding: 13px 0px; } }

#book-tiles {
  margin-bottom: 30px; }
  #book-tiles ul {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    #book-tiles ul li {
      list-style: none; }
    #book-tiles ul li {
      width: 33.33%; }
      #book-tiles ul li img {
        width: 100%;
        height: auto; }
  #book-tiles img.book-cover {
    width: 236px;
    display: block;
    /* margin:-155px auto 0px auto; */
    margin: -48% auto 0px auto;
    position: relative;
    z-index: 1;
    border: 6px solid #fff; }
  @media only screen and (min-width: 768px) {
    #book-tiles {
      margin-bottom: 35px; }
      #book-tiles ul li {
        width: 20%; } }

#book-content {
  margin-bottom: 6px; }
  #book-content img.book-cover {
    width: 100%;
    display: block;
    margin: -65px auto 0px auto;
    position: relative;
    z-index: 1;
    border: 6px solid #fff; }
  #book-content h1 {
    font-size: 24px;
    line-height: 1.2em;
    margin-bottom: 14px; }
  #book-content p {
    font-size: 12px;
    line-height: 26px;
    margin-bottom: 26px; }
  @media only screen and (min-width: 768px) {
    #book-content h1 {
      font-size: 36px;
      margin-bottom: 35px; }
    #book-content p {
      font-size: 13px;
      line-height: 28px;
      margin-bottom: 28px; } }
  @media only screen and (min-width: 993px) {
    #book-content img.book-cover {
      margin-top: -177px; } }

#order-at {
  margin-bottom: 45px; }
  #order-at h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 21px; }
  #order-at ul.logos {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    position: relative; }
    #order-at ul.logos li {
      list-style: none; }
    #order-at ul.logos::after {
      content: "";
      position: relative;
      z-index: 1;
      width: 100%;
      height: 2px;
      background-color: #fff;
      margin-top: -2px; }
    #order-at ul.logos li {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 85px;
      width: 50%;
      border: 1px solid #b7add2; }
      #order-at ul.logos li:nth-child(1) {
        border-left: none;
        border-top: none; }
      #order-at ul.logos li:nth-child(2n) {
        border-right: none;
        border-left: none;
        border-top: none; }
      #order-at ul.logos li:nth-child(2n+1) {
        border-left: none;
        border-top: none; }
  @media only screen and (min-width: 768px) {
    #order-at {
      margin-bottom: 70px; }
      #order-at h3 {
        font-size: 24px;
        margin-bottom: 13px; }
      #order-at ul.logos li {
        width: 25%;
        border-right: 1px solid #b7add2; }
        #order-at ul.logos li:nth-child(2n) {
          border: none;
          border-bottom: 1px solid #b7add2; }
        #order-at ul.logos li:nth-child(2n+1) {
          border: none; }
        #order-at ul.logos li:nth-child(1), #order-at ul.logos li:nth-child(2), #order-at ul.logos li:nth-child(3), #order-at ul.logos li:nth-child(4) {
          border: none;
          border-bottom: 1px solid #b7add2;
          border-right: 1px solid #b7add2; }
        #order-at ul.logos li:nth-child(4n) {
          border-right: none; }
        #order-at ul.logos li:nth-child(4n+1), #order-at ul.logos li:nth-child(4n+2), #order-at ul.logos li:nth-child(4n+3) {
          border-right: 1px solid #b7add2;
          border-bottom: 1px solid #b7add2; } }

/*# sourceMappingURL=app.css.map */
