/*===========================================================================
  SCSS
===========================================================================*/
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Vendor Prefixes MIXIN - USE - @include vendor-prefix('transition', 'all 0.2s ease-in-out'); */
/* Breakpoints MIXIN - USE - @include breakpoint-max-($tabletScreen); */
/* Vertical Align MIXIN - USE - @include vertical-align; */
/* Cross Browser Inline-Block MIXIN */
/* Cross Browser Opactity MIXIN */
/* Clearfix MIXIN */
.intro {
  min-height: 510px;
  position: relative;
  width: 960px;
  margin: 0 auto;
}

@media only screen and (max-width: 1004px) {
  .intro {
    width: 100%;
    padding: 20px 0 0 0;
  }
}

@media only screen and (max-width: 768px) {
  .intro {
    min-height: 400px;
    height: 400px;
  }
}

@media only screen and (max-width: 568px) {
  .intro {
    min-height: auto;
    height: auto;
  }
}

.intro-title-left {
  position: absolute;
  width: 426px;
  height: 433px;
  left: 0px;
  top: 0px;
  z-index: 10;
}

@media only screen and (max-width: 1004px) {
  .intro-title-left {
    width: 40%;
    left: 5%;
    top: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .intro-title-left {
    height: 400px;
  }
}

@media only screen and (max-width: 568px) {
  .intro-title-left {
    display: none;
  }
}

.intro-title {
  position: absolute;
  background: url(../img/intro-title.png) no-repeat;
  width: 550px;
  height: 557px;
  right: -30px;
  top: -50px;
  z-index: 10;
  background-size: contain;
}

@media only screen and (max-width: 1004px) {
  .intro-title {
    width: 55%;
    right: 0;
    top: -20px;
    background: url(../img/intro-title.png) no-repeat;
    background-size: contain;
  }
}

@media only screen and (max-width: 768px) {
  .intro-title {
    height: 400px;
  }
}

@media only screen and (max-width: 568px) {
  .intro-title {
    position: relative;
    width: 100%;
    height: 350px;
    right: auto;
    background-size: contain;
  }
}

.wheat1 {
  position: absolute;
  background: url(../img/wheat1.png) no-repeat;
  width: 191px;
  height: 131px;
  left: -10px;
  bottom: 180px;
  z-index: 9;
  -webkit-animation: sway 5s ease-in-out 3s infinite;
  -moz-animation: sway 5s ease-in-out 3s infinite;
  -o-animation: sway 5s ease-in-out 3s infinite;
}

@media only screen and (max-width: 768px) {
  .wheat1 {
    display: none;
  }
}

.wheat2 {
  position: absolute;
  background: url(../img/wheat2.png) no-repeat;
  width: 152px;
  height: 122px;
  left: 28px;
  bottom: 180px;
  z-index: 9;
  -webkit-animation: sway 7s ease-in-out 5s infinite;
  -moz-animation: sway 7s ease-in-out 5s infinite;
  -o-animation: sway 7s ease-in-out 5s infinite;
}

@media only screen and (max-width: 768px) {
  .wheat2 {
    display: none;
  }
}

.intro-cloud1 {
  background: url(../img/cloud2.svg) no-repeat;
  width: 94px;
  height: 43px;
  background-size: contain;
  position: absolute;
  top: 110px;
  left: -20px;
  -webkit-animation: shake 50s linear infinite;
  -moz-animation: shake 50s linear infinite;
  -o-animation: shake 50s linear infinite;
}

@media only screen and (max-width: 1004px) {
  .intro-cloud1 {
    display: none;
  }
}

.intro-cloud2 {
  background: url(../img/cloud1.svg) no-repeat;
  width: 45px;
  height: 20px;
  background-size: contain;
  position: absolute;
  top: 0px;
  left: 160px;
  -webkit-animation: shake 60s linear infinite;
  -moz-animation: shake 60s linear infinite;
  -o-animation: shake 60s linear infinite;
}

@media only screen and (max-width: 1004px) {
  .intro-cloud2 {
    display: none;
  }
}

.intro-cloud3 {
  background: url(../img/cloud2.svg) no-repeat;
  width: 104px;
  height: 48px;
  background-size: contain;
  position: absolute;
  top: 75px;
  right: -10px;
  -webkit-animation: shake 60s linear infinite;
  -moz-animation: shake 60s linear infinite;
  -o-animation: shake 60s linear infinite;
}

@media only screen and (max-width: 1004px) {
  .intro-cloud3 {
    display: none;
  }
}

.intro-cloud4 {
  background: url(../img/cloud2.svg) no-repeat;
  width: 49px;
  height: 22px;
  background-size: contain;
  position: absolute;
  top: 180px;
  right: -25px;
  -webkit-animation: shake 80s linear infinite;
  -moz-animation: shake 80s linear infinite;
  -o-animation: shake 80s linear infinite;
}

@media only screen and (max-width: 1004px) {
  .intro-cloud4 {
    display: none;
  }
}

.intro-cloud5 {
  background: url(../img/cloud1.svg) no-repeat;
  width: 64px;
  height: 29px;
  background-size: contain;
  position: absolute;
  bottom: 100px;
  right: 35px;
  -webkit-animation: shake 60s linear infinite;
  -moz-animation: shake 60s linear infinite;
  -o-animation: shake 60s linear infinite;
}

@media only screen and (max-width: 1004px) {
  .intro-cloud5 {
    display: none;
  }
}

.our-goodness-panel {
  width: 50%;
  float: left;
  background: url(../img/goodness-background.png) 100% 50% no-repeat;
  height: 380px;
  position: relative;
}

@media only screen and (max-width: 1004px) {
  .our-goodness-panel {
    width: 100%;
    float: none;
    height: auto;
    overflow: hidden;
    padding: 10px 0 30px 0;
    background-size: cover;
  }
}

.our-goodness-panel .goodness-content {
  width: 480px;
  height: 380px;
  padding: 20px 0 0 0;
  float: right;
  position: relative;
  background: url(../img/goodness-content.png) 0px 50px no-repeat;
}

@media only screen and (max-width: 1004px) {
  .our-goodness-panel .goodness-content {
    width: 100%;
    float: none;
    height: auto;
    background: url(../img/goodness-content.png) 50% 50px no-repeat;
  }
}

@media only screen and (max-width: 568px) {
  .our-goodness-panel .goodness-content {
    background: url(../img/mobile/goodness-content.png) 50% 80px no-repeat;
  }
}

.our-goodness-panel .goodness-content ul {
  position: absolute;
  bottom: 5px;
  left: 0px;
  text-align: center;
}

@media only screen and (max-width: 1004px) {
  .our-goodness-panel .goodness-content ul {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 200px 0 0 30px;
  }
}

.our-goodness-panel .goodness-content ul li {
  /* float: left; */
  display: inline-block;
  margin: 0 10px 0 0;
}

.our-goodness-panel .goodness-content ul li:nth-child(1) {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

.our-goodness-panel .goodness-content ul li:nth-child(2) {
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
}

.our-goodness-panel .goodness-content ul li:nth-child(3) {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}

.our-goodness-panel .goodness-content ul li:nth-child(4) {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}

.our-goodness-panel .goodness-content ul li:nth-child(5) {
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
}

.our-goodness-panel .goodness-content ul li:nth-child(6) {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

@media only screen and (max-width: 1004px) {
  .our-goodness-panel .goodness-content ul li {
    float: none;
    display: inline-block;
  }
}

.our-goodness-panel .goodness-content ul li a {
  background: url(../img/link-background.png) 100% 50% no-repeat;
  line-height: 25px;
  font-family: 'fs_mebold';
  font-size: 15px;
  color: #702380;
  height: 27px;
  margin: 0 0 10px;
  display: inline-block;
  padding: 0 20px 0 10px;
  text-decoration: none;
}

@media only screen and (max-width: 1004px) {
  .our-goodness-panel .goodness-content ul li a {
    font-size: 14px;
  }
}

.goodness-content h2,
.community-content h2 {
  text-align: center;
  color: #FFF;
  font-size: 40px;
  margin: 0 0 20px;
  text-transform: lowercase;
  font-family: 'Amatic SC', cursive;
}

.our-community-panel {
  width: 50%;
  float: left;
  background: url(../img/community-background.png) 0% 50% no-repeat;
  height: 380px;
  position: relative;
}

@media only screen and (max-width: 1004px) {
  .our-community-panel {
    float: none;
    width: 100%;
  }
}

.community-content {
  width: 480px;
  float: left;
  height: 380px;
  padding: 20px 0 0 0;
  position: relative;
  background: url(../img/community-content.png) 30px 55px no-repeat;
}

@media only screen and (max-width: 1004px) {
  .community-content {
    float: none;
    width: 100%;
    text-align: center;
    background-size: cover;
    background: url(../img/mobile/community-content.png) 50% 80px no-repeat;
  }
}

@media only screen and (max-width: 568px) {
  .community-content {
    width: 100%;
    background-size: 90%;
  }
}

.community-content ul {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

@media only screen and (max-width: 1004px) {
  .community-content ul {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 230px 0 0 0;
  }
}

@media only screen and (max-width: 568px) {
  .community-content ul {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 200px 0 0 0;
  }
}

.community-content ul li {
  float: left;
  margin: 0 0 0 30px;
}

.community-content ul li:nth-child(1) {
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
}

.community-content ul li:nth-child(2) {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

.community-content ul li:nth-child(3) {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}

.community-content ul li:nth-child(4) {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}

.community-content ul li:nth-child(5) {
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
}

.community-content ul li:nth-child(6) {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

@media only screen and (max-width: 1004px) {
  .community-content ul li {
    float: none;
    display: inline-block;
    margin: 0 10px;
  }
}

@media only screen and (max-width: 568px) {
  .community-content ul li {
    margin: 0 0 0 20px;
  }
}

.community-content ul li a {
  background: url(../img/link-background.png) 100% 50% no-repeat;
  line-height: 27px;
  font-size: 15px;
  color: #702380;
  height: 27px;
  margin: 0 0 15px;
  display: inline-block;
  padding: 0 20px 0 10px;
  text-decoration: none;
}

@media only screen and (max-width: 1004px) {
  .community-content ul li a {
    font-size: 14px;
  }
}

.community-content ul li.extra-margin {
  margin: 0 0 0 80px;
}

@media only screen and (max-width: 1004px) {
  .community-content ul li.extra-margin {
    margin: 0 0 0 10px;
  }
}

.our-products {
  background: red url(../img/products-background.png) center center no-repeat;
  background-size: cover;
  text-align: center;
  text-transform: uppercase;
  padding: 45px 0 55px 0;
}

.our-products h2 {
  color: #FFF;
  font-size: 40px;
  margin: 0 0 20px;
  font-family: 'Amatic SC', cursive;
}

.product-carousel {
  width: 800px;
  margin: 0 auto 50px auto;
}

@media only screen and (max-width: 1004px) {
  .product-carousel {
    background: transparent;
    width: 600px;
  }
}

@media only screen and (max-width: 568px) {
  .product-carousel {
    background: transparent;
    width: 200px;
  }
}

.product-carousel ul {
  margin: 0;
  padding: 0;
}

.product-carousel ul li {
  min-height: 130px;
  position: relative;
  text-align: center;
  background: url(../img/product-shadow-light.png) bottom center no-repeat;
}

.product-carousel ul li img.hover {
  display: none;
}

.product-carousel ul li .new {
  position: absolute;
  top: 70px;
  right: 20px;
}

@media only screen and (max-width: 1004px) {
  .product-carousel ul li .new {
    top: 50px;
    right: 20px;
  }
}

.links-wrapper {
  width: 100%;
  margin: 0 auto 0 auto;
  text-align: center;
  text-transform: none !important;
}

.link1 {
  text-align: left;
  margin: 0 0 0 0;
}

.link1 a {
  display: block;
  font-family: 'fs_mebold';
  background: url(../img/link1-background.png) no-repeat;
  width: 114px;
  padding: 0 0 0 15px;
  height: 30px;
  color: #FFF;
  text-decoration: none;
  font-size: 14px;
  line-height: 30px;
}

.squidgy {
  background: #CF0A2C;
  padding: 50px 0 0 0;
  text-align: center;
  margin: 0 0 20px 0;
}

.squidgy h2 {
  color: #FFF;
  font-size: 40px;
  margin: 0 0 20px;
  font-family: 'Amatic SC', cursive;
}

.squidgy ul {
  width: 920px;
  margin: 0 auto;
}

@media only screen and (max-width: 1004px) {
  .squidgy ul {
    width: 100%;
  }
}

.squidgy ul.panels li {
  /* float: left; */
  display: inline-block;
  width: 274px;
  margin: 0 10px 30px 10px;
}

.squidgy ul.panels li h3 {
  color: #FFF;
  font-size: 16px;
  padding: 0;
  font-weight: normal;
  text-transform: none;
  font-family: "fs_mebold", Helvetica, Arial, Verdana, sans-serif;
}

.squidgy ul.panels li h3 a {
  color: #FFF;
  text-decoration: none;
}

.squidgy ul.panels li h3 a:hover {
  text-decoration: underline;
}

.squidgy ul.panels li:nth-of-type(3n+1) .block {
  background: url(../img/squidgy-panel-background1.png) no-repeat;
  width: 274px;
  height: 208px;
  padding: 10px 0 0 0;
}

.squidgy ul.panels li:nth-child(3n+2) .block {
  background: url(../img/squidgy-panel-background2.png) no-repeat;
  width: 274px;
  height: 208px;
  padding: 10px 0 0 0;
}

.squidgy ul.panels li:nth-child(3n+3) .block {
  background: url(../img/squidgy-panel-background3.png) no-repeat;
  width: 274px;
  height: 208px;
  padding: 10px 0 0 0;
}

.block {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.block:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.share-wrapper {
  width: 74px;
  margin: 0 auto;
}

.twitter-share {
  float: left;
}

.facebook-share {
  float: right;
}

.instagram-wrapper {
  width: 750px;
  margin: 0 auto 100px auto;
  border: 20px solid #fff;
  background: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 1004px) {
  .instagram-wrapper {
    width: 600px;
    margin: 0 auto 50px auto;
  }
}

@media only screen and (max-width: 568px) {
  .instagram-wrapper {
    width: 230px;
    border-radius: 0;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    text-align: center;
  }
}

.instagram-wrapper ul#slider2 {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.instagram-wrapper ul#slider2 li {
  margin: 0;
  padding: 0;
  height: 142px;
}

@media only screen and (max-width: 768px) {
  .instagram-wrapper ul#slider2 li {
    height: 110px;
  }
}

@media only screen and (max-width: 568px) {
  .instagram-wrapper ul#slider2 li {
    height: 140px;
  }
}

.instagram-wrapper ul#slider2 li img {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.instagram-wrapper ul#slider2 li img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

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

.instagram-title h2 {
  margin: 0 0 20px;
}

@media only screen and (max-width: 568px) {
  .instagram-title img {
    width: 100%;
    height: auto;
  }
}

.instagram-tab {
  text-align: center;
  height: 41px;
  position: relative;
  z-index: 10;
  background: url(../img/instagram-tab.png) bottom center no-repeat;
}

@media only screen and (max-width: 568px) {
  .instagram-tab {
    background: #FFF url(../img/mobile/instagram-tab.png) 50% 50% no-repeat;
    width: 230px;
    margin: 0 auto;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

@media only screen and (max-width: 568px) {
  .instagram-tab img {
    display: none;
  }
}

#cookie_container {
  background: url(../img/cookie-background-long.png) 50% 100% no-repeat;
  position: relative !important;
  bottom: auto !important;
  top: 0 !important;
  z-index: 2000;
  padding: 10px 0 0 0;
  height: 57px;
}

@media only screen and (max-width: 1004px) {
  #cookie_container {
    display: none;
  }
}

.cookie-text {
  float: left;
  width: 50%;
  color: #FFF;
  text-align: right;
  font-size: 14px;
  line-height: 19px;
  padding: 5px 0 0 0;
}

@media only screen and (max-width: 768px) {
  .cookie-text {
    padding: 0 0 0 20px;
    text-align: left;
    width: 60%;
  }
}

.cookie-button {
  float: left;
  width: 50%;
  text-align: left;
  padding: 0 0 0 40px;
}

@media only screen and (max-width: 768px) {
  .cookie-button {
    float: right;
    padding: 0;
    width: 76px;
    margin: 0 20px 0 0;
  }
}

.cookie-button a {
  background: url(../img/cookie-button.png) no-repeat;
  width: 76px;
  height: 23px;
  text-indent: -9999px;
  display: block;
}

#header {
  width: 960px;
  margin: 0 auto;
  position: relative;
  height: 200px;
  padding: 60px 0 0 0;
}

@media only screen and (max-width: 1004px) {
  #header {
    width: 100%;
    height: 150px;
  }
}

.logo {
  position: absolute;
  width: 154px;
  left: 50%;
  margin-left: -77px;
  top: 10px;
}

@media only screen and (max-width: 1004px) {
  nav.navigation {
    display: none;
    z-index: 100;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #FFF;
    width: 100%;
    height: 100%;
    padding: 100px 0 0 0;
  }
}

nav.navigation ul li {
  float: left;
  position: relative;
  margin: 0 28px 0 0;
  font-family: 'fs_meregular';
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li {
    float: none;
    width: 100%;
    margin: 0;
  }
}

nav.navigation ul li.mobile a {
  display: none;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.mobile a {
    display: block;
    background: #E79300;
    background-image: none;
    width: 100%;
    text-align: left;
    line-height: 55px;
    font-size: 17px;
    color: #FFF;
    text-decoration: none;
    padding: 0 0 0 20px;
    border-bottom: 2px solid #FFF;
  }
}

nav.navigation ul li.nav-squidgy {
  float: right;
  position: relative;
  margin: 0 220px 0 0;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.nav-squidgy {
    float: none;
    width: 100%;
    margin: 0;
  }
}

nav.navigation ul li.nav-products a {
  background: url(../img/navbox1.png) no-repeat;
  display: block;
  text-align: center;
  width: 96px;
  height: 55px;
  padding: 7px 0 0 0;
  line-height: 20px;
  font-size: 17px;
  color: #FFF;
  text-decoration: none;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.nav-products a {
    background: #E79300;
    background-image: none;
    width: 100%;
    text-align: left;
    line-height: 55px;
    padding: 0 0 0 20px;
    border-bottom: 2px solid #FFF;
  }
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.nav-products a br {
    display: none;
  }
}

nav.navigation ul li.nav-goodness a {
  background: url(../img/navbox2.png) no-repeat;
  display: block;
  text-align: center;
  width: 102px;
  height: 57px;
  padding: 7px 0 0 0;
  line-height: 20px;
  font-size: 17px;
  color: #FFF;
  text-decoration: none;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.nav-goodness a {
    background: #E79300;
    background-image: none;
    width: 100%;
    text-align: left;
    line-height: 55px;
    padding: 0 0 0 20px;
    border-bottom: 2px solid #FFF;
  }
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.nav-goodness a br {
    display: none;
  }
}

nav.navigation ul li.nav-community a {
  background: url(../img/navbox3.png) no-repeat;
  display: block;
  text-align: center;
  width: 106px;
  height: 58px;
  padding: 7px 0 0 0;
  line-height: 20px;
  font-size: 17px;
  color: #FFF;
  text-decoration: none;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.nav-community a {
    background: #E79300;
    background-image: none;
    width: 100%;
    text-align: left;
    line-height: 55px;
    padding: 0 0 0 20px;
    border-bottom: 2px solid #FFF;
  }
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.nav-community a br {
    display: none;
  }
}

nav.navigation ul li.nav-squidgy a {
  background: url(../img/navbox4.png) no-repeat;
  display: block;
  text-align: center;
  width: 167px;
  height: 62px;
  padding: 9px 0 0 0;
  line-height: 20px;
  font-size: 17px;
  color: #FFF;
  text-decoration: none;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.nav-squidgy a {
    background: #E79300;
    background-image: none;
    width: 100%;
    text-align: left;
    line-height: 55px;
    padding: 0 0 0 20px;
  }
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.nav-squidgy a br {
    display: none;
  }
}

nav.navigation ul li.nav-products a:hover,
nav.navigation ul li.nav-goodness a:hover,
nav.navigation ul li.nav-community a:hover,
nav.navigation ul li.nav-squidgy a:hover {
  background: none;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li.nav-products a:hover,
  nav.navigation ul li.nav-goodness a:hover,
  nav.navigation ul li.nav-community a:hover,
  nav.navigation ul li.nav-squidgy a:hover {
    background: #E79300;
  }
}

nav.navigation ul li ul.sub-menu {
  background: url(../img/subnav-top.png) top center no-repeat;
  height: auto;
  width: 163px;
  position: absolute;
  top: 55px;
  left: -30px;
  padding: 35px 0 0 0;
  z-index: 1000;
  display: none;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li ul.sub-menu {
    background: none;
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
    padding: 0;
  }
}

nav.navigation ul li ul.sub-menu li {
  float: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #FFF;
}

nav.navigation ul li ul.sub-menu li:last-child {
  border-radius: 0px 0px 20px 20px;
  -moz-border-radius: 0px 0px 20px 20px;
  -webkit-border-radius: 0px 0px 20px 20px;
  padding: 0 0 10px;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li ul.sub-menu li:last-child {
    border-radius: 0 !important;
  }
}

nav.navigation ul li ul.sub-menu li a {
  background: url(../img/subnav-border.png) bottom center no-repeat;
  color: #EE9800;
  width: 100%;
  font-size: 13px;
  line-height: 16px;
  height: auto;
  padding: 15px 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

nav.navigation ul li ul.sub-menu li a:hover {
  font-size: 15px;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li ul.sub-menu li a {
    border-bottom: none;
    padding: 15px 20px;
    background: none;
  }
}

nav.navigation ul li ul.sub-menu li a:hover {
  background: url(../img/subnav-border.png) bottom center no-repeat;
}

@media only screen and (max-width: 1004px) {
  nav.navigation ul li ul.sub-menu li a:hover {
    background: none;
  }
}

nav.navigation ul li ul.sub-menu li:last-child a {
  background: none;
}

.signpost {
  position: absolute;
  top: -10px;
  right: 30px;
}

@media only screen and (max-width: 1004px) {
  .signpost {
    width: 120px;
    height: 102px;
    right: 20px;
    top: -10;
  }
}

.signpost a .static {
  background: url(../img/soreen-signpost-static.gif) no-repeat;
  background-size: contain;
  width: 200px;
  height: 170px;
  display: block;
}

@media only screen and (max-width: 1004px) {
  .signpost a .static {
    width: 120px;
    height: 102px;
  }
}

.signpost a .ani {
  background: url(../img/soreen-signpost-ani.gif) no-repeat;
  background-size: contain;
  width: 200px;
  height: 170px;
  display: none;
}

@media only screen and (max-width: 1004px) {
  .signpost a .ani {
    width: 120px;
    height: 102px;
  }
}

/*

.signpost a {
	width: 172px;
	height: 162px;	
	display: block;
	background: url(../img/signpost.png) no-repeat;
	text-indent: -9999px;
	
	@include breakpoint-max-($tabletScreen) {
		width: 92px;
		height: 69px;
		background: url(../img/mobile/signpost.png) no-repeat;
	}	
}

.signpost a:hover {
    -webkit-animation: swing 1s;
    animation: swing 1s;
}
*/
.socials {
  position: absolute;
  top: 20px;
  right: 0px;
}

@media only screen and (max-width: 1004px) {
  .socials {
    display: none;
  }
}

.socials ul li {
  float: left;
  margin: 0 0 0 15px;
}

.socials ul li.twitter a {
  text-indent: -9999px;
  display: block;
  width: 19px;
  height: 19px;
  background: url(../img/socials.png) 0px 0px;
}

.socials ul li.twitter a:hover {
  background: url(../img/socials.png) 0px -19px;
}

.socials ul li.facebook a {
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 19px;
  background: url(../img/socials.png) -40px 0px;
}

.socials ul li.facebook a:hover {
  background: url(../img/socials.png) -40px -19px;
}

.socials ul li.youtube a {
  text-indent: -9999px;
  display: block;
  width: 12px;
  height: 19px;
  background: url(../img/socials.png) -77px 0px;
}

.socials ul li.youtube a:hover {
  background: url(../img/socials.png) -77px -19px;
}

.socials ul li.instagram a {
  text-indent: -9999px;
  display: block;
  width: 20px;
  height: 19px;
  background: url(../img/socials.png) -107px 0px;
}

.socials ul li.instagram a:hover {
  background: url(../img/socials.png) -107px -19px;
}

.cmn-toggle-switch {
  display: none;
  overflow: hidden;
  position: absolute;
  left: 20px;
  top: 15px;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 55px;
  font-size: 0;
  z-index: 101;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

@media only screen and (max-width: 1004px) {
  .cmn-toggle-switch {
    display: block;
  }
}

.cmn-toggle-switch:focus {
  outline: none;
}

.cmn-toggle-switch span {
  display: block;
  position: absolute;
  top: 16px;
  left: 0px;
  right: 0px;
  height: 5px;
  background: #FFF;
}

.cmn-toggle-switch span::before,
.cmn-toggle-switch span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 5px;
  background: #FFF;
  content: "";
}

.cmn-toggle-switch span::before {
  top: -12px;
}

.cmn-toggle-switch span::after {
  bottom: -12px;
}

.cmn-toggle-switch__htx {
  background-color: transparent;
}

.cmn-toggle-switch__htx span {
  -webkit-transition: background 0s 0.3s;
  transition: background 0s 0.3s;
}

.cmn-toggle-switch__htx span::before,
.cmn-toggle-switch__htx span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
     transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
     transition-delay: 0.3s, 0s;
}

.cmn-toggle-switch__htx span::before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}

.cmn-toggle-switch__htx span::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

/* active state, i.e. menu open */
.cmn-toggle-switch__htx.active {
  background-color: transparent;
  position: fixed;
}

.cmn-toggle-switch__htx.active span {
  background: none;
}

.cmn-toggle-switch__htx.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #E79300;
}

.cmn-toggle-switch__htx.active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #E79300;
}

.cmn-toggle-switch__htx.active span::before,
.cmn-toggle-switch__htx.active span::after {
  -webkit-transition-delay: 0s, 0.3s;
     transition-delay: 0s, 0.3s;
}

footer .content-wrapper {
  padding: 0 !important;
}

.newsletter-wrapper {
  float: left;
  width: 440px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .newsletter-wrapper {
    width: 100%;
    /*background: #ec9a26; */
    padding: 30px 0;
  }
}

.newsletter-wrapper .title {
  text-align: center;
  margin: 0 0 20px;
}

.newsletter-wrapper .gfield_label, .newsletter-wrapper .validation_message {
  display: none;
}

.gform_wrapper .ginput_container {
  width: 358px;
}

.newsletter-wrapper .gform_wrapper .ginput_container {
  float: left;
}

@media only screen and (max-width: 768px) {
  .gform_wrapper .ginput_container {
    width: 80%;
  }
}

@media only screen and (max-width: 568px) {
  .gform_wrapper .ginput_container {
    margin: 0 0 0 20px;
    width: 70%;
  }
}

.gform_wrapper .ginput_container input, .gform_wrapper .gform_button, .gfield_captcha_input_container input {
  background: url(../img/input-background.png) no-repeat;
  width: 358px;
  height: 54px;
  border: none;
  font-size: 15px;
  color: #EE9800;
  padding: 0 3em 0 20px;
}

@media only screen and (max-width: 768px) {
  .gform_wrapper .ginput_container input, .gform_wrapper .gform_button, .gfield_captcha_input_container input {
    width: 100%;
    margin: 0 0 10px;
    background: #FFF;
    background-image: none;
    border-radius: 10px;
  }
}

@media only screen and (max-width: 568px) {
  .gform_wrapper .ginput_container input, .gform_wrapper .gform_button, .gfield_captcha_input_container input {
    width: 100%;
    margin: 0 0 10px;
    background: #FFF;
    background-image: none;
    border-radius: 10px;
  }
}

.gform_wrapper .gform_button {
  background: url(../img/arrow-right.svg) no-repeat;
  width: 46px;
  height: 42px;
  float: left;
  margin: 0 0 0 20px;
  text-indent: -9999px;
  cursor: pointer;
  outline: none;
}

@media only screen and (max-width: 768px) {
  .gform_wrapper .gform_button {
    float: right;
    margin: -15px 20px 0 0;
  }
}

.newsletter-wrapper .wpcf7-response-output {
  padding: 0;
  border: 0 !important;
}

.newsletter-wrapper .wpcf7-validation-errors {
  display: none !important;
}

.newsletter-wrapper div.gform_confirmation_message {
  border: 0 !important;
  color: #398f14;
  font-size: 14px;
  padding: 5px 10px !important;
  position: absolute;
  top: 110px;
}

@media only screen and (max-width: 568px) {
  .newsletter-wrapper div.gform_confirmation_message {
    position: relative;
    padding: 20px 10px 0 10px !important;
    top: auto;
  }
}

.newsletter-wrapper .gform_wrapper .validation_error {
  background: none;
  border-radius: 0;
  color: #CF0A2C;
  width: 100%;
  padding: 0 0 10px 20px;
  font-size: 15px;
  clear: both;
  position: absolute;
  left: auto;
  top: 210px;
  font-family: 'fs_mebold';
  text-align: left;
}

@media only screen and (max-width: 568px) {
  .newsletter-wrapper .gform_wrapper .validation_error {
    top: auto;
    font-size: 13px;
    padding: 0 0 10px 0;
  }
}

.gform_wrapper .ginput_container input::-webkit-input-placeholder,
.gform_wrapper .ginput_container textarea::-webkit-input-placeholder {
  color: #EE9800;
  opacity: 1.0;
}

.gform_wrapper .ginput_container input::-moz-placeholder,
.gform_wrapper .ginput_container textarea::-moz-placeholder {
  color: #EE9800;
  opacity: 1.0;
}

.gform_wrapper .ginput_container input::-ms-input-placeholder,
.gform_wrapper .ginput_container textarea::-ms-input-placeholder {
  color: #EE9800;
  opacity: 1.0;
}

.gform_wrapper .ginput_container input::placeholder,
.gform_wrapper .ginput_container textarea::placeholder {
  color: #EE9800;
  opacity: 1.0;
}

.newsletter-wrapper div.wpcf7 .ajax-loader {
  position: absolute;
  top: 105px;
  right: 100px;
}

.newsletter-text {
  position: absolute;
  top: 170px;
  left: 0;
  clear: both;
  color: #702380;
  font-size: 12px;
  line-height: 17px;
  padding: 0 0 0 20px;
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  .newsletter-text {
    position: relative;
    top: auto;
    width: 90%;
  }
}

@media only screen and (max-width: 768px) {
  .newsletter-text br {
    display: none;
  }
}

.social-wrapper {
  float: right;
  width: 440px;
}

@media only screen and (max-width: 768px) {
  .social-wrapper {
    float: none;
    width: 100%;
    text-align: center;
    clear: both;
    padding: 30px 0 0 0;
  }
}

.social-wrapper .title {
  margin: 0 0 40px;
  position: relative;
  z-index: 10;
}

.social-wrapper ul.footer-socials li {
  float: left;
  margin: 0 25px 0 0;
}

@media only screen and (max-width: 768px) {
  .social-wrapper ul.footer-socials li {
    float: none;
    display: inline-block;
    margin: 0 10px 20px 10px;
  }
}

.social-wrapper ul.footer-socials li.blog {
  position: absolute;
  top: 98px;
  right: 0;
}

@media only screen and (max-width: 768px) {
  .social-wrapper ul.footer-socials li.blog {
    position: relative;
    top: auto;
    right: auto;
  }
}

.social-wrapper ul.footer-socials li.ebay {
  position: absolute;
  top: 120px;
  right: 0;
}

@media only screen and (max-width: 768px) {
  .social-wrapper ul.footer-socials li.ebay {
    position: relative;
    top: auto;
    right: auto;
  }
}

.squiggle {
  background: url(../img/squiggle.png) center center no-repeat;
  background-size: contain;
  height: 200px;
}

@media only screen and (max-width: 568px) {
  .squiggle {
    background: url(../img/mobile/squiggle.png) center center no-repeat;
    background-size: auto;
    height: 100px;
  }
}

.footer-menu {
  width: 100%;
  padding: 50px 0;
  margin: 0;
  text-align: center;
}

.footer-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-menu ul li {
  display: inline-block;
  margin: 0 35px;
}

@media only screen and (max-width: 568px) {
  .footer-menu ul li {
    width: 100%;
    margin: 0;
    padding: 10px 0;
  }
}

.footer-menu ul li a {
  color: #FFF;
  text-decoration: none;
  font-family: 'fs_meregular';
}

.footer-menu ul li a:hover {
  color: #E47A00;
  text-decoration: none;
}

.footer-cloud1 {
  background: url(../img/cloud1.svg) no-repeat;
  width: 54px;
  height: 24px;
  background-size: contain;
  position: absolute;
  bottom: 110px;
  right: 80px;
  z-index: 1;
  -webkit-animation: shake 70s linear infinite;
  -moz-animation: shake 70s linear infinite;
  -o-animation: shake 70s linear infinite;
}

@media only screen and (max-width: 768px) {
  .footer-cloud1 {
    display: none;
  }
}

.footer-cloud2 {
  background: url(../img/cloud2.svg) no-repeat;
  width: 60px;
  height: 27px;
  background-size: contain;
  position: absolute;
  bottom: -20px;
  right: 200px;
  z-index: 1;
  -webkit-animation: shake 50s linear infinite;
  -moz-animation: shake 50s linear infinite;
  -o-animation: shake 50s linear infinite;
}

@media only screen and (max-width: 768px) {
  .footer-cloud2 {
    display: none;
  }
}

.footer-cloud3 {
  background: url(../img/cloud2.svg) no-repeat;
  width: 82px;
  height: 27px;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-animation: shake 50s linear infinite;
  -moz-animation: shake 50s linear infinite;
  -o-animation: shake 50s linear infinite;
}

@media only screen and (max-width: 768px) {
  .footer-cloud3 {
    display: none;
  }
}

.clear {
  clear: both;
  content: ".";
  font-size: 0;
  height: 0;
  display: block;
  overflow: hidden;
  width: 100%;
}

.product-hero-cloud1 {
  background: url(../img/cloud1.svg) no-repeat;
  width: 82px;
  height: 27px;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 100px;
  -webkit-animation: shake 70s linear infinite;
  -moz-animation: shake 70s linear infinite;
  -o-animation: shake 70s linear infinite;
}

@media only screen and (max-width: 768px) {
  .product-hero-cloud1 {
    display: none;
  }
}

.product-hero-cloud2 {
  background: url(../img/cloud2.svg) no-repeat;
  width: 94px;
  height: 43px;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 80px;
  left: -50px;
  -webkit-animation: shake 50s linear infinite;
  -moz-animation: shake 50s linear infinite;
  -o-animation: shake 50s linear infinite;
}

@media only screen and (max-width: 768px) {
  .product-hero-cloud2 {
    display: none;
  }
}

.product-hero-cloud3 {
  background: url(../img/cloud1.svg) no-repeat;
  width: 55px;
  height: 25px;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 100px;
  right: 30px;
  -webkit-animation: shake 60s linear infinite;
  -moz-animation: shake 60s linear infinite;
  -o-animation: shake 60s linear infinite;
}

@media only screen and (max-width: 768px) {
  .product-hero-cloud3 {
    display: none;
  }
}

.product-hero-cloud4 {
  background: url(../img/cloud2.svg) no-repeat;
  width: 73px;
  height: 33px;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 170px;
  right: -10px;
  -webkit-animation: shake 70s linear infinite;
  -moz-animation: shake 70s linear infinite;
  -o-animation: shake 70s linear infinite;
}

@media only screen and (max-width: 768px) {
  .product-hero-cloud4 {
    display: none;
  }
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}

/*
@-webkit-keyframes moveclouds {
	0% {margin-left: 0px; transform: translateZ(0) rotate(0.02deg);}
	100% {margin-left: 1000px; transform: translateZ(0) rotate(0.02deg);}
	
}
@-moz-keyframes moveclouds {
	0% {margin-left: 0px; transform: translateZ(0) rotate(0.02deg);}
	100% {margin-left: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-o-keyframes moveclouds {
	0% {margin-left: 0px; transform: translateZ(0) rotate(0.02deg);}
	100% {margin-left: 1000px; transform: translateZ(0) rotate(0.02deg);}
}

@-webkit-keyframes moveclouds1 {
	0% {right: 80px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-moz-keyframes moveclouds1 {
	0% {right: 80px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-o-keyframes moveclouds1 {
	0% {right: 80px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}

@-webkit-keyframes moveclouds2 {
	0% {right: 200px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-moz-keyframes moveclouds2 {
	0% {right: 200px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-o-keyframes moveclouds2 {
	0% {right: 200px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}

@-webkit-keyframes moveclouds3 {
	0% {right: -10px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-moz-keyframes moveclouds3 {
	0% {right: -10px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-o-keyframes moveclouds3 {
	0% {right: -10px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}

@-webkit-keyframes moveclouds4 {
	0% {right: -10px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-moz-keyframes moveclouds4 {
	0% {right: -10px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-o-keyframes moveclouds4 {
	0% {right: -10px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}

@-webkit-keyframes moveclouds5 {
	0% {right: 35px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-moz-keyframes moveclouds5 {
	0% {right: 35px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
@-o-keyframes moveclouds5 {
	0% {right: 35px; transform: translateZ(0) rotate(0.02deg);}
	100% {right: 1000px; transform: translateZ(0) rotate(0.02deg);}
}
*/
/*** END ***/
@-webkit-keyframes sway {
  from {
    -moz-transform: translate(0, -2px);
  }
  65% {
    -moz-transform: translate(0, 10px);
  }
  to {
    -moz-transform: translate(0, -2px);
  }
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

.community {
  padding: 50px 0 0 0;
}

.community .charity-item {
  float: left;
  display: inline-block;
  width: 50%;
  text-align: center;
  padding: 0 50px;
  margin: 0 0 50px 0;
  height: 450px;
}

@media only screen and (max-width: 568px) {
  .community .charity-item {
    width: 100%;
    padding: 0 20px;
    height: auto;
  }
}

.community .charity-item .thumbnail {
  background: #FFF;
  width: 170px;
  height: 170px;
  margin: 0 auto 35px auto;
  border-radius: 100%;
}

.community .charity-item .thumbnail img {
  width: 100px;
  height: 100px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.community .charity-item h3 {
  font-size: 18px;
  margin: 0 0 10px;
  font-family: 'fs_mebold';
  color: #FFF;
  text-transform: none;
  font-weight: normal;
}

.community .charity-item p {
  font-family: 'fs_meregular';
}

.cloud1 {
  position: absolute;
  top: 0px;
  right: 250px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 49px;
  height: 22px;
  z-index: 1;
  -webkit-animation: shake 60s linear infinite;
  -moz-animation: shake 60s linear infinite;
  -o-animation: shake 60s linear infinite;
}

@media only screen and (max-width: 568px) {
  .cloud1 {
    display: none;
  }
}

.cloud2 {
  position: absolute;
  top: 40px;
  right: 120px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 92px;
  height: 42px;
  z-index: 1;
  -webkit-animation: shake 70s linear infinite;
  -moz-animation: shake 70s linear infinite;
  -o-animation: shake 70s linear infinite;
}

@media only screen and (max-width: 568px) {
  .cloud2 {
    display: none;
  }
}

.cloud3 {
  position: absolute;
  top: 250px;
  left: 20px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 76px;
  height: 34px;
  z-index: 1;
  -webkit-animation: shake 50s linear infinite;
  -moz-animation: shake 50s linear infinite;
  -o-animation: shake 50s linear infinite;
}

@media only screen and (max-width: 568px) {
  .cloud3 {
    display: none;
  }
}

.cloud4 {
  position: absolute;
  top: 750px;
  left: 120px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 58px;
  height: 26px;
  z-index: 1;
  -webkit-animation: shake 70s linear infinite;
  -moz-animation: shake 70s linear infinite;
  -o-animation: shake 70s linear infinite;
}

@media only screen and (max-width: 568px) {
  .cloud4 {
    display: none;
  }
}

.adventures {
  padding: 80px 0;
  margin: 0 0 130px;
}

@media only screen and (max-width: 1004px) {
  .adventures {
    margin: 0;
    padding: 50px 20px;
  }
}

.adventures-intro a {
  color: #FFF;
}

.adventures-intro a:hover {
  text-decoration: none;
}

.adventures .gallery-item {
  float: none;
  display: inline-block;
  background: #FFF;
  border-radius: 10px;
  padding: 15px;
  width: 32%;
  margin: 0 0.5% 2% 0.5%;
  overflow: hidden;
  /*
		&:nth-of-type(3n+3) {
			margin: 0 0 2% 0;
			@include breakpoint-max-($smallScreen) {
				margin: 0 0 5% 0;
			}
		}
		*/
}

@media only screen and (max-width: 568px) {
  .adventures .gallery-item {
    float: none;
    width: 100%;
    margin: 0 0 5% 0;
  }
}

.adventures .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.our-story {
  background: url(../img/our-story-background.png) center center no-repeat;
  background-size: cover;
  padding: 70px 0;
  margin: 0 0 0 0;
}

@media only screen and (max-width: 568px) {
  .our-story {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .our-story .inner-content-wrapper {
    padding: 0 20px;
  }
}

.our-story ul {
  height: 650px;
}

.our-story ul li {
  height: 650px;
}

.our-story ul li img {
  display: inline-block;
  text-align: center;
}

.our-story ul li p {
  font-size: 16px;
  line-height: 21px;
  font-family: 'fs_meregular';
}

@media only screen and (max-width: 768px) {
  .our-story ul li p br {
    display: none;
  }
}

.our-story-mobile {
  background: url(../img/our-story-background.png) center center no-repeat;
  background-size: cover;
  padding: 50px 20px;
  margin: 30px 0 0 0;
  height: auto;
  display: none;
}

@media only screen and (max-width: 568px) {
  .our-story-mobile {
    display: block;
  }
}

.our-story-mobile ul li img {
  display: inline-block;
  text-align: center;
  width: 90%;
  height: auto;
}

.our-story-mobile ul li p {
  font-size: 16px;
  line-height: 21px;
  font-family: 'fs_meregular';
}

@media only screen and (max-width: 568px) {
  .our-story-mobile ul li p br {
    display: none;
  }
}

.our-people {
  background: url(../img/ee-background.png) center center no-repeat;
  background-size: cover;
  padding: 70px 0px;
  margin: 0 0 160px;
}

@media only screen and (max-width: 768px) {
  .our-people {
    margin: 0;
    padding: 70px 0 20px 0;
  }
}

.our-people .our-people-intro, .our-people .our-people-hero, .our-people .team-member {
  margin: 0 0 60px 0;
}

@media only screen and (max-width: 1004px) {
  .our-people .our-people-intro, .our-people .our-people-hero, .our-people .team-member {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 1004px) {
  .our-people img.our-people-hero {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 568px) {
  .our-people img.our-people-hero {
    display: none;
  }
}

.our-people .team-member-image {
  float: left;
  background: url(../img/team-member-container.png) no-repeat;
  background-size: cover;
  width: 210px;
  height: 210px;
  padding: 15px;
}

@media only screen and (max-width: 1004px) {
  .our-people .team-member-image {
    width: 30%;
    height: auto;
  }
}

@media only screen and (max-width: 568px) {
  .our-people .team-member-image {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 1004px) {
  .our-people .team-member-image img {
    width: 100%;
    height: auto;
  }
}

.our-people .team-member-bio {
  float: right;
  width: 650px;
  text-align: left;
}

@media only screen and (max-width: 1004px) {
  .our-people .team-member-bio {
    width: 65%;
  }
}

@media only screen and (max-width: 568px) {
  .our-people .team-member-bio {
    float: none;
    width: 100%;
  }
}

.our-people .team-member-bio p {
  font-size: 16px;
  line-height: 21px;
  font-family: 'fs_meregular';
}

.our-people .team-member-bio p a {
  color: #FFF;
}

.our-people .team-member-bio p a:hover {
  text-decoration: none;
}

.ayasbs-intro {
  height: 550px;
  position: relative;
}

@media only screen and (max-width: 1004px) {
  .ayasbs-intro {
    height: auto;
  }
}

.ayasbs-intro .ayasbs-hero {
  width: 708px;
  height: 550px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

@media only screen and (max-width: 1004px) {
  .ayasbs-intro .ayasbs-hero {
    width: 70%;
    top: auto;
    left: auto;
    margin: 0 auto;
    position: relative;
    height: 300px;
  }
}

@media only screen and (max-width: 568px) {
  .ayasbs-intro .ayasbs-hero {
    width: 100%;
    height: 250px;
  }
}

.ayasbs-intro .ayasbs-signpost {
  background: url(../img/ayasbs-signpost.png) no-repeat;
  width: 246px;
  height: 382px;
  position: absolute;
  top: 90px;
  right: 60px;
  padding: 35px 40px 0 35px;
  z-index: 1;
}

@media only screen and (max-width: 1004px) {
  .ayasbs-intro .ayasbs-signpost {
    top: auto;
    right: auto;
    margin: 0 auto;
    position: relative;
  }
}

@media only screen and (max-width: 568px) {
  .ayasbs-intro .ayasbs-signpost {
    background: none;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 25px;
  }
}

.ayasbs-intro .ayasbs-signpost p {
  font-size: 17px;
  line-height: 23px;
  margin: 0 0 10px;
}

.ayasbs-intro .cloud1 {
  position: absolute;
  top: 20px;
  left: 20px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 45px;
  height: 20px;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ayasbs-intro .cloud1 {
    display: none;
  }
}

.ayasbs-intro .cloud2 {
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 111px;
  height: 51px;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ayasbs-intro .cloud2 {
    display: none;
  }
}

.ayasbs-intro .cloud3 {
  position: absolute;
  top: 210px;
  left: -60px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 94px;
  height: 43px;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ayasbs-intro .cloud3 {
    display: none;
  }
}

.ayasbs-intro .cloud4 {
  position: absolute;
  top: 210px;
  right: 0px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 49px;
  height: 22px;
  left: auto;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .ayasbs-intro .cloud4 {
    display: none;
  }
}

.ayasbs-videos {
  background: url(../img/adventures-background.jpg) center center no-repeat;
  background-size: cover;
  padding: 50px 0 10px 0;
}

@media only screen and (max-width: 568px) {
  .ayasbs-videos {
    padding: 50px 0 50px 0;
  }
}

.ayasbs-videos .inner-content-wrapper {
  padding: 0px 30px;
  text-align: center;
}

.ayasbs-videos .inner-content-wrapper ul li {
  width: 45%;
  /* float: left; */
  display: inline-block;
  margin: 0 2% 90px 2%;
  /*
				&:nth-child(2n+2) {
					float: right;
					@include breakpoint-max-($smallScreen) {
						float: none;
					}
				}
				*/
}

@media only screen and (max-width: 568px) {
  .ayasbs-videos .inner-content-wrapper ul li {
    float: none;
    width: 100%;
    margin: 0 0 90px;
  }
}

.ayasbs-videos .inner-content-wrapper ul li:first-child {
  width: 96%;
  margin: 0 0 90px;
}

.ayasbs-videos .inner-content-wrapper ul li h3 {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #FFF;
  font-weight: normal;
  font-family: 'fs_mebold';
  text-transform: none;
}

.ayasbs-videos .inner-content-wrapper ul li .video-poster {
  background: #FFF;
  padding: 15px 25px;
  margin: 0 0 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
}

.ayasbs-videos .inner-content-wrapper ul li .video-poster img {
  float: left;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.ayasbs-videos .inner-content-wrapper ul li .video-poster .play-button {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  background: url(../img/play-button.png) center center no-repeat;
}

.ayasbs-videos .inner-content-wrapper ul li .video-poster .play-button:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.video-player {
  width: 640px;
  height: 360px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -320px;
  margin-top: -180px;
  z-index: 10001;
  display: none;
  background: #FFF;
}

@media only screen and (max-width: 768px) {
  .video-player {
    width: 500px;
    height: 282px;
    margin-left: -250px;
    margin-top: -141px;
  }
}

@media only screen and (max-width: 568px) {
  .video-player {
    width: 260px;
    height: 148px;
    margin-left: -130px;
    margin-top: -74px;
  }
}

@media only screen and (max-width: 768px) {
  .video-player iframe {
    width: 500px !important;
    height: 282px !important;
  }
}

@media only screen and (max-width: 568px) {
  .video-player iframe {
    width: 260px !important;
    height: 148px !important;
  }
}

.close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background: url(../img/close.png) no-repeat;
  cursor: pointer;
}

.video-overlay {
  background: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000;
  top: 0px;
  left: 0px;
  display: none;
  cursor: default;
  background: rgba(0, 0, 0, 0.5);
}

.page-links {
  background: url(../img/page-links-background.png) center center no-repeat;
  background-size: cover;
  padding: 55px 0;
  margin: 0 0 120px;
}

@media only screen and (max-width: 768px) {
  .page-links {
    margin: 0 0 50px;
  }
}

@media only screen and (max-width: 568px) {
  .page-links {
    padding: 55px 30px;
  }
}

.page-links h2 {
  font-weight: normal;
}

.page-links ul li {
  /* float: left; */
  display: inline-block;
  width: 30%;
  margin: 0 0.5% 2% 0.5%;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.page-links ul li:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media only screen and (max-width: 568px) {
  .page-links ul li {
    float: none;
    width: 100%;
    margin: 0 0 30px;
  }
}

.page-links ul li .page-thumb {
  background: #FFF;
  padding: 10px;
  overflow: hidden;
  margin: 0 0 10px;
  border-radius: 10px;
}

.page-links ul li .page-thumb img {
  float: left;
  width: 100%;
  height: auto;
}

.page-links ul li h4 {
  color: #FFF;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.page-links ul li h4 a {
  color: #FFF;
  text-decoration: none;
}

.page-links ul li h4 a:hover {
  text-decoration: underline;
}

.malt-intro {
  height: 475px;
  position: relative;
}

@media only screen and (max-width: 1004px) {
  .malt-intro {
    height: 450px;
  }
}

@media only screen and (max-width: 568px) {
  .malt-intro {
    height: 350px;
  }
}

.malt-intro .malt-left {
  width: 402px;
  height: 382px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}

@media only screen and (max-width: 1004px) {
  .malt-intro .malt-left {
    width: 50%;
    background-size: contain;
  }
}

@media only screen and (max-width: 568px) {
  .malt-intro .malt-left {
    display: none;
  }
}

.malt-intro .malt-right {
  width: 411px;
  height: 305px;
  position: absolute;
  top: 30px;
  right: 60px;
  padding: 35px 80px 0 35px;
  z-index: 2;
}

@media only screen and (max-width: 1004px) {
  .malt-intro .malt-right {
    width: 50%;
    right: 0px;
    background-size: contain;
  }
}

@media only screen and (max-width: 568px) {
  .malt-intro .malt-right {
    width: 100%;
  }
}

.malt-intro .cloud1 {
  position: absolute;
  top: 30px;
  right: 50px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 104px;
  height: 48px;
  z-index: 1;
  -webkit-animation: shake 50s linear infinite;
  -moz-animation: shake 60s linear infinite;
  -o-animation: shake 50s linear infinite;
}

@media only screen and (max-width: 568px) {
  .malt-intro .cloud1 {
    display: none;
  }
}

.malt-intro .cloud2 {
  position: absolute;
  top: 150px;
  right: 0px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 49px;
  height: 22px;
  z-index: 1;
  -webkit-animation: shake 60s linear infinite;
  -moz-animation: shake 60s linear infinite;
  -o-animation: shake 60s linear infinite;
}

@media only screen and (max-width: 568px) {
  .malt-intro .cloud2 {
    display: none;
  }
}

.malt-intro .cloud3 {
  position: absolute;
  top: 260px;
  right: 50px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 64px;
  height: 30px;
  z-index: 1;
  -webkit-animation: shake 70s linear infinite;
  -moz-animation: shake 70s linear infinite;
  -o-animation: shake 70s linear infinite;
}

@media only screen and (max-width: 568px) {
  .malt-intro .cloud3 {
    display: none;
  }
}

.malt-intro .cloud4 {
  position: absolute;
  top: 80px;
  left: -20px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 104px;
  height: 48px;
  z-index: 1;
  -webkit-animation: shake 50s linear infinite;
  -moz-animation: shake 50s linear infinite;
  -o-animation: shake 50s linear infinite;
}

@media only screen and (max-width: 568px) {
  .malt-intro .cloud4 {
    display: none;
  }
}

.malt-intro .cloud5 {
  position: absolute;
  top: 200px;
  left: -35px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 49px;
  height: 22px;
  z-index: 1;
  -webkit-animation: shake 70s linear infinite;
  -moz-animation: shake 70s linear infinite;
  -o-animation: shake 70s linear infinite;
}

@media only screen and (max-width: 568px) {
  .malt-intro .cloud5 {
    display: none;
  }
}

.power-of-malt {
  background: url(../img/adventures-background.jpg) center center no-repeat;
  background-size: cover;
  padding: 70px 0;
}

.power-of-malt ul {
  margin: 100px 0 0 0;
}

.power-of-malt ul li {
  float: left;
  width: 32%;
  margin: 0 2% 0 0;
  padding: 0 30px;
}

@media only screen and (max-width: 568px) {
  .power-of-malt ul li {
    float: none;
    width: 100%;
    margin: 0 0 50px;
  }
}

.power-of-malt ul li:last-child {
  margin: 0;
}

.power-of-malt ul li img {
  margin: 0 0 50px 0;
}

@media only screen and (max-width: 568px) {
  .power-of-malt ul li img {
    margin: 0 0 20px 0;
  }
}

.power-of-malt ul li h3 {
  font-family: 'Amatic SC', cursive;
  font-weight: normal;
  font-size: 33px;
  line-height: 39px;
  margin: 0 0 20px;
  color: #FFF;
}

.power-of-malt ul li p {
  font-size: 16px;
  line-height: 21px;
  font-family: 'fs_meregular';
}

.how-its-made {
  background: url(../img/how-its-made-background.png) center center no-repeat;
  background-size: cover;
  height: 640px;
  margin: 0 0 120px;
}

@media only screen and (max-width: 768px) {
  .how-its-made {
    margin: 0 0 0 0;
  }
}

@media only screen and (max-width: 568px) {
  .how-its-made {
    height: auto;
    margin: 0 0 0 0;
  }
}

@media only screen and (max-width: 768px) {
  .how-its-made .inner-content-wrapper {
    width: 700px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 568px) {
  .how-its-made .inner-content-wrapper {
    width: 100%;
    margin: 0 auto;
  }
}

.how-its-made .malt-carousel {
  height: 640px;
}

@media only screen and (max-width: 568px) {
  .how-its-made .malt-carousel {
    display: none;
  }
}

.how-its-made .malt-carousel ul {
  height: 640px;
}

.how-its-made .malt-carousel ul li {
  text-align: center !important;
  height: 640px;
}

.how-its-made .malt-carousel ul li div {
  display: inline-block !important;
  text-align: center !important;
  margin: 0 auto !important;
}

@media only screen and (max-width: 568px) {
  .how-its-made .malt-carousel ul li div {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.how-its-made .malt-carousel ul li div img {
  display: inline-block !important;
  text-align: center !important;
  margin: 0 0 0 0;
}

.how-its-made .malt-carousel ul li div p {
  font-size: 16px;
  line-height: 21px;
  font-family: 'fs_meregular';
  padding: 0 20px;
}

@media only screen and (max-width: 568px) {
  .how-its-made .malt-carousel ul li div p br {
    display: none;
  }
}

.how-its-made .malt-carousel-mobile {
  display: none;
}

@media only screen and (max-width: 568px) {
  .how-its-made .malt-carousel-mobile {
    display: block;
  }
}

.how-its-made .malt-carousel-mobile ul li {
  float: none;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.how-its-made .malt-carousel-mobile ul li:first-child {
  padding: 25px 0 0 0;
}

.how-its-made .malt-carousel-mobile ul li:first-child img {
  width: 90%;
  margin: 0 0 50px;
}

.how-its-made .malt-carousel-mobile ul li img {
  width: 100%;
  height: auto;
}

.how-its-made .malt-carousel-mobile ul li p {
  font-size: 16px;
  line-height: 21px;
  font-family: 'fs_meregular';
  padding: 0 20px;
}

@media only screen and (max-width: 568px) {
  .how-its-made .malt-carousel-mobile ul li p br {
    display: none;
  }
}

.how-loaves-are-made {
  background: url(../img/how-our-loaves-are-made-background.png) center center no-repeat;
  background-size: cover;
  height: 820px;
  margin: 0 0 120px;
}

@media only screen and (max-width: 768px) {
  .how-loaves-are-made {
    margin: 0 0 0 0;
  }
}

@media only screen and (max-width: 568px) {
  .how-loaves-are-made {
    height: auto;
    margin: 50px 0 0 0;
  }
}

@media only screen and (max-width: 568px) {
  .how-loaves-are-made .malt-carousel {
    display: none;
  }
}

.how-loaves-are-made .malt-carousel ul {
  height: 820px;
}

.how-loaves-are-made .malt-carousel ul li {
  text-align: center !important;
  height: 820px;
  padding: 80px 0 0 0;
}

.how-loaves-are-made .malt-carousel ul li div {
  display: inline-block !important;
  text-align: center !important;
  margin: 0 auto !important;
  /* @include vertical-align; */
}

.how-loaves-are-made .malt-carousel ul li div img {
  display: inline-block !important;
  text-align: center !important;
  margin: 0 0 0 0;
}

.how-loaves-are-made .malt-carousel ul li div p {
  font-size: 16px;
  line-height: 21px;
  font-family: 'fs_meregular';
  padding: 0 20px;
}

@media only screen and (max-width: 568px) {
  .how-loaves-are-made .malt-carousel ul li div p br {
    display: none;
  }
}

.how-loaves-are-made .malt-carousel-mobile {
  display: none;
}

@media only screen and (max-width: 568px) {
  .how-loaves-are-made .malt-carousel-mobile {
    display: block;
  }
}

.how-loaves-are-made .malt-carousel-mobile ul li {
  float: none;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.how-loaves-are-made .malt-carousel-mobile ul li:first-child {
  padding: 25px 0 0 0;
}

.how-loaves-are-made .malt-carousel-mobile ul li:first-child img {
  width: 90%;
  margin: 0 0 50px;
}

.how-loaves-are-made .malt-carousel-mobile ul li img {
  width: 100%;
  height: auto;
}

.how-loaves-are-made .malt-carousel-mobile ul li p {
  font-size: 16px;
  line-height: 21px;
  font-family: 'fs_meregular';
  padding: 0 20px;
}

@media only screen and (max-width: 568px) {
  .how-loaves-are-made .malt-carousel-mobile ul li p br {
    display: none;
  }
}

.eee-intro {
  height: 470px;
  position: relative;
}

@media only screen and (max-width: 1004px) {
  .eee-intro {
    height: 350px;
  }
}

@media only screen and (max-width: 568px) {
  .eee-intro {
    height: 300px;
  }
}

.eee-intro .eee-left {
  position: absolute;
  background: url(../img/eee-left.png) no-repeat;
  width: 508px;
  height: 319px;
  top: 50px;
  left: 0px;
  z-index: 2;
}

@media only screen and (max-width: 1004px) {
  .eee-intro .eee-left {
    width: 50%;
    background: url(../img/eee-left.png) no-repeat;
    background-size: contain;
    height: 270px;
  }
}

@media only screen and (max-width: 568px) {
  .eee-intro .eee-left {
    display: none;
  }
}

.eee-intro .eee-right {
  position: absolute;
  background: url(../img/eee-right.png) no-repeat;
  background-size: contain;
  width: 634px;
  height: 386px;
  z-index: 2;
  top: 0px;
  right: 0px;
  text-indent: -9999px;
}

@media only screen and (max-width: 1004px) {
  .eee-intro .eee-right {
    width: 50%;
    height: 270px;
  }
}

@media only screen and (max-width: 568px) {
  .eee-intro .eee-right {
    width: 100%;
    height: 270px;
  }
}

.eee-intro .cloud1 {
  position: absolute;
  top: -20px;
  left: 270px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 101px;
  height: 46px;
  z-index: 1;
  -webkit-animation: shake 60s linear infinite;
  -moz-animation: shake 60s linear infinite;
  -o-animation: shake 60s linear infinite;
}

@media only screen and (max-width: 768px) {
  .eee-intro .cloud1 {
    display: none;
  }
}

.eee-intro .cloud2 {
  position: absolute;
  top: 30px;
  right: 60px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 81px;
  height: 37px;
  z-index: 1;
  -webkit-animation: shake 40s linear infinite;
  -moz-animation: shake 40s linear infinite;
  -o-animation: shake 40s linear infinite;
}

@media only screen and (max-width: 768px) {
  .eee-intro .cloud2 {
    display: none;
  }
}

.eee-intro .cloud3 {
  position: absolute;
  top: 130px;
  right: 0px;
  left: auto;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 49px;
  height: 22px;
  z-index: 1;
  -webkit-animation: shake 50s linear infinite;
  -moz-animation: shake 50s linear infinite;
  -o-animation: shake 50s linear infinite;
}

@media only screen and (max-width: 768px) {
  .eee-intro .cloud3 {
    display: none;
  }
}

.eee-intro .cloud4 {
  position: absolute;
  top: 80px;
  left: 0px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 101px;
  height: 46px;
  z-index: 1;
  -webkit-animation: shake 70s linear infinite;
  -moz-animation: shake 70s linear infinite;
  -o-animation: shake 70s linear infinite;
}

@media only screen and (max-width: 768px) {
  .eee-intro .cloud4 {
    display: none;
  }
}

.eee-intro .cloud5 {
  position: absolute;
  top: 170px;
  left: 50px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 49px;
  height: 22px;
  z-index: 3;
  -webkit-animation: shake 50s linear infinite;
  -moz-animation: shake 50s linear infinite;
  -o-animation: shake 50s linear infinite;
}

@media only screen and (max-width: 768px) {
  .eee-intro .cloud5 {
    display: none;
  }
}

.ee-section {
  background: url(../img/ee-background.png) center center no-repeat;
  background-size: cover;
  padding: 65px 0px;
}

.ee-section .ee-content-wrapper {
  width: 750px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .ee-section .ee-content-wrapper {
    width: 100%;
    padding: 0 50px;
  }
}

.ee-section .ee-content-wrapper .ee-grid {
  margin: 60px 0 30px 0;
}

.ee-section .ee-content-wrapper .ee-grid li {
  width: 310px;
  margin: 0 0 30px;
  float: left;
}

@media only screen and (max-width: 768px) {
  .ee-section .ee-content-wrapper .ee-grid li {
    width: 45%;
  }
}

@media only screen and (max-width: 568px) {
  .ee-section .ee-content-wrapper .ee-grid li {
    float: none;
    width: 100%;
  }
}

.ee-section .ee-content-wrapper .ee-grid li:nth-child(2n+2) {
  float: right;
}

@media only screen and (max-width: 568px) {
  .ee-section .ee-content-wrapper .ee-grid li:nth-child(2n+2) {
    float: none;
    width: 100%;
  }
}

.ee-section .ee-content-wrapper .ee-grid li .thumbnail {
  background: #FFF;
  border-radius: 10px;
  padding: 10px;
  margin: 0 0 10px 0;
}

.ee-section .ee-content-wrapper .ee-grid li .thumbnail img {
  width: 100%;
  height: auto;
}

.ee-section .ee-content-wrapper .ee-grid li .thumbnail-text {
  height: 90px;
}

.ee-section .ee-content-wrapper .ee-grid li.single {
  float: none;
  display: inline-block;
}

.ee-section .product-carousel ul li {
  min-height: 130px;
  position: relative;
  background: url(../img/product-shadow-dark-background.png) bottom center no-repeat !important;
}

.endorsements-section {
  background: url(../img/endorsements-background.png) center center no-repeat;
  background-size: cover;
  padding: 65px 0;
}

@media only screen and (max-width: 768px) {
  .endorsements-section {
    margin: 0 0 50px;
  }
}

@media only screen and (max-width: 568px) {
  .endorsements-section {
    padding: 65px 0 15px 0;
  }
}

.endorsements-content-wrapper {
  width: 830px;
  margin: 0 auto;
}

@media only screen and (max-width: 1004px) {
  .endorsements-content-wrapper {
    width: 100%;
    padding: 30px;
  }
}

.endorsements-content-wrapper p {
  margin: 0 0 50px;
}

@media only screen and (max-width: 568px) {
  .endorsements-content-wrapper p br {
    display: none;
  }
}

.endorsements-content-wrapper ul.endorsements {
  margin: 75px 0 0 0;
  padding: 0;
}

@media only screen and (max-width: 568px) {
  .endorsements-content-wrapper ul.endorsements {
    margin: 0;
  }
}

.endorsements-content-wrapper ul.endorsements li {
  float: left;
  width: 380px;
}

@media only screen and (max-width: 768px) {
  .endorsements-content-wrapper ul.endorsements li {
    width: 45%;
  }
}

@media only screen and (max-width: 568px) {
  .endorsements-content-wrapper ul.endorsements li {
    float: none;
    width: 100%;
    margin: 0 0 50px;
  }
}

.endorsements-content-wrapper ul.endorsements li:nth-child(2n+2) {
  float: right;
}

@media only screen and (max-width: 568px) {
  .endorsements-content-wrapper ul.endorsements li:nth-child(2n+2) {
    float: none;
    width: 100%;
  }
}

.endorsements-content-wrapper ul.endorsements li .endorsement-logo {
  width: 170px;
  height: 170px;
  margin: 0 auto 20px auto;
}

.endorsements-content-wrapper ul.endorsements li h4 {
  font-family: 'fs_mebold';
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #FFF;
}

.endorsements-content-wrapper ul.endorsements li p {
  font-family: 'fs_meregular';
  font-size: 18px;
  margin: 0 0 10px 0;
}

.endorsements-content-wrapper ul.endorsements li.single {
  float: none;
  display: inline-block;
}

.where-to-buy-intro {
  margin: 0 0 150px 0;
}

@media only screen and (max-width: 768px) {
  .where-to-buy-intro {
    margin: 0 0 100px 0;
  }
}

@media only screen and (max-width: 568px) {
  .where-to-buy-intro {
    margin: 0 0 50px 0;
  }
}

.where-to-buy-intro-left {
  float: left;
  width: 45%;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 568px) {
  .where-to-buy-intro-left {
    float: none;
    width: 100%;
  }
}

.where-to-buy-intro-right {
  float: right;
  width: 45%;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 568px) {
  .where-to-buy-intro-right {
    float: none;
    width: 100%;
  }
}

.where-to-buy-intro h1 {
  margin: 0 0 20px 0;
}

.where-to-buy-intro p {
  font-size: 14px;
  line-height: 19px;
  margin: 0 0 5px;
  font-family: 'fs_meregular';
}

.where-to-buy-intro p a {
  color: #FFF;
}

.where-to-buy-intro p a:hover {
  text-decoration: none;
}

.where-to-buy-intro .cloud1 {
  position: absolute;
  top: 0px;
  right: 0px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 64px;
  height: 29px;
  z-index: 1;
  -webkit-animation: shake 70s linear infinite;
  -moz-animation: shake 70s linear infinite;
  -o-animation: shake 70s linear infinite;
}

.where-to-buy-intro .cloud2 {
  position: absolute;
  top: 170px;
  left: 0px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 94px;
  height: 43px;
  z-index: 1;
  -webkit-animation: shake 60s linear infinite;
  -moz-animation: shake 60s linear infinite;
  -o-animation: shake 60s linear infinite;
}

.where-to-buy-intro .cloud3 {
  position: absolute;
  top: 220px;
  left: 250px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 45px;
  height: 20px;
  z-index: 1;
  -webkit-animation: shake 40s linear infinite;
  -moz-animation: shake 40s linear infinite;
  -o-animation: shake 40s linear infinite;
}

#buy {
  padding: 20px;
  background: #ffffff;
  border-radius: 5px;
  width: 100%;
  border-collapse: separate !important;
  margin: 0 0 160px;
}

@media only screen and (max-width: 768px) {
  #buy {
    margin: 0 0 50px;
  }
}

@media only screen and (max-width: 568px) {
  #buy {
    display: none;
  }
}

#buy thead p {
  font-size: 16px;
  color: #66116D;
  line-height: 50px;
  height: 50px;
}

#buy td {
  min-height: 50px;
  padding: 2px 0;
}

#buy thead td,
#buy tfoot td {
  height: auto;
}

#buy tbody tr:nth-child(odd) {
  background: #FEF0D0;
}

#buy .product {
  width: 370px;
}

#buy .product .image_cont {
  width: 70px;
  height: 48px;
  float: left;
}

@media only screen and (max-width: 768px) {
  #buy .product .image_cont {
    display: none;
  }
}

#buy .product p a {
  float: left;
  padding-left: 30px;
  font-size: 16px;
  color: #66116D;
  min-height: 50px;
  text-decoration: none;
  max-width: 195px;
}

@media only screen and (max-width: 768px) {
  #buy .product p a {
    padding-left: 10px;
    font-size: 14px;
  }
}

#buy .product p a:hover {
  color: #CC1126;
}

#buy .product p br {
  display: none;
}

#buy .product .image_cont img {
  width: 100%;
}

#buy .tick {
  background: url(../img/buy_tick.png) center center no-repeat;
}

#buy .cross {
  background: url("../img/buy_cross.png") center center no-repeat;
}

#mobile_buy {
  border-radius: 16px;
  background: #E79300;
  display: none;
}

@media only screen and (max-width: 568px) {
  #mobile_buy {
    display: block;
    margin: 0 0 100px;
  }
}

#mobile_buy .product {
  overflow: hidden;
  position: relative;
}

#mobile_buy .product .title {
  padding: 15px 20px;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
  font-family: 'fs_mebold';
  margin: 0;
  cursor: pointer;
  background: url(../img/mobile/mobile-buy-header-bg.png) bottom left repeat-x;
}

@media only screen and (max-width: 568px) {
  #mobile_buy .product .title br {
    display: none;
  }
}

#mobile_buy .product:last-child .title,
#mobile_buy .product .title.active {
  background: none;
}

#mobile_buy .product .image_cont {
  width: 25%;
  float: left;
}

#mobile_buy .product .image_cont img {
  width: 100%;
}

#mobile_buy .product .content {
  background: url(../img/mobile/mobile-buy-arrow.png) top left no-repeat;
  background-color: #FFFFFF;
  padding-bottom: 20px;
}

#mobile_buy .product ul {
  clear: both;
  padding-bottom: 20px;
  padding-top: 8px;
}

#mobile_buy .product ul li {
  text-transform: capitalize;
  padding: 10px 60px;
  font-family: 'fs_meregular';
  border-bottom: 1px solid #CCCCCC;
  background: url(../img/mobile/mobile-buy-tick.png) 28px 12px no-repeat;
}

#mobile_buy .product a {
  padding: 10px;
  display: inline-block;
  background: #FCB415;
  color: #66116C;
  border-radius: 5px;
  margin-left: 20px;
  width: auto;
  text-align: center;
  text-decoration: none;
}

.product-header {
  margin: 0 0 50px 0;
  height: 330px;
  position: relative;
}

@media only screen and (max-width: 1004px) {
  .product-header {
    height: 250px;
  }
}

@media only screen and (max-width: 568px) {
  .product-header {
    margin: 0;
  }
}

.product-header-left {
  width: 563px;
  height: 312px;
  background: url(../img/product-header-left.png) no-repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}

@media only screen and (max-width: 1004px) {
  .product-header-left {
    width: 50%;
    height: 250px;
    background: url(../img/product-header-left.png) no-repeat;
    background-size: contain;
  }
}

@media only screen and (max-width: 568px) {
  .product-header-left {
    width: 100%;
    top: auto;
    left: auto;
    position: relative;
    display: none;
  }
}

.product-header-right {
  width: 499px;
  height: 303px;
  background: url(../img/product-header-right.png) no-repeat;
  position: absolute;
  top: 55px;
  right: 0px;
}

@media only screen and (max-width: 1004px) {
  .product-header-right {
    width: 50%;
    top: 30px;
    height: 250px;
    background: url(../img/product-header-right.png) no-repeat;
    background-size: contain;
  }
}

@media only screen and (max-width: 568px) {
  .product-header-right {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    background: url(../img/product-header-right.png) center center no-repeat;
    background-size: contain;
  }
}

.product-header h1 {
  margin: 0 0 20px 0;
}

.product-header p {
  font-size: 14px;
  line-height: 19px;
  margin: 0 0 5px;
  font-family: 'fs_meregular';
}

.product-header .cloud1 {
  position: absolute;
  top: 0px;
  left: 140px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 44px;
  height: 20px;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .product-header .cloud1 {
    display: none;
  }
}

.product-header .cloud2 {
  position: absolute;
  top: 50px;
  left: 0px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 104px;
  height: 48px;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .product-header .cloud2 {
    display: none;
  }
}

.product-header .cloud3 {
  position: absolute;
  top: 150px;
  right: 0px;
  left: auto;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: contain;
  width: 86px;
  height: 40px;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .product-header .cloud3 {
    display: none;
  }
}

.product-header .cloud4 {
  position: absolute;
  top: 350px;
  right: 140px;
  left: auto;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 44px;
  height: 20px;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .product-header .cloud4 {
    display: none;
  }
}

.product-header .cloud5 {
  position: absolute;
  top: 500px;
  right: 20px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: contain;
  width: 61px;
  height: 28px;
  z-index: 1;
  -webkit-animation: shake 60s linear infinite;
  -moz-animation: shake 60s linear infinite;
  -o-animation: shake 60s linear infinite;
}

@media only screen and (max-width: 768px) {
  .product-header .cloud5 {
    display: none;
  }
}

.product-wrapper {
  width: 840px;
  margin: 0 auto 120px auto;
}

@media only screen and (max-width: 1004px) {
  .product-wrapper {
    width: 100%;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 768px) {
  .product-wrapper {
    margin: 0 auto 20px auto;
  }
}

#product_tabs {
  margin: 0 0 70px;
  background: none !important;
}

@media only screen and (max-width: 568px) {
  #product_tabs {
    display: none;
  }
}

#product_tabs #product_filter_tabs {
  position: relative;
  top: 10px !important;
  z-index: 8;
  outline: none !important;
}

@media only screen and (max-width: 1004px) {
  #product_tabs #product_filter_tabs {
    top: 6px !important;
  }
}

#product_tabs #product_filter_tabs li {
  float: left;
  margin-left: 30px;
  outline: none !important;
}

#product_tabs #product_filter_tabs li a {
  padding: 0 0 30px;
  display: block;
  color: #FFF;
  background: transparent url(../img/product-tab-inactive.png) bottom center no-repeat;
  text-decoration: none;
  font-size: 32px;
  text-transform: uppercase;
  font-family: 'Amatic SC', cursive;
  outline: none !important;
}

@media only screen and (max-width: 768px) {
  #product_tabs #product_filter_tabs li a {
    font-size: 24px;
  }
}

#product_tabs #product_filter_tabs li.ui-state-active a {
  color: #FFFFFF;
  background: transparent url(../img/product-tab-active.png) bottom center no-repeat;
}

#product_filter {
  clear: both;
  overflow: hidden;
  position: relative;
  z-index: 10;
  background: url(../img/product-filter-wrapper.png) no-repeat;
  height: 184px;
}

@media only screen and (max-width: 1004px) {
  #product_filter {
    background-image: none;
    background: #FFF;
    border-radius: 20px;
    height: auto;
  }
}

@media only screen and (max-width: 568px) {
  #product_filter {
    display: none;
  }
}

#product_filter ul li {
  height: 33px;
  float: left;
  padding-left: 10px;
  margin-left: 0px;
  margin-bottom: 15px;
  outline: none !important;
}

#product_filter ul li a {
  margin-top: 5px;
  margin-left: 0px;
  font-size: 15px;
  width: 160px;
  height: 23px;
  line-height: 23px;
  display: block;
  text-decoration: none;
  color: #EF9900;
  font-family: 'fs_mebold';
  padding-left: 35px;
  outline: none !important;
  background: url(../img/filter-tick-sprite.png) 0 -23px no-repeat;
}

#product_filter ul li.active a {
  outline: none !important;
  background: url(../img/filter-tick-sprite.png) 0 0 no-repeat;
}

#product_filter ul li a:hover {
  text-decoration: underline;
}

#product_filter .view_all {
  background: url(../img/product-viewall-button.png) no-repeat;
  display: block;
  height: 37px;
  width: 115px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-indent: -9999px;
}

@media only screen and (max-width: 768px) {
  #product_filter .view_all {
    position: relative;
    bottom: auto;
    right: auto;
  }
}

.product-wrapper .ui-tabs {
  padding: 0 !important;
  outline: none !important;
}

.product-wrapper .ui-corner-all {
  border: none !important;
  outline: none !important;
}

.product-wrapper .ui-widget-header {
  background: none !important;
  outline: none !important;
}

.product-wrapper .ui-state-default, .product-wrapper .ui-widget-content .ui-state-default, .product-wrapper .ui-widget-header .ui-state-default {
  border: none !important;
  border-bottom-width: 1px;
  background: none !important;
  outline: none !important;
}

#product_list {
  text-align: center;
}

#product_list p {
  font-family: 'fs_mebold';
}

#product_list ul li {
  float: left;
  width: 25%;
  text-align: center;
  position: relative;
  padding: 0 0 30px 0;
  margin: 0 0 50px 0;
}

@media only screen and (max-width: 568px) {
  #product_list ul li {
    width: 50%;
  }
}

#product_list ul li a {
  text-decoration: none !important;
}

#product_list ul li a h3 {
  font-size: 16px;
  line-height: 20px;
  line-height: normal;
  font-family: 'fs_mebold';
  height: 50px;
  margin: 0;
  text-transform: none;
}

#product_list ul li a .featured {
  height: 150px;
  position: relative;
}

#product_list ul li a .featured img.default {
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 1004px) {
  #product_list ul li a .featured img.default {
    width: 100%;
  }
}

#product_list ul li a .featured img.hover {
  display: none;
}

#product_list ul li a .featured .new {
  position: absolute;
  top: 100px;
  right: 0px;
  z-index: 10;
}

#product_list ul li .product-shadow {
  width: 100%;
  height: 46px;
  background: url(../img/product-shadow-light.png) bottom center no-repeat;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}

.vegan_product {
  position: absolute;
  top: 60px;
  right: 10px;
  z-index: 10;
  width: 70px;
}

.product-wrapper .vegan_product {
  top: 90px;
  right: auto;
  left: 15px;
}

.bx-viewport .vegan_product {
  top: 70px;
  left: 10px;
}

.product-hero {
  float: left;
  width: 470px;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 1004px) {
  .product-hero {
    float: none;
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
}

@media only screen and (max-width: 568px) {
  .product-hero {
    float: none;
    width: 100%;
  }
}

.product-hero img {
  width: 100%;
  height: auto;
}

.product-header-info {
  float: right;
  width: 470px;
  margin: 0 0 100px;
  position: relative;
}

@media only screen and (max-width: 1004px) {
  .product-header-info {
    float: none;
    width: 70%;
    margin: 0 auto 50px auto;
  }
}

@media only screen and (max-width: 568px) {
  .product-header-info {
    float: none;
    width: 100%;
    margin: 0 0 50px;
  }
}

.product-header-info h1 {
  font-size: 64px;
  line-height: 64px;
  margin: 0 0 0px 0;
  color: #FFF;
  font-family: 'Amatic SC', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

.product-header-info h1 span {
  color: #702380;
  font-size: 16px;
  font-family: 'fs_mebold';
}

.product-header-info p {
  color: #702380;
  position: relative;
  z-index: 4;
}

@media only screen and (max-width: 568px) {
  .product-header-info p br {
    display: none;
  }
}

.product-header-info .checklist {
  min-height: 150px;
}

.product-header-info .checklist ul {
  margin: 0 0 20px 0;
}

.product-header-info .checklist ul li {
  background: url(../img/checklist-tick.png) no-repeat 0px 0px;
  padding: 0 0 0 40px;
  margin: 0 0 5px 0;
  font-size: 15px;
  color: #FFF;
}

.product-header-info .buy-signpost {
  position: absolute;
  bottom: -50px;
  right: 0px;
}

@media only screen and (max-width: 568px) {
  .product-header-info .buy-signpost {
    position: relative;
    bottom: auto;
    right: auto;
  }
}

.ingredients-panel {
  float: left;
  width: 50%;
  background: url(../img/how-its-made-background.png) center center no-repeat;
  background-size: cover;
  height: 550px;
}

@media only screen and (max-width: 768px) {
  .ingredients-panel {
    float: none;
    width: 100%;
    height: auto;
  }
}

.ingredients-panel-content {
  float: right;
  width: 470px;
  padding: 25px 25px 0 25px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .ingredients-panel-content {
    float: none;
    width: 100%;
    padding: 25px 25px 15px 25px;
  }
}

.ingredients-panel-content p {
  font-size: 16px;
  line-height: 20px;
  font-family: 'fs_meregular';
}

.ingredients-panel-content h2 {
  margin: 0 0 15px 0;
}

.ingredients-panel-content h3 {
  font-size: 16px;
  line-height: 20px;
  text-transform: none;
  font-family: 'fs_mebold';
}

.nutrition-panel {
  float: right;
  width: 50%;
  background: url(../img/how-our-loaves-are-made-background.png) center center no-repeat;
  background-size: cover;
  height: 550px;
}

@media only screen and (max-width: 768px) {
  .nutrition-panel {
    float: none;
    width: 100%;
    height: auto;
  }
}

.nutrition-panel-content {
  float: left;
  width: 470px;
  padding: 25px 25px 0 25px;
}

@media only screen and (max-width: 768px) {
  .nutrition-panel-content {
    float: none;
    width: 100%;
    padding: 25px 25px 15px 25px;
  }
}

.nutrition-panel-content h2 {
  text-align: center;
  margin: 0 0 10px 0;
}

.nutrition-panel-content table {
  color: #FFF;
}

.nutrition-panel-content table th {
  text-align: left;
  padding: 0 0 10px 0;
  font-weight: normal;
  font-family: 'fs_mebold';
}

.nutrition-panel-content table td {
  text-align: left;
  padding: 5px 0 10px 0;
  font-weight: normal;
  font-family: 'fs_meregular';
}

.related-products {
  clear: both;
  background: url(../img/whynottry-background.png) center center no-repeat;
  background-size: cover;
  padding: 40px 0;
  text-align: center;
}

.related-products ul li.sliderimage {
  width: 170px;
  text-align: center;
  height: 130px;
  display: inline-block;
  position: relative;
}

.related-products ul li.sliderimage img {
  width: 100%;
  height: auto;
}

.related-products ul li.sliderimage .shadow {
  width: 100%;
  height: 50px;
  background: url(../img/related-product-shadow.png) bottom center no-repeat;
}

.malt-life-panel {
  float: left;
  width: 50%;
  background: url(../img/how-our-loaves-are-made-background.png) center center no-repeat;
  background-size: cover;
  min-height: 450px;
  margin: 0 0 100px 0;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .malt-life-panel {
    float: none;
    width: 100%;
    min-height: auto;
    height: auto;
    margin: 0 0 0 0;
  }
}

.malt-life-panel-content {
  float: right;
  width: 470px;
  padding: 25px 25px 0 25px;
}

@media only screen and (max-width: 768px) {
  .malt-life-panel-content {
    float: none;
    width: 100%;
    padding: 25px 25px 15px 25px;
  }
}

.malt-life-panel-image {
  background: url(../img/single-image-wrapper.png) no-repeat;
  background-size: cover;
  padding: 15px;
  margin: 0 auto 20px auto;
  width: 314px;
  height: 259px;
}

.malt-life-panel ul li {
  display: inline-block;
  margin: 0 10px;
}

.recipe-panel {
  float: left;
  width: 50%;
  background: url(../img/bakeit-background.png) center center no-repeat;
  background-size: cover;
  min-height: 450px;
  margin: 0 0 100px 0;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .recipe-panel {
    float: none;
    width: 100%;
    min-height: auto;
    height: auto;
    margin: 0 0 50px 0;
  }
}

.recipe-panel-content {
  float: left;
  width: 470px;
  padding: 25px 25px 0 25px;
}

@media only screen and (max-width: 768px) {
  .recipe-panel-content {
    float: none;
    width: 100%;
    padding: 25px 25px 15px 25px;
  }
}

.recipe-panel-image {
  background: url(../img/single-image-wrapper.png) no-repeat;
  background-size: cover;
  padding: 15px;
  margin: 0 auto 20px auto;
  width: 314px;
  height: 259px;
}

.recipe-panel-image img {
  width: 100%;
  height: 100%;
}

.recipe-panel .recipe-link {
  float: right;
}

@media only screen and (max-width: 768px) {
  .recipe-panel .recipe-link {
    float: none;
    width: 209px;
    margin: 0 auto;
  }
}

.recipe-panel .recipe-link a {
  color: #FFF;
  text-decoration: none;
  width: 169px;
  height: 40px;
  padding: 0 20px;
  text-align: center;
  font-size: 16px;
  line-height: 40px;
  background: url(../img/recipe-link-background.png) 100% 50% no-repeat;
  background-size: cover;
}

.recipe-panel .recipe-arrow {
  background: url(../img/recipe-pointer.png) no-repeat;
  width: 42px;
  height: 16px;
  position: absolute;
  bottom: 70px;
  left: 200px;
}

@media only screen and (max-width: 768px) {
  .recipe-panel .recipe-arrow {
    display: none;
  }
}

.recipe-panel .recipe-text {
  width: 165px;
  height: auto;
  position: absolute;
  bottom: 20px;
  left: 50px;
}

@media only screen and (max-width: 768px) {
  .recipe-panel .recipe-text {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 0 auto 10px auto;
  }
}

.recipe-panel .recipe-text img {
  max-width: 100%;
  height: auto;
}

.buy-now-left {
  float: left;
  width: 600px;
  margin: 0 0 100px;
}

@media only screen and (max-width: 1004px) {
  .buy-now-left {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .buy-now-left {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }
}

.buy-now-left img {
  width: 100%;
  height: auto;
}

.buy-now-right {
  float: right;
  background: url(../img/buy-now-wrapper.svg) no-repeat;
  background-size: cover;
  width: 320px;
  padding: 10px;
  height: auto;
  margin: 0 0 100px;
}

@media only screen and (max-width: 768px) {
  .buy-now-right {
    float: none;
    margin: 0 auto 50px auto;
  }
}

.recipes {
  background: url(../img/endorsements-background.png) no-repeat;
  background-size: cover;
  margin: 0 0 120px;
  padding: 50px 0 30px 0;
}

.recipes ul li {
  float: left;
  width: 23.5%;
  margin: 0 2% 2% 0;
}

@media only screen and (max-width: 768px) {
  .recipes ul li {
    width: 48%;
    margin: 0 0 5% 0;
  }
}

@media only screen and (max-width: 568px) {
  .recipes ul li {
    float: none;
    width: 100%;
    margin: 0 0 5% 0;
  }
}

@media only screen and (max-width: 768px) {
  .recipes ul li:nth-child(2n+2) {
    float: right;
    margin: 0 0 5% 0;
  }
}

.recipes ul li:nth-child(4n+4) {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .recipes ul li:nth-child(4n+4) {
    margin: 0 0 5% 0;
  }
}

@media only screen and (max-width: 568px) {
  .recipes ul li:nth-child(4n+4) {
    margin: 0 0 5% 0;
  }
}

.recipes ul li a {
  text-decoration: none;
  display: inline-block;
  background: #FFF;
  padding: 15px;
  width: 100%;
  border-radius: 10px;
}

.recipes ul li a .featured {
  width: 100%;
  height: 160px;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 568px) {
  .recipes ul li a .featured {
    height: auto;
  }
}

.recipes ul li a .featured img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 568px) {
  .recipes ul li a .featured img {
    height: auto;
  }
}

.recipes ul li a h2 {
  font-family: 'fs_mebold';
  text-align: center;
  color: #702380;
  font-size: 15px;
  line-height: 20px;
  margin: 0 0 0;
  text-transform: none;
  height: 50px;
}

@media only screen and (max-width: 568px) {
  .recipes ul li a h2 {
    height: auto;
  }
}

.video-wrapper {
  width: 768px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .video-wrapper {
    width: 100%;
  }
}

.notebook {
  float: left;
  background: url("../img/notebook.jpg") left top repeat-y;
  background-color: #FFFFFF;
  padding: 0 25px 20px 55px;
  width: 430px;
  margin: 0 0 120px;
}

@media only screen and (max-width: 768px) {
  .notebook {
    float: none;
    width: 100%;
    margin: 0 0 50px;
  }
}

.notebook p {
  margin-bottom: 5px;
  color: #000;
  font-size: 16px;
  line-height: 21px;
}

.notebook .recipe_title {
  width: 117px;
  height: 59px;
  display: block;
  text-indent: -9999em;
  background: url("../img/recipe_header.png") left top no-repeat;
  padding-bottom: 15px;
}

.notebook .addthis_toolbox {
  padding: 20px 0;
}

.recipe-right {
  float: right;
  width: 450px;
}

@media only screen and (max-width: 768px) {
  .recipe-right {
    float: none;
    width: 100%;
    margin: 0 0 50px;
  }
}

.recipe-right h2 a {
  color: #FFF;
}

.recipe-right h2 a:hover {
  text-decoration: none;
}

.enquiry-form {
  margin: 0 auto 120px auto;
  width: 800px;
  /*
	.ginput_container.marketing-112,
	.ginput_container.acceptance-445 {
		float: left !important;
		width: 10% !important;
		overflow: hidden;
	}
	*/
}

@media only screen and (max-width: 1004px) {
  .enquiry-form {
    width: 100%;
    margin: 0 auto 50px auto;
  }
}

.enquiry-form .hide-weight-field {
  display: none;
}

.enquiry-form label {
  display: block;
  color: #FFF !important;
  padding: 0;
  margin: 0 0 1em 0;
}

.enquiry-form span.wpcf7-list-item-label {
  display: none;
}

.enquiry-form .gform_wrapper .ginput_container, .enquiry-form .gfield_captcha_input_container {
  width: 100% !important;
  margin: 0 !important;
  position: relative;
}

.enquiry-form .gform_wrapper .ginput_container input.wpcf7-form-control, .enquiry-form .gform_wrapper .ginput_container input, .enquiry-form .gfield_captcha_input_container input.wpcf7-form-control, .enquiry-form .gfield_captcha_input_container input {
  background: #FFF !important;
  width: 100%;
  margin: 0 0 20px;
  border-radius: 20px;
}

.enquiry-form .ginput_counter {
  position: absolute;
  right: 1em;
  top: 1em;
  color: #ccc;
  font-weight: normal;
}

.enquiry-form .submit-wrapper, .enquiry-form .gform_footer {
  clear: both;
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding: 30px 0 0 0;
}

.enquiry-form .ginput_container_fileupload input {
  padding: 1rem;
  line-height: 9px;
}

.enquiry-form .gform_wrapper .gform_button {
  background: #EE9800 !important;
  width: 200px;
  height: 42px;
  float: none;
  margin: 0px auto;
  text-align: center;
  text-indent: 0px;
  padding: 0 !important;
  cursor: pointer;
  color: #FFF;
  font-size: 16px;
  display: inline-block;
  border-radius: 20px;
}

.enquiry-form .gform_wrapper .gform_button:hover {
  background: #FFF !important;
  color: #EE9800;
}

.enquiry-form .gform_wrapper .win-competition-block {
  background: #EE9800 !important;
  width: 80%;
  float: none;
  margin: 45px auto;
  text-align: center;
  text-indent: 0px;
  padding: 15px 45px !important;
  border-radius: 20px;
}

.enquiry-form .hide-labels .gfield:not(.show-label) > label {
  display: none;
}

.enquiry-form .gfield_checkbox li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.enquiry-form .gfield_checkbox li label:not(:first-child) {
  width: 80%;
  font-size: 12px;
  line-height: 16px;
  color: #702380 !important;
}

.enquiry-form .gfield_checkbox li label:not(:first-child) a {
  color: inherit;
}

.enquiry-form .check {
  width: 2em;
}

.enquiry-form .check input[type="checkbox"] {
  display: none;
}

.enquiry-form .check input[type="checkbox"] + span {
  display: inline-block;
  width: 27px;
  height: 23px;
  margin: -2px 0px 0 0;
  padding: 0 0 0 30px;
  vertical-align: middle;
  background: url(../img/filter-tick-sprite.png) 0px -69px no-repeat;
  cursor: pointer;
  color: transparent;
}

.enquiry-form .check input[type="checkbox"]:checked + span {
  background: url(../img/filter-tick-sprite.png) 0px -46px no-repeat;
}

.enquiry-form .marketing-checkbox {
  clear: both;
  width: 5%;
  float: left;
  overflow: visible;
  /*
		p {
			display: none;
		}

		
		input[type="checkbox"], input[type="radio"] {
			box-sizing: border-box;
			padding: 0;
			width: 20px;
			height: 20px;
			position: relative;
			top: -1px;
			left: 0px;
		}
		*/
}

@media only screen and (max-width: 568px) {
  .enquiry-form .marketing-checkbox {
    width: 45px;
  }
}

.enquiry-form .marketing-checkbox input[type="checkbox"] {
  display: none;
}

.enquiry-form .marketing-checkbox input[type="checkbox"] + span {
  color: #EF9900;
}

.enquiry-form .marketing-checkbox input[type="checkbox"] + span {
  display: inline-block;
  width: 27px;
  height: 23px;
  margin: -2px 0px 0 0;
  padding: 0 0 0 30px;
  vertical-align: middle;
  background: url(../img/filter-tick-sprite.png) 0px -69px no-repeat;
  cursor: pointer;
  color: transparent;
}

.enquiry-form .marketing-checkbox input[type="checkbox"]:checked + span {
  background: url(../img/filter-tick-sprite.png) 0px -46px no-repeat;
}

.enquiry-form .marketing-label {
  float: left;
  width: 80%;
  font-size: 12px;
  line-height: 16px;
  display: block;
  text-align: left;
  color: #702380;
  margin: 7px 0 20px 2%;
}

.enquiry-form .marketing-label a {
  color: #702380;
  text-decoration: underline;
}

.enquiry-form .marketing-label a:hover {
  text-decoration: none;
}

.enquiry-form .cf7-select-wrap select, .enquiry-form .ginput_container_select select {
  padding: 5px;
  height: 45px;
  margin-bottom: 20px;
  width: 100%;
  color: #EE9800;
  padding: 0 15px;
  border-radius: 20px;
  background: #FFF url(../img/dropdown-arrow.gif) 100% 50% no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  margin: 0 0 20px;
}

.enquiry-form .cf7-select-wrap select:focus, .enquiry-form .ginput_container_select select:focus {
  outline: none;
}

.enquiry-form .ginput_container_textarea textarea {
  background: #FFF;
  width: 100%;
  height: 200px;
  resize: none;
  border: none;
  font-size: 15px;
  color: #EE9800;
  opacity: 1.0;
  padding: 15px 6em 15px 15px;
  margin: 0 0 20px;
  border-radius: 20px;
}

.enquiry-form .wpcf7-response-output.wpcf7-validation-errors, .enquiry-form .validation_error {
  background: #f00;
  color: #FFF;
  border: 2px solid #f00;
  border-radius: 20px;
  text-align: center;
  padding: 10px 0;
}

.enquiry-form span.wpcf7-not-valid-tip, .enquiry-form .validation_message {
  color: #f00;
  font-size: 1em;
  font-weight: normal;
  display: block;
  width: 100%;
  height: 1%;
  position: relative;
  top: -10px;
  padding: 0 0 0 15px;
  clear: left;
}

.enquiry-form .marketing-checkbox span.wpcf7-not-valid-tip {
  position: absolute;
  top: 30px;
  left: 0px;
  width: 300px;
}

.enquiry-form .batch-code-text, .enquiry-form .gfield_description {
  font-size: 12px;
  line-height: 16px;
  padding: 0 15px;
  text-align: left;
  position: relative;
  top: -10px;
  clear: both;
}

.enquiry-form .field-full-width img.wpcf7-captchac {
  margin: 0 0 15px 15px;
}

.enquiry-form div.wpcf7-mail-sent-ok {
  color: #FFF;
  position: relative !important;
  top: auto !important;
  background: #398f14;
  border: 2px solid #398f14;
  border-radius: 20px;
  text-align: center;
  padding: 10px 0;
}

#policy_filter {
  clear: both;
  overflow: hidden;
  position: relative;
  top: 5px;
  z-index: 10;
  background: #FFF;
  height: auto;
  border-radius: 10px;
}

#policy_filter p {
  font-size: 16px;
  color: #000;
  font-family: 'fs_meregular';
}

#policy_filter ul {
  margin: 20px;
}

#policy_filter ul li {
  font-size: 16px;
  font-family: 'fs_meregular';
  list-style-type: disc;
}

#policy_filter h3 {
  color: #000;
}

.faq-wrapper {
  overflow: hidden;
  position: relative;
  background: #FFF;
  padding: 25px;
  margin: 0 0 120px;
  border-radius: 10px;
}

.faq-wrapper .accordion {
  width: 100% !important;
}

.faq-wrapper .accordion-header {
  font-size: 30px;
  cursor: pointer;
  color: #EE9800;
}

.faq-wrapper .active-header {
  color: #EE9800;
  padding: 6px 10px 5px 0px;
  border-top: solid 2px #EE9800;
  background: #FFFFFF url(../img/minus.png) 100% 50% no-repeat;
  margin: 0px;
  text-transform: uppercase;
}

.faq-wrapper .active-header:hover {
  background: #FFFFFF url(../img/minus.png) 100% 50% no-repeat;
}

.faq-wrapper .inactive-header {
  padding: 6px 10px 5px 0px;
  border-top: solid 2px #EE9800;
  background: #FFFFFF url(../img/plus.png) 100% 50% no-repeat;
  margin: 0px;
  text-transform: uppercase;
}

.faq-wrapper .inactive-header:hover {
  margin: 0px;
}

.faq-wrapper .accordion-content {
  display: none;
  padding: 0px;
  width: 100% !important;
  background: #ffffff;
}

.faq-wrapper .accordion-content h3 {
  font-size: 16px;
  line-height: 21px;
  color: #CF0A2C;
  text-transform: none;
  margin: 0 0 10px 0;
  font-family: 'fs_mebold';
}

.faq-wrapper .accordion-content p a {
  color: #CF0A2C;
}

.faq-wrapper .accordion-content p a:hover {
  text-decoration: none;
}

.faq-wrapper p {
  font-size: 16px;
  color: #000;
  font-family: 'fs_meregular';
}

.faq-wrapper ul {
  margin: 20px;
}

.faq-wrapper ul li {
  font-size: 16px;
  font-family: 'fs_meregular';
  list-style-type: disc;
}

.faq-wrapper h3 {
  color: #000;
}

.blog-left {
  float: left;
  width: 636px;
  margin-bottom: 120px;
}

@media only screen and (max-width: 1004px) {
  .blog-left {
    width: 60%;
  }
}

@media only screen and (max-width: 568px) {
  .blog-left {
    float: none;
    width: 100%;
  }
}

.post-type-archive ul#posts_list {
  margin: 0;
  padding: 0;
}

.post-type-archive #posts_list li {
  width: 636px;
  height: 360px;
  position: relative;
  margin-bottom: 45px;
  border-radius: 5px;
  background: url("../img/blank_blog.jpg") no-repeat center center;
  background-color: #F29C0B;
  overflow: hidden;
}

@media only screen and (max-width: 1004px) {
  .post-type-archive #posts_list li {
    width: 100%;
    height: auto;
    background: 0 0;
    margin-bottom: 45px;
  }
}

.post-type-archive #posts_list li .image_cont img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.post-type-archive #posts_list li .content {
  color: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
  /*padding:20px;*/
  width: 100%;
  background: url(../img/red_trans_bg.png) repeat;
  border-radius: 0 0 5px 5px;
}

@media only screen and (max-width: 1004px) {
  .post-type-archive #posts_list li .content {
    position: relative;
    background: none;
    bottom: auto;
    left: 0;
  }
}

.post-type-archive #posts_list li .content p {
  padding-left: 20px;
  padding-right: 185px;
}

@media only screen and (max-width: 1004px) {
  .post-type-archive #posts_list li .content p {
    color: #333;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.post-type-archive #posts_list li .content p.title {
  padding-top: 20px;
}

.post-type-archive #posts_list li .stop_readmore {
  color: #FFFFFF;
  text-decoration: none;
  cursor: inherit;
}

.post-type-archive #posts_list li .content .slide {
  margin-top: 10px;
  display: none;
  position: relative;
  padding-right: 150px;
  padding-bottom: 20px;
}

.post-type-archive #posts_list li .content .title {
  font-size: 26px;
  margin-bottom: 10px;
}

.post-type-archive #posts_list li .content .date {
  font-size: 18px;
  margin-bottom: 20px;
}

.post-type-archive #posts_list li .content .address {
  margin-bottom: 10px;
}

.post-type-archive #posts_list li .content .website a {
  font-size: 16px;
  text-decoration: none;
  color: #FFFFFF;
}

.post-type-archive #posts_list li .content .website a:hover {
  color: #FFB200;
}

.post-type-archive #posts_list li .content .details {
  margin-top: 10px;
  font-size: 12px;
}

.post-type-archive #posts_list li .content .readmore {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #FCB415;
  border-radius: 5px;
  color: #D7191A;
  height: 45px;
  line-height: 45px;
  margin-top: 15px;
  text-align: center;
  text-decoration: none;
  width: 144px;
}

@media only screen and (max-width: 1004px) {
  .post-type-archive #posts_list li .content .readmore {
    margin-top: 20px;
    left: 0px;
    bottom: 0;
    position: relative;
    padding: 0;
    display: block;
    background: #D7191A;
    color: #FCB415;
  }
}

.post-type-archive #posts_list li .content .readmore:hover {
  color: #FCB415;
  background: #D7191A;
}

@media only screen and (max-width: 1004px) {
  .post-type-archive #posts_list li .content .readmore:hover {
    color: #D7191A;
    background: #FCB415;
  }
}

.post-type-archive .pagination a {
  height: 25px;
  line-height: 25px;
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 20px;
}

.post-type-archive .pagination a:hover {
  color: #CF1126;
}

.post-type-archive .pagination {
  display: block;
  width: 100%;
}

.post-type-archive .pagination .older {
  width: 50%;
  float: left;
}

.post-type-archive .pagination .newer {
  width: 50%;
  float: right;
}

.post-type-archive .pagination .older a {
  padding-left: 50px;
  background: url("../img/slider_left_sprite.png") bottom left no-repeat;
}

.post-type-archive .pagination .older a:hover {
  background-position: top left;
}

.post-type-archive .pagination .newer a {
  padding-right: 50px;
  background: url("../img/slider_right_sprite.png") bottom right no-repeat;
  text-align: right;
}

.post-type-archive .pagination .newer a:hover {
  background-position: top right;
}

.event_switcher {
  height: 160px;
  width: 224px;
  display: block;
  text-indent: -9999em;
  margin-top: -15px;
}

.event_switcher.upcoming {
  background: url("../img/previous_events_sprite.png") 0 0;
}

.event_switcher.previous {
  background: url("../img/upcoming_events_sprite.png") 0 0;
}

.event_switcher:hover {
  background-position: 0 -160px;
}

.filter-sidebar {
  width: 225px;
  float: right;
  margin-bottom: 120px;
}

@media only screen and (max-width: 1004px) {
  .filter-sidebar {
    width: 30%;
  }
}

@media only screen and (max-width: 568px) {
  .filter-sidebar {
    float: none;
    width: 100%;
  }
}

.filter-sidebar #categories,
.filter-sidebar #archives,
.filter-sidebar #recent {
  margin-bottom: 20px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 5px;
}

.filter-sidebar .title {
  font-size: 21px;
  color: #CC1126;
  margin-bottom: 10px;
}

.filter-sidebar a {
  color: #333333;
  text-decoration: none;
}

.filter-sidebar a:hover {
  color: #CC1126;
}

.filter-sidebar .category,
.filter-sidebar .month {
  margin-bottom: 7px;
  font-size: 14px;
}

.filter-sidebar .category {
  background: url("../img/sidebar_spacer.png") bottom left repeat-x;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  margin: 0;
}

.filter-sidebar .active a {
  color: #CC1126;
}

.filter-sidebar .category:last-child {
  background: none;
}

.filter-sidebar #archives .year {
  color: #CC1126;
  font-size: 15px;
  height: 35px;
  line-height: 35px;
  background: url("../img/sidebar_year_bg.png") bottom left repeat-x;
  margin-bottom: 10px;
  margin-top: 20px;
}

.filter-sidebar #archives .year:first-child {
  margin-top: 0;
}

.filter-sidebar #recent .category {
  padding: 10px 0;
  height: auto;
}

.filter-sidebar #recent .category p {
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
  margin: 0 !important;
}

.filter-sidebar #recent .date {
  font-size: 11px !important;
  color: #000;
  margin: 0;
}

.filter-sidebar #recent p.link {
  padding: 10px 0;
  background: url("../img/sidebar_spacer.png") bottom left repeat-x;
}

.filter-sidebar #recent p:last-child {
  background: none;
}

.filter-sidebar #recent p a {
  font-size: 11px;
}

.filter-sidebar #recent p a strong {
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
  margin: 0 !important;
}

article h1 {
  margin: 0 0 10px 0 !important;
}

.post_content {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 20px;
}

.post_content p,
.post_content ul,
.post_content ol,
.post_content blockquote,
.post_content li {
  margin-bottom: 1em;
  font-size: 12px;
  line-height: 17px;
  color: #000;
}

.post_content p strong {
  font-weight: normal !important;
  font-family: 'fs_mebold';
}

.post_content .addthis_toolbox {
  margin-top: 40px;
}

.post_content footer {
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}

.post_content footer p {
  font-size: 12px;
  color: #000;
  margin-bottom: 0;
}

.post_content footer a {
  font-size: 12px;
  color: #333333;
  text-decoration: none;
}

.post_content footer a:hover {
  text-decoration: underline;
}

.competition-hero .competition-hero-left {
  float: left;
  margin: 0 0 50px 50px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1004px) {
  .competition-hero .competition-hero-left {
    width: 50%;
    margin: 50px 0;
  }
}

@media only screen and (max-width: 568px) {
  .competition-hero .competition-hero-left {
    float: none;
    width: 100%;
    margin: 50px 0 0 0;
  }
}

@media only screen and (max-width: 1004px) {
  .competition-hero .competition-hero-left img {
    width: 100%;
    height: auto;
  }
}

.competition-hero .competition-hero-right {
  float: right;
}

@media only screen and (max-width: 1004px) {
  .competition-hero .competition-hero-right {
    width: 50%;
    margin: 50px 0;
  }
}

@media only screen and (max-width: 568px) {
  .competition-hero .competition-hero-right {
    float: none;
    width: 100%;
    margin: 0 0 50px 0;
  }
}

@media only screen and (max-width: 1004px) {
  .competition-hero .competition-hero-right img {
    width: 100%;
    height: auto;
  }
}

.competition-hero .cloud1 {
  position: absolute;
  width: 49px;
  height: 22px;
  top: 20px;
  left: 30px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: cover;
  z-index: 1;
}

.competition-hero .cloud2 {
  position: absolute;
  width: 104px;
  height: 48px;
  top: 0px;
  right: 50px;
  left: auto;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: cover;
  z-index: 1;
}

.competition-hero .cloud3 {
  position: absolute;
  width: 104px;
  height: 48px;
  top: 150px;
  left: 0px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: cover;
  z-index: 1;
}

.competition-hero .cloud4 {
  position: absolute;
  width: 74px;
  height: 34px;
  top: 350px;
  left: auto;
  right: 140px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: cover;
  z-index: 1;
}

.competition-panel {
  background: url(../img/how-its-made-background.png) no-repeat;
  background-size: cover;
  padding: 90px 0;
  margin: 0 0 120px;
  position: relative;
}

@media only screen and (max-width: 1004px) {
  .competition-panel {
    margin: 0 0 60px;
  }
}

@media only screen and (max-width: 1004px) {
  .competition-panel br {
    display: none;
  }
}

.competition-panel .cloud1 {
  position: absolute;
  width: 90px;
  height: 41px;
  top: 0px;
  left: 0px;
  background: url(../img/cloud2.svg) no-repeat;
  background-size: cover;
}

.competition-panel .cloud2 {
  position: absolute;
  width: 49px;
  height: 22px;
  top: 50px;
  right: 0px;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: cover;
}

.competition-panel .cloud3 {
  position: absolute;
  width: 64px;
  height: 29px;
  top: 170px;
  right: 20px;
  left: auto;
  background: url(../img/cloud1.svg) no-repeat;
  background-size: cover;
}

.competition-form-wrapper {
  width: 893px;
  margin: 0 auto;
  padding: 50px;
  background: url(../img/form-wrapper.svg) no-repeat;
  background-size: cover;
  position: relative;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper {
    width: 90%;
    background-image: none;
    border-radius: 20px;
    background: #FFF;
    padding: 25px;
  }
}

.competition-form-wrapper .competition-form-left {
  float: left;
  width: 48%;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .competition-form-left {
    width: 100%;
  }
}

.competition-form-wrapper .competition-form-left br {
  display: none;
}

.competition-form-wrapper .competition-form-right {
  float: right;
  width: 48%;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .competition-form-right {
    width: 100%;
  }
}

.competition-form-wrapper .competition-form-right br {
  display: none;
}

.competition-form-wrapper .gform_fields {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .gform_fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.competition-form-wrapper .last {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.competition-form-wrapper .gform_fields li {
  display: block;
}

.competition-form-wrapper .break-after {
  -webkit-column-break-after: column;
     page-break-after: column;
          break-after: column;
}

.competition-form-wrapper .hide-labels .gfield:not(.show-label) > label {
  display: none;
}

.competition-form-wrapper .ginput_container {
  width: 100%;
  margin-bottom: 1em;
}

.competition-form-wrapper .ginput_container input, .competition-form-wrapper .ginput_container textarea, .competition-form-wrapper .gfield_captcha_input_container input {
  width: 100%;
  background-image: none;
  background: #FFC300;
  border-radius: 20px;
  border: none;
  padding: 15px;
  color: #fff;
}

.competition-form-wrapper .ginput_container input::-webkit-input-placeholder, .competition-form-wrapper .ginput_container textarea::-webkit-input-placeholder, .competition-form-wrapper .gfield_captcha_input_container input::-webkit-input-placeholder {
  color: #FFF;
  opacity: 1.0;
}

.competition-form-wrapper .ginput_container input::-moz-placeholder, .competition-form-wrapper .ginput_container textarea::-moz-placeholder, .competition-form-wrapper .gfield_captcha_input_container input::-moz-placeholder {
  color: #FFF;
  opacity: 1.0;
}

.competition-form-wrapper .ginput_container input::-ms-input-placeholder, .competition-form-wrapper .ginput_container textarea::-ms-input-placeholder, .competition-form-wrapper .gfield_captcha_input_container input::-ms-input-placeholder {
  color: #FFF;
  opacity: 1.0;
}

.competition-form-wrapper .ginput_container input::placeholder, .competition-form-wrapper .ginput_container textarea::placeholder, .competition-form-wrapper .gfield_captcha_input_container input::placeholder {
  color: #FFF;
  opacity: 1.0;
}

.competition-form-wrapper .gfield_checkbox li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.competition-form-wrapper .gfield_checkbox li label:not(:first-child) {
  width: 80%;
  font-size: 12px;
  line-height: 16px;
  color: #EF9900 !important;
}

.competition-form-wrapper .gfield_checkbox li label:not(:first-child) a {
  color: inherit;
}

.competition-form-wrapper .gfield_captcha_input_container input {
  margin-bottom: 1em;
}

.competition-form-wrapper textarea {
  height: 12em;
}

.competition-form-wrapper .validation_message {
  color: #f00;
  position: relative;
  top: -10px;
}

.competition-form-wrapper .validation_error {
  background: #f00;
  color: #FFF;
  border: 2px solid #f00;
  border-radius: 20px;
  text-align: center;
  padding: 10px 0;
}

.competition-form-wrapper .email-526 {
  float: none;
  width: 100%;
  overflow: hidden;
}

.competition-form-wrapper .email-526 input.wpcf7-email {
  background: url(../img/comp-field-email.png) no-repeat;
  background-size: contain;
  height: 53px;
  color: #FFF;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .email-526 input.wpcf7-email {
    width: 100%;
    background-image: none;
    background: #FFC300;
    border-radius: 20px;
  }
}

.competition-form-wrapper .forename-843 {
  float: none;
  width: 100%;
  overflow: hidden;
}

.competition-form-wrapper .forename-843 input.wpcf7-text {
  background: url(../img/comp-field-name.png) no-repeat;
  background-size: contain;
  height: 53px;
  color: #FFF;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .forename-843 input.wpcf7-text {
    width: 100%;
    background-image: none;
    background: #FFC300;
    border-radius: 20px;
  }
}

.competition-form-wrapper .surname-125 {
  float: none;
  width: 100%;
  overflow: hidden;
}

.competition-form-wrapper .surname-125 input.wpcf7-text {
  background: url(../img/comp-field-name.png) no-repeat;
  background-size: contain;
  height: 53px;
  color: #FFF;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .surname-125 input.wpcf7-text {
    width: 100%;
    background-image: none;
    background: #FFC300;
    border-radius: 20px;
  }
}

.competition-form-wrapper .textarea-698 {
  float: none;
  width: 100%;
  margin-bottom: 15px;
  margin-left: 0 !important;
}

.competition-form-wrapper .textarea-698 textarea.wpcf7-textarea {
  background: url(../img/comp-field-textarea.png) no-repeat;
  background-size: contain;
  height: 202px;
  font-size: 15px;
  padding: 15px;
  color: #FFF;
  resize: none;
  border: none;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .textarea-698 textarea.wpcf7-textarea {
    width: 100%;
    background-image: none;
    background: #FFC300;
    border-radius: 20px;
    margin-bottom: 20px;
  }
}

.competition-form-wrapper .gform_wrapper input.wpcf7-form-control::-webkit-input-placeholder,
.competition-form-wrapper .gform_wrapper textarea.wpcf7-form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #FFF;
  opacity: 1.0;
}

.competition-form-wrapper .gform_wrapper input.wpcf7-form-control::-moz-placeholder,
.competition-form-wrapper .gform_wrapper textarea.wpcf7-form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFF;
  opacity: 1.0;
}

.competition-form-wrapper .gform_wrapper input.wpcf7-form-control:-ms-input-placeholder,
.competition-form-wrapper .gform_wrapper textarea.wpcf7-form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #FFF;
  opacity: 1.0;
}

.competition-form-wrapper .gform_wrapper input.wpcf7-form-control:-moz-placeholder,
.competition-form-wrapper .gform_wrapper textarea.wpcf7-form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #FFF;
  opacity: 1.0;
}

.competition-form-wrapper .gender-label {
  float: left;
  color: #EF9900;
  margin: 3px 20px 0 0;
}

.competition-form-wrapper .gender-checks {
  float: left;
}

.competition-form-wrapper .gender-checks .gender-658 {
  float: none;
  width: 100%;
}

.competition-form-wrapper .gender-checks .gender-658 input[type="checkbox"] {
  display: none;
}

.competition-form-wrapper .gender-checks .gender-658 input[type="checkbox"] + span {
  color: #EF9900;
}

.competition-form-wrapper .gender-checks .gender-658 input[type="checkbox"] + span {
  display: inline-block;
  width: 27px;
  height: 23px;
  margin: -2px 50px 0 0;
  padding: 0 0 0 40px;
  vertical-align: middle;
  background: url(../img/filter-tick-sprite.png) 0px -23px no-repeat;
  cursor: pointer;
}

.competition-form-wrapper .gender-checks .gender-658 input[type="checkbox"]:checked + span {
  background: url(../img/filter-tick-sprite.png) 0px 0px no-repeat;
}

.competition-form-wrapper .captcha-text {
  float: left;
  color: #EF9900;
  width: 130px;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .captcha-text {
    float: none;
    width: 100%;
    padding: 30px 0 0 0;
  }
}

.competition-form-wrapper .catcha-code {
  float: left;
  width: 240px;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .catcha-code {
    margin: 10px 0 0;
  }
}

.competition-form-wrapper .catcha-code img {
  float: left;
}

.competition-form-wrapper .catcha-code .ginput_container {
  float: none;
  width: 100px;
}

.competition-form-wrapper .catcha-code .ginput_container .wpcf7-form-control.wpcf7-captchar {
  background: url(../img/comp-field-captcha.png) no-repeat;
  float: right;
  width: 160px;
  height: 52px;
  color: #FFF;
}

.competition-form-wrapper .catcha-code .wpcf7-not-valid-tip {
  position: relative;
  top: 0;
  clear: both;
}

.competition-form-wrapper .check {
  width: 2em;
}

.competition-form-wrapper .check input[type="checkbox"] {
  display: none;
}

.competition-form-wrapper .check input[type="checkbox"] + span {
  display: inline-block;
  width: 27px;
  height: 23px;
  margin: -2px 0px 0 0;
  padding: 0 0 0 30px;
  vertical-align: middle;
  background: url(../img/filter-tick-sprite.png) 0px -23px no-repeat;
  cursor: pointer;
  color: transparent;
}

.competition-form-wrapper .check input[type="checkbox"]:checked + span {
  background: url(../img/filter-tick-sprite.png) 0px 0px no-repeat;
}

.competition-form-wrapper .checks {
  float: left;
  width: 35%;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .checks {
    float: none;
    width: 100%;
  }
}

.competition-form-wrapper .marketing-checkbox {
  clear: both;
  width: 30px;
  float: left;
  overflow: hidden;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .marketing-checkbox {
    width: 50px;
  }
}

.competition-form-wrapper .marketing-checkbox span.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 0;
}

.competition-form-wrapper .marketing-checkbox input[type="checkbox"] {
  display: none;
}

.competition-form-wrapper .marketing-checkbox input[type="checkbox"] + span {
  color: #EF9900;
}

.competition-form-wrapper .marketing-checkbox input[type="checkbox"] + span {
  display: inline-block;
  width: 27px;
  height: 23px;
  margin: -2px 0px 0 0;
  padding: 0 0 0 30px;
  vertical-align: middle;
  background: url(../img/filter-tick-sprite.png) 0px -23px no-repeat;
  cursor: pointer;
}

.competition-form-wrapper .marketing-checkbox input[type="checkbox"]:checked + span {
  background: url(../img/filter-tick-sprite.png) 0px 0px no-repeat;
}

.competition-form-wrapper .marketing-checkbox .wpcf7-not-valid-tip {
  display: none;
}

.competition-form-wrapper .marketing-label {
  float: left;
  width: 200px;
  font-size: 12px;
  line-height: 16px;
  display: block;
  text-align: left;
  color: #EF9900;
  margin: 7px 0 20px 2%;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .marketing-label {
    width: 70%;
  }
}

.competition-form-wrapper .marketing-label a {
  color: #EF9900;
  text-decoration: underline;
}

.competition-form-wrapper .marketing-label a:hover {
  text-decoration: none;
}

.competition-form-wrapper .form-send {
  float: right;
  margin: 20px 20px 0 0;
  width: 134px;
  height: 47px;
}

@media only screen and (max-width: 1004px) {
  .competition-form-wrapper .form-send {
    clear: both;
    float: left;
  }
}

.competition-form-wrapper .submit-wrapper, .competition-form-wrapper .gform_footer {
  clear: both;
  width: 100%;
  overflow: hidden;
  text-align: right;
  padding: 30px 0 0 0;
}

.competition-form-wrapper .gform_wrapper .gform_button {
  background: url(../img/comp-field-submit.png) no-repeat;
  width: 134px;
  height: 47px;
  float: none;
  text-indent: -9999px;
  cursor: pointer;
  margin: 0 !important;
  outline: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.competition-form-wrapper .gform_wrapper .gform_button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.competition-form-wrapper .wpcf7-validation-errors {
  background: #f00;
  color: #FFF;
  border: 2px solid #f00;
  border-radius: 20px;
  text-align: center;
  padding: 10px;
}

.competition-form-wrapper .wpcf7-not-valid-tip {
  position: relative;
  top: -10px;
  clear: both;
  display: inline-block;
  width: 100%;
}

.competition-form-wrapper div.wpcf7-mail-sent-ok {
  color: #FFF;
  position: relative !important;
  top: auto !important;
  background: #398f14;
  border: 2px solid #398f14;
  border-radius: 20px;
  text-align: center;
  padding: 10px;
}

.closing-text {
  float: left;
  margin: 50px 0 0 120px;
}

@media only screen and (max-width: 1004px) {
  .closing-text {
    float: none;
    width: 100%;
    margin: 20px 0 20px 0px;
    text-align: center;
  }
}

.closing-text p {
  color: #EF9900;
  font-size: 14px;
  line-height: 20px;
}

.closing-text p a {
  color: #EF9900;
}

.closing-text p a:hover {
  text-decoration: none;
}

.competition-sharing {
  float: left;
  margin: 40px 0 0 120px;
}

@media only screen and (max-width: 1004px) {
  .competition-sharing {
    float: none;
    width: 100%;
    margin: 0;
    text-align: center;
  }
}

.competition-sharing-text {
  text-indent: -9999px;
  background: url(../img/share-the-loaf.svg) center center no-repeat;
  width: 156px;
  height: 78px;
  background-size: contain;
  float: left;
  margin: 0 25px 0 0;
}

@media only screen and (max-width: 1004px) {
  .competition-sharing-text {
    float: none;
    width: 100%;
    margin: 0 0 25px;
  }
}

.competition-sharing-icons {
  float: left;
  margin: 10px 0 0 0;
  padding: 0;
}

@media only screen and (max-width: 1004px) {
  .competition-sharing-icons {
    float: none;
  }
}

.competition-sharing-icons li {
  float: left;
  width: 28px;
  margin: 0 20px 0 0;
}

@media only screen and (max-width: 1004px) {
  .competition-sharing-icons li {
    float: none;
    display: inline-block;
    margin: 0 10px;
  }
}

.competition-sharing-icons li.facebook a {
  background: url(../img/facebook-share-icon-purple.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: contain;
  text-indent: -9999px;
  display: block;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.competition-sharing-icons li.facebook a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.competition-sharing-icons li.twitter a {
  background: url(../img/twitter-share-icon-purple.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: contain;
  text-indent: -9999px;
  display: block;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.competition-sharing-icons li.twitter a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.competition-sharing-icons li.instagram a {
  background: url(../img/instagram-share-icon-purple.svg) no-repeat;
  width: 28px;
  height: 28px;
  background-size: contain;
  text-indent: -9999px;
  display: block;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.competition-sharing-icons li.instagram a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

footer {
  padding-top: 4rem;
}

input {
  outline: 0;
}

[v-cloak] {
  display: none;
}

.ui-datepicker-month, .ui-datepicker-year {
  color: black;
}

/* HERO IMAGES */
.cycle-project-hero {
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 40%;
}

@media only screen and (min-width: 768px) {
  .cycle-project-hero {
    padding-bottom: 30%;
  }
}

@media only screen and (min-width: 1004px) {
  .cycle-project-hero {
    padding-bottom: 23%;
  }
}

.cycle-project-hero-home {
  background-image: url(../img/cycle-project-hero.png);
}

.cycle-project-hero-win {
  background-image: url(../img/cycle-win.png);
  padding-bottom: 24%;
}

.cycle-project-hero-routes {
  background-image: url(../img/soreen-cycle-routes.png);
  background-position: center top;
  margin-bottom: 2%;
}

.cycle-project-hero-laura {
  background-image: url(../img/laurakenny.png);
}

.cycle-project-hero-professional-cycling {
  background-image: url(../img/professional-cycling-hero.png);
  padding-bottom: 30%;
}

.cycle-project-hero-nutrition {
  background-image: url(../img/soreen-cycle-nutrition-2.png);
  padding-bottom: 50%;
}

@media only screen and (min-width: 768px) {
  .cycle-project-hero-nutrition {
    padding-bottom: 35%;
  }
}

.cycle-project-hero-tips {
  background-image: url(../img/Soreen_Cycle_Hub_Tiny_Cycle_Tips_Banner_V2_Tiny-Tips.png);
  padding-bottom: 30%;
  margin-bottom: 2%;
}

.cycle-project-hero-project {
  background-image: url(../img/soreen-cycle-project.png);
  padding-bottom: 26%;
  margin-bottom: 2%;
}

@media only screen and (min-width: 768px) {
  .cycle-project-hero-project {
    padding-bottom: 22%;
  }
}

/* HOME PAGE */
.cycle-project-hero-content-wrapper {
  max-width: 930px;
  margin: 0 auto;
}

.cycle-project-hero-gif {
  bottom: 0em;
  position: absolute;
}

@media only screen and (max-width: 1004px) {
  .cycle-project-hero-gif {
    display: none;
  }
}

@media only screen and (min-width: 800px) {
  .cycle-project-hero-gif {
    margin-left: -100px;
  }
}

.cycle-sections {
  margin-bottom: 0;
}

@media only screen and (max-width: 568px) {
  .cycle-sections .inner-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cycle-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  -ms-grid-columns: 435px 3em 435px;
  -ms-grid-rows: 305px 3em 305px 3em 305px 3em;
  grid-gap: 3em;
  font-size: 20px;
}

@media only screen and (max-width: 568px) {
  .cycle-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.cycle-grid a {
  color: white;
  text-decoration: none;
  display: block;
}

.cycle-grid a:nth-child(even) {
  -ms-grid-column: 3;
}

.cycle-grid a:nth-child(3), .cycle-grid a:nth-child(4) {
  -ms-grid-row: 3;
}

.cycle-grid a:nth-child(5), .cycle-grid a:nth-child(6) {
  -ms-grid-row: 5;
}

.cycle-grid img {
  max-width: 100%;
  border-radius: 1em;
  background: white;
  padding: 0.5em 1em;
  margin-bottom: 0.5em;
}

.cycle-on-the-blog {
  background: -webkit-radial-gradient(center, ellipse, #ec384a 0%, #cf122e 100%);
  background: -o-radial-gradient(center, ellipse, #ec384a 0%, #cf122e 100%);
  background: radial-gradient(ellipse at center, #ec384a 0%, #cf122e 100%);
  text-align: center;
  margin: 0;
  padding: 50px 0 4em;
}

.cycle-on-the-blog .page-thumb > a {
  display: block;
  height: 250px;
}

@media only screen and (max-width: 768px) {
  .cycle-on-the-blog .page-thumb > a {
    height: 200px;
  }
}

.cycle-on-the-blog .page-thumb > a img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

@media only screen and (max-width: 1004px) {
  .cycle-on-the-blog .cycle-slider, .cycle-on-the-blog + .ee-section .cycle-slider {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.cycle-on-the-blog h2 {
  font-size: 46px;
}

/* SLIDER */
.cycle-slider {
  max-width: 1004px;
  margin: 0 auto;
  position: relative;
}

.cycle-slider .swiper-container {
  max-width: 810px;
}

.cycle-slider .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cycle-slider .page-thumb {
  background: #FFF;
  padding: 10px;
  border-radius: 10px;
}

.cycle-slider img {
  max-width: 100%;
}

.swiper-button-next, .swiper-button-prev {
  width: 46px;
  height: 42px;
}

.swiper-button-next {
  background: url(../img/arrow-right.svg) no-repeat;
}

.swiper-button-prev {
  background: url(../img/arrow-left.svg) no-repeat;
}

/* WIN PAGE */
.cycle-win {
  padding-bottom: 5rem !important;
}

.cycle-win .gfield_description:not(.validation_message) {
  color: #722282;
  font-size: 15px;
  margin-bottom: 1rem;
}

.cycle-win .gform_wrapper .ginput_container_checkbox {
  margin-left: 1rem !important;
}

.polaroid-slider .swiper-container {
  max-width: 460px !important;
  padding: 80px !important;
}

.polaroid-slider img {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
  max-width: 100%;
  width: 320px;
}

@media only screen and (max-width: 568px) {
  .polaroid-slider .swiper-container {
    padding: 80px 0 !important;
  }
  .polaroid-slider .polaroid-prev, .polaroid-slider .polaroid-next {
    display: none;
  }
  .polaroid-slider img {
    max-width: 300px;
  }
}

.cycle-win-intro {
  margin-top: 60px !important;
}

.cycle-win-intro h2 {
  font-size: 72px;
}

/* ROUTES PAGE */
.find-a-ride {
  background: #a8192f;
  padding: 55px 0;
  text-align: center;
  margin: 0;
  padding-bottom: 4em;
}

.find-a-ride button[type="submit"] {
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.find-a-ride button[type="submit"]:hover, .find-a-ride button[type="submit"]:focus {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.find-a-ride + div > .page-links:first-child {
  padding: 40px 0;
}

.find-a-ride + div > .page-links:first-child p {
  margin-bottom: 0;
}

.find-a-ride + .page-links h2 {
  line-height: .85em;
}

@media only screen and (max-width: 768px) {
  .find-a-ride + .page-links img {
    display: block;
    width: 100%;
    margin: 0 auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.find-a-ride form {
  margin-top: 40px;
}

@media only screen and (min-width: 768px) {
  .find-a-ride form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .find-a-ride form label {
    line-height: 1;
  }
}

@media only screen and (max-width: 768px) {
  .find-a-ride form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .find-a-ride form label {
    line-height: 1;
    margin-bottom: 1rem;
  }
}

.find-a-ride label {
  color: white;
  font-size: 50px;
  font-family: 'Amatic SC';
  font-weight: bold;
  position: relative;
}

.find-a-ride input[type="text"] {
  border: none;
  height: 63px;
  background: url(../img/input-bg.svg) no-repeat center center;
  padding: 0 1rem;
  margin: 0 1.5rem;
  border-radius: 12px;
}

@media only screen and (min-width: 768px) {
  .find-a-ride input[type="text"] {
    min-width: 350px;
  }
}

.find-a-ride input[type="text"], .find-a-ride input[type="text"]::-webkit-input-placeholder {
  color: #d0838e;
  font-size: 20px;
  font-weight: normal;
}

.find-a-ride input[type="text"], .find-a-ride input[type="text"]::-moz-placeholder {
  color: #d0838e;
  font-size: 20px;
  font-weight: normal;
}

.find-a-ride input[type="text"], .find-a-ride input[type="text"]::-ms-input-placeholder {
  color: #d0838e;
  font-size: 20px;
  font-weight: normal;
}

.find-a-ride input[type="text"], .find-a-ride input[type="text"]::placeholder {
  color: #d0838e;
  font-size: 20px;
  font-weight: normal;
}

.find-a-ride button {
  background: none;
  border: none;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .find-a-ride button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 768px) {
  .find-a-ride button {
    margin-top: 1rem;
  }
}

.route-info-prop {
  color: #70237F;
  line-height: 26px;
  margin-bottom: 0.25rem;
}

.route-info-prop img {
  vertical-align: middle;
}

.route-info-prop:not(.route-info-prop-large) img {
  margin: 0 0.25rem;
}

.route-info-prop-large {
  font-size: 26px;
  font-family: 'Amatic SC';
  font-weight: bold;
  position: relative;
  padding-left: 25px;
}

.route-info-prop-large img {
  position: absolute;
  left: 0;
  top: 0;
}

.vue-map-container {
  padding-bottom: 62.5%;
}

@media only screen and (max-width: 768px) {
  .vue-map-container {
    padding-bottom: 100%;
  }
}

/* LAURA KENNY */
.photo-wall {
  font-size: 24px;
  color: white;
  padding: 80px 0;
}

.photo-wall-photo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 768px) {
  .photo-wall-photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .photo-wall-photo .text {
    text-align: center;
    margin-bottom: 15px;
  }
}

.photo-wall-photo .photo {
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  padding: 20px;
  background: white;
  border-radius: 20px;
}

@media only screen and (max-width: 768px) {
  .photo-wall-photo .photo {
    -webkit-transform: inherit;
            transform: inherit;
    margin-bottom: 15px;
  }
  .photo-wall-photo .photo img {
    width: 100%;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media only screen and (min-width: 768px) {
  .photo-wall-photo:nth-child(even) .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.photo-wall-photo:nth-child(even) .photo {
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}

@media only screen and (max-width: 768px) {
  .photo-wall-photo:nth-child(even) .photo {
    -webkit-transform: inherit;
            transform: inherit;
  }
}

.event {
  background: #fff;
  margin-bottom: 1rem;
  padding: 1rem 1rem 1rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50px;
  text-align: left;
  text-decoration: none;
}

@media only screen and (max-width: 1004px) {
  .event {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.event-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 52px;
  font-size: 20px;
  color: #CC122E;
  font-family: 'fs_meregular';
}

@media only screen and (max-width: 568px) {
  .event-title {
    line-height: 1;
  }
}

.event-date {
  font-size: 46px;
  font-weight: bold;
  font-family: 'Amatic SC';
  color: #CC122E;
}

@media only screen and (max-width: 568px) {
  .event-date {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 568px) {
  .event-date {
    line-height: 52px;
    margin-right: 2rem;
  }
}

@media only screen and (max-width: 568px) {
  .event-date {
    line-height: 1;
  }
}

.laura-events .image {
  padding: 40px;
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 20px;
}

.laura-events .image img {
  max-width: 100%;
  display: block;
}

.laura-events .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.laura-events .embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* NUTRITION */
/* TIPS */
@media only screen and (min-width: 568px) {
  .cycle-tips-videos .inner-content-wrapper ul li:first-child {
    width: 45%;
    margin: 0 2% 90px 2%;
  }
}

/* PROJECT PAGE */
.cycle-project-mission .inner-content-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.cycle-project-mission .inner-content-wrapper::before, .cycle-project-mission .inner-content-wrapper:after {
  display: none;
}

@media only screen and (max-width: 768px) {
  .cycle-project-mission .inner-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    padding: 50px 20px;
  }
}

.cycle-project-mission .photo {
  padding: 10px;
  background: white;
  border-radius: 20px;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}

@media only screen and (min-width: 768px) {
  .cycle-project-mission .photo {
    border: 15px solid white;
  }
}

@media only screen and (max-width: 768px) {
  .cycle-project-mission .photo {
    border-width: 10px;
    display: block;
    width: 100%;
    margin: 0 auto 1rem;
  }
}

.green-background {
  background: -webkit-gradient(linear, left top, right top, from(#519D32), color-stop(50%, #88A80D), to(#599F2C));
  background: -webkit-linear-gradient(left, #519D32 0%, #88A80D 50%, #599F2C 100%);
  background: -o-linear-gradient(left, #519D32 0%, #88A80D 50%, #599F2C 100%);
  background: linear-gradient(to right, #519D32 0%, #88A80D 50%, #599F2C 100%);
}

.inner-content-wrapper.lost-cycle-way-gallery {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.photo-with-caption {
  -webkit-transform: rotate(1.66deg);
          transform: rotate(1.66deg);
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  font-size: 56px;
  font-weight: bold;
  font-family: 'Amatic SC';
  margin: 0 1rem;
  color: #70237F;
}

.photo-with-caption img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .photo-with-caption img {
    background: rgba(0, 0, 0, 0.1);
  }
}

.photo-with-caption img + span {
  line-height: 1;
  position: relative;
  top: 9px;
}

.lost-cycle-way-gallery .swiper-slide {
  padding: 2rem 0;
}

.inner-content-wrapper.the-lost-cycle-ways {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.inner-content-wrapper.the-lost-cycle-ways::before, .inner-content-wrapper.the-lost-cycle-ways:after {
  display: none;
}

.sign-the-petition {
  background: url(../img/ripped.png) no-repeat;
  background-size: cover;
  min-height: 376px;
  padding: 6rem 0 4rem 0;
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sign-the-petition + .inner-content-wrapper {
  padding-bottom: 2.5rem;
}

.sign-the-petition h2, .sign-the-petition p {
  color: #70237F;
}

.sign-the-petition p:last-child {
  margin-bottom: 0;
}

.cycle-routes-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cycle-routes-logo-container a {
  z-index: 2;
}

.cycle-routes-logo-container:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #fff;
  border-radius: 16px 16px 24px 18px;
  -webkit-transform: skew(5deg);
          transform: skew(5deg);
}

.cycle-win-thanks-content h2 {
  font-size: 72px;
  line-height: 70px;
}

.cycle-win-thanks-content img {
  margin: 0;
}

/**
 * Professional Cycling Page
 */
.pro-cycling-intro {
  background: url(../img/page-links-background.png) center center no-repeat;
  background-size: cover;
  padding: 55px 0;
}

.pro-cycling-intro h3 {
  font-family: "fs_mebold", Helvetica, Arial, Verdana, sans-serif;
  text-transform: none;
  font-size: 32px;
  margin-top: 30px;
}

.pro-cycling-intro .laura-events .image {
  padding: 15px;
}

.pro-cycling-section {
  padding: 55px 0;
}

.top-5-races {
  margin: 65px auto 40px !important;
}

.top-5-races .torelli-race-list__race {
  display: inline-block;
  width: 25%;
  margin: 1em 1.2em;
}

@media only screen and (max-width: 768px) {
  .top-5-races .torelli-race-list__race {
    width: 40%;
    margin: 1em 1.2em;
  }
}

@media only screen and (max-width: 568px) {
  .top-5-races .torelli-race-list__race {
    width: 100%;
    margin: 0;
  }
}

.top-5-races .torelli-race-list__race img {
  width: 100%;
}

.meet-the-team-slider {
  margin-bottom: 6em;
}

.torelli-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.torelli-intro > div {
  padding: 0 3em;
}

@media only screen and (max-width: 1004px) {
  .torelli-intro {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.torelli-intro .team-love-soreen {
  margin-bottom: 2em;
}

.torelli-intro .team-love-soreen__riders {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 3em 1fr;
  -ms-grid-rows: 1fr 3em 1fr;
  grid-gap: 3em;
}

@media only screen and (max-width: 768px) {
  .torelli-intro .team-love-soreen__riders {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.torelli-intro .team-love-soreen__riders__rider {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1em 1fr;
  grid-gap: 1em;
}

.torelli-intro .team-love-soreen__riders__rider img {
  width: 100%;
}

.torelli-intro .team-love-soreen__riders__rider .text {
  text-align: left;
  -ms-grid-column: 3;
}

.torelli-intro .team-love-soreen__riders__rider .text h2 {
  margin-bottom: 20px;
}

.torelli-intro .team-love-soreen__riders__rider:nth-child(even) {
  -ms-grid-column: 3;
}

.torelli-intro .team-love-soreen__riders__rider:nth-child(3), .torelli-intro .team-love-soreen__riders__rider:nth-child(4) {
  -ms-grid-row: 3;
}

@media only screen and (max-width: 1004px) {
  .torelli-intro .torelli-info-board {
    width: 80%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 568px) {
  .torelli-intro .torelli-info-board {
    width: 100%;
  }
}

.torelli-intro .torelli-info-board .board {
  background-color: #e69223;
  -webkit-box-shadow: 10px 10px 0px 0px #e69223;
  box-shadow: 10px 10px 0px 0px #de791f;
  padding: 50px 40px;
  -webkit-transform: skew(0deg, 0.5deg);
          transform: skew(0deg, 0.5deg);
  width: 340px;
}

@media only screen and (max-width: 568px) {
  .torelli-intro .torelli-info-board .board {
    width: 300px;
  }
}

.torelli-intro .torelli-info-board .board p {
  -webkit-transform: none;
          transform: none;
  margin: 0;
}

.torelli-intro .torelli-info-board .post {
  margin: 0 auto -27px;
  width: 25px;
  height: 90px;
  background-color: #e69223;
  -webkit-box-shadow: 10px 0px 0px 0px #e69223;
  box-shadow: 10px 0px 0px 0px #de791f;
  -webkit-transform: skew(0deg, -0.5deg);
          transform: skew(0deg, -0.5deg);
}

.torelli-intro .torelli-info-board .shadow {
  background: -webkit-radial-gradient(ellipse, #e69223, transparent 50%);
  background: -o-radial-gradient(ellipse, #e69223, transparent 50%);
  background: radial-gradient(ellipse, #e69223, transparent 50%);
  height: 55px;
}

.change-for-life-top-border {
  height: 10px;
  background-color: #07a1e8;
  border: 1px black solid;
}

.change-for-life-bottom-border {
  height: 10px;
  background-color: #c91c23;
  border: 1px black solid;
}

.green-radial-background {
  background: -webkit-radial-gradient(#a1b31e, #599F2C);
  background: -o-radial-gradient(#a1b31e, #599F2C);
  background: radial-gradient(#a1b31e, #599F2C);
}

p.good-choice-yellow {
  color: #f4f917;
}

p.good-choice-yellow a {
  color: white;
}

.change-for-life-wrapper img {
  max-width: 100%;
}

@media only screen and (min-width: 768px) {
  .change-for-life-wrapper img {
    max-width: 70%;
  }
}

.everyday-nutrition {
  background: url(../img/how-its-made-background.png) center center no-repeat;
  background-size: cover;
}

.everyday-nutrition__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 60px auto 40px;
}

.everyday-nutrition__item {
  width: calc(33.333333% - 50px);
  margin-bottom: 50px;
  text-align: center;
}

@media (max-width: 790px) {
  .everyday-nutrition__item {
    width: calc(50% - 50px);
  }
}

@media (max-width: 500px) {
  .everyday-nutrition__item {
    width: 100%;
  }
}

.everyday-nutrition__item img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.everyday-nutrition__item img ~ p {
  color: #EE9800;
}

.everyday-nutrition__item img ~ p:last-of-type {
  margin-bottom: 0;
}

.everyday-nutrition__item h3 {
  font-size: 36px;
}

.everyday-nutrition__item h3 + p {
  min-height: 114px;
}

.everyday-nutrition__item p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.4em;
}

.everyday-nutrition__item b,
.everyday-nutrition__item strong {
  color: white;
}

.everyday-nutrition__notice {
  margin: 0 !important;
  font-size: 14px;
  line-height: 1.4em;
  color: #EE9800;
}

.everyday-nutrition__notice a {
  color: white;
}

.make-the-swap {
  background: url(../img/endorsements-background.png) center center no-repeat;
  background-size: cover;
}

.make-the-swap h2 {
  margin: 0;
}

.make-the-swap .product-carousel ul,
.make-the-swap .product-carousel .bx-slider,
.make-the-swap .product-carousel .bx-wrapper {
  margin: 0 auto;
}

.make-the-swap ul li {
  background: none !important;
}

.energy-product-carousel {
  background: url(../img/how-its-made-background.png) center center no-repeat;
  background-size: cover;
}

.energy-product-carousel .product-carousel {
  margin: 50px auto 20px;
}

.energy-product-carousel .product-carousel ul li {
  background: url(../img/product-shadow-dark-purple-background.png) bottom center no-repeat !important;
}

.veganuary {
  background: #e24178 !important;
  color: white;
}

.veganuary a {
  color: #f8d84c;
}

.veganuary .good-choice-yellow,
.veganuary .orange-content {
  color: #f8d84c;
}

.veganuary .good-choice-yellow a,
.veganuary .orange-content a {
  color: white !important;
}

.veganuary img.full-width, .veganuary img:not(:first-of-type) {
  width: auto;
  height: auto;
  max-width: 100% !important;
}

.careers-intro h1 {
  margin-bottom: 1rem;
}

.careers-intro img {
  max-width: 100%;
  height: auto;
}

.careers-intro a {
  color: white;
}

@media only screen and (max-width: 568px) {
  .careers-page-links {
    padding-left: 0;
    padding-right: 0;
  }
}

.part-of {
  font-size: 15px;
}

.part-of-button {
  background: url(../img/find-out-more.png) no-repeat;
  display: inline-block;
  height: 26px;
  width: 92px;
  text-indent: -9999px;
  margin-left: 1em;
}

.job {
  background: #fff;
  margin-bottom: 2rem;
  padding: 1rem 1rem 1rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50px;
  text-align: left;
}

@media only screen and (max-width: 1004px) {
  .job {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.view-job {
  background: url(../img/view-job.png) no-repeat;
  width: 164px;
  height: 52px;
  text-indent: -9999px;
  display: inline-block;
}

.job-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 52px;
  font-size: 50px;
  font-family: 'Amatic SC', cursive;
  color: #CC122E;
  font-weight: bold;
}

.job-closing-date {
  font-size: 21px;
  font-family: 'fs_meregular';
  color: #CC122E;
}

@media only screen and (max-width: 568px) {
  .job-closing-date {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 568px) {
  .job-closing-date {
    line-height: 52px;
    margin-right: 4rem;
  }
}

.back-to-jobs {
  background: url(../img/back-to-jobs-board.png) no-repeat;
  width: 232px;
  height: 52px;
  text-indent: -9999px;
  display: block;
  position: absolute;
  right: 1rem;
  top: -26px;
}

.job-detail {
  color: white;
}

.job-detail-title {
  font-size: 50px;
  font-family: 'Amatic SC', cursive;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin-top: 3rem;
}

dl.job-details {
  margin-top: 4rem;
}

dl.job-details dt {
  float: left;
  clear: left;
  font-family: 'Amatic SC', cursive;
  font-weight: bold;
  font-size: 39px;
  width: 300px;
}

dl.job-details dt:not(:first-child), dl.job-details dt:not(:first-child) + dd {
  margin-top: 2rem;
}

dl.job-details dd {
  margin: 0 0 0 310px;
  padding: 0 0 0.5em 0;
  font-family: 'fs_meregular';
}

@media only screen and (max-width: 1004px) {
  dl.job-details dt {
    float: none;
  }
  dl.job-details dd {
    margin: 1rem 0 0 0 !important;
  }
}

.job-apply-email {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Variables Colors */
@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

/* Border-box-sizing for all elements */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*===========================================================================
  FIXES & TYPOGRAHY
===========================================================================*/
/* Clearfix */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* OLD BROWSERS ALERT - Browse Happy Splash Screen Styles */
.browse-happy {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  height: 100%;
  width: 100%;
  text-align: center;
}

.browse-happy p {
  color: #EF9900;
}

.browse-happy p a {
  color: #EF9900;
  text-decoration: underline;
}

@font-face {
  font-family: 'fs_mebold';
  src: url("../fonts/fs_me-bold-webfont.woff2") format("woff2"), url("../fonts/fs_me-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'fs_meregular';
  src: url("../fonts/fs_me-regular-webfont.woff2") format("woff2"), url("../fonts/fs_me-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/*===========================================================================
  TYPEOGRAPHY SCALE
===========================================================================*/
html {
  font-size: 1em;
  /* Change this Value to Scale Text Overall  */
}

html, body {
  height: 100%;
}

body {
  font-family: "fs_mebold", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  margin: 0;
  padding: 0;
  height: 100%;
  background: url(../img/plain-background.jpg) top left no-repeat;
  background-size: cover;
  color: #333333;
  background-attachment: fixed;
}

@media only screen and (max-width: 568px) {
  body {
    background: #fab800 url(../img/plain-background.jpg) top left no-repeat;
    background-attachment: none;
  }
}

p {
  color: #FFF;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 20px 0;
  font-family: 'fs_meregular';
}

h1 {
  color: #FFF;
  font-size: 46px;
  line-height: 52px;
  margin: 0 0 60px;
  font-family: 'Amatic SC', cursive;
  font-weight: normal;
  text-transform: lowercase;
}

h2 {
  color: #FFF;
  font-size: 46px;
  line-height: 52px;
  margin: 0 0 40px;
  text-transform: lowercase;
  font-family: 'Amatic SC', cursive;
  font-weight: normal;
}

h3 {
  color: #FFF;
  font-size: 40px;
  line-height: 46px;
  margin: 0 0 20px;
  text-transform: uppercase;
  font-family: 'Amatic SC', cursive;
  font-weight: normal;
}

h4 {
  font-size: 1.3em;
  color: #EF9900;
  font-weight: normal;
}

h5 {
  font-size: 1em;
  color: #EF9900;
  font-weight: normal;
}

h6 {
  font-size: 1em;
  color: #EF9900;
  font-weight: normal;
}

small, .font_small {
  font-size: 0.8em;
}

blockquote {
  font-size: 1.3em;
  font-style: italic;
  color: #cccccc;
}

strong {
  font-weight: 700;
}

/* List Styles */
ul, li, ol {
  padding-left: 0;
  list-style: none;
}

/* List Styles */
ul, li, ol {
  padding-left: 0;
  list-style: none;
}

.single .bullets li,
.page .bullets li {
  padding: 0 0 0 1em;
  text-indent: -1.2em;
  font-style: normal;
  font-weight: 400;
  color: #a9a9a9;
}

.single .bullets li:before,
.page .bullets li:before {
  color: #EF9900;
  content: "\2022";
  font-size: 1.5em;
  padding-right: 0.4em;
  position: relative;
  top: 0.15em;
}

/* Page & Post Content Bullet Points */
.hentry ul li {
  padding: 0 0 0 1em;
  text-indent: -1.2em;
  font-style: normal;
  font-weight: 400;
  color: #a9a9a9;
}

.hentry ul li:before {
  color: #EF9900;
  content: "\2022";
  font-size: 1.5em;
  padding-right: 0.4em;
  position: relative;
  top: 0.15em;
}

/* Table Styles 

table {
	border-collapse: collapse;
	border-spacing: 0;
	max-width: 100%;
	width: 100%;
	background: $lightgrey;
  
	th {
		text-align: left;
		font-weight: 600;
		background: $darkgrey;
		color: #ffffff;
	}
	
	th, td {
		border: 1px solid $midgrey;
		padding: 0.5em;
	}
	
	th { vertical-align: bottom }
	td { vertical-align: top }
}

**/
/* Wordpress Core Content Styles */
.alignnone {
  margin: 0 1.5em 1.5em 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 0 auto 1.5em auto;
}

.alignright {
  float: right;
  margin: 0 0 1.5em 1.5em;
}

.alignleft {
  float: left;
  margin: 0 1.5em 1.5em 0;
}

a img.alignright {
  float: right;
  margin: 0 0 1.5em 1.5em;
}

a img.alignnone {
  margin: 0 1.5em 1.5em 0;
}

a img.alignleft {
  float: left;
  margin: 0 1.5em 1.5em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 1em;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 1.5em 1.5em 1.5em 0;
}

.wp-caption.alignleft {
  margin: 1.5em 1.5em 1.5em 0;
}

.wp-caption.alignright {
  margin: 1.5em 0 1.5em 1.5em;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #ededed;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);;
  -ms-box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);;
  -o-box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);;
  box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);;
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 1em;
  line-height: normal;
  padding: 1em;
  text-decoration: none;
  top: 1em;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*===========================================================================
  STRUCTURE
===========================================================================*/
#page {
  padding: 0px 0px 0px 0px;
}

.content-wrapper {
  width: 1004px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  *zoom: 1;
}

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

.content-wrapper:after {
  clear: both;
}

@media only screen and (max-width: 1004px) {
  .content-wrapper {
    width: 100%;
  }
}

.centered {
  text-align: center;
}

body.error404 .content-wrapper {
  margin: 0 auto 100px auto;
}

body.error404 .content-wrapper p a {
  color: #FFF;
  text-decoration: underline;
}

body.error404 .content-wrapper p a:hover {
  text-decoration: none;
}

.inner-content-wrapper {
  width: 930px;
  padding: 0;
  margin: 0 auto;
  position: relative;
  *zoom: 1;
}

.inner-content-wrapper:before, .inner-content-wrapper:after {
  content: " ";
  display: table;
}

.inner-content-wrapper:after {
  clear: both;
}

@media only screen and (max-width: 1004px) {
  .inner-content-wrapper {
    width: 100%;
    padding: 0 20px;
  }
}

.our-story .inner-content-wrapper {
  width: 80%;
}

@media only screen and (max-width: 768px) {
  .our-story .inner-content-wrapper {
    width: 100%;
  }
}

.page-intro {
  width: 850px;
  margin: 0 auto 60px auto;
}

@media only screen and (max-width: 1004px) {
  .page-intro {
    width: 100%;
    padding: 0 20px;
  }
}

.page-intro p a {
  color: #FFF;
  text-decoration: underline;
}

.page-intro p a:hover {
  color: #FFF;
  text-decoration: none;
}

.left {
  float: left;
}

.right {
  float: right;
}

.pagination {
  clear: both;
}

@media only screen and (max-width: 768px) {
  #wrapper {
    max-width: 320px;
    margin: 0 auto;
    background: #ffffff;
  }
}

/*===========================================================================
  NAVIGATION
===========================================================================*/
/* Main Navigation - Menu must be setup in Wordpress and called 'main' */
#menu-main {
  margin: 0;
  padding: 0;
  float: right;
}

#menu-main .current_page_item a {
  font-weight: 700;
}

#menu-main li {
  display: -moz-inline-stack;
  display: inline-block;
  _overflow: hidden;
  *zoom: 1;
  *display: inline;
  vertical-align: top;
  position: relative;
}

#menu-main li:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#menu-main li:hover > ul {
  opacity: 1;
  visibility: visible;
}

#menu-main li a {
  display: block;
  text-decoration: none;
  padding: 0.5em;
}

#menu-main li ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  padding: 0;
  z-index: 9999;
  padding: 0.5em;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#menu-main li ul li {
  padding: 0;
  margin: 0;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#menu-main li ul li a {
  border: none;
  color: #333333 !important;
}

#menu-main li ul li a:hover {
  background: transparent;
  color: #333333 !important;
  font-weight: 700;
}

/* Mobile Navigation - CSS for Sidr */
#mobile-toggle {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background: #222222;
  float: right;
  padding: 12px 0 0 10px;
  display: none;
  margin: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#mobile-toggle span {
  height: 3px;
  width: 20px;
  background: #ffffff;
  display: block;
  margin: 0 0 3px 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/* Mobile Navigation - CSS for Sidr */
#mobile-toggle {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background: #222222;
  float: right;
  padding: 12px 0 0 10px;
  display: none;
  margin: 2.25em 0 1em 2em;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#mobile-toggle span {
  height: 3px;
  width: 20px;
  background: #ffffff;
  display: block;
  margin: 0 0 3px 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/*===========================================================================
  PAGES
===========================================================================*/
.policies-mobile {
  display: none;
}

@media only screen and (max-width: 568px) {
  .policies-mobile {
    display: block;
  }
}

.policies-mobile p {
  font-size: 16px;
  line-height: 21px;
}

.policies-mobile ul li {
  color: #FFF;
  font-size: 16px;
  line-height: 21px;
  list-style-type: disc;
  margin: 0 0 0 20px;
  font-family: 'fs_meregular';
}

.slp_map {
  margin-bottom: 30px !important;
}

.slp_search_container {
  margin-bottom: 20px !important;
}

#slp_tagline {
  display: none;
}

#slp_tagline a {
  color: #FFFFFF;
}

#slp_tagline a:hover {
  text-decoration: none;
}

#addy_in_address {
  margin: 0 0 10px;
}

#addy_in_address label {
  padding: 0 10px 0 0 !important;
}

@media only screen and (max-width: 568px) {
  #addy_in_address input {
    width: 100% !important;
  }
}

#addy_in_radius {
  margin: 0 0 10px;
}

#addy_in_radius label {
  padding: 0 10px 0 0 !important;
}

#radius_in_submit input.slp_ui_button {
  background: #c71731;
  color: #FFFFFF;
  border: none;
  padding: 5px 10px;
  border-radius: 10px;
}

.results_wrapper {
  margin: 0 0 25px;
}

.results_wrapper .Malt_Loaf_Bar {
  display: none;
}

.results_wrapper .slp_result_contact {
  display: block;
  padding: 10px 0;
}

.results_wrapper a.storelocatorlink {
  background: #c71731;
  color: #FFFFFF;
  border: none;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 10px;
}

/*===========================================================================
  RESPONSIVE CONTAINER
===========================================================================*/
.video .player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0px;
  overflow: hidden;
  margin-bottom: 50px;
}

.video .player iframe, .video .player object, .video .player embed {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/*===========================================================================
  FORMS
===========================================================================*/
/* Disable Webkit Browser Default Styling */
/*
input[type="search"] {
	-webkit-appearance: textfield;
}

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

input, textarea {
	-webkit-appearance: none;
	border-radius: 0;
	background: $lightgrey;
}

input,
textarea,
select {
    outline: 0;
    width: 100%;
    padding: 0.5em 1em;
    margin-bottom: 0.5em;
    border: 1px solid $midgrey;
    background: $lightgrey;
    color: $text;
    @include vendor-prefix('transition', 'all 0.2s ease-in-out');
    &:focus{
		border: solid 1px $brand;
	}
}

label{
	display: none;
}

input[type="submit"]{
	border: 1px solid $brand;
	color: $brand;
	background: #ffffff;
	@include vendor-prefix('transition', 'all 0.2s ease-in-out');
	&:hover{
		color: #ffffff;
		background: $brand;
	}
}
*/
