/*
------------------------------------------------------------------------------------------------
  EMBER FRAMEWORK SITE FRONT CSS - style.css
------------------------------------------------------------------------------------------------
  Created:  08-09-2017
  Author:   Ember Interactive (www.emberinteractive.co.uk)
  Website:  Ember Interactive Limited
------------------------------------------------------------------------------------------------
*/
/*
*  html5 doctor css reset | http://html5doctor.com/html-5-reset-stylesheet
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*
------------------------------------------------------------------------------------------------
  EMBER FRAMEWORK SITE FRONT CSS - _site_variables.scss - SASS VARIABLES AND MIXINS
------------------------------------------------------------------------------------------------
  Created:  01-03-2015
  Author:   Ember Interactive (www.emberinteractive.co.uk)
  Website:  Ember Interactive Limited
------------------------------------------------------------------------------------------------
*/
/* EMBER Colours */
/* Fonts */
/* Breakpoints */
/* Mixins */
/* Reset all LIs that aren't in body content */
/* Override the bourbon mixin as ie8 doesn't support :: */
/* Add icon to element */
/* Hide text within icon link */
/* Switch Font smoothing settings */
/* Screen reader only text */
/*
------------------------------------------------------------------------------------------------
  EMBER FRAMEWORK SITE FRONT CSS - _site_forms.scss - FORM ELEMENTS BASE STYLES
------------------------------------------------------------------------------------------------
  Created:  01-03-2016
  Author:   Ember Interactive (www.emberinteractive.co.uk)
  Website:  Ember Interactive Limited
------------------------------------------------------------------------------------------------
*/
/*
---------------------------------------------------------------------------------- FORM ELEMENTS

------------------------------------------------------------------------------------------------
*/
button, .btn, input, textarea, select {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}

.form-group {
  clear: both;
  margin-bottom: 22px;
}
.form-group:after {
  clear: both;
  content: "";
  display: table;
}

label {
  color: #146a33;
  font-size: 1.4em;
  line-height: 1.5;
  padding-top: 4px;
  display: inline-block;
  max-width: 100%;
  width: 100%;
  margin-bottom: 5px;
  font-weight: normal;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.form-block .hidden {
  display: none;
}

input, textarea, button, .btn {
  box-sizing: border-box;
}

.form-control {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  padding: 6px 14px;
  margin: 0;
  border: 1px solid #cecfcf;
  color: #2c2c2c;
  background-color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
  height: 48px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease-out, background 0.3s ease-out;
  border-radius: 2px;
}
.form-control:focus {
  border-color: #146a33;
  background-color: #fafafc;
}

.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group .form-control {
  display: table-cell;
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group .form-control:not(:first-child):not(:last-child),
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group .form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group .input-group-addon:first-child,
.input-group .input-group-btn:first-child > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group .input-group-addon:last-child,
.input-group .input-group-btn:last-child > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group .form-control,
.input-group-addon,
.input-group-btn {
  display: table-cell;
}

.input-group .form-control,
.form-horizontal .input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 2px;
}

.input-group-addon {
  padding: 7px 12px 5px 12px;
  font-size: 14px;
  line-height: 1;
  color: #666666;
  text-align: center;
  background-color: #f7f7f7;
  border: 1px solid #cecfcf;
  border-right: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
}

.input-group-addon:hover {
  background-color: #eeeeee;
}

.input-group .form-control + .input-group-addon {
  border-left: none;
}

.input-group .input-group-addon:last-child {
  border-right: 1px solid #cecfcf;
}

.input-group .input-group-addon:first-child {
  border-right: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}

.input-group-btn > .btn {
  margin: 0 -1px 0 0;
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > button {
  margin-right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

input.table-input {
  margin: 0;
  max-width: 80px;
  text-align: right;
}

input.input-4-digits {
  max-width: 80px;
}

.form-group-sm label {
  padding-top: 3px;
  font-size: 1.4em;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
}

textarea {
  min-height: 144px;
  margin: 0;
  vertical-align: top;
}

input[type=submit] {
  border: none;
}

input[type=radio] {
  margin-right: 10px;
}

input[type=checkbox], input[type=radio] {
  padding: 0 0 0 0;
  margin: -2px 6px 0 0;
  height: 16px;
  cursor: pointer;
}

.dummy-input, .input-group .dummy-input { /*position: relative; z-index:-1;*/
  pointer-events: none;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 0;
  color: #8d8d8d;
}

/*
----------------------------------------------------------------------------------- SMALL INPUTS

------------------------------------------------------------------------------------------------
*/
.input-sm {
  height: 37px;
  padding-top: 1px;
  padding-bottom: 0;
}

/*
--------------------------------------------------------------------------------------- DISABLED

------------------------------------------------------------------------------------------------
*/
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #f7f7f7;
  opacity: 0.8;
}

input[readonly]:focus {
  border-color: #cecfcf;
  background-color: #f7f7f7;
}

/*
----------------------------------------------------------------------------- PLACEHOLDER COLOUR

------------------------------------------------------------------------------------------------
*/
::-webkit-input-placeholder { /* Chrome */
  color: #a9a9a9;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #a9a9a9;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #a9a9a9;
  opacity: 1;
}

:-moz-placeholder { /* Firefox 4 - 18 */
  color: #a9a9a9;
  opacity: 1;
}

/*
------------------------------------------------------------------------- CHECKBOXES AND SELECTS

------------------------------------------------------------------------------------------------
*/
.checkbox label, .radio label {
  min-height: 20px;
  margin-bottom: 0;
  padding-top: 0;
  font-weight: 400;
  cursor: pointer;
  float: none;
}

.checkbox-inline,
.radio-inline {
  position: relative;
  display: inline-block;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

select.form-control {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  -o-appearance: menulist;
  appearance: menulist;
}

select[multiple], select[size] {
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

/*
---------------------------------------------------------------------------------------- BUTTONS

------------------------------------------------------------------------------------------------
*/
.form-group.form-submit {
  padding-top: 8px;
  margin-bottom: 0;
}

.form-group.form-submit .btn:last-child {
  margin-right: 0;
}

.btn {
  font-size: 17px;
  line-height: 2.1428571428;
  font-weight: normal;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  padding: 7px 20px 5px 20px;
  margin: 0 20px 16px 0;
  background-color: #e7e7e6;
  border: 1px solid #e7e7e6;
  color: #666666;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  position: relative;
  opacity: 1;
  transition: background-color 100ms linear, color 100ms linear, border-color 100ms linear, padding 200ms ease-in-out, opacity 100ms linear;
}

.btn:hover, .btn:focus {
  background-color: #dadada;
  border-color: #dadada;
  text-decoration: none;
}

.btn:disabled,
.btn.disabled,
.btn:disabled:hover,
.btn.disabled:hover {
  background-color: #eeeeed;
  border-color: #eeeeed;
  color: #7a7a7a;
  cursor: default;
}

.btn-primary {
  background-color: #146a33;
  border-color: #146a33;
  color: #ffffff;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #146a33;
  border-color: #146a33;
  color: #ffffff;
  text-decoration: none;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: #146a33;
  border-color: #146a33;
  color: #ffffff;
}

.btn-primary:disabled:hover,
.btn-primary:disabled:focus,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus {
  background-color: #146a33;
  border-color: #146a33;
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  border-color: #666666;
  color: #666666;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #f0f0f0;
  border-color: #666666;
  color: #666666;
}

.btn-secondary:disabled,
.btn-secondary.disabled,
.btn-secondary:disabled:hover,
.btn-secondary.disabled:hover {
  background-color: #ffffff;
  border-color: #7a7a7a;
  color: #7a7a7a;
}

.btn-text,
.btn-sm.btn-text {
  padding: 0;
  line-height: 1.4;
  text-transform: none;
  border: 0;
  border-bottom: 1px solid #666666;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  border-radius: 0;
}

.btn-text,
.btn-text:hover,
.btn-text:focus {
  background-color: transparent;
  color: #666666;
  border-color: #666666;
}

.btn-danger {
  background-color: #b5a46a;
  border-color: #b5a46a;
  color: #ffffff;
}

.btn-danger:hover,
.btn-danger:focus {
  background-color: #b5a46a;
  border-color: #b5a46a;
  color: #ffffff;
}

.btn-danger:disabled,
.btn-danger.disabled,
.btn-danger:disabled:hover,
.btn-danger.disabled:hover {
  background-color: #ec988b;
  border-color: #ec988b;
  color: #ffffff;
}

.btn-rev {
  background-color: #666666;
  border-color: #666666;
  color: #ffffff;
}

.btn-rev:hover,
.btn-rev:focus {
  background-color: #666666;
  border-color: #666666;
  color: #ffffff;
}

.btn-rev:disabled,
.btn-rev.disabled,
.btn-rev:disabled:hover,
.btn-rev.disabled:hover {
  background-color: #7a7a7a;
  border-color: #7a7a7a;
  color: #ffffff;
}

.btn-sm {
  font-size: 13px;
  padding: 5px 16px 3px 16px;
}

.btn-thin {
  padding-left: 14px;
  padding-right: 16px;
}

.btn-full,
.btn-sm.btn-full {
  width: 100%;
  text-align: center;
  padding-left: 4px;
  padding-right: 4px;
}

.btn-disabled,
.btn-disabled:hover,
a:hover .btn-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

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

/*
------------------------------------------------------------------------------------- VALIDATION

------------------------------------------------------------------------------------------------
*/
.error label.error {
  color: #e0001b;
  font-weight: 300;
}

.note {
  font-size: 1.3em;
}

.small-label {
  font-size: 1.3em;
}

.error .form-control {
  border-color: #e0001b;
  border-width: 2px;
}

.error label {
  color: #e0001b;
}

.form-container {
  padding-top: 8px;
}
.form-container:after {
  clear: both;
  content: "";
  display: table;
}

.form-container-result {
  display: none;
}

.input-text {
  border-color: #ffffff;
  background-color: #ffffff;
}

/*
-------------------------------------------------------------------- LOADERS AND BUTTON SPINNERS

------------------------------------------------------------------------------------------------
*/
.btn-pending {
  padding-right: 50px;
  position: relative;
}

.btn-full.btn-pending {
  padding-left: 50px;
}

.btn-pending:after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  position: absolute;
  top: 14px;
  right: 10px;
  background: url("../img/ajax-loader-btn.gif") 0 0 no-repeat;
  opacity: 0;
  z-index: 10;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .btn-pending:after {
    background-image: url("../img/retina/ajax-loader-btn.gif");
    background-size: 19px 19px;
  }
}

.btn-sm.btn-pending:after {
  top: 8px;
}

.btn-pending-show:after {
  opacity: 1;
}

.ajax-spinner {
  width: 19px;
  height: 19px;
  background: url("../img/ajax-loader.gif") 0 0 no-repeat;
  display: none;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .ajax-spinner {
    background-image: url("../img/retina/ajax-loader.gif");
    background-size: 19px 19px;
  }
}

.ajax-spinner-inline {
  width: 19px;
  height: 10px;
  background: url("../img/ajax-loader-inline.gif") 0 0 no-repeat;
  display: none;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .ajax-spinner-inline {
    background-image: url("../img/retina/ajax-loader-inline.gif");
    background-size: 16px 4px;
  }
}

.ajax-spinner.ajax-spinner-show {
  display: block;
}

.ajax-spinner-inline.ajax-spinner-show {
  display: inline-block;
}

/*
----------------------------------------------------------------------------------------- LAYOUT

------------------------------------------------------------------------------------------------
*/
@media screen and (min-width: 45em) {
  .form-horizontal label {
    width: 25%;
    float: left;
    padding-top: 12px;
    padding-right: 16px;
    text-align: right;
  }
  .form-horizontal .form-control {
    width: 75%;
  }
  .form-horizontal select.form-control {
    width: 100%;
  }
  .form-horizontal .select {
    width: 75%;
    float: right;
  }
  .form-horizontal .error-msg,
  .form-horizontal .label-offset,
  .form-horizontal label.error {
    padding-left: 25%;
    padding-right: 8px;
    width: 100%;
    text-align: left;
  }
  .form-horizontal .check + label.error,
  .form-horizontal .radio + label.error {
    padding-left: 0;
  }
  .form-horizontal.no-labels label.error {
    padding-left: 0;
  }
  .form-horizontal .checkbox,
  .form-horizontal .radio {
    min-height: 27px;
    padding-top: 12px;
    margin-top: 0;
    margin-bottom: 0;
    width: 75%;
    margin-left: 25%;
  }
  .form-horizontal .checkbox label,
  .form-horizontal .radio label {
    float: none;
    width: auto;
    padding-top: 0;
  }
  .form-horizontal .checkbox-group,
  .form-horizontal .radio-group {
    width: 75%;
    margin-left: 25%;
  }
  .form-horizontal .checkbox-group .checkbox,
  .form-horizontal .radio-group .radio {
    width: auto;
    margin-left: 0;
  }
  .form-horizontal .form-submit {
    padding-left: 25%;
  }
  .form-horizontal .rating,
  .form-horizontal .rating-static {
    padding-top: 7px;
  }
}
/*
------------------------------------------------------------------------------------ INLINE FORM

------------------------------------------------------------------------------------------------
*/
@media screen and (min-width: 45em) {
  .form-inline .form-group {
    display: inline-block;
    margin-right: 20px;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .btn {
    margin-bottom: 0;
  }
}
/*
----------------------------------------------------------------------------------------- ALERTS

------------------------------------------------------------------------------------------------
*/
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 1.2em;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/*
-------------------------------------------------------------------------------- FLOATING LABELS

------------------------------------------------------------------------------------------------
*/
.float-labels .form-group {
  position: relative;
  padding-top: 8px;
}

.float-labels .form-group label.float-label {
  font-size: 11px;
  line-height: 1;
  position: absolute;
  top: -7px;
  left: 0;
  opacity: 0;
  transition: all 0.1s linear;
}

.float-labels .form-group label.float-label.on {
  color: #146a33;
}

.float-labels .form-group label.float-label.show {
  top: -12px;
  opacity: 1;
}

/*
----------------------------------------------------------------------- CONTACT FORM 7 OVERRIDES

------------------------------------------------------------------------------------------------
*/
span.wpcf7-list-item-label {
  font-size: 1.4em;
}

span .wpcf7-not-valid {
  border-color: #bd0000;
}

span.wpcf7-not-valid-tip {
  color: #bd0000;
  font-size: 1.4em;
  display: block;
  padding: 6px 0;
}

div.wpcf7-response-output {
  padding: 15px;
  margin: 0;
  font-size: 1.4em;
  border-width: 1px;
}

div.wpcf7-validation-errors {
  border-color: #ebccd1;
  background-color: #f2dede;
  color: #bd0000;
}

div.wpcf7-mail-sent-ok {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.form-block p:empty {
  display: none;
}

div.wpcf7 .ajax-loader {
  margin-top: -16px;
}

/*
------------------------------------------------------------------------------ CUSTOM CHECKBOXES

------------------------------------------------------------------------------------------------
*/
.custom-check,
.custom-radio {
  margin-top: 7px;
  padding-left: 23px;
}

.check-small,
.radio-small {
  padding-left: 14px;
}

.form-horizontal .custom-check,
.form-horizontal .custom-radio {
  padding-top: 5px;
}

.custom-check input[type=checkbox]:checked,
.custom-check input[type=checkbox]:not(checked),
.custom-radio input[type=radio]:checked,
.custom-radio input[type=radio]:not(checked),
.form-inline .custom-check input[type=checkbox]:checked,
.form-inline .custom-check input[type=checkbox]:not(checked),
.form-inline .custom-radio input[type=radio]:checked,
.form-inline .custom-radio input[type=radio]:not(checked) {
  width: 22px;
  height: 22px;
  margin: 0 0 0 -22px;
  padding: 0;
  opacity: 0;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}

.check-small input[type=checkbox]:checked,
.check-small input[type=checkbox]:not(checked),
.radio-small input[type=radio]:checked,
.radio-small input[type=radio]:not(checked),
.form-inline .check-small input[type=checkbox]:checked,
.form-inline .check-small input[type=checkbox]:not(checked),
.form-inline .radio-small input[type=radio]:checked,
.form-inline .radio-small input[type=radio]:not(checked) {
  width: 14px;
  height: 14px;
  margin-left: -14px;
}

.custom-check label,
.custom-radio label,
.form-inline .custom-check label,
.form-inline .custom-radio label {
  position: relative;
  padding-left: 8px;
  line-height: 22px;
}

.custom-check label:before, .custom-radio label:before {
  content: "";
  display: inline-block;
  background-image: url("/assets/front/app/img/checkbox-sprite.png");
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  position: absolute;
  left: -22px;
  top: 0;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .custom-check label:before, .custom-radio label:before {
    background-image: url("/assets/front/app/img/retina/checkbox-sprite.png");
    background-size: 182px 150px;
  }
}

.check-small label:before,
.radio-small label:before {
  width: 14px;
  height: 14px;
  left: -14px;
  top: 3px;
}

.custom-check label:before {
  background-position: 0 0;
}

.custom-radio label:before {
  background-position: 0 -50px;
}

.check-small label:before {
  background-position: 0 -100px;
}

.radio-small label:before {
  background-position: 0 -125px;
}

.error .custom-check label:before {
  background-position: -130px 0;
}

.error .custom-radio label:before {
  background-position: -130px -50px;
}

.error .check-small label:before {
  background-position: -130px -100px;
}

.error .radio-small label:before {
  background-position: -130px -125px;
}

/*.custom-check label.error:before,
.form-horizontal .custom-check label.error:before,
.custom-radio label.error:before,
.form-horizontal .custom-radio label.error:before {
  display:none;
}

.custom-check label.error,
.form-horizontal .custom-check label.error,
.custom-radio label.error,
.form-horizontal .custom-radio label.error {
  padding-left:8px;
  display:block;
}*/
.custom-check + label.error,
.custom-radio + label.error {
  width: 100%;
  clear: both;
}

.custom-check input[type=checkbox]:hover + label:before {
  background-position: -26px 0;
}

.custom-radio input[type=radio]:hover + label:before {
  background-position: -26px -50px;
}

.check-small input[type=checkbox]:hover + label:before {
  background-position: -26px -100px;
}

.radio-small input[type=radio]:hover + label:before {
  background-position: -26px -125px;
}

.custom-check input[type=checkbox]:focus + label:before {
  background-position: -156px 0;
}

.custom-radio input[type=radio]:focus + label:before {
  background-position: -156px -50px;
}

.check-small input[type=checkbox]:focus + label:before {
  background-position: -156px -100px;
}

.radio-small input[type=radio]:focus + label:before {
  background-position: -156px -125px;
}

.custom-check input[type=checkbox]:checked + label:before,
.custom-check input[type=checkbox]:checked:hover + label:before,
.custom-check input[type=checkbox]:checked:focus + label:before {
  background-position: -52px 0;
}

.custom-radio input[type=radio]:checked + label:before,
.custom-radio input[type=radio]:checked:hover + label:before,
.custom-radio input[type=radio]:checked:focus + label:before {
  background-position: -52px -50px;
}

.check-small input[type=checkbox]:checked + label:before,
.check-small input[type=checkbox]:checked:hover + label:before,
.check-small input[type=checkbox]:checked:focus + label:before {
  background-position: -52px -100px;
}

.radio-small input[type=radio]:checked + label:before,
.radio-small input[type=radio]:checked:hover + label:before,
.radio-small input[type=radio]:checked:focus + label:before {
  background-position: -52px -125px;
}

.custom-check input[type=checkbox]:disabled + label:before {
  background-position: -78px 0;
}

.custom-radio input[type=radio]:disabled + label:before {
  background-position: -78px -50px;
}

.check-small input[type=checkbox]:disabled + label:before {
  background-position: -78px -100px;
}

.radio-small input[type=radio]:disabled + label:before {
  background-position: -78px -125px;
}

.custom-check input[type=checkbox]:disabled:checked + label:before {
  background-position: -104px 0;
}

.custom-radio input[type=radio]:disabled:checked + label:before {
  background-position: -104px -50px;
}

.check-small input[type=checkbox]:disabled:checked + label:before {
  background-position: -104px -100px;
}

.radio-small input[type=radio]:disabled:checked + label:before {
  background-position: -104px -125px;
}

/*
------------------------------------------------------------------------------------------------
  EMBER FRAMEWORK SITE FRONT CSS - _site_pagination.scss - FORM ELEMENTS BASE STYLES
------------------------------------------------------------------------------------------------
  Created:  05-02-2016
  Author:   Ember Interactive (www.emberinteractive.co.uk)
  Website:  Ember Interactive Limited
------------------------------------------------------------------------------------------------
*/
/*
------------------------------------------------------------------------------------- PAGINATION

------------------------------------------------------------------------------------------------
*/
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  font-size: 1.4em;
}

.pagination > li {
  display: inline;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 10px;
  margin-left: -1px;
  line-height: 1.42857143;
  font-weight: 700;
  color: #8d8d8d;
  background-color: #e7e7e6;
  text-decoration: none;
}

.pagination > li > a:hover {
  color: #ffffff;
  background-color: #146a33;
}

.pagination > .active > a,
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 2;
  color: #ffffff;
  background-color: #146a33;
  cursor: default;
}

.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-block { /*text-align: center;*/
  padding-top: 0;
}

.pagination-block .pagination {
  margin: 0;
}

.pagination .previous a,
.pagination .previous span,
.pagination .next a,
.pagination .next span {
  display: block;
  color: #146a33;
  width: 34px;
  height: 32px;
  overflow: hidden;
  text-indent: -300px;
  padding: 0;
  position: relative;
}

.pagination .previous a,
.pagination .previous span {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination .next a,
.pagination .next span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination .previous a:before,
.pagination .previous span:before,
.pagination .next a:before,
.pagination .next span:before {
  content: "";
  display: inline-block;
  background: url("../img/sunmagic-icon-sprite.png") 0 0 no-repeat;
  width: 20px;
  height: 20px;
  background-position: -252px 0;
  display: block;
  width: 8px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 12px;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .pagination .previous a:before,
  .pagination .previous span:before,
  .pagination .next a:before,
  .pagination .next span:before {
    background-image: url("../img/retina/sunmagic-icon-sprite.png");
    background-size: 1000px 150px;
  }
}

.pagination .previous a:hover:before {
  background-position: -252px -50px;
}

.pagination .next a:before,
.pagination .next span:before {
  background-position: -252px -25px;
  left: auto;
  right: 12px;
}

.pagination .next a:hover:before {
  background-position: -252px -75px;
}

/*
------------------------------------------------------------------------------------------------
  EMBER FRAMEWORK SITE FRONT CSS - _site_star_rating.scss - STAR RATING STYLES
------------------------------------------------------------------------------------------------
  Created:  01-03-2016
  Author:   Ember Interactive (www.emberinteractive.co.uk)
  Website:  Ember Interactive Limited
------------------------------------------------------------------------------------------------
*/
/* ------- STATIC STARS ------ */
.rating-static {
  unicode-bidi: bidi-override;
  direction: rtl;
  float: left;
  margin-left: -2px;
  margin-right: 40px;
}

.rating-static > span {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
  text-indent: -100px;
}

.rating-static > span:before {
  content: "";
  display: inline-block;
  background: url("../img/sunmagic-icon-sprite.png") 0 0 no-repeat;
  width: 20px;
  height: 20px;
  width: 20px;
  height: 18px;
  background-position: -416px 0;
  position: absolute;
  top: 2px;
  left: 2px;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .rating-static > span:before {
    background-image: url("../img/retina/sunmagic-icon-sprite.png");
    background-size: 1000px 150px;
  }
}

.rating-static.rating-5 > span:before,
.rating-static.rating-4 > span + span:before,
.rating-static.rating-3 > span + span + span:before,
.rating-static.rating-2 > span + span + span + span:before,
.rating-static.rating-1 > span + span + span + span + span:before {
  background-position: -444px 0;
}

/* ------- SELECTABLE STARS ------ */
.rating {
  display: inline-block;
}

.rating label {
  margin-left: 10px;
  margin-right: 4px;
}

.rating label,
.rating input {
  float: right;
}

.rating input {
  margin-top: 10px;
}

.rating:not(:checked) {
  overflow: hidden;
  font-size: 0;
  position: relative;
}

.rating:not(:checked) input {
  float: right;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0 0 0 -24px;
  opacity: 0;
}

.rating:not(:checked) label {
  position: relative;
  float: right;
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
}

.rating:not(:checked) label:before {
  content: "";
  display: inline-block;
  background: url("../img/sunmagic-icon-sprite.png") 0 0 no-repeat;
  width: 20px;
  height: 20px;
  width: 20px;
  height: 18px;
  background-position: -416px 0;
  position: absolute;
  top: 2px;
  left: 2px;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .rating:not(:checked) label:before {
    background-image: url("../img/retina/sunmagic-icon-sprite.png");
    background-size: 1000px 150px;
  }
}

.rating:not(:checked) label:hover {
  cursor: pointer;
}

.rating:not(:checked):hover label:hover:before,
.rating:not(:checked):hover label:hover ~ label:before,
.rating:not(:checked) input:checked ~ label:before {
  background-position: -444px 0;
}

/*
------------------------------------------------------------------------------------------------
  EMBER FRAMEWORK SITE FRONT CSS - _site_tables.scss - TABLE ELEMENT BASE STYLES
------------------------------------------------------------------------------------------------
  Created:  01-03-2016
  Author:   Ember Interactive (www.emberinteractive.co.uk)
  Website:  Ember Interactive Limited
------------------------------------------------------------------------------------------------
*/
/*
---------------------------------------------------------------------------------- TABLE ELEMENTS

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

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  font-size: 1.4em;
}

.table th {
  text-align: left;
}

.table > thead > tr > th {
  border-bottom: 1px solid #e0e0e0;
  vertical-align: bottom;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  border-top: 1px solid #e7eaec;
  line-height: 1.4;
  padding: 18px 8px;
  vertical-align: top;
}

.table > thead:first-child > tr:first-child > td,
.table > thead:first-child > tr:first-child > th {
  border-top: 0;
}

table .checkbox,
table .radio {
  margin-top: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f6f7f7;
}

.table-bordered {
  border: 1px solid #EBEBEB;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  background-color: #f6f7f7;
  border-bottom-width: 1px;
}

.table-bordered.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: transparent;
}

.table-bordered.table-striped > tbody > tr:nth-of-type(even) {
  background-color: #f6f7f7;
}

/* responsive table */
.table thead {
  display: none;
}

.table tr {
  display: block;
  border-bottom: 1px solid #e0e0e0;
}

.table td {
  display: block;
  text-align: right;
  border-bottom: 1px dotted #e0e0e0;
}

.table td:last-child {
  border-bottom: 0;
}

.table td:before {
  content: attr(data-label);
  float: left;
  font-weight: normal;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  color: #146a33;
}

.table tfoot td {
  text-align: left;
}

.table .cta {
  padding-top: 4px;
  padding-bottom: 4px;
}

.table .even td {
  border-color: #e0e0e0;
  background-color: #f6f7f7;
}

.table .title td {
  background-color: #696969;
  color: #ffffff;
}

.table .title td span { /*font-size: 2.8em;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 2px;
  padding-bottom: 2px;
}

.table tr td.deal-badge-cell {
  padding-top: 7px;
  padding-bottom: 7px;
}

.table tr td.deal-badge-cell:empty {
  display: none;
}

.table tr.title td {
  text-align: left;
  padding-top: 7px;
  padding-bottom: 7px;
}

@media screen and (min-width: 45em) {
  .table thead {
    display: table-header-group;
  }
  .table tr {
    display: table-row;
  }
  .table td {
    display: table-cell;
    text-align: left;
    border-bottom: none;
  }
  .table td:before {
    display: none;
  }
  .table tr {
    border-bottom: none;
  }
  .table tr th {
    padding: 14px 14px;
  }
  .table tr td {
    padding: 16px 14px;
  }
  .table tr th:first-child {
    padding-left: 16px;
  }
  .table tr th:last-child {
    padding-right: 16px;
  }
  .table .cta {
    padding-top: 0;
    padding-bottom: 0;
  }
  .table .col-date {
    width: 200px;
  }
  .table .col-cta {
    width: 250px;
  }
  .table .col-cta .cta {
    float: right;
  }
}
/*
----------------------------------------------------------------------------------- SOCIAL ICONS

------------------------------------------------------------------------------------------------
*/
.social-nav {
  list-style-type: none;
  clear: both;
  margin-left: -16px;
  font-size: 1.6;
}
.social-nav:after {
  clear: both;
  content: "";
  display: table;
}

.social-nav li {
  padding-bottom: 0;
  float: left;
}

.social-nav .social-text {
  line-height: 40px;
  margin-right: 20px;
}

.social-nav .social-text-full,
.article-side .social-nav .social-text {
  width: 100%;
  margin-right: 0;
}

.social-nav-centered {
  text-align: center;
  margin-left: 0;
}

.social-nav-centered li {
  float: none;
  display: inline-block;
}

.social-nav .icon-social {
  display: block;
  overflow: hidden;
  word-wrap: normal; /* WORD WRAP IS IMPORTANT!! */
  white-space: nowrap;
  text-indent: 101%;
  width: 40px;
  height: 40px;
  position: relative;
}

.icon-social:before {
  content: "";
  display: inline-block;
  background: url("../img/sunmagic-icon-sprite.png") 0 0 no-repeat;
  width: 20px;
  height: 20px;
  width: 22px;
  height: 20px;
  display: block;
  position: absolute;
  top: 10px;
  left: 9px;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .icon-social:before {
    background-image: url("../img/retina/sunmagic-icon-sprite.png");
    background-size: 1000px 150px;
  }
}

.social-fb:before {
  background-position: -74px 0;
}

.social-tw:before {
  background-position: -100px 0;
}

.social-in:before {
  background-position: -126px 0;
}

.social-li:before {
  background-position: -152px 0;
}

.social-qu:before {
  background-position: -178px 0;
}

.social-yt:before {
  background-position: -204px 0;
}

.social-gp:before {
  background-position: -230px 0;
}

.social-fb:hover:before {
  background-position: -74px -25px;
}

.social-tw:hover:before {
  background-position: -100px -25px;
}

.social-in:hover:before {
  background-position: -126px -25px;
}

.social-li:hover:before {
  background-position: -152px -25px;
}

.social-qu:hover:before {
  background-position: -178px -25px;
}

.social-yt:hover:before {
  background-position: -204px -25px;
}

.social-gp:hover:before {
  background-position: -230px -25px;
}

/* small icons */
.social-nav-small .icon-social:before {
  width: 22px;
  height: 16px;
  display: block;
  position: absolute;
  top: 12px;
  left: 9px;
}

.social-nav-small .social-fb:before {
  background-position: -74px -50px;
}

.social-nav-small .social-tw:before {
  background-position: -100px -50px;
}

.social-nav-small .social-in:before {
  background-position: -126px -50px;
}

.social-nav-small .social-li:before {
  background-position: -152px -50px;
}

.social-nav-small .social-qu:before {
  background-position: -178px -50px;
}

.social-nav-small .social-yt:before {
  background-position: -204px -50px;
}

.social-nav-small .social-gp:before {
  background-position: -230px -50px;
}

.social-nav-small .social-fb:hover:before {
  background-position: -74px -75px;
}

.social-nav-small .social-tw:hover:before {
  background-position: -100px -75px;
}

.social-nav-small .social-in:hover:before {
  background-position: -126px -75px;
}

.social-nav-small .social-li:hover:before {
  background-position: -152px -75px;
}

.social-nav-small .social-qu:hover:before {
  background-position: -178px -75px;
}

.social-nav-small .social-yt:hover:before {
  background-position: -204px -75px;
}

.social-nav-small .social-gp:hover:before {
  background-position: -230px -75px;
}

/* icon in a circle */
.social-nav-circle {
  margin-left: 0;
}

.social-nav-circle .icon-social {
  background-color: #b5a46a;
  border-radius: 50%;
  margin-right: 20px;
}

.social-nav-small.social-nav-circle .icon-social {
  width: 36px;
  height: 36px;
}

.social-nav-small.social-nav-circle .icon-social:before {
  top: 10px;
  left: 7px;
}

/* tab */
.social-nav-tab {
  margin-left: 0;
}

.social-nav-tab li {
  background-color: #b5a46a;
}

.social-nav-tab li:first-child {
  border-radius: 0 0 0 6px;
}

.social-nav-tab li:last-child {
  border-radius: 0 0 6px 0;
}

@media screen and (min-width: 60em) {
  .social-nav {
    font-size: 2.4em;
  }
}
/*
----------------------------------------------------------------------------------------- HEADER

------------------------------------------------------------------------------------------------
*/
.header {
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (min-width: 45em) {
  .header {
    position: absolute;
  }
}

.header-offset:after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (min-width: 45em) {
  .header-offset {
    display: none;
  }
}

.header .row,
.header-offset .row {
  padding: 12px 0 0 0;
  transition: padding 0.2s ease-out;
  max-width: none;
}

.logo {
  display: block;
  max-width: 46px;
  margin: 0 0 12px 30px;
  float: left;
  transition: max-width 0.3s ease-out, margin 0.2s ease-out;
}

.logo img {
  margin: 0;
  width: 100%; /*Important for SVG logos */
}

.small-header .logo {
  max-width: 100px;
}

.header p {
  margin-bottom: 0;
}

.header-contact {
  float: right;
  padding-top: 14px;
}

.header .tel {
  color: #666666;
  font-weight: 300;
  text-decoration: none;
  font-size: 1.6em;
  width: 100%;
  display: block;
  padding-right: 12px;
}

.header .tel span {
  color: #fcd671;
}

/*
------------------------------------------------------------------------------------- NAVIGATION

------------------------------------------------------------------------------------------------
*/
.icon-menu {
  display: none;
}

.js .icon-menu {
  display: block;
  margin: 0 26px 0 0;
  padding: 0;
  background-color: transparent;
  border: none;
  width: 40px;
  height: 36px;
  overflow: hidden;
  text-indent: -300px;
  float: right;
}

.icon-menu:before {
  content: "";
  display: inline-block;
  background: url("../img/sunmagic-icon-sprite.png") 0 0 no-repeat;
  width: 20px;
  height: 20px;
  background-position: 0 0;
  width: 32px;
  height: 22px;
  margin: 0;
  position: absolute;
  top: 7px;
  left: 4px;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .icon-menu:before {
    background-image: url("../img/retina/sunmagic-icon-sprite.png");
    background-size: 1000px 150px;
  }
}

.mob-nav-open .icon-menu:before {
  background-position: 0 -50px;
  width: 26px;
  height: 26px;
  top: 5px;
  left: 7px;
}

.main-nav {
  clear: both;
}

.main-nav ul {
  margin: 0;
  padding: 0;
}

.main-nav li {
  padding: 0;
  border-bottom: 1px solid #e1dbc3;
}

.main-nav li:last-child {
  border-bottom: 0;
}

.main-nav a {
  display: block;
  color: #146a33;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 30px 6px 30px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

@media screen and (min-width: 45em) {
  .main-nav > ul > li > a {
    color: #ffffff;
  }
}
.js .main-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, height 0.4s ease-out;
}

.js .mob-nav-open .header-inner .main-nav {
  max-height: none;
}

.main-nav ul {
  font-size: 1.8em;
}

.main-nav ul ul {
  font-size: 1em;
}

@media screen and (min-width: 60em) {
  .main-nav ul {
    font-size: 1.8em;
  }
}
.overlay {
  z-index: 50;
  position: fixed;
  width: 100%;
  -webkit-backface-visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: #1c1a1b;
}

.overlay-visible {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.8;
}

.overlay-hidden {
  opacity: 0;
}

.mob-header {
  width: 100%;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.1);
}
.mob-header:after {
  clear: both;
  content: "";
  display: table;
}

.header-inner, .header-new {
  position: relative;
}

.header-inner .row,
.header-new .row {
  background-color: #ffffff;
}

.page-fixed .header-inner {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
}

.page-fixed.mob-nav-open .header-inner {
  height: 100%;
  overflow-y: auto;
}

/* If you have a sub navigation */
.js .main-nav ul ul {
  /*display:none;
  position:absolute;
  width:100%;
  top:0;
  left:100%;*/
}

.js .menu-pos-0 {
  left: 0;
}

.js .menu-pos-1 {
  left: -100%;
}

.js .icon-sub-back {
  opacity: 0.8;
}

.js .icon-sub-back:hover {
  opacity: 1;
}

.js .icon-sub > a:after {
  content: "";
  display: inline-block;
  background: url("../img/sunmagic-icon-sprite.png") 0 0 no-repeat;
  width: 20px;
  height: 20px;
  float: right;
  width: 7px;
  height: 9px;
  background-position: -240px 0;
  margin-top: 6px;
  margin-right: 12px;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .js .icon-sub > a:after {
    background-image: url("../img/retina/sunmagic-icon-sprite.png");
    background-size: 1000px 150px;
  }
}

.js .icon-sub-back:before {
  content: "";
  display: inline-block;
  background: url("../img/sunmagic-icon-sprite.png") 0 0 no-repeat;
  width: 20px;
  height: 20px;
  float: left;
  width: 7px;
  height: 9px;
  background-position: -240px -25px;
  margin-top: 6px;
  margin-right: 10px;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .js .icon-sub-back:before {
    background-image: url("../img/retina/sunmagic-icon-sprite.png");
    background-size: 1000px 150px;
  }
}

.nav-sub-drinks {
  display: none;
}

.main-nav ul.nav-sub-drinks {
  font-size: 1em;
}

.sub-drinks-open .nav-sub-drinks {
  display: block;
}

.main-nav .nav-sub-drinks li a img {
  max-width: 120px;
  display: block;
  margin-bottom: 0;
}

@media screen and (min-width: 45em) {
  .logo {
    max-width: 70px;
    margin-bottom: 24px;
  }
  .mob-header {
    width: auto;
    box-shadow: none;
  }
  .mob-header:after {
    clear: none;
    display: none;
  }
  .header {
    box-shadow: none;
  }
  .header .row,
  .header-offset .row {
    padding-top: 18px;
    position: relative;
  }
  /* ---------------------- NAVIGATION */
  .js .main-nav,
  .main-nav {
    max-height: none;
    overflow: visible;
    clear: none;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    left: 120px;
  }
  .js .icon-menu,
  .icon-menu {
    display: none;
  }
  .header-main .row {
    position: relative;
  }
  .header-inner, .header-new {
    position: relative;
    background-color: transparent;
  }
  .header-inner .row, .header-new .row {
    background-color: transparent;
  }
  .main-nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
  }
  .main-nav ul {
    float: right;
    padding: 0;
  }
  .main-nav ul:after {
    clear: both;
    content: "";
    display: table;
  }
  .main-nav ul,
  .js .main-nav ul {
    transition: none;
  }
  .main-nav ul:after,
  .js .main-nav ul:after {
    clear: both;
    content: "";
    display: table;
  }
  .main-nav li {
    float: left;
    position: relative;
    margin-left: 4px;
    border-bottom: 0;
  }
  .main-nav a {
    padding: 4px 12px 4px 8px;
  }
  .main-nav a:hover,
  .main-nav a.active {
    text-decoration: underline;
  }
  .js .icon-sub > a:after {
    display: none;
  }
  .js .main-nav ul ul,
  .main-nav ul ul {
    background-color: #ffffff;
    padding: 4px 0;
    font-size: 1em;
    display: none;
    width: 200px;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 500;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
  }
  .js .main-nav ul li.show-sub ul,
  .main-nav ul li.show-sub ul {
    display: block;
  }
  .main-nav ul li.menu-item-has-children:hover > ul {
    display: block;
  }
  .main-nav ul ul li {
    float: none;
    margin-left: 0;
  }
  .main-nav .icon-sub:hover ul {
    display: block;
  }
  .js .main-nav .icon-sub:hover ul {
    display: none;
  }
  .js .main-nav ul .js-nav-open ul,
  .js .main-nav .js-nav-open:hover ul {
    display: block;
  }
  /* Drink sub nav */
  .main-nav .nav-sub-drinks,
  .js .main-nav .nav-sub-drinks {
    position: absolute;
    background-color: #ffffff;
    width: 520px;
    left: 50%;
    margin-left: -230px;
    padding: 10px 5px 0 5px;
  }
  .main-nav .nav-sub-drinks li {
    width: 170px;
    margin: 0;
  }
  .main-nav .nav-sub-drinks li a {
    padding: 0 5px 10px 5px;
  }
  .main-nav .nav-sub-drinks li a img {
    margin-bottom: 0;
    max-width: 100%;
  }
  /*.header.scrolled .row,
  .header-offset.scrolled .row {
      padding-top: 12px; //28
  }


  .header.scrolled .logo,
  .header-offset.scrolled .logo {
      margin-bottom: 10px; // 24
  }*/
}
/*
------------------------------------------------------------------------------------ FOOTER MAIN

------------------------------------------------------------------------------------------------
*/
.footer-main {
  padding: 60px 0 40px 0;
}

.footer-nav {
  list-style-type: none;
  margin-bottom: 20px;
  margin-left: 0;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
}

.footer-nav a {
  text-transform: uppercase;
  display: block;
  padding: 2px 0;
}

.footer-nav a:hover,
.footer-nav a.active {
  color: #146a33;
}

.footer-contact-block p {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  margin-bottom: 0;
}

.footer-contact-block a {
  display: block;
  padding: 2px 0;
}

@media screen and (min-width: 45em) {
  .footer-main .footer-nav-block {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    margin-right: 20px;
  }
  .footer-main .footer-contact-block {
    flex-basis: calc(40px + ((100% - 220px) / 12 * 3));
    margin-right: 20px;
  }
  .footer-main .footer-social-block {
    flex-basis: calc(40px + ((100% - 220px) / 12 * 3));
    margin-right: 0;
  }
  .footer-nav-block-navs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .footer-nav-block-navs ul {
    flex-basis: calc(40px + ((100% - 100px) / 6 * 3));
    margin-right: 20px;
  }
  .footer-nav-block-navs ul:last-child {
    margin-right: 0;
  }
}
/*
------------------------------------------------------------------------------------- FOOTER SUB

------------------------------------------------------------------------------------------------
*/
.footer-sub {
  background-color: #484E4E;
  color: #ffffff;
  padding-top: 30px;
  box-shadow: 0 500px 0px 500px #484E4E;
}

@media screen and (min-width: 45em) {
  .footer-sub-a {
    flex: 1;
  }
  .footer-sub-b {
    width: 270px;
  }
}
/*
------------------------------------------------------------------- HERO IMAGE / BANNER / SLIDER

------------------------------------------------------------------------------------------------
*/
.hero-wrapper {
  position: relative;
}

.hero-img {
  min-height: 180px;
  display: block;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-decoration: none;
  color: #666666;
}

.hero-img:hover {
  text-decoration: none;
}

.hero-img-top {
  background-position: 50% 0;
}

.hero-img-bot {
  background-position: 50% 100%;
}

.hero-img-darken:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #666666;
  opacity: 0.3;
}

.hero-caption {
  padding-top: 40px;
  width: 100%;
}

.hero-caption-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 30px auto;
}

.hero-caption h1,
.hero-caption h2 {
  color: #735F5E;
}

.hero-caption p {
  font-size: 2.4em;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}

.hero-caption-centered .cta {
  text-align: center;
}

.hero-caption .btn {
  margin-right: 0;
}

.hero-img-left .hero-caption-inner {
  text-align: left;
}

.hero-caption-right .hero-caption-inner {
  float: right;
}

.hero-caption-centered .hero-caption-inner {
  text-align: center;
  margin-left: 0;
}

.hero-caption-centered.hero-caption-wide .hero-caption-inner {
  margin-left: auto;
}

.hero-caption-wide .hero-caption-inner {
  max-width: 830px;
}

.hero-caption-v-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100px;
}

.hero-caption-v-centered .hero-caption-top {
  padding-top: 0;
}

.hero-caption-v-centered .hero-caption h1,
.hero-caption-v-centered .hero-caption-inner {
  margin-bottom: 0;
}

.hero-caption-v-centered .hero-caption {
  padding-top: 30px;
}
@media screen and (min-width: 45em) {
  .hero-caption-v-centered .hero-caption {
    padding-top: 60px;
  }
}

.hero-caption-white h1,
.hero-caption-white h2,
.hero-caption-white p,
.hero-caption-white a,
.hero-caption-white .btn-text {
  color: #ffffff;
  border-color: #ffffff;
}

.hero-caption-orange h1,
.hero-caption-orange h2,
.hero-caption-orange p,
.hero-caption-orange .btn-text {
  color: #ffffff;
  border-color: #ffffff;
}

.hero-wrapper .social-nav-tab {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero-date {
  margin-bottom: 10px;
}

/*
--------------------------------------------------------------------------------------- CAROUSEL

------------------------------------------------------------------------------------------------
*/
.carousel {
  font-size: 1em;
}

.carousel, .carousel li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.carousel li {
  display: none;
}

.carousel > li:first-child {
  display: block;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-prev,
.slick-next {
  border-radius: 0;
  margin-right: 0;
  margin-left: 0;
  z-index: 200;
  width: 15px;
  height: 28px;
}

.slick-prev {
  left: 4px;
}

.slick-next {
  right: 4px;
  text-align: right;
}

.slick-next:before,
.slick-prev:before {
  content: "";
  display: inline-block;
  background: url("../img/sunmagic-icon-sprite.png") 0 0 no-repeat;
  width: 20px;
  height: 20px;
  background-position: -256px -50px;
  width: 15px;
  height: 28px;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .slick-next:before,
  .slick-prev:before {
    background-image: url("../img/retina/sunmagic-icon-sprite.png");
    background-size: 1000px 150px;
  }
}

.slick-prev:before {
  background-position: -256px -100px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  bottom: 30px;
  margin: 0;
  padding: 0;
}

.slick-dots li {
  display: inline-block;
  width: 28px;
  height: 28px;
}

.slick-dots li button {
  width: 28px;
  height: 28px;
}

.slick-dots li button:before {
  content: " ";
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #f1f1f1;
  top: 6px;
  left: 6px;
}

.slick-dots li button:before {
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #b5a46a;
}

@media screen and (min-width: 1200px) {
  .slick-prev {
    left: -20px;
  }
  .slick-next {
    right: -20px;
  }
}
@media screen and (min-width: 1300px) {
  .slick-prev {
    left: -100px;
  }
  .slick-next {
    right: -100px;
  }
}
@media screen and (min-width: 30em) {
  /* ---------------------- BANNERS / CAROUSELS */
  .hero-img,
  .hero-img .row {
    min-height: 320px;
  }
  .hero-img .row {
    position: relative;
  }
  .hero-caption {
    padding-top: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
  }
  .hero-caption-left .hero-caption-inner {
    margin-left: 0;
  }
  .hero-caption-top {
    position: relative;
    transform: none;
    padding-top: 80px;
  }
}
@media screen and (min-width: 45em) {
  .hero-caption-top {
    padding-top: 140px;
  }
  .hero-img,
  .hero-img .row {
    min-height: 580px;
  }
  .hero-img.hero-tall,
  .hero-img.hero-tall .row {
    min-height: 680px;
  }
  .hero-img.hero-tall .hero-caption-top {
    padding-top: 130px;
  }
}
/* VIDEO */
.video-bg {
  width: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
}
@media screen and (min-width: 45em) {
  .video-bg {
    display: block;
  }
}

.video-bg-inner {
  width: 100%;
  min-width: 1200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-bg-inner:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 52.66%;
}

.video-bg-video {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*
.video-bg-video {
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 177.77%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}*/
/*
--------------------------------------------------------------------------------- SUMMARY BLOCKS

------------------------------------------------------------------------------------------------
*/
.summary-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-item {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  color: #666666;
  display: block;
}
@media screen and (min-width: 45em) {
  .summary-item {
    margin-bottom: 10px;
  }
}

.summary-img {
  width: 100%;
  position: relative;
}

.summary-item-white h2,
.summary-item-white h3,
.summary-item-white p,
.summary-item-white .btn {
  color: #ffffff;
  border-color: #ffffff;
}

.summary-item-cream {
  background-color: #DED5BB;
}

.summary-item-cream h2,
.summary-item-cream p,
.summary-item-cream .btn {
  color: #735F5E;
  border-color: #735F5E;
}

.summary-item .btn {
  margin: 0;
}

.summary-content-desc {
  font-size: 1.7em;
}

.summary-content-hide-small .summary-content-desc {
  display: none;
}
@media screen and (min-width: 60em) {
  .summary-content-hide-small .summary-content-desc {
    display: inline;
  }
}

.summary-content-title {
  margin-bottom: 14px;
}

.summary-img-bg {
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
}

.summary-ratio-wide:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 48.9583333333%;
}

.summary-ratio-square:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}

.summary-ratio .summary-img-bg,
.summary-ratio .summary-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.summary-ratio .summary-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.summary-ratio .summary-content-inner {
  padding: 0 10px;
}

.summary-img-darken:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  opacity: 0.4;
}

.product-grid .summary-item {
  margin-bottom: 60px;
}

.grid-logo {
  max-width: 180px;
  margin: 0 auto 30px auto;
}

@media screen and (min-width: 45em) {
  .summary-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .summary-item {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
    margin-right: 20px;
  }
  .summary-grid .summary-item:nth-child(2n) {
    margin-right: 0;
  }
  .summary-grid.summary-grid-4 .summary-item {
    flex-basis: calc(40px + ((100% - 220px) / 12 * 3));
    max-width: calc(40px + ((100% - 220px) / 12 * 3));
    margin-right: 20px;
  }
  .summary-grid.summary-grid-4 .summary-item:nth-child(2n) {
    margin-right: 20px;
  }
  .summary-grid.summary-grid-4 .summary-item:nth-child(4n) {
    margin-right: 0;
  }
  .summary-grid.product-grid .summary-item,
  .summary-grid.summary-grid-3 .summary-item {
    flex-basis: calc(60px + ((100% - 220px) / 12 * 4));
    max-width: calc(60px + ((100% - 220px) / 12 * 4));
    margin-right: 19px;
    margin-bottom: 90px;
  }
  .summary-grid.product-grid .summary-item:nth-child(2n),
  .summary-grid.summary-grid-3 .summary-item:nth-child(2n) {
    margin-right: 19px;
  }
  .summary-grid.product-grid .summary-item:nth-child(3n),
  .summary-grid.summary-grid-3 .summary-item:nth-child(3n) {
    margin-right: 0;
  }
  .product-grid .summary-img,
  .product-grid .summary-content {
    max-width: 270px;
    margin: 0 auto;
  }
  .product-grid.product-grid-wider .summary-content {
    max-width: 320px;
  }
}
.about-summary-grid .summary-img {
  max-width: 180px;
  margin: 0 auto;
}

.benefits-summary-grid .summary-img {
  max-width: 240px;
  margin: 0 auto;
}

@media screen and (min-width: 45em) {
  .who-summary-grid {
    justify-content: center;
  }
  .summary-grid.who-summary-grid .summary-item {
    flex-basis: calc(20px + (100% - 220px) / 12 * 2.5);
    max-width: calc(20px + (100% - 220px) / 12 * 2.5);
    margin-right: 20px;
  }
  .summary-grid.who-summary-grid .summary-item:nth-child(2n) {
    margin-right: 20px;
  }
  .summary-grid.who-summary-grid .summary-item:nth-child(5n) {
    margin-right: 0;
  }
}
.summary-grid.contract-summary-grid .summary-img {
  max-width: 270px;
  margin: 0 auto;
}

@media screen and (min-width: 45em) {
  .summary-grid.contract-summary-grid .summary-item {
    flex-basis: calc(150px + ((100% - 330px) / 12 * 6));
    max-width: calc(150px + ((100% - 330px) / 12 * 6));
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .summary-grid.contract-summary-grid .summary-item:nth-child(2n) {
    margin-right: 0;
  }
}
/* EQUAL HEIGHT CONTENT */
@media screen and (min-width: 30em) {
  .summary-grid.summary-equal-height .summary-item {
    display: flex;
  }
  .summary-grid.summary-equal-height .summary-item-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .summary-grid.summary-equal-height .summary-img {
    flex: 0 0 auto;
  }
  .summary-grid.summary-equal-height .summary-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .summary-grid.summary-equal-height .summary-text {
    padding-bottom: 53px;
  }
  .summary-grid.summary-equal-height .summary-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .summary-grid.summary-equal-height.summary-equal-height-heading .summary-heading {
    flex: 1 0 auto;
  }
}
/*
------------------------------------------------------------------------------------ PRODUCT PAGE

------------------------------------------------------------------------------------------------
*/
.product-info-intro {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.product-info-intro .social-nav {
  padding-top: 30px;
}

.product-info-ingredients {
  padding-bottom: 20px;
}

/* PRODUCT TABLE */
.product-table tr th {
  color: #146a33;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-weight: normal;
}

.product-table > thead > tr > th,
.product-table > tbody > tr > th,
.product-table > tfoot > tr > th,
.product-table > thead > tr > td,
.product-table > tbody > tr > td,
.product-table > tfoot > tr > td,
.product-table td:last-child {
  border-top: 0;
  border-bottom: 1px solid #e1dbc3;
  padding-top: 6px;
  padding-bottom: 6px;
}

.product-table > thead > tr > th {
  padding-top: 12px;
  padding-bottom: 12px;
}

.product-table > tbody > tr > th {
  display: block;
  width: 100%;
}

.product-table > tbody > tr {
  margin-bottom: 10px;
}

@media screen and (min-width: 45em) {
  .product-table > tbody > tr > th,
  .product-table tr th:first-child {
    padding-left: 0;
  }
}
.product-table caption {
  text-align: left;
  line-height: 40px;
}

.product-main .row {
  position: relative;
}

.item-next,
.item-prev {
  display: block;
  overflow: hidden;
  word-wrap: normal; /* WORD WRAP IS IMPORTANT!! */
  white-space: nowrap;
  text-indent: 101%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 120px;
  left: 0;
}

.item-next {
  left: auto;
  right: 0;
}

.item-next:before,
.item-prev:before {
  content: "";
  display: inline-block;
  background: url("../img/sunmagic-icon-sprite.png") 0 0 no-repeat;
  width: 20px;
  height: 20px;
  background-position: -256px -50px;
  width: 15px;
  height: 28px;
  position: absolute;
  top: 6px;
  left: 12px;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .item-next:before,
  .item-prev:before {
    background-image: url("../img/retina/sunmagic-icon-sprite.png");
    background-size: 1000px 150px;
  }
}

.item-prev:before {
  background-position: -256px -100px;
}

@media screen and (min-width: 45em) {
  .product-images {
    width: calc(100px + ((100% - 220px) / 12 * 6));
    margin-right: 20px;
  }
  .product-info {
    width: calc(100px + ((100% - 220px) / 12 * 6));
    margin-right: 0;
  }
  .item-next,
  .item-prev {
    top: 300px;
  }
}
/*
--------------------------------------------------------------------------------------- ARTICLES

------------------------------------------------------------------------------------------------
*/
.article-content {
  max-width: 860px;
}

.article-content p:first-child {
  color: #735F5E;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: 2.5em;
}

.article-side {
  padding: 40px 0;
}

@media screen and (min-width: 60em) {
  .flex-row .article-side {
    order: 1;
    flex-basis: calc(40px + ((100% - 220px) / 12 * 3));
    margin-right: 0;
  }
  .flex-row .article-content {
    max-width: none;
    order: 2;
    flex-basis: calc(160px + ((100% - 220px) / 12 * 9));
    max-width: 760px;
    margin-right: 20px;
  }
}
/*
------------------------------------------------------------------------------------ PRODUCT PAGE

------------------------------------------------------------------------------------------------
*/
@media screen and (min-width: 45em) {
  .recipe-images {
    width: calc(100px + ((100% - 220px) / 12 * 6));
    margin-right: 20px;
  }
  .recipe-info {
    width: calc(100px + ((100% - 220px) / 12 * 6));
    margin-right: 0;
  }
}
/*
---------------------------------------------------------------------------------- COOKIE CONSENT

------------------------------------------------------------------------------------------------
*/
#catapult-cookie-bar {
  background-color: rgba(72, 72, 72, 0.8) !important;
  font-size: 1.2em;
}

/*
--------------------------------------------------------------------------------- LOCATION BLOCKS

------------------------------------------------------------------------------------------------
*/
.location-grid {
  padding-top: 20px;
}

.location-item {
  margin-bottom: 40px;
}

.location-item-img {
  max-width: 200px;
}

@media screen and (min-width: 45em) {
  .location-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .location-grid .location-item {
    flex-basis: calc(150px + ((100% - 330px) / 12 * 6));
    max-width: calc(150px + ((100% - 330px) / 12 * 6));
    margin-right: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .location-grid .location-item:nth-child(2n) {
    margin-right: 0;
  }
  .location-item-img {
    flex-basis: 200px;
    max-width: 200px;
    min-width: 200px;
    margin-right: 20px;
  }
}
/*
------------------------------------------------------------------------------------------- GRID

------------------------------------------------------------------------------------------------
*/
.grid-row {
  display: block;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.grid-row.grid-row-sm {
  display: flex;
}

@media screen and (min-width: 30em) {
  .grid-row {
    display: flex;
  }
  .grid-row.grid-row-lg {
    display: block;
  }
  .col-1 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-2 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-3 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-4 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-5 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-6 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-7 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-8 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-9 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-10 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-11 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
  .col-12 {
    flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
    max-width: calc(100px + ((100% - 220px) / 12 * 6));
  }
}
@media screen and (min-width: 45em) {
  .grid-row.grid-row-lg {
    display: flex;
  }
  .col-1 {
    flex-basis: calc(((100% - 330px) / 12 * 1));
    max-width: calc(((100% - 330px) / 12 * 1));
  }
  .col-2 {
    flex-basis: calc(30px + ((100% - 330px) / 12 * 2));
    max-width: calc(30px + ((100% - 330px) / 12 * 2));
  }
  .col-3 {
    flex-basis: calc(60px + ((100% - 330px) / 12 * 3));
    max-width: calc(60px + ((100% - 330px) / 12 * 3));
  }
  .col-4 {
    flex-basis: calc(90px + ((100% - 330px) / 12 * 4));
    max-width: calc(90px + ((100% - 330px) / 12 * 4));
  }
  .col-5 {
    flex-basis: calc(120px + ((100% - 330px) / 12 * 5));
    max-width: calc(120px + ((100% - 330px) / 12 * 5));
  }
  .col-6 {
    flex-basis: calc(150px + ((100% - 330px) / 12 * 6));
    max-width: calc(150px + ((100% - 330px) / 12 * 6));
  }
  .col-7 {
    flex-basis: calc(180px + ((100% - 330px) / 12 * 7));
    max-width: calc(180px + ((100% - 330px) / 12 * 7));
  }
  .col-8 {
    flex-basis: calc(210px + ((100% - 330px) / 12 * 8));
    max-width: calc(210px + ((100% - 330px) / 12 * 8));
  }
  .col-9 {
    flex-basis: calc(240px + ((100% - 330px) / 12 * 9));
    max-width: calc(240px + ((100% - 330px) / 12 * 9));
  }
  .col-10 {
    flex-basis: calc(270px + ((100% - 330px) / 12 * 10));
    max-width: calc(270px + ((100% - 330px) / 12 * 10));
  }
  .col-11 {
    flex-basis: calc(300px + ((100% - 330px) / 12 * 11));
    max-width: calc(300px + ((100% - 330px) / 12 * 11));
  }
  .col-12 {
    flex-basis: calc(330px + (100% - 330px));
    max-width: calc(330px + (100% - 330px));
  }
}
/* FOR TESTING */
.col-label {
  position: relative;
  box-sizing: border-box;
  min-height: 30px;
  padding: 5px 0;
  margin-bottom: 30px;
  background: #007FFF;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.max-col-8 {
  max-width: 52rem;
}

/*
--------------------------------------------------------------------- TRUNCATED BLOCK OF CONTENT

------------------------------------------------------------------------------------------------
*/
.js .truncated-block {
  position: relative;
}

.js .truncated-block-inner {
  overflow: hidden;
  max-height: 480px;
  position: relative;
  transition: max-height 0.4s ease-in-out;
}

.js .truncated-block-inner.truncated-block-tall {
  transition: max-height 0.8s ease-in-out;
}

.js .truncated-block-inner.truncated-block-no-height {
  max-height: 0;
}

.js .truncated-block-inner.truncated-block-inner-fade:after {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 95%);
  opacity: 1;
  transition: opacity 0.4s linear;
}

.js .truncated-block.animating .truncated-block-inner.truncated-block-inner-fade:after {
  opacity: 0;
}

.js .truncated-block.active .truncated-block-inner.truncated-block-inner-fade:after {
  display: none;
}

/* BUTTON */
.truncated-block-btn {
  display: none;
}

.js .truncated-block-btn {
  display: block;
  opacity: 1;
  transition: opacity 0.4s linear;
}

.js .truncated-block-no-hide .truncated-block-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.js .truncated-block-no-hide.animating .truncated-block-btn {
  opacity: 0;
}

.js .truncated-block-no-hide.active .truncated-block-btn {
  display: none;
}

/* ARROW IN BUTTON */
.truncated-block-btn .icon-ratio {
  transition: transform 0.2s ease-out;
}

.truncated-block.animating > .truncated-block-btn .icon-ratio {
  transform: rotate(90deg);
}

/*
------------------------------------------------------------------- HERO IMAGE / BANNER / SLIDER

------------------------------------------------------------------------------------------------
*/
.feature-highlights {
  position: relative;
  max-width: 960px;
  margin: 60px auto 30px auto;
}

.feature-highlights-heading {
  position: relative;
}

.feature-highlights-heading h4 {
  padding-right: 140px;
}

.feature-highlights-heading-link {
  font-size: 1.7em;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: right;
  padding-top: 8px;
}
@media screen and (min-width: 45em) {
  .feature-highlights-heading-link {
    font-size: 1.9em;
  }
}

@media screen and (min-width: 45em) {
  .feature-highlights-content-grid {
    display: flex;
  }
  .feature-highlights-content-grid .feature-highlights-grid-img {
    flex-basis: calc(60px + ((100% - 220px) / 12 * 4));
    max-width: calc(60px + ((100% - 220px) / 12 * 4));
    margin-right: 20px;
  }
  .feature-highlights-content-grid .feature-highlights-grid-content {
    flex-basis: calc(140px + ((100% - 220px) / 12 * 8));
    max-width: calc(140px + ((100% - 220px) / 12 * 8));
    margin-right: 0;
    padding-left: 20px;
  }
}
/*
--------------------------------------------------------------------------------------- clrfix

------------------------------------------------------------------------------------------------
*/
.clr:after {
  clear: both;
  content: "";
  display: table;
}

/*
------------------------------------------------------------------------------------ HTML / BODY

------------------------------------------------------------------------------------------------
*/
html, body {
  height: 100%;
  min-height: 100%;
}

html {
  font-size: 50%;
}

body {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-weight: 400;
  background-color: #ffffff;
  color: #666666;
  font-size: 125%; /*-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;*/
}

body {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}

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

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

/*
---------------------------------------------------------------------------------- TEXT DEFAULTS

------------------------------------------------------------------------------------------------
*/
p {
  margin: 0 0 22px 0;
  padding: 0 4px 0 0;
  line-height: 1.5;
  position: relative;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.7em;
}
@media screen and (min-width: 45em) {
  p {
    font-size: 1.9em;
  }
}

b, strong {
  font-weight: 700;
}

a {
  color: #b5a46a;
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  word-wrap: break-word;
}

a:hover, a.active {
  text-decoration: none;
}

a:focus {
  outline: none;
}

/* Headings */
h1, h2, h3, h3, h4, h5, h6 {
  font-weight: 700;
  color: #146a33;
  margin: 0 0 22px 0;
  position: relative;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 a, h2 a, h3 a {
  text-decoration: none;
}

h1 a:hover, h2 a:hover, h3 a:hover {
  text-decoration: none;
}

h1, .h-1 {
  font-size: 3.2em;
  line-height: 1.2;
}

h2, .h-2 {
  font-size: 2.8em;
  line-height: 1.2;
}

h3, .h-3 {
  font-size: 2.4em;
  line-height: 1.2;
  margin-bottom: 18px;
}

h4, .h-4 {
  font-size: 1.8em;
  line-height: 1.2;
}

h5, .h-5 {
  font-size: 1.6em;
  line-height: 1.2;
}

@media screen and (min-width: 45em) {
  h1, .h-1 {
    font-size: 4.8em;
  }
  h2, .h-2 {
    font-size: 3.6em;
  }
  h3, .h-3 {
    font-size: 2.8em;
  }
  h4, .h-4 {
    font-size: 2.4em;
  }
  h5, .h-5 {
    font-size: 2em;
  }
}
@media screen and (min-width: 60em) {
  h1, .h-1 {
    font-size: 5.4em;
  }
  h2, .h-2 {
    font-size: 4.8em;
  }
  h3, .h-3 {
    font-size: 3.2em;
  }
  h4, .h-4 {
    font-size: 2.9em;
  }
  h5, .h-5 {
    font-size: 2.4em;
  }
}
ul, ol, dl {
  margin: 0 0 20px 0;
  font-size: 1.7em;
  line-height: 1.4;
  margin-left: 16px;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 45em) {
  ul, ol, dl {
    font-size: 1.9em;
  }
}

li {
  padding-bottom: 4px;
  margin: 0;
}

ul ul {
  font-size: 1em;
}

img {
  margin: 0 0 22px 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  width: auto\9 ; /* ie8 */
}

.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

p.text-smaller,
.text-smaller p {
  font-size: 1.5em;
}
@media screen and (min-width: 45em) {
  p.text-smaller,
  .text-smaller p {
    font-size: 1.7em;
  }
}

p.text-larger,
.text-larger p,
ul.text-larger,
.text-larger ul {
  font-size: 1.8em;
}
@media screen and (min-width: 45em) {
  p.text-larger,
  .text-larger p,
  ul.text-larger,
  .text-larger ul {
    font-size: 2em;
  }
}

@media screen and (min-width: 45em) {
  p.text-smaller,
  .text-smaller p {
    font-size: 1.7em;
  }
  p.text-larger,
  .text-larger p,
  ul.text-larger,
  .text-larger ul {
    font-size: 2.1em;
  }
}
.text-paler {
  color: #8d8d8d;
}

.text-darker {
  color: #2c2c2c;
}

.text-success {
  color: #146a33;
  font-weight: 600;
}

.text-danger,
p.error {
  color: #e0001b;
  font-weight: 600;
}

.centered {
  text-align: center;
}

@media screen and (min-width: 45em) {
  .show-small {
    display: none;
  }
}
.no-results {
  display: none;
}

.large-link {
  font-weight: 700;
  font-size: 1.1em;
}
@media screen and (min-width: 45em) {
  .large-link {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 45em) {
  .nav-hide-small > a {
    display: none;
  }
}
.hide-small {
  display: none;
}

.hide-large {
  display: block;
}

@media screen and (min-width: 45em) {
  .hide-large {
    display: none;
  }
  .hide-small {
    display: block;
  }
}
/*
----------------------------------------------------------------------------------------- LAYOUT

------------------------------------------------------------------------------------------------
*/
.row {
  padding: 0 30px;
  max-width: 1170px;
  margin: 0 auto;
}
.row:after {
  clear: both;
  content: "";
  display: table;
}

.row .row {
  padding-left: 0;
  padding-right: 0;
}

section,
article {
  padding: 40px 0;
}

.row.row-full {
  max-width: none;
}

.section-collapse {
  padding-top: 0;
  padding-bottom: 0;
}

.section-collapse-top {
  padding-top: 0;
}

.section-collapse-bottom {
  padding-bottom: 0;
}

.section-pale-grey {
  background-color: #f6f7f7;
}

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

@media screen and (min-width: 45em) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-brush-stroke-top {
    padding-top: 80px;
  }
  .section-collapse {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section-collapse-top {
    padding-top: 0;
  }
  .section-collapse-bottom {
    padding-bottom: 0;
  }
  .flex-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
}
/*
----------------------------------------------------------------------------------------- SECTIONS

------------------------------------------------------------------------------------------------
*/
.section-bg-pattern {
  background: url("../img/bg-pattern-pale.jpg") 50% 50% repeat;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .section-bg-pattern {
    background-image: url("../img/retina/bg-pattern-pale.jpg");
    background-size: 800px 800px;
  }
}

.section-bg-pattern-darker {
  background: url("../img/bg-pattern-pale-darker.jpg") 50% 50% repeat;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .section-bg-pattern-darker {
    background-image: url("../img/retina/bg-pattern-pale-darker.jpg");
    background-size: 800px 800px;
  }
}

.section-brush-stroke-top,
.section-brush-stroke-bot {
  position: relative;
}

.section-brush-stroke-top:before,
.section-brush-stroke-bot:after {
  content: "";
  display: block;
  width: 100%;
  height: 34px;
  background-color: red;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg-brush-stroke-top.png") 50% 50% no-repeat;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .section-brush-stroke-top:before,
  .section-brush-stroke-bot:after {
    background-image: url("../img/retina/bg-brush-stroke-top.jpg");
    background-size: 1780px 34px;
  }
}

.section-brush-stroke-bot:after {
  top: auto;
  bottom: 0;
  background-image: url("../img/bg-brush-stroke-bot.png");
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .section-brush-stroke-bot:after {
    background-image: url("../img/retina/bg-brush-stroke-top.jpg");
  }
}

.section-border-top {
  border-top: 1px solid #e1dbc3;
}

/*
------------------------------------------------------------------------------------- TITLE BLOCK

------------------------------------------------------------------------------------------------
*/
.intro-block {
  max-width: 860px;
  margin: 0 0 60px 0;
}

.intro-block-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.intro-block-brown h2 {
  color: #735F5E;
}

.intro-block ul {
  list-style: none;
}

.intro-block-bordered {
  background-color: #f6f2ef;
  border: 1px solid #f6e7db;
  padding: 30px 30px 10px 30px;
}

/*
------------------------------------------------------------------------------------- CTA BLOCK

------------------------------------------------------------------------------------------------
*/
.cta-block {
  padding: 40px 0;
}

.cta-block-centered {
  text-align: center;
}

/*
-------------------------------------------------------------------------------- SHOW MORE BLOCK

------------------------------------------------------------------------------------------------
*/
.show-more-wrapper {
  border-bottom: 1px solid #e0e0e0;
}

.show-more {
  padding: 20px 0;
  font-weight: 700;
  font-size: 2.8em;
  color: #b5a46a;
  display: block;
  width: 100%;
  text-align: center;
}

.show-more span {
  padding-right: 42px;
  position: relative;
}

.show-more span:after {
  content: "";
  display: inline-block;
  background: url("../img/sunmagic-icon-sprite.png") 0 0 no-repeat;
  width: 20px;
  height: 20px;
  width: 28px;
  height: 15px;
  background-position: -256px 0;
  position: absolute;
  top: 5px;
  right: 0;
}
@media (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .show-more span:after {
    background-image: url("../img/retina/sunmagic-icon-sprite.png");
    background-size: 1000px 150px;
  }
}

/*
-------------------------------------------------------------------------------- FEATURE CAROUSEL

------------------------------------------------------------------------------------------------
*/
.feature-slider-wrapper .row {
  padding-left: 0;
  padding-right: 0;
}

.feature-slider-wrapper .carousel > li,
.feature-slider-wrapper .carousel .slick-slide {
  padding-left: 30px;
  padding-right: 30px;
}

.feature-slider-content {
  flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
}

.feature-slider-content-inner {
  max-width: 430px;
}

.feature-slider-img {
  flex-basis: calc(100px + ((100% - 220px) / 12 * 6));
  margin-right: 0;
}

.feature-slider-wrapper .slick-dots {
  bottom: 0;
}

/*
------------------------------------------------------------------------------------ CONTACT PAGE

------------------------------------------------------------------------------------------------
*/
@media screen and (min-width: 45em) {
  .contact-form,
  .contact-details {
    flex-basis: calc(220px + (100% - 220px));
  }
}
@media screen and (min-width: 60em) {
  .contact-form {
    flex-basis: calc(120px + ((100% - 220px) / 12 * 7));
    margin-right: 20px;
  }
  .contact-details {
    flex-basis: calc(60px + ((100% - 220px) / 12 * 4));
    margin-right: 0;
    margin-left: auto;
  }
}
/*
-----------------------------------------------------------------------------INGREDIENT FEATURES

------------------------------------------------------------------------------------------------
*/
.ingredient-feature {
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (min-width: 60em) {
  .ingredient-feature {
    max-width: none;
    flex-basis: calc(40px + ((100% - 220px) / 12 * 3));
    margin-right: 20px;
  }
  .flex-row .ingredient-feature:nth-child(4n) {
    margin-right: 0;
  }
}
/*
-------------------------------------------------------------------------------------- OUR STORY

------------------------------------------------------------------------------------------------
*/
.story-gallery {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 1em;
}

.story-gallery-item {
  max-width: 400px;
  margin: 0;
  padding: 0;
}

.story-date {
  font-size: 2.4em;
  color: #b5a46a;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (min-width: 60em) {
  .story-gallery-item {
    max-width: none;
    flex-basis: calc(40px + ((100% - 220px) / 12 * 3));
    margin-right: 20px;
  }
  .flex-row .story-gallery-item:nth-child(4n) {
    margin-right: 0;
  }
  .story-gallery .slick-slide {
    margin: 0 5px;
  }
  .story-gallery .slick-list {
    margin: 0 -5px;
  }
  .story-gallery.js-carousel li:nth-child(n+5) {
    display: none;
  }
}
.image-ratio {
  position: relative;
  margin: 0 0 22px 0;
}

.image-ratio-padding {
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.image-ratio > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Hides Google reCAPTCHA Badge on all pages */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* Enable Google reCAPTCHA Badge on the contact page */
.page-id-114 .grecaptcha-badge {
  visibility: visible !important;
}
/*# sourceMappingURL=../maps/front-app-41e60892d2.css.map */
