/* ######################################################### */
/*                CALLS TO ALL THE PARTIALS                  */
/* ######################################################### */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

input:focus {
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, main, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

a {
  text-decoration: none;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* ######################################################### */
/*          BASE VARIABLES FOR COLOURS, TYPE ETC             */
/* This can be included from the primary assets library.
/* App specific overrides can be added in a localised version */
/* #########################################################  */
/*
Fibonacci:
1,1,2,3,5,8,13,21,34,55...
*/
/* basic setup for this guide  */
/* ######################################################### */
/*                       helper classes                      */
/* ######################################################### */
.inline {
  display: inline;
  padding: 1px;
}

.right, .left {
  clear: both;
}
@media screen and (min-width: 480px) {
  .right, .left {
    clear: none;
    float: right;
    width: 33%;
  }
}

.left {
  float: left;
}

.panel {
  padding: 10px;
  background-color: #f3f3f3;
  margin-bottom: 1.618rem;
}

.no-btm-margin {
  margin-bottom: 0;
}

.hidden {
  display: none;
}

.js .js-hidden {
  display: none;
}

.no-js .no-js-hidden {
  display: none;
}

/* ######################################################### */
/*  GENERIC MIXINS THAT CAN BE CALLED ON MANY ELEMENT TYPES  */
/* ######################################################### */
/* ######################################################### */
/*                            FONTS                          */
/* Dependencies:
    1. _variables.scss
*/
/* ######################################################### */
/* ######################################################### */
/*                              GRIDS                        */
/* ######################################################### */
/* ######################################################### */
/*                  SW LINEAR GRADIENTS                      */
/* ######################################################### */
/* ######################################################### */
/* ######################################################### */
/*                         FONTS                             */
/* Dependencies:
    1. _mixins.scss
    2. _variables.scss
*/
/* ######################################################### */
/* ######################################################### */
/* ######################################################### */
/*                         PURE HTML                         */
/*
    Declarations that only affect 'content' html
    TODO: <blockquote><cite>
    TODO: Look into techniques for ensuring <strong> & <em> use correct font faces rather than faux-ing it
*/
/* ######################################################### */
html {
  font-size: 13px;
  text-rendering: optimizeAppearance;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 320px) {
  html {
    font-size: 16px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font:  34.033px / 1.52135 "Open Sans", arial, sans-serif;
  font:  2.12706rem / 1.52135 "Open Sans", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  color: #666;
}

h2 {
  font-size: 25.888px;
  font-size: 1.618rem;
  line-height: 1;
  line-height: 1.4;
}

h3 {
  font-size: 21.034px;
  font-size: 1.31463rem;
  line-height: 1;
}

h4 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

p, ul, label {
  font:  16px / 1.618 "Source Sans Pro", arial, sans-serif;
  font:  1rem / 1.618 "Source Sans Pro", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  color: #333;
}

ul {
  list-style: disc;
  margin-left: 1em;
}
ul.no-marker {
  list-style: none;
}

li {
  margin-bottom: 0.33em;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.small-text {
  font:  11px / 2.35345 "Source Sans Pro", arial, sans-serif;
  font:  0.6875rem / 2.35345 "Source Sans Pro", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
}

.callout {
  background-color: #f3f3f3;
  border: 1px solid #cdcdcd;
  display: block;
  margin: 1.618em;
  padding: 1em;
}
.callout p:last-child {
  margin-bottom: 0;
}

/* ######################################################### */
/*                     TABLES AND FORMS                      */
/* ######################################################### */
table {
  width: 100%;
  font: 300 13px / 1.99138 "Open Sans" arial, sans-serif;
  font: 300 0.8125rem / 1.99138 "Open Sans" arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  line-height: 1;
}

caption, legend {
  font:  21.034px / 1.23077 "Open Sans", arial, sans-serif;
  font:  1.31463rem / 1.23077 "Open Sans", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  text-align: left;
}

caption {
  font-weight: 600;
}

legend {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  margin-bottom: 0.66em;
}

label {
  font:  16px / 1.618 "Open Sans", arial, sans-serif;
  font:  1rem / 1.618 "Open Sans", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  font-weight: 600;
}

.search--label::before {
  font-weight: normal;
}

/* ######################################################### */
/*                    BASIC BUTTON MIXIN                     */
/* Dependencies:
    1. _icons.scss
    2. _variables.scss
*/
/* ######################################################### */
/* ######################################################### */
/*                 ASSIGNING CLASS NAMES                     */
/* ######################################################### */
.btn__tertiary {
  background-color: #f36666;
  text-shadow: none;
  background-color: #EF3737;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f25d5d), to(#EF3737));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #f25d5d, #EF3737);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  /* FF3.6 */
  /* IE10 */
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #f25d5d, #EF3737);
  background-image: linear-gradient(top, #f25d5d, #EF3737);
  -webkit-appearance: none;
  border: 1px solid rgba(154, 12, 12, 0.55);
  border-radius: 3px;
  padding: 9px 16px;
  padding-bottom: 11px;
  margin: 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25), 0px 0px 12px #e11212;
  text-decoration: none;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font:  18px / 1.43822 "Source Sans Pro", arial, sans-serif;
  font:  1.125rem / 1.43822 "Source Sans Pro", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  font-weight: 400;
  min-width: 110.76923px;
  width: auto;
  display: inline-block;
}
.btn__tertiary:hover, .btn__tertiary:active, .btn__tertiary:focus {
  background-color: #EF3737;
  background-image: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  text-shadow: none;
  text-decoration: none;
}
.btn__tertiary:active {
  background-color: #f36666;
}
.btn__tertiary::before, .btn__tertiary::after {
  font-family: FontAwesome;
  font-size: 115%;
  padding: 0 3px;
  position: relative;
  opacity: 0.5;
}
.btn__tertiary:hover::before, .btn__tertiary:hover::after {
  opacity: 1;
}
@media screen and (max-width: 320px) {
  .btn__tertiary {
    width: 100%;
    display: block;
    clear: both;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.btn {
  background-color: #7fc473;
  text-shadow: none;
  background-color: #5eb54f;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#78c16c), to(#5eb54f));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #78c16c, #5eb54f);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  /* FF3.6 */
  /* IE10 */
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #78c16c, #5eb54f);
  background-image: linear-gradient(top, #78c16c, #5eb54f);
  -webkit-appearance: none;
  border: 1px solid rgba(47, 93, 39, 0.55);
  border-radius: 3px;
  padding: 9px 16px;
  padding-bottom: 11px;
  margin: 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25), 0px 0px 12px #4a933e;
  text-decoration: none;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font:  18px / 1.43822 "Source Sans Pro", arial, sans-serif;
  font:  1.125rem / 1.43822 "Source Sans Pro", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  font-weight: 400;
  min-width: 110.76923px;
  width: auto;
  display: inline-block;
}
.btn:hover, .btn:active, .btn:focus {
  background-color: #5eb54f;
  background-image: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  text-shadow: none;
  text-decoration: none;
}
.btn:active {
  background-color: #7fc473;
}
.btn::before, .btn::after {
  font-family: FontAwesome;
  font-size: 115%;
  padding: 0 3px;
  position: relative;
  opacity: 0.5;
}
.btn:hover::before, .btn:hover::after {
  opacity: 1;
}
@media screen and (max-width: 320px) {
  .btn {
    width: 100%;
    display: block;
    clear: both;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.btn__secondary {
  background-color: #7e98c2;
  text-shadow: none;
  background-color: #5b7cb2;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7792bf), to(#5b7cb2));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #7792bf, #5b7cb2);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  /* FF3.6 */
  /* IE10 */
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #7792bf, #5b7cb2);
  background-image: linear-gradient(top, #7792bf, #5b7cb2);
  -webkit-appearance: none;
  border: 1px solid rgba(45, 65, 96, 0.55);
  border-radius: 3px;
  padding: 9px 16px;
  padding-bottom: 11px;
  margin: 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25), 0px 0px 12px #466494;
  text-decoration: none;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font:  18px / 1.43822 "Source Sans Pro", arial, sans-serif;
  font:  1.125rem / 1.43822 "Source Sans Pro", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  font-weight: 400;
  min-width: 110.76923px;
  width: auto;
  display: inline-block;
}
.btn__secondary:hover, .btn__secondary:active, .btn__secondary:focus {
  background-color: #5b7cb2;
  background-image: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  text-shadow: none;
  text-decoration: none;
}
.btn__secondary:active {
  background-color: #7e98c2;
}
.btn__secondary::before, .btn__secondary::after {
  font-family: FontAwesome;
  font-size: 115%;
  padding: 0 3px;
  position: relative;
  opacity: 0.5;
}
.btn__secondary:hover::before, .btn__secondary:hover::after {
  opacity: 1;
}
@media screen and (max-width: 320px) {
  .btn__secondary {
    width: 100%;
    display: block;
    clear: both;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.btn__flat {
  background-image: none;
}

.btn__icon--next, .btn__icon--prev {
  background-image: none;
  background-color: #333;
}

/* ######################################################### */
/*                 OVERRIDES FOR TABLES                     */
/* ######################################################### */
td .btn, td .btn__secondary {
  margin-top: 3px;
  margin-bottom: 3px;
}

/* ######################################################### */
/*                     OVER SIZE BUTTONS                     */
/* ######################################################### */
.btn__large {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 640px) {
  .btn__large {
    max-width: 320px;
    margin-left: 0;
  }
}

.btn__full {
  width: 100%;
  margin: auto;
}

/* ######################################################### */
/*                  SPECIAL CASE BUTTONS                     */
/* ######################################################### */
.btn__delete {
  background-color: white;
  text-shadow: none;
  background-color: #fefefe;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#fefefe));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, white, #fefefe);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  /* FF3.6 */
  /* IE10 */
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, white, #fefefe);
  background-image: linear-gradient(top, white, #fefefe);
  -webkit-appearance: none;
  border: 1px solid rgba(190, 190, 190, 0.55);
  border-radius: 3px;
  padding: 9px 5px;
  padding-bottom: 11px;
  margin: 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25), 0px 0px 12px #e5e5e5;
  text-decoration: none;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font:  18px / 1.43822 "Source Sans Pro", arial, sans-serif;
  font:  1.125rem / 1.43822 "Source Sans Pro", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  font-weight: 400;
  min-width: 110.76923px;
  width: auto;
  display: inline-block;
  text-shadow: none;
  box-shadow: none;
  color: #900;
  text-decoration: none;
}
.btn__delete:hover, .btn__delete:active, .btn__delete:focus {
  background-color: #fefefe;
  background-image: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  text-shadow: none;
  text-decoration: none;
}
.btn__delete:active {
  background-color: white;
}
.btn__delete::before, .btn__delete::after {
  font-family: FontAwesome;
  font-size: 115%;
  padding: 0 3px;
  position: relative;
  opacity: 0.5;
}
.btn__delete:hover::before, .btn__delete:hover::after {
  opacity: 1;
}
@media screen and (max-width: 320px) {
  .btn__delete {
    width: 100%;
    display: block;
    clear: both;
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* ######################################################### */
/*                   FORMS SETTINGS BASIC                    */
/* Dependencies:
    1. _variables.scss
*/
/* ######################################################### */
input, select {
    /* clashes with radios - needs to be :not
    -webkit-appearance: none;

    */
  font:  16px / 1.618 "Open Sans", arial, sans-serif;
  font:  1rem / 1.618 "Open Sans", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  margin-bottom: 0;
  font-weight: 600;
  padding: 10px;
  border: 1px solid #b3b3b3;
  border-radius: 2px;
  box-shadow: none;
  -webkit-transition: all 175ms ease-in-out;
          transition: all 175ms ease-in-out;
  line-height: 1.618;
  width: 100%;
  color: #333;
}
input:focus, select:focus {
  background-color: #fff;
  box-shadow: 0px 0px 6px 0px #ffc16d;
}

option {
  background-color: #fff;
}

form {
  padding: 10px;
  margin-bottom: 3em;
}

fieldset {
  margin-bottom: 16px;
  margin-bottom: 1.618em;
  border-radius: 1px;
}
fieldset fieldset {
  padding: 0;
  border: none;
  position: relative;
}
fieldset fieldset legend {
  color: #666;
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  line-height: 1.618;
}
fieldset.narrative {
  margin-bottom: 1.618rem;
}

label {
  color: #666;
  float: left;
  position: relative;
  margin-bottom: 1.618rem;
  width: 100%;
}

.checkbox, .radio {
  padding-left: 1.5em;
  position: relative;
}
.checkbox input, .radio input {
  width: auto;
  height: auto;
  border: none;
  position: absolute;
  left: 0;
  top: 2px;
  padding: 0;
}
.checkbox input:focus, .radio input:focus {
  background-color: inherit;
  box-shadow: none;
}

.disable-spinner[type=number] {
  -moz-appearance: textfield;
}
.disable-spinner[type=number]::-webkit-inner-spin-button, .disable-spinner[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ######################################################### */
/*                 BASIC SINGLE INPUT FORMS                  */
/* ######################################################### */
@media screen and (min-width: 320px) {
  .form--simple, .form--simple--fixed {
    padding-right: 121.76923px;
    position: relative;
  }
  .form--simple input, .form--simple--fixed input {
    margin-right: 73.84615px;
  }
  .form--simple .btn, .form--simple--fixed .btn, .form--simple .btn--secondary, .form--simple--fixed .btn--secondary {
    right: 10px;
    bottom: 12px;
    position: absolute;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

fieldset {
  /* div */
}
fieldset .form--simple, fieldset .form--simple--fixed {
  padding-right: 111.76923px;
}
fieldset .form--simple .btn, fieldset .form--simple--fixed .btn, fieldset .form--simple .btn--secondary, fieldset .form--simple--fixed .btn--secondary {
  bottom: 2px;
  right: 0;
}

.form--simple--fixed {
  max-width: 320px;
}

/* ######################################################### */
/*                        MULTI-INPUT FORMS                  */
/* ######################################################### */
.form--multi label {
  margin-bottom: 1em;
  display: block;
}

.input--small {
  display: block;
}

.input--v-small {
  display: block;
}

@media screen and (min-width: 320px) {
  .form--multi__submit {
    margin-left: 10px;
  }

  .input--small {
    max-width: 221.53846px;
  }

  .input--v-small {
    max-width: 147.69231px;
  }
}
.input--numeric {
  text-align: right;
}

/* ######################################################### */
/*                  OVERRIDES FOR SEARCH FORMS               */
/* ######################################################### */
.search--label {
  position: relative;
}
.search--label::before {
  font-family: FontAwesome;
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: 4px;
  opacity: 0.3;
  z-index: 999;
}
.search--label:focus {
  opacity: 0;
}
.search--label input {
  padding-left: 24px;
}

/* #########################################################
                          VALIDATION
Using placeholders as this is oftn handled by third party tools, so we mmay not have access to outed classes
######################################################### */
/*
** USAGE:
.field-validation-error {
    @extend %validation--message;
}
*/
/* #####################################################

Local Variables

###################################################### */
/* #####################################################
Font declarations
###################################################### */
@font-face {
  font-family: 'harabarahanditalic';
  src: url("//www.slimmingworld.com/assets/fonts/harabarahand-webfont.eot");
  src: url("//www.slimmingworld.com/assets/fonts/harabarahand-webfont.eot?#iefix") format("embedded-opentype"), url("//www.slimmingworld.com/assets/fonts/harabarahand-webfont.woff2") format("woff2"), url("//www.slimmingworld.com/assets/fonts/harabarahand-webfont.woff") format("woff"), url("//www.slimmingworld.com/assets/fonts/harabarahand-webfont.ttf") format("truetype"), url("//www.slimmingworld.com/assets/fonts/harabarahand-webfont.svg#harabarahanditalic") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ####################################################

copied from group register - should be in lib?

#####################################################*/
.browser-warning {
  position: absolute;
  top: 1em;
  margin: auto;
  text-align: center;
  width: 100%;
  padding: 1em;
  background-color: #fff;
  z-index: 9999999999999999;
}

html {
  background-color: #dfdfdf;
  background-image: url("../images/backgrounds/768/primary.jpg");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100%;
}
@media screen and (min-width: 520px) {
  html {
    box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.75);
  }
}

@media screen and (min-width: 320px) {
  html.noaccount, html.hadaccount {
    background-image: url("../images/backgrounds/320/primary.jpg");
  }

  html.register1 {
    background-image: url("../images/backgrounds/320/primary.jpg");
  }

  html.register2 {
    background-image: url("../images/backgrounds/320/primary.jpg");
  }

  html, html.register2 {
    background-image: url("../images/backgrounds/320/primary.jpg");
  }
}
@media screen and (min-width: 768px) {
  html.noaccount, html.hadaccount {
    background-image: url("../images/backgrounds/768/primary.jpg");
  }

  html.register1 {
    background-image: url("../images/backgrounds/768/primary.jpg");
  }

  html.register2 {
    background-image: url("../images/backgrounds/768/primary.jpg");
  }

  html, html.register2 {
    background-image: url("../images/backgrounds/768/primary.jpg");
  }
}
@media screen and (min-width: 1280px) {
  html.noaccount, html.hadaccount {
    background-image: url("../images/backgrounds/1280/primary.jpg");
  }

  html.register1 {
    background-image: url("../images/backgrounds/1280/primary.jpg");
  }

  html.register2 {
    background-image: url("../images/backgrounds/1280/primary.jpg");
  }

  html, html.register2 {
    background-image: url("../images/backgrounds/1280/primary.jpg");
  }
}
@media screen and (min-width: 1920px) {
  html.noaccount, html.hadaccount {
    background-image: url("../images/backgrounds/1920/primary.jpg");
  }

  html.register1 {
    background-image: url("../images/backgrounds/1920/primary.jpg");
  }

  html.register2 {
    background-image: url("../images/backgrounds/1920/primary.jpg");
  }

  html, html.register2 {
    background-image: url("../images/backgrounds/1920/primary.jpg");
  }
}
body {
  padding: 10px;
  padding-bottom: 200px;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  width:100%;
    max-width:960px;
  margin: auto;
}

.intro {
  display: block;
  margin: 1em;
  max-width: 960px;
  padding: 2em;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 0.5em;
  border: 2px dotted #D5DC31;
  position: relative;
  top: 30px;
  overflow: hidden;
}

.instructions {
  max-width: 480px;
}
.instructions p {
  font:  16px / 1.618 "Source Sans Pro", arial, sans-serif;
  font:  1rem / 1.618 "Source Sans Pro", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  text-align: center;
  position: relative;
  margin-top: 12px;
  display: block;
  line-height: 1.2;
}
.instructions .btn {
  margin: 1.5em auto;
  clear: both;
  display: block;
  max-width: 400px;
}
.instructions b {
  font-family: harabarahand;
  color: #D5DC31;
  font-size: 178%;
  margin-right: 12px;
  text-shadow: 1px 1px 0px #fff;
}

@media screen and (min-width: 600px) {
  .instructions {
    margin-left: 230px;
    margin-right: 24px;
    position: absolute;
  }
}
.js-step-1 {
  margin-top: 24px;
}

.js-step-2 {
  opacity: 0;
  display: none;
}

.fff-logo {
  text-align: center;
  margin: auto;
  display: block;
}
@media screen and (min-width: 600px) {
  .fff-logo {
    float: left;
    clear: none;
    margin: 0em 3em 1em 1em;
  }
}

.menu, .theme__card {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

/* ##############################################

Footer with party bag info etc

###############################################*/
/* footer */
.theme--supplemental {
  position: absolute;
  position: fixed;
  z-index: 999999;
  left: 0;
  right: 0;
  top: -250px;
  height: 130px;
  background: rgba(24, 23, 22, 0.95);
  text-align: center;
  padding: 0.5em 1em 4em 1em;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 740px) {
  .theme--supplemental {
    background: rgba(24, 23, 22, 0.95) url(../images/bunting.png) top right no-repeat;
  }
}
.theme--supplemental p {
  color: #fff;
  margin-bottom: 0;
  padding: 0;
}
.theme--supplemental .btn {
  margin: 0;
}
.theme--supplemental #email-invite {
  box-shadow: 0 0 12px 3px rgba(0, 0, 0, 0.6);
}
.theme--supplemental ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 740px) {
  .theme--supplemental ul {
    background: transparent url(http://images.slimmingworld.com/landing/free-food-february-2015/balloons.png) top -2px left no-repeat;
    padding-left: 62px;
  }
}
.theme--supplemental li {
  display: inline-block;
}

@-webkit-keyframes arrow-fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}

@keyframes arrow-fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}
.theme--supplemental__header {
  color: #fff;
  outline: 1px solid #333;
  padding: 6px;
  text-shadow: 1px 1px 1px #333;
  cursor: pointer;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.65);
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  text-align: right;
  box-shadow: 0 6px 4px rgba(0, 0, 0, 0.35);
}
@media screen and (min-width: 361px) {
  .theme--supplemental__header {
    text-align: center;
  }
  .theme--supplemental__header strong {
    top: -4px;
  }
}
@media screen and (max-width: 640px) {
  .theme--supplemental__header {
    font-size: 105%;
    padding: 12px 6px;
  }
}
.theme--supplemental__header strong {
  font-size: 80%;
  color: #fff;
  position: relative;
  display: inline-block;
  clear: none;
  -webkit-animation: arrow-fade 2.0s infinite;
          animation: arrow-fade 2.0s infinite;
}
.theme--supplemental__header:hover strong {
  -webkit-animation: none;
          animation: none;
  color: #D5DC31;
}

.themes-nav {
  position: absolute;
  top: 100%;
  left: 4px;
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  display: block;
  z-index: 9999999;
  padding: 2px 12px;
}
@media screen and (max-width: 520px) {
  .themes-nav {
    width: 40px;
    padding: 3px 6px;
    min-width: 40px;
  }
  .themes-nav i {
    display: none;
  }
}
.themes-nav i {
  font-style: normal;
}
.themes-nav:before {
  text-align: center;
  content: "\2039 \2039";
  margin-top: -3px;
  display: inline-block;
  clear: none;
}

.party-resources {
  width: 100%;
  max-width: 480px;
  float: left;
}
.party-resources h2 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
}
.party-resources li {
  text-align: left;
  float: left;
  clear: none;
  width: 50%;
}
.party-resources a {
  color: #fff;
  text-decoration: underline;
}
.party-resources a:hover {
  text-decoration: none;
}

@media screen and (min-width: 736px) {
  .theme--supplemental {
    padding-top: 2em;
  }

  .party-invitations {
    float: right;
  }
}
.pdf {
  position: relative;
  padding-left: 22px;
  margin-left: 12px;
}
.pdf:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  padding: 2px;
  outline: 1px solid #333;
  top: 1px;
  width: 16px;
  height: 16px;
  background: #fff url(../images/svg/pdf.svg) center left no-repeat;
  background-size: contain;
}

/*####################################################

Close footer

####################################################*/
.logo {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 200px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .logo {
    position: fixed;
  }
}

.fff-header {
  width: 100%;
}

/* ##############################################

Theme 'Cards' layout

###############################################*/
.theme__holder {
  position: relative;
  width: 100%;
  top: 80px;
}

.theme__card {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  opacity: 1;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.45);
  margin: 12px 1.5%;
  border: 1px solid #D5DC31;
  width: 30.3%;
  float: left;
  padding: 0;
  display: block;
  min-height: 180px;
  background: #fff url("data:image/gif;base64,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") center center no-repeat;
  -webkit-transition: all 125ms ease;
          transition: all 125ms ease;
}
.theme__card:hover {
  margin-top: 6px;
  margin-bottom: 10px;
}
.theme__card img {
  width: 100%;
  margin: 0;
  padding: 3px;
  padding-bottom: 0;
  padding-top: 0;
  background-color: transparent;
}
@media screen and (max-width: 320px) {
  .theme__card {
    width: 96%;
    margin: 8px 2%;
  }
}
@media screen and (min-width: 321px) and (max-width: 840px) {
  .theme__card {
    width: 46%;
    margin: 8px 2%;
  }
}
.theme__card a {
  display: block;
}
.theme__card.visited {
  background-color: #D5DC31;
}

.theme__card__header {
  font-size: 125%;
  background-color: #404040;
  font-family: 'harabarahanditalic';
  color: #fff;
  text-align: center;
  padding: 0.66em 1em 0.5em 1em;
  margin: 3px 3px 0 3px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  text-shadow: 1px 1px 1px #333;
}

/* ##############################################

Menu 'Cards' layout

###############################################*/
/* ##################################################

Recipes

 ################################################## */
.loader {
  margin: 3em auto;
  display: block;
}

.recipe__holder {
  float: right;
  width: 62%;
  clear: none;
  opacity: 0;
  position: relative;
  top: -2em;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1em;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.25);
  z-index: 99990 !important;
  border: 1px solid #999;
}
.recipe__holder #main {
  background: #fff url(../images/recipes/paper-bg.gif) center center repeat;
  padding: 1em;
  border: 3px double #e5d4d4;
  box-shadow: inset 0px 0px 6px 1px rgba(255, 255, 255, 0.35);
}
.recipe__holder img {
  display: none;
}
.recipe__holder h1 {
  background: none !important;
  font: 2.25em/1.1 'Sorts Mill Goudy', serif;
  color: #ED1941;
  border-bottom: 2px dotted #999;
}
.recipe__holder h2 {
  font: 1.75em/1.1 'Sorts Mill Goudy', serif;
  color: #ED1941;
  border-bottom: 2px dotted #999;
}
.recipe__holder ol li, .recipe__holder ul li {
  font:  16px / 1.618 "Source Sans Pro", arial, sans-serif;
  font:  1rem / 1.618 "Source Sans Pro", arial, sans-serif;
  margin-bottom: 25.888px;
  margin-bottom: 1.618rem;
  list-style-position: inside;
}
.recipe__holder ol {
  list-style: decimal;
}
@media screen and (max-width: 540px) {
  .recipe__holder {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 64px 0 #000;
    top: -72px;
  }
}
.recipe__holder .panel {
  border: 1px solid #e5e0e0;
  background: rgba(229, 227, 226, 0.75);
  margin: 1.5em 0em;
  padding: 0.5em;
  border-radius: 0 0 4px 4px;
}
.recipe__holder .panel ul {
  list-style: none;
  margin-bottom: 0;
}
.recipe__holder .panel ul li {
  font-size: 90%;
  margin-bottom: 6px;
}
.recipe__holder .panel li {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 0.5em;
  min-width: 40%;
  white-space: nowrap;
  padding-left: 26px;
  background: transparent url(http://www.slimmingworld.com/assets/images/ui-elements/recipe-icons.png) 0px 3px no-repeat;
}
.recipe__holder .panel .serves-title {
  background-position: 0px -45px;
}
.recipe__holder .panel .syns {
  white-space: nowrap;
  background-position: 0px -100px;
}
.recipe__holder .panel .syns ul {
  display: inline;
  font-weight: bold;
}
.recipe__holder .panel .syns ul p {
  display: block;
  font-size: 80%;
  clear: left;
  margin-bottom: -3em;
  background-color: #E9E8E7;
  white-space: normal;
  padding: 1em;
  margin-left: -3em;
}
.recipe__holder .panel .recipe-vegetarian__title {
  background-position: 0px -159px;
}

.recipe--image {
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 9999 !important;
}

.printCTA, .ctasignup, #recipe-information img, #video {
  display: none;
}

.secondary-header {
  font-family: 'Sorts Mill Goudy', serif;
}

.fff-panel {
  padding: 10px;
  margin: 10px;
  border-radius: 2px;
  width: 100%;
  float: left;
}

/* #####################################################

Local Variables

###################################################### */
/* ############################################################

them bg images

 ############################################################ */
.theme-bg {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0;
  background: transparent url(../images/recipes/menu-pics/fakeaway-aroundworld.jpg) center center no-repeat;
  background-size: cover;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.theme-bg.hangover {
  background-image: url(../images/recipes/menu-pics/hangover-sml.jpg);
}
.theme-bg.pancake {
  background-image: url(../images/recipes/menu-pics/pancake-sml.jpg);
}
.theme-bg.sunday {
  background-image: url(../images/recipes/menu-pics/sunday-sml.jpg);
}
.theme-bg.valentines {
  background-image: url(../images/recipes/menu-pics/valentines-sml.jpg);
}
.theme-bg.dinner-party {
  background-image: url(../images/recipes/menu-pics/dinner-party-sml.jpg);
}
.theme-bg.tea-party {
  background-image: url(../images/recipes/menu-pics/tea-party-sml.jpg);
}
.theme-bg.chinese {
  background-image: url(../images/recipes/menu-pics/chinese-sml.jpg);
}
.theme-bg.playdateparty {
  background-image: url(../images/recipes/menu-pics/playdateparty-sml.jpg);
}
.theme-bg.brunch {
  background-image: url(../images/recipes/menu-pics/brunch-sml.jpg);
}
.theme-bg.boys-night-in-budget {
  background-image: url(../images/recipes/menu-pics/boys-night-in-budget-sml.jpg);
}
.theme-bg.purse-friendly-girls-night-in {
  background-image: url(../images/recipes/menu-pics/purse-friendly-girls-night-in-sml.jpg);
}
.theme-bg.boardroom-buffet {
  background-image: url(../images/recipes/menu-pics/boardroom-buffet-sml.jpg);
}
.theme-bg.brunch-party-comfort-food {
  background-image: url(../images/recipes/menu-pics/brunch-party-comfort-food-sml.jpg);
}
.theme-bg.hangover-party-comfort-food {
  background-image: url(../images/recipes/menu-pics/hangover-party-comfort-food-sml.jpg);
}
.theme-bg.purse-friendly {
  background-image: url(../images/recipes/menu-pics/purse-friendly-sml.jpg);
}
@media screen and (min-width: 1080px) {
  .theme-bg.hangover {
    background-image: url(../images/recipes/menu-pics/hangover.jpg);
  }
  .theme-bg.pancake {
    background-image: url(../images/recipes/menu-pics/pancake.jpg);
  }
  .theme-bg.sunday {
    background-image: url(../images/recipes/menu-pics/sunday.jpg);
  }
  .theme-bg.valentines {
    background-image: url(../images/recipes/menu-pics/valentines.jpg);
  }
  .theme-bg.dinner-party {
    background-image: url(../images/recipes/menu-pics/dinner-party.jpg);
  }
  .theme-bg.tea-party {
    background-image: url(../images/recipes/menu-pics/tea-party.jpg);
  }
  .theme-bg.chinese {
    background-image: url(../images/recipes/menu-pics/chinese.jpg);
  }
  .theme-bg.playdateparty {
    background-image: url(../images/recipes/menu-pics/playdateparty.jpg);
  }
  .theme-bg.brunch {
    background-image: url(../images/recipes/menu-pics/brunch.jpg);
  }
  .theme-bg.boys-night-in-budget {
    background-image: url(../images/recipes/menu-pics/boys-night-in-budget.jpg);
  }
  .theme-bg.purse-friendly-girls-night-in {
    background-image: url(../images/recipes/menu-pics/purse-friendly-girls-night-in.jpg);
  }
  .theme-bg.boardroom-buffet {
    background-image: url(../images/recipes/menu-pics/boardroom-buffet.jpg);
  }
  .theme-bg.brunch-party-comfort-food {
    background-image: url(../images/recipes/menu-pics/brunch-party-comfort-food.jpg);
  }
  .theme-bg.hangover-party-comfort-food {
    background-image: url(../images/recipes/menu-pics/hangover-party-comfort-food.jpg);
  }
  .theme-bg.purse-friendly {
    background-image: url(../images/recipes/menu-pics/purse-friendly.jpg);
  }
}

.theme__card__header {
  top: 3px;
  left: 3px;
}

.menu {
  opacity: 0;
  visibility: hidden;
}

.close-recipe {
  position: absolute;
  top: -31px;
  right: 4px;
  padding: 3px;
  z-index: 99999;
  font: 1.25rem / 1.618 "Source Sans Pro", sans-serif;
  cursor: pointer;
  padding: 2px 10px;
  border: 1px solid #eee;
  background-color: #ebe6e6;
  text-align: center;
  color: #666;
  text-shadow: 1px 1px 1px #fff;
  border: 1px solid #f9f9f9;
  -webkit-transform: scale(1, 0.75);
      -ms-transform: scale(1, 0.75);
          transform: scale(1, 0.75);
}
.close-recipe:hover {
  background-color: #f4f4f4;
}

.kern {
  margin-right: -3px;
}

/*#################
Basic setup
###################*/
.menu__holder {
  width: 100%;
  max-width: 560px;
  position: absolute;
}

.menu {
  max-width: 540px;
  position: relative;
  z-index: 999;
  padding: 2.5em;
  padding-top: 0;
  border-radius: 1px;
  box-shadow: 0px 0px 18px 12px rgba(0, 0, 0, 0.35);
  -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}
@media screen and (max-width: 540px) {
  .menu {
    padding-top: 0;
    padding: 1em;
    left: -2em !important;
    margin-right: -2em !important;
  }
}

.note {
  font-size: 80%;
}

.menu__card__dishes {
  margin: 0;
  position: relative;
  color: #999;
}
.menu__card__dishes a {
  width: 100%;
  display: block;
}
.menu__card__dishes a:hover {
  text-decoration: underline;
}
.menu__card__dishes a:visited {
  opacity: 0.5;
}

/*ul*/
.menu__card__dishes, .tagline, .inner-list {
  background-color: #fff;
  font: 1.45em/1.2 'Sorts Mill Goudy', serif;
  color: #23262a;
  list-style: none;
  text-align: center;
  padding: 1.754em;
  border: 3px dotted #f1f2f4;
  border-radius: 3px;
}
.menu__card__dishes li, .tagline li, .inner-list li {
  padding: 0 0 1.5em 0;
  margin-top: 1em;
}

.tagline {
  border: none;
  font-size: 90%;
  letter-spacing: -1px;
  font-style: italic;
}

.menu__card__header {
  color: #fff;
  height: 5.85em;
  width: 120%;
  max-width: 120%;
  padding: 1em 10px 4px 10px;
  margin: 0 -10%;
  position: absolute;
  top: -72px;
  left: 0;
  right: 0;
  background: transparent url(../images/svg/red-banner.svg) center center no-repeat;
  background-size: contain;
  font-family: harabarahanditalic;
  font-size: 1.5em;
  line-height: 1.95;
  text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 999999999;
}
@media screen and (max-width: 540px) {
  .menu__card__header {
    font-size: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
    top: -54px;
    line-height: 2.5;
  }
}

.inner {
  padding: 2em;
  background-color: #fff;
}

.divider {
  padding-bottom: 1em;
  position: relative;
  margin-bottom: 1.5em;
}
.divider:after {
  content: '~';
  font-family: serif;
  width: 100%;
  display: block;
  font-size: 1.5em;
  line-height: 0;
  color: #9ea5ae;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* #################

Chinese

################# */
.menu--chinese {
  background: #F8EEDE url(../images/recipes/chinese-border.gif) center center repeat;
  box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.55), 1px 1px 12px 6px rgba(35, 38, 42, 0.25);
}
.menu--chinese .inner {
  outline: 12px solid rgba(35, 38, 42, 0.15);
  background: #fff url(../images/recipes/chinese-flowers.jpg) bottom left no-repeat;
  box-shadow: 3px 3px 2em 0px rgba(35, 38, 42, 0.55);
  margin-top: -6px;
}
.menu--chinese ul {
  border-color: #7C3136;
  border-top: 0;
  padding-top: 72px;
  margin: -12px 0 0;
  background: transparent url(../images/recipes/chinese-bird.gif) top 22px right 22px no-repeat;
}
.menu--chinese li {
  padding-bottom: 0em;
}
.menu--chinese .divider {
  padding-bottom: 1.5em;
}
.menu--chinese a {
  color: #7C3136;
}
.menu--chinese .char9 {
  margin-right: -5px;
}

.chinese + header + .wrapper .recipe__holder h2, .chinese + header + .wrapper .recipe__holder h1 {
  color: #7C3136;
}

/* #################

Dinners

################# */
.menu--dinner {
  background: #F8EEDE url(../images/recipes/chinese-border.gif) center center repeat;
}
.menu--dinner .menu__card__dishes {
  border: 1px solid #c6953f;
  margin: 1.25em;
  margin-top: 2.5em;
  padding-top: 5em;
  background: #fff url(../images/recipes/dinner-party-top.gif) top 36px center no-repeat;
  box-shadow: 0 0 1em 0px #c6953f;
}
.menu--dinner li:after {
  color: #dec18d;
}
.menu--dinner a {
  color: #c6953f;
}
.menu--dinner .tagline {
  color: #FBB020;
}
.menu--dinner .tagline:after, .menu--dinner .tagline:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 72px;
  height: 72px;
  background: #fff url(../images/recipes/dinner-party-right.gif) right 4px bottom 4px no-repeat;
}
.menu--dinner .tagline:before {
  left: 0;
  right: auto;
  background: #fff url(../images/recipes/dinner-party-left.gif) left 4px bottom 4px no-repeat;
}

.dinner-party + header + .wrapper .recipe__holder h2, .dinner-party + header + .wrapper .recipe__holder h1 {
  color: #c6953f;
}

/* #################

Valentines

################# */
.menu--valentines {
  background: #EC1C25 url(../images/recipes/hessian-red.gif) top left repeat;
}
.menu--valentines .inner {
  box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.3);
}
.menu--valentines .menu__card__dishes {
  border-color: #EC1C25;
  margin-top: -20px;
}
.menu--valentines a {
  color: #EC1C25;
}
.menu--valentines .tagline {
  margin-top: 0;
  padding-top: 2.5em;
  background: transparent url(../images/recipes/heart-divider.gif) center top no-repeat;
}

/* #################

Hangover 1

################# */
.menu.menu--hangover {
  background: #2D9BD6 url(../images/recipes/check-borders.png) center center repeat;
  padding: 1.75em;
  padding-top: 0;
}
.menu.menu--hangover .inner {
  background: #fff url(../images/recipes/paper-bg.gif) center center repeat;
  padding: 8px;
  border: 1px solid #2D9BD6;
}
.menu.menu--hangover .menu__card__dishes {
  background-color: transparent;
  border: 3px solid #828b97;
  padding: 0px;
}
.menu.menu--hangover .menu__card__dishes ul {
  background-color: transparent;
  border: 1px solid #9ea5ae;
  margin: 4px;
  font-size: 95%;
}
.menu.menu--hangover li {
  list-style: none;
  padding-bottom: 0;
}
.menu.menu--hangover .divider {
  padding-bottom: 1.5em;
}
.menu.menu--hangover .tagline {
  background-color: transparent;
  color: #5A975E;
  margin-top: 3em;
}
.menu.menu--hangover a {
  color: #2D9BD6;
}
.menu.menu--hangover .inner-list {
  position: relative;
}
.menu.menu--hangover .inner-list:before, .menu.menu--hangover .inner-list:after {
  position: relative;
  opacity: 0.75;
  top: 0;
  margin: auto;
  content: '';
  width: 100%;
  display: block;
  height: 64px;
  background: transparent url(../images/recipes/hangover-curls.png) center top no-repeat;
}
.menu.menu--hangover .inner-list:after {
  background: transparent url(../images/recipes/hangover-curls-invert.png) center bottom no-repeat;
  top: auto;
  bottom: -1em;
}

.hangover + header + .wrapper .recipe__holder h2, .hangover + header + .wrapper .recipe__holder h1 {
  color: #5A975E;
}

.brunch + header + .wrapper .recipe__holder h2, .brunch + header + .wrapper .recipe__holder h1 {
  color: #2D9BD6;
}

/* #################

Hangover 2

################# */
.menu.menu--hangover-two {
  background-color: #ED3429;
}
.menu.menu--hangover-two .inner-list:after, .menu.menu--hangover-two .inner-list:before {
  background-image: url(../images/recipes/hangover-spikes.png);
}
.menu.menu--hangover-two .inner {
  border: 1px solid #ED3429;
}
.menu.menu--hangover-two .tagline {
  color: #ED3429;
}
.menu.menu--hangover-two a {
  color: #6F3922;
}

/* #################

Tea party
################# */
.menu.menu--tea-party {
  background: #B8DEC4 url(../images/recipes/dots-dark.png) center center repeat;
}
.menu.menu--tea-party .inner {
  padding: 0.65em;
  border: 1px solid #95cea7;
}
.menu.menu--tea-party .menu__card__dishes {
  border: 6px solid #c1c9e0;
  background: #fff url(../images/recipes/tpot.gif) right 12px bottom 12px no-repeat;
}
.menu.menu--tea-party .menu__card__dishes li {
  padding-bottom: 0;
}
.menu.menu--tea-party .menu__card__dishes .subheader {
  color: #275CAD;
  font-style: italic;
}
.menu.menu--tea-party .menu__card__dishes .divider {
  padding-bottom: 1.25em;
}
.menu.menu--tea-party .menu__card__dishes .divider:after {
  color: #275CAD;
}
.menu.menu--tea-party .menu__card__dishes a {
  color: #7d8ebe;
}

.tea-party + header + .wrapper .recipe__holder h2, .tea-party + header + .wrapper .recipe__holder h1 {
  color: #275CAD;
}

/* #################

Pancakes  && Fakeaway around the world

################# */
.menu.menu--around-world, .menu.menu--pancakes {
  background: #392B8A;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #392B8A), color-stop(50%, #150a55));
  background: -webkit-linear-gradient(-45deg, #392B8A 0%, #150a55 50%);
  background: -webkit-linear-gradient(315deg, #392B8A 0%, #150a55 50%);
  background: linear-gradient(135deg, #392B8A 0%, #150a55 50%);
}
.menu.menu--around-world .inner, .menu.menu--pancakes .inner {
  padding: 6px;
  position: relative;
  overflow: hidden;
  top: -6px;
}
.menu.menu--around-world .inner:after, .menu.menu--around-world .inner:before, .menu.menu--pancakes .inner:after, .menu.menu--pancakes .inner:before {
  content: '';
  position: absolute;
  right: -49px;
  bottom: -49px;
  border: 1px solid #392B8A;
  width: 96px;
  height: 96px;
  border-radius: 48px;
  background-color: #150a55;
  box-shadow: -6px -6px 0px #fff;
}
.menu.menu--around-world .inner:before, .menu.menu--pancakes .inner:before {
  right: auto;
  left: -49px;
  z-index: 9999;
  box-shadow: 6px -6px 0px #fff;
  background-color: #150a55;
}
.menu.menu--around-world .menu__card__dishes, .menu.menu--pancakes .menu__card__dishes {
  border: 3px solid  #EBBDBC;
  background: #fff url(../images/recipes/curry-style-right.png) right 6px bottom 12px no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  text-shadow: 0 0 6px #fff;
}
.menu.menu--around-world .menu__card__dishes:after, .menu.menu--around-world .menu__card__dishes:before, .menu.menu--pancakes .menu__card__dishes:after, .menu.menu--pancakes .menu__card__dishes:before {
  content: '';
  position: absolute;
  right: -55px;
  bottom: -55px;
  border: 3px solid #EBBDBC;
  width: 102px;
  height: 102px;
  border-radius: 70px;
  background-color: #fff;
}
.menu.menu--around-world .menu__card__dishes:before, .menu.menu--pancakes .menu__card__dishes:before {
  right: auto;
  left: -55px;
}
.menu.menu--around-world a, .menu.menu--pancakes a {
  color: #ED1941;
}
.menu.menu--around-world .tagline, .menu.menu--pancakes .tagline {
  color: #150a55;
  margin-top: 3em;
  background-color: transparent;
}
.menu.menu--around-world .lanterns, .menu.menu--pancakes .lanterns {
  background: transparent url(../images/recipes/curry-style-left.png) left top no-repeat;
  padding: 120px 1.1em 0 3.1em;
  margin-left: -2em;
}

.fakeaway-aroundworld + header + .wrapper .recipe__holder h2, .fakeaway-aroundworld + header + .wrapper .recipe__holder h1, .fakeaway-girls + header + .wrapper .recipe__holder h2, .fakeaway-girls + header + .wrapper .recipe__holder h1, .fakeaway-lads + header + .wrapper .recipe__holder h2, .fakeaway-lads + header + .wrapper .recipe__holder h1, .curry-heaven + header + .wrapper .recipe__holder h2, .curry-heaven + header + .wrapper .recipe__holder h1 {
  color: #150A55;
}

/* ######## Additional pancakes
################################# */
.menu.menu--pancakes {
  background: #F6CF99;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #F6CF99), color-stop(70%, #F6CF99));
  background: -webkit-linear-gradient(-45deg, #F6E8D6 0%, #F6CF99 70%);
  background: -webkit-linear-gradient(315deg, #F6E8D6 0%, #F6CF99 70%);
  background: linear-gradient(135deg, #F6E8D6 0%, #F6CF99 70%);
}
.menu.menu--pancakes .menu__card__dishes {
  background-image: none;
  padding-top: 2em;
}
.menu.menu--pancakes .tagline {
  color: #ED1941;
}
.menu.menu--pancakes a {
  color: #5375A4;
}
.menu.menu--pancakes .inner:after, .menu.menu--pancakes .inner:before {
  background-color: #F6CF99;
}

.pancake + header + .wrapper .recipe__holder h2, .pancake + header + .wrapper .recipe__holder h1 {
  color: #e28c14;
}

/* ######## Menu fakeaway
################################# */
.menu.menu--fakeaway {
  background: #452E8E url(../images/recipes/purple-zebra.gif) left top repeat;
}
.menu.menu--fakeaway .menu__card__dishes {
  background: transparent url(../images/recipes/curry-style-left.png) left top no-repeat;
  padding-top: 2em;
  border: 2px solid #CFA461;
}
.menu.menu--fakeaway .inner {
  padding: 16px;
  background: #fff url(../images/recipes/curry-style-right.png) right 12px bottom 12px no-repeat;
  box-shadow: 0 0 12px 8px rgba(0, 0, 0, 0.3);
}
.menu.menu--fakeaway .tagline {
  background-color: transparent;
}
.menu.menu--fakeaway a {
  color: #CFA461;
}
.menu.menu--fakeaway li {
  padding-bottom: 0;
}
.menu.menu--fakeaway .divider {
  padding-bottom: 2em;
}

/* #################

Menu budget // purse friendly

################# */
.menu.menu--budget {
  background: #EEE4D6;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(30%, #EEE4D6), color-stop(60%, #787A7B));
  background: -webkit-linear-gradient(-45deg, #EEE4D6 20%, #787A7B 60%);
  background: -webkit-linear-gradient(315deg, #EEE4D6 20%, #787A7B 60%);
  background: linear-gradient(135deg, #EEE4D6 20%, #787A7B 60%);
  padding: 24px;
}
.menu.menu--budget .inner {
  background-color: transparent;
  padding: 12px;
  border: 3px solid #9b7927;
  border-radius: 12px;
  position: relative;
}
.menu.menu--budget .inner:before, .menu.menu--budget .inner:after {
  width: 6px;
  height: 6px;
  content: '';
  background-color: #9b7927;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.menu.menu--budget .inner:after {
  left: auto;
  right: 0px;
}
.menu.menu--budget .menu__card__dishes {
  border: 2px solid #9b7927;
  padding: 6em 0;
  background: #fff url(../images/recipes/budget-mid.gif) center center no-repeat;
}
.menu.menu--budget .menu__card__dishes:before, .menu.menu--budget .menu__card__dishes:after {
  content: '';
  background: transparent url(../images/recipes/budget-header.gif) top center no-repeat;
  position: absolute;
  z-index: 555;
  top: 16px;
  left: 0;
  width: 100%;
  height: 105px;
}
.menu.menu--budget .menu__card__dishes:after {
  top: auto;
  bottom: 18px;
  background: transparent url(../images/recipes/budget-footer.gif) bottom center no-repeat;
}
.menu.menu--budget .menu__card__dishes li {
  padding-left: 3.5em;
  padding-right: 3.5em;
}
.menu.menu--budget .menu__card__dishes a, .menu.menu--budget .menu__card__dishes .divider:after {
  color: #9b7927;
}
.menu.menu--budget .menu__card__dishes .tagline {
  color: #61A33E;
}

/* #################

Sunday lunch

################# */
.menu.menu--sunday {
  background: #cabda7 url(../images/recipes/hessian.gif) top left repeat;
  border: 1px solid #cda096;
}
.menu.menu--sunday a, .menu.menu--sunday .divider, .menu.menu--sunday .divider:after {
  color: #F89B1C;
}
.menu.menu--sunday li {
  padding-bottom: 0;
}
.menu.menu--sunday .divider {
  padding-bottom: 1.5em;
}
.menu.menu--sunday .inner {
  padding: 10px;
}
.menu.menu--sunday .menu__card__dishes {
  border: 2px solid #894E41;
  padding-top: 4.5em;
  background: transparent url(../images/recipes/sunday-header.gif) top 24px center no-repeat;
}
.menu.menu--sunday .tagline {
  margin-top: 3em;
  color: #894E41;
}

/* ######################

Menu Lads Only

#################### */
.menu.menu--lads-only {
  background: #452E8E url(../images/recipes/lads.gif) left top repeat;
}
.menu.menu--lads-only .menu__card__dishes {
  background: transparent url(../images/recipes/stars.gif) center top 70px no-repeat;
  padding: 5em 0 5em 0;
  border: 2px solid #78787d;
}
.menu.menu--lads-only .inner {
  padding: 0px;
  background: #fff url(../images/recipes/stars.gif) center bottom 70px no-repeat;
  box-shadow: 0 0 12px 8px rgba(0, 0, 0, 0.3);
}
.menu.menu--lads-only a {
  color: #ff0000;
}
.menu.menu--lads-only li {
  padding-bottom: 0;
}
