@charset "UTF-8";
/*================================================================================
Variables
================================================================================*/
/*========================================
Paths
========================================*/
/*========================================
Colour
========================================*/
/*========================================
Typography
========================================*/
/*========================================
Layout
========================================*/
/*================================================================================
Mixins
================================================================================*/
/*========================================
Utilities
========================================*/
/**
 * Output hover rules
 *
   `@include hover();`
 *
 */
/**
 * Output uppercase with some letter spacing
 *
   `@include uppercase(0.1em);`
 *
 */
/**
 * Output clearfix rules
 *
   `@include clearfix();`
 *
 */
/**
 * Output media query block
 *
   `@include media-query(min, 640px);`
 *
 */
/**
 * Output media query block with min and max limits
 *
   `@include media-query-bracket(640px, 960px);`
 *
 */
/*========================================
Styling
========================================*/
/**
 * Output font size using rem and px fallback
 *
   `@include font-size(10px);`
 *
 */
/**
 * Output unstyled list properties
 *
   `@include list-reset();`
 *
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
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 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent 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/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 when focused and also mouse hovered in all browsers.
 */
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: 600;
}
/**
 * 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;
}
/**
 * Address 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
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
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 {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
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.
 */
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.
 */
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;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  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
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}
/**
 * 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.
 */
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: 600;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*------------------------------------*\
    #RESET
\*------------------------------------*/
/**
 * As well as using normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
form,
fieldset,
legend,
figure,
table,
th,
td,
caption,
hr {
  margin: 0;
  padding: 0;
}
/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title],
dfn[title] {
  cursor: help;
}
/**
 * Remove underlines from potentially troublesome elements.
 */
u,
ins {
  text-decoration: none;
}
/**
 * Apply faux underlines to inserted text via `border-bottom`.
 */
ins {
  border-bottom: 1px solid;
}
/**
* Base ul style
*/
ul,
ol {
  margin-left: 20px;
}
.validator {
  height: auto !important;
  width: auto !important;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.validator.validator-phone .feedback,
.validator.validator-email .feedback {
  height: 30px !important;
  width: 30px !important;
  background-size: 50% !important;
  background-position: center !important;
  top: 23px !important;
  right: 10px !important;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  z-index: 1;
}
.validator.loading-fallback .feedback {
  height: 30px !important;
  width: 30px !important;
  background-size: 20px !important;
  background-position: center !important;
  top: 23px !important;
  right: 10px !important;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  z-index: 1;
}
.validator.loading .feedback {
  top: 9px !important;
  height: 30px !important;
  width: 30px !important;
  right: 20px !important;
  z-index: 1;
}
/*========================================
Site Fonts
========================================*/
@font-face {
  font-family: "futurtbookregular";
  src: url("../../frontend/Graham/default/en_GB/fonts/futurat-light-webfont.woff2") format("woff2"), url("../../frontend/Graham/default/en_GB/fonts/futurat-light-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "futurtbookregular";
  src: url("../../frontend/Graham/default/en_GB/fonts/futurat-book-webfont.woff2") format("woff2"), url("../../frontend/Graham/default/en_GB/fonts/futurat-book-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "futurtbookregular";
  src: url("../../frontend/Graham/default/en_GB/fonts/futurat-medium-webfont.woff2") format("woff2"), url("../../frontend/Graham/default/en_GB/fonts/futurat-medium-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
/*================================================================================
MAIN
================================================================================*/
*,
*:before,
*:after {
  box-sizing: inherit;
}
html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
html {
  max-width: 100%;
  box-sizing: border-box;
  overflow-y: scroll;
  overflow-x: hidden;
  min-height: 100%;
  font: 100%/1.5 "futurtbookregular", sans-serif;
  font-weight: 100;
}
body {
  position: relative;
  max-width: 100%;
  background: white;
  color: #000000;
  text-rendering: optimizeLegibility;
  /* Conditional CSS http://adactio.com/journal/5429/ */
}
body:after {
  content: "palm";
  display: none;
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  body:after {
    content: "lap";
  }
}
@media only screen and (min-width: 1015px) {
  body:after {
    content: "desk";
  }
}
@media only screen and (min-width: 1200px) {
  body:after {
    content: "wide";
  }
}
@media only screen and (max-width: 1014px) {
  body.body-fixed {
    position: fixed;
    overflow: hidden;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
/*================================================================================
LINKS
================================================================================*/
a {
  color: #6eaab6;
}
a:hover, a:focus {
  outline: none;
  color: #48838f;
  text-decoration: underline;
  cursor: pointer;
}
/*================================================================================
SECTIONING
================================================================================*/
.page-main {
  padding-top: 20px;
}
@media only screen and (min-width: 1200px) {
  .page-main {
    padding-top: 30px;
  }
}
.container, .columns {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (min-width: 765px) {
  .container, .columns {
    padding: 0 30px;
  }
}
hr {
  clear: both;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  height: 1px;
}
/*================================================================================
GROUPING
================================================================================*/
/*
 * Common styles aka THE LEAGUE OF EXTRAORDINARY TAGS
 */
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
p,
blockquote,
address,
ul,
ol,
dl,
table,
fieldset,
figure,
figcaption,
details,
pre {
  margin-bottom: 10px;
}
/*========================================
HEADINGS
========================================*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  padding-top: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 3px;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  text-decoration: none;
}
h1,
.h1 {
  font-size: 32px;
  font-size: 2rem;
}
h2,
.h2 {
  font-size: 24px;
  font-size: 1.5rem;
}
h3,
.h3 {
  padding-top: 10px;
  font-size: 20px;
  font-size: 1.25rem;
}
/*========================================
PARAGRAPHS
========================================*/
.lede {
  font-size: 22px;
  font-size: 1.375rem;
}
small,
.small {
  font-size: 14px;
  font-size: 0.875rem;
}
.micro {
  font-size: 12px;
  font-size: 0.75rem;
}
caption,
.caption {
  padding-top: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
address {
  font-style: normal;
}
/*========================================
QUOTES
========================================*/
/*========================================
PREFORMATTED
========================================*/
pre {
  overflow: auto;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin-left: 20px;
}
pre code,
pre samp {
  line-height: 1.25;
}
/*================================================================================
MEDIA
================================================================================*/
img,
video,
embed {
  display: block;
  border: none;
  max-width: 100%;
  height: auto;
}
/*
 * Figures
 */
/*========================================
TABLES
========================================*/
table {
  width: 100%;
}
caption {
  caption-side: bottom;
  padding-top: 10px;
  margin-bottom: 10px;
}
th,
td {
  padding: 10px;
  border-bottom: 1px solid #e6e6e6;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e6e6e6;
}
th {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-size: 0.875rem;
}
thead th {
  background: #e6e6e6;
  white-space: nowrap;
}
tfoot th {
  text-align: right;
}
[colspan="1"] {
  text-align: left;
}
[rowspan] {
  vertical-align: middle;
}
[rowspan="1"] {
  vertical-align: top;
}
.numerical {
  text-align: right;
}
/**
 * Column widths
 */
.w5 {
  width: 5%;
}
.w10 {
  width: 10%;
}
.w15 {
  width: 15%;
}
.w20 {
  width: 20%;
}
.w25 {
  width: 25%;
}
.w30 {
  width: 30%;
}
.w35 {
  width: 35%;
}
.w40 {
  width: 40%;
}
.w45 {
  width: 45%;
}
.w50 {
  width: 50%;
}
.w55 {
  width: 55%;
}
.w60 {
  width: 60%;
}
.w65 {
  width: 65%;
}
.w70 {
  width: 70%;
}
.w75 {
  width: 75%;
}
.w80 {
  width: 80%;
}
.w85 {
  width: 85%;
}
.w90 {
  width: 90%;
}
.w95 {
  width: 95%;
}
/**
 * Plain
 */
.table--plain,
.table--plain th,
.table--plain td {
  border: none;
  background: none;
}
/**
 * Boxed
 */
.table--boxed {
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  border-collapse: separate;
}
.table--boxed tfoot {
  background: #e6e6e6;
}
/**
 * Bordered
 */
.table--bordered {
  border: 1px solid #e6e6e6;
}
.table--bordered th,
.table--bordered td {
  border-left: 1px solid #e6e6e6;
}
/**
 * Striped
 */
.table--striped tbody tr:nth-of-type(odd) {
  background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
  background-size: 250px;
}
/**
 * Hover Rows
 */
.table--hover tbody tr:hover td,
.table--hover tbody tr:hover th {
  background-color: #e6e6e6;
}
@media only screen and (max-width: 1014px) {
  .table--responsive thead {
    display: none;
  }
  .table--responsive tr {
    display: block;
    padding: 10px 0;
    zoom: 1;
  }
  .table--responsive tr:before, .table--responsive tr:after {
    content: "";
    display: table;
  }
  .table--responsive tr:after {
    clear: both;
  }
  .table--responsive td {
    display: block;
    width: 100%;
    text-align: right;
    padding: 5px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .table--responsive td[data-th]:before {
    content: attr(data-th) ":";
    margin-right: 5px;
    font-weight: 600;
    white-space: nowrap;
    float: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-size: 0.75rem;
    text-align: left;
  }
  .table--responsive tfoot tr {
    padding: 0;
  }
  .table--responsive tfoot th {
    display: none;
  }
}
.account-orders-history__table td.actions a,
.orders-recent-table td.actions a {
  display: inline;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
}
.account-orders-history__table td.actions a:nth-child(2),
.orders-recent-table td.actions a:nth-child(2) {
  border-left: 1px solid #6a6a6a;
  padding-left: 10px;
  margin-left: 10px;
}
.account-orders-history__table td.actions a:hover, .account-orders-history__table td.actions a:focus,
.orders-recent-table td.actions a:hover,
.orders-recent-table td.actions a:focus {
  text-decoration: underline;
}
/*================================================================================
INLINE
================================================================================*/
b,
strong {
  font-weight: 600;
}
/*========================================
Forms
========================================*/
form {
  margin-bottom: 20px;
}
form:last-of-type {
  margin-bottom: 0;
}
label,
.label {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 10px;
  cursor: pointer;
}
select,
textarea,
input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  padding: 13px 20px;
  width: 100%;
  line-height: 1;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  font-weight: 100;
  color: #000000;
}
select:focus,
textarea:focus,
input:focus {
  outline: none;
  border-color: #6eaab6;
}
select.mage-error,
textarea.mage-error,
input.mage-error {
  border-color: #ed8380;
  margin-top: 0;
}
.field._error select, .form--error select,
.field._error textarea,
.form--error textarea,
.field._error input,
.form--error input {
  border-color: #ed8380;
  margin-top: 0;
}
select[disabled],
textarea[disabled],
input[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #6a6a6a;
}
select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: #6a6a6a;
}
select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #6a6a6a;
}
select::placeholder,
textarea::placeholder,
input::placeholder {
  color: #6a6a6a;
}
.mage-error[generated],
.field-error,
.mage-error {
  margin-top: 10px;
  color: #fd3670;
  font-size: 16px;
  font-size: 1rem;
}
input[type=checkbox] {
  display: block;
  position: relative;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  margin-bottom: 0;
  cursor: pointer;
}
input[type=checkbox]:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../../frontend/Graham/default/en_GB/img/icon_tick-blue.svg") no-repeat center;
  background-size: 15px;
  opacity: 0;
}
input[type=checkbox]:hover, input[type=checkbox]:focus {
  border-color: #e6e6e6;
}
input[type=checkbox]:checked:after {
  opacity: 1;
}
input[type=radio] {
  position: relative;
  box-sizing: border-box;
  padding: 0;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  margin-bottom: 0;
  cursor: pointer;
  border-radius: 100%;
}
input[type=radio]:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background-color: #fd3670;
  opacity: 0;
  border-radius: 100%;
}
input[type=radio]:hover, input[type=radio]:focus {
  border-color: #fd3670;
}
input[type=radio]:checked:after {
  opacity: 1;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  border-radius: 0;
  background: url("../../frontend/Graham/default/en_GB/img//icon_arrow-down.svg") no-repeat right 20px center #ffffff;
  background-size: 15px;
  padding-right: 50px;
  line-height: 1.2;
}
select::-ms-expand {
  display: none;
}
fieldset {
  border: none;
  margin-bottom: 20px;
}
fieldset:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 765px) {
  .fieldset--grouped {
    zoom: 1;
  }
  .fieldset--grouped:before, .fieldset--grouped:after {
    content: "";
    display: table;
  }
  .fieldset--grouped:after {
    clear: both;
  }
  .fieldset--grouped .field {
    width: calc(50% - 10px);
    float: left;
  }
  .fieldset--grouped .field:first-child {
    margin-right: 20px;
  }
}
legend {
  display: block;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  border-bottom: 1px solid #e6e6e6;
}
.field {
  max-width: 35em;
  margin-bottom: 20px;
}
.field--error input {
  border-color: #ed8380;
}
.choice,
.field--type-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}
.choice input,
.field--type-checkbox input {
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.choice label,
.choice .label,
.field--type-checkbox label,
.field--type-checkbox .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 100;
  text-transform: none;
  letter-spacing: 0;
}
.choice label img,
.choice .label img,
.field--type-checkbox label img,
.field--type-checkbox .label img {
  margin-right: 10px;
}
.input-text::-webkit-input-placeholder {
  color: #c5c5c5;
}
.input-text::-moz-placeholder {
  color: #c5c5c5;
}
.input-text:-ms-input-placeholder {
  color: #c5c5c5;
}
.input-text::placeholder {
  color: #c5c5c5;
}
.input-text--centered {
  text-align: center;
}
.control {
  position: relative;
}
.control .nested {
  padding-top: 20px;
}
.is-email-available {
  position: relative;
}
.is-email-available:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent url(../../frontend/Graham/default/en_GB/img/spinner.gif) center no-repeat;
  background-size: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  content: " ";
}
.is-email-available--loading > * {
  opacity: 0.3;
}
.is-email-available--loading:after {
  opacity: 1;
  visibility: visible;
}
.is-email-available__password--hidden {
  display: none;
}
.control--combine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.control--combine input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 10px;
  line-height: normal;
}
.control--combine button,
.control--combine .button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 764px) {
  .control--combine button,
.control--combine .button {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.required > label:after,
.field._required > label:after {
  content: " *";
}
.note {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 10px;
  background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
  background-size: 250px;
  color: #000000;
  border: 2px solid #ffffff;
}
.field .message.warning {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 10px;
  background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
  background-size: 250px;
  color: #000000;
  border: 2px solid #ffffff;
}
.password .control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.password .control input {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.password .control #password-strength-meter-container {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.password .control .mage-error[generated] {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.password-strength-meter {
  background-color: #e6e6e6;
  line-height: 32px;
  height: 32px;
  padding: 0 9px;
  position: relative;
  z-index: 1;
}
.password-strength-meter::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}
.password-weak .password-strength-meter:before {
  background-color: #f893af;
  width: 25%;
}
.password-medium .password-strength-meter:before {
  background-color: #ffd6b3;
  width: 50%;
}
.password-strong .password-strength-meter:before {
  background-color: #c0e1a4;
  width: 75%;
}
.password-very-strong .password-strength-meter:before {
  background-color: #98ce6a;
  width: 100%;
}
.customer-dob button {
  position: absolute;
  top: 0;
  right: 0;
  width: 47px;
  height: 47px;
  border: none;
  background: url("../../frontend/Graham/default/en_GB/img/calendar.svg") no-repeat center;
  background-size: 30px;
}
.customer-dob button span {
  display: none;
}
.customer-dob input {
  padding-right: 47px;
}
.ui-datepicker {
  background-color: #ffffff;
  padding: 10px;
}
.ui-datepicker-header {
  background-color: #ffffff;
}
.ui-datepicker-prev {
  margin-right: 20px;
}
.ui-datepicker-prev,
.ui-datepicker-next {
  display: inline-block;
  margin-bottom: 10px;
}
.ui-datepicker-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ui-datepicker-month {
  width: calc(50% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
}
.ui-datepicker-year {
  width: calc(50% - 10px);
  margin-bottom: 20px;
}
.ui-datepicker-calendar {
  margin-bottom: 0;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}
/*========================================
BUTTONS
========================================*/
button:hover, button:focus {
  outline: none;
}
.button {
  display: inline-block;
  padding: 13px 20px 11px;
  width: auto;
  vertical-align: middle;
  background: #6eaab6;
  color: #ffffff;
  border: 1px solid #6eaab6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}
.button:hover, .button:focus {
  color: #ffffff;
  background-color: #5193a0;
  text-decoration: none;
  outline: none;
}
.button--small {
  line-height: 1;
  padding: 10px;
}
.button--large {
  line-height: 2.2;
  padding: 13px 30px 11px;
}
/**
 * Button Styles
 */
.button--subtle {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  color: #454545;
}
.button--subtle:hover, .button--subtle:focus {
  color: #454545;
  border-color: #cdcdcd;
  background-color: #cdcdcd;
  text-decoration: none;
}
.button--trans {
  background-color: transparent;
  border-color: #e6e6e6;
  color: #454545;
}
.button--trans:hover, .button--trans:focus {
  color: #454545;
  background-color: transparent;
  border-color: #cdcdcd;
  text-decoration: none;
}
.button--icon-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button--icon-right .svg-icon {
  margin-left: 20px;
}
.button--icon-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button--icon-left .svg-icon {
  margin-right: 20px;
}
button[disabled],
.button[disabled] {
  opacity: 0.7;
  cursor: not-allowed !important;
}
/*========================================
SVG ICONS
========================================*/
.svg-icon {
  display: inline-block;
  fill: currentColor !important;
  vertical-align: middle;
  line-height: 1em;
  height: 1em;
  width: 1em;
}
/*========================================
DEFAULT MAGENTO TOOLTIP
========================================*/
.field-tooltip._active .field-tooltip-content {
  display: block;
}
.field-tooltip._active .field-tooltip-action {
  background-color: #fd3670;
}
.field-tooltip .label {
  display: none;
}
.field-tooltip-action {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #999999;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 25px;
  color: #ffffff;
}
.field-tooltip-action:before {
  content: "i";
}
.field-tooltip-action > span {
  display: none;
}
.field-tooltip-action:hover, .field-tooltip-action:focus {
  outline: none;
  cursor: pointer;
}
.field-tooltip-content {
  display: none;
  position: absolute;
  right: 0;
  padding: 10px;
  background-color: #999999;
  color: #ffffff;
  z-index: 1;
}
/*========================================
Site header
========================================*/
.site-header {
  border-bottom: 1px solid #e6e6e6;
  background-color: #ffffff;
}
@media only screen and (min-width: 1015px) {
  .site-header {
    border: none;
  }
}
.site-header__container {
  position: relative;
}
@media only screen and (max-width: 764px) {
  .site-header__container {
    padding: 0;
  }
}
.site-header__links {
  display: none;
}
@media only screen and (min-width: 1015px) {
  .site-header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-header__brand {
  position: relative;
  background-color: #ffffff;
}
@media only screen and (min-width: 765px) {
  .site-header__brand {
    text-align: center;
  }
}
.site-header__logo {
  display: block;
  position: relative;
  z-index: 1;
  padding: 15px 0;
}
@media only screen and (min-width: 765px) {
  .site-header__logo {
    display: inline-block;
    margin: 0 auto;
    padding: 20px 0;
  }
}
.site-header__logo svg {
  display: block;
  margin: 0 auto;
  width: 230px;
  height: auto;
}
@media only screen and (min-width: 765px) {
  .site-header__logo svg {
    width: 274px;
  }
}
@media only screen and (min-width: 1015px) {
  .site-header__logo svg {
    width: 315px;
  }
}
@media only screen and (min-width: 1200px) {
  .site-header__logo svg {
    width: 447px;
  }
}
/*========================================
Site header actions bar above the logo
========================================*/
.site-actions {
  margin: 0;
  list-style: none;
}
@media only screen and (min-width: 1015px) {
  .site-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0;
  }
  .site-actions:last-child {
    margin-left: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .site-actions {
    margin-bottom: 10px;
  }
}
.site-actions--user .site-actions__item--account {
  display: inline-block;
  vertical-align: middle;
}
.site-actions--user .site-actions__item--account .site-actions__link {
  padding-right: 0;
}
.site-actions--user .site-actions__item--sign-in-out {
  display: inline-block;
}
.site-actions--user .site-actions__item--sign-in-out:before {
  content: "/";
  display: inline-block;
}
.site-actions--user .site-actions__item--sign-in-out .site-actions__link {
  position: relative;
  top: 1px;
  display: inline-block;
  padding-left: 0;
}
.site-actions__item {
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1015px) {
  .site-actions__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-right: 20px;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .site-actions__item:before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10px;
    width: 1px;
    height: 15px;
    background-color: #c5c5c5;
  }
}
.site-actions__item--phone {
  padding: 0;
}
.site-actions__item--phone:before {
  display: none;
}
.site-actions__item--account:before {
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
@media only screen and (min-width: 1015px) {
  .site-actions__item--account .site-actions__link .svg-icon {
    width: 1.4em;
    height: 1.4em;
    margin-right: 10px;
  }
}
.site-actions__item--wishlist {
  padding: 0;
}
.site-actions__item--wishlist:before {
  display: none;
}
.site-actions__item--wishlist .counter {
  margin-left: 5px;
}
.site-actions__item--wishlist .counter:before {
  content: "(";
}
.site-actions__item--wishlist .counter:after {
  content: ")";
}
.site-actions__item--wishlist .site-actions__link .svg-icon {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0;
  margin-left: 10px;
}
.site-actions__item--wishlist .site-actions__link .svg-icon.active {
  color: #fd3670;
}
.site-actions__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px;
  line-height: 1;
  color: #454545;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}
@media only screen and (min-width: 1015px) {
  .site-actions__link {
    padding: 0;
  }
}
.site-actions__link img {
  display: block;
  width: 30px;
  margin-right: 10px;
  color: #c5c5c5;
  transition: all ease 0.3s;
}
@media only screen and (min-width: 1015px) {
  .site-actions__link img {
    display: none;
  }
}
.site-actions__link .svg-icon {
  display: none;
}
@media only screen and (min-width: 1015px) {
  .site-actions__link .svg-icon {
    display: block;
    width: 2em;
    height: 2em;
    margin-right: 10px;
    color: #c5c5c5;
    transition: all ease 0.3s;
  }
}
.site-actions__link:hover, .site-actions__link:focus {
  color: #454545;
  text-decoration: none;
}
/*========================================
Site header search bar
========================================*/
@media only screen and (max-width: 1014px) {
  .site-search {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease 0.3s;
  }
  .site-search.active {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 1014px) and (min-width: 765px) {
  .site-search {
    top: 60px;
  }
}
@media only screen and (min-width: 1015px) {
  .site-search {
    top: 0;
    width: 100%;
  }
}
.site-search .field {
  margin: 0;
  max-width: 100%;
}
@media only screen and (min-width: 1015px) {
  .site-search__input {
    width: 100%;
    padding: 10px;
    border-color: #ffffff;
    border-bottom-color: #e6e6e6;
    font-size: 16px;
    font-size: 1rem;
  }
  .site-search__input:focus {
    border-color: #ffffff;
    border-bottom-color: #6eaab6;
  }
}
@media only screen and (min-width: 1015px) {
  .site-search__button {
    background-color: #ffffff;
    border: none;
    color: #000000;
    padding: 0 !important;
  }
  .site-search__button:hover, .site-search__button:focus {
    background-color: #ffffff;
    color: #000000;
  }
}
.site-search__button .svg-icon {
  display: none;
}
@media only screen and (min-width: 1015px) {
  .site-search__button .svg-icon {
    display: block;
  }
}
@media only screen and (min-width: 1015px) and (min-width: 1015px) {
  .site-search__button .svg-icon {
    width: 2em;
    height: 2em;
  }
}
@media only screen and (min-width: 1015px) {
  .site-search__button-text {
    display: none;
  }
}
/*========================================
Site controls / menu, search, basket buttons
========================================*/
.site-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 10px;
  margin: 0;
  list-style: none;
}
@media only screen and (min-width: 765px) {
  .site-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.site-controls__item {
  padding: 0 10px;
}
@media only screen and (min-width: 765px) {
  .site-controls__item {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-controls__link,
.site-controls__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  background-color: white;
  border: none;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (min-width: 765px) {
  .site-controls__link,
.site-controls__button {
    position: relative;
  }
}
.site-controls__link .svg-icon,
.site-controls__button .svg-icon {
  width: 2em;
  height: 2em;
  margin-right: 5px;
  transition: opacity ease 0.3s;
}
@media only screen and (min-width: 765px) {
  .site-controls__link .svg-icon,
.site-controls__button .svg-icon {
    width: 2em;
    height: 2em;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .site-controls__link .svg-icon,
.site-controls__button .svg-icon {
    width: 2.4em;
    height: 2.4em;
  }
}
.site-controls__link .site-controls__close,
.site-controls__button .site-controls__close {
  width: 1.4em;
  height: 1.4em;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.site-controls__link.active .site-controls__open,
.site-controls__button.active .site-controls__open {
  opacity: 0;
}
.site-controls__link.active .site-controls__close,
.site-controls__button.active .site-controls__close {
  opacity: 1;
}
.site-controls__link {
  text-decoration: none;
}
.site-controls__link:hover, .site-controls__link:focus {
  text-decoration: none;
  color: #000000;
}
.site-controls__meta {
  line-height: 1;
}
@media only screen and (min-width: 765px) {
  .site-controls__meta {
    display: none;
  }
}
@media only screen and (min-width: 765px) {
  .site-controls__item--menu .site-controls__button {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 1015px) {
  .site-controls__item--menu {
    display: none;
  }
}
@media only screen and (min-width: 765px) {
  .site-controls__item--menu .svg-icon {
    margin-right: 10px;
  }
}
.site-controls__item--search {
  border-right: 1px solid #c5c5c5;
  border-left: 1px solid #c5c5c5;
}
@media only screen and (min-width: 765px) {
  .site-controls__item--search {
    border: none;
    position: absolute;
    left: 40px;
    top: 35px;
    width: 100%;
  }
  .site-controls__item--search .site-search.active.overflow {
    position: absolute;
    left: -70px;
    width: calc(100% + 60px);
  }
}
@media only screen and (min-width: 1015px) {
  .site-controls__item--search {
    position: initial;
    width: 100%;
    max-width: 200px;
  }
  .site-controls__item--search .site-controls__button {
    display: none;
  }
  .site-controls__item--search .site-search.active.overflow {
    position: initial;
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .site-controls__item--search {
    max-width: 271px;
  }
}
@media only screen and (min-width: 765px) {
  .site-controls__item--basket .site-controls__link {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 1015px) {
  .site-controls__item--basket .site-controls__link {
    position: relative;
    top: 5px;
  }
  .site-controls__item--basket .site-controls__link .svg-icon {
    width: 2.7em;
    height: 2.7em;
  }
}
/*========================================
Mini cart
========================================*/
.minicart {
  position: absolute;
  top: 100%;
  white-space: nowrap;
  width: 100%;
  max-width: 310px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease 0.3s;
}
.minicart.active {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 765px) {
  .minicart {
    left: auto;
  }
}
.minicart__container {
  position: relative;
}
.minicart__wrapper {
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #e6e6e6;
  text-align: left;
}
.minicart__arrow {
  display: none;
}
@media only screen and (min-width: 765px) {
  .minicart__arrow {
    display: block;
    position: absolute;
    top: -16px;
    right: 7px;
  }
}
.minicart__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  padding: 0;
  color: #000000;
  line-height: 1;
}
.minicart__close:hover, .minicart__close:focus {
  color: #000000;
  background: none;
}
.minicart__title {
  padding: 0 0 20px;
  margin: 0;
  font-size: 18px;
  font-size: 1.125rem;
  border-bottom: 1px #e6e6e6 solid;
}
.minicart__subtitle {
  padding-top: 20px;
  margin-bottom: 0;
}
.minicart__title-count:before {
  content: "(";
}
.minicart__title-count:after {
  content: " Items)";
}
.minicart__content {
  height: auto !important;
}
.minicart__items {
  margin: 0;
  list-style: none;
}
.minicart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
.minicart__item:first-child {
  padding-top: 20px;
}
.minicart__image-link {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 115px;
}
.minicart__item-details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 20px;
  white-space: normal;
}
.minicart__options-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000000;
}
.minicart__options-toggle.active .svg-icon {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
.minicart__options-toggle .svg-icon {
  margin-left: 10px;
  width: 0.7em;
  height: 0.7em;
}
.minicart__options-toggle:hover, .minicart__options-toggle:focus {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  color: #000000;
}
.minicart__options-content {
  display: none;
}
.minicart__options-content.active {
  display: block;
}
.minicart__options-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  font-size: 0.875rem;
}
.minicart__options-list .label {
  text-transform: none;
  letter-spacing: 0;
  margin: 0 10px 0 0;
}
.minicart__item-title {
  padding: 0;
  margin-bottom: 5px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}
.minicart__item-link {
  color: #000000;
  text-decoration: none;
}
.minicart__item-link:hover, .minicart__item-link:focus {
  color: #000000;
  text-decoration: underline;
}
.minicart__item-price .price-container {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 100;
}
.minicart__item-price .has-special-price .minicart-price {
  color: #ec668d;
}
.minicart__item-price .has-special-price .minicart-price-old {
  text-decoration: line-through;
}
.minicart__item-qty {
  margin-bottom: 10px;
}
.minicart__item-qty .product-add__qty {
  margin: 0;
}
.minicart__item-qty-update {
  margin-top: 10px;
}
.minicart__item-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.minicart__item-actions-edit {
  margin-right: 10px;
}
.minicart__subtotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.minicart__subtotal .price-container {
  margin-left: auto;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
}
.minicart__actions-edit {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.minicart__actions-checkout {
  display: block;
  width: 100%;
}
.minicart-count__count {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
              -ms-grid-row-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  text-align: center;
  background-color: #fd3670;
  margin-left: 5px;
}
@media only screen and (min-width: 765px) {
  .minicart-count__count {
    margin-left: 0;
    position: absolute;
    top: -10px;
    right: 0;
  }
}
.minicart-count__count.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.minicart-count__number {
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
/*========================================
Site footer
========================================*/
.site-footer {
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
  background-size: 250px;
  position: relative;
}
.site-footer:before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: url("../../frontend/Graham/default/en_GB/img/dotted_border.png");
  background-size: contain;
}
@media only screen and (min-width: 1015px) {
  .site-footer {
    background: url("../../frontend/Graham/default/en_GB/img/footer_bg.png") no-repeat, url("../../frontend/Graham/default/en_GB/img/pattern.jpg") repeat;
    background-position: bottom right -130px, center;
    background-size: 500px, 250px;
  }
}
@media only screen and (min-width: 1360px) {
  .site-footer {
    background-size: 650px, 250px;
    background-position: bottom -30px right -80px, center;
  }
}
.site-footer__container {
  padding: 0;
}
@media only screen and (min-width: 1015px) {
  .site-footer__container {
    zoom: 1;
    position: relative;
  }
  .site-footer__container:before, .site-footer__container:after {
    content: "";
    display: table;
  }
  .site-footer__container:after {
    clear: both;
  }
}
/*========================================
Footer actions: Row of image links with hover
========================================*/
@media only screen and (min-width: 765px) {
  .site-footer__actions {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .site-footer__actions:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: url("../../frontend/Graham/default/en_GB/img/dotted_border.png");
    background-size: contain;
  }
}
@media only screen and (max-width: 764px) {
  .site-footer__actions-container {
    padding: 0;
  }
}
@media only screen and (min-width: 765px) {
  .site-footer__actions-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-footer__actions-link {
  display: block;
  position: relative;
  padding: 15px 20px 13px;
  color: #454545;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  border-bottom: 1px solid #e6e6e6;
}
.site-footer__actions-link:hover {
  color: #000000;
  text-decoration: none;
}
.site-footer__actions-link:hover .site-footer__actions-image--hover {
  opacity: 1;
}
@media only screen and (min-width: 765px) {
  .site-footer__actions-link {
    width: calc(16.6666666667% - 16.6666666667px);
    margin-left: 0;
    margin-right: 20px;
    padding: 0;
    border: none;
    color: #cbc1b2;
    font-size: 12px;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .site-footer__actions-link:nth-child(6n+6) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__actions-link {
    width: calc(16.6666666667% - 33.3333333333px);
    margin-left: 0;
    margin-right: 40px;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 1199px) {
  .site-footer__actions-link:nth-child(6n+6) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .site-footer__actions-link {
    width: calc(16.6666666667% - 66.6666666667px);
    margin-left: 0;
    margin-right: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 9998px) {
  .site-footer__actions-link:nth-child(6n+6) {
    margin-right: 0;
  }
}
.site-footer__actions-image {
  display: none;
}
@media only screen and (min-width: 765px) {
  .site-footer__actions-image {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.site-footer__actions-image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity ease-in-out 0.3s;
}
.site-footer__actions-image-mobile {
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  opacity: 0;
}
.site-footer__actions-image-mobile[data-loaded=true] {
  opacity: 1;
}
@media only screen and (min-width: 765px) {
  .site-footer__actions-image-mobile {
    display: none;
  }
}
/*========================================
Site Footer links
========================================*/
.site-footer__nav {
  padding-left: 20px;
  padding-right: 20px;
  padding: 0;
}
@media only screen and (min-width: 765px) {
  .site-footer__nav {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 765px) {
  .site-footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__nav {
    float: left;
    width: 60%;
  }
}
.site-footer__nav-content {
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (min-width: 765px) {
  .site-footer__nav-content {
    width: calc(33.3333333333% - 13.3333333333px);
    margin-left: 0;
    margin-right: 20px;
    border-bottom: none;
  }
}
@media only screen and (min-width: 765px) and (max-width: 9998px) {
  .site-footer__nav-content:nth-child(3n+3) {
    margin-right: 0;
  }
}
.site-footer__nav-title {
  display: block;
  position: relative;
  padding: 15px 20px 13px;
  margin: 0;
  color: #454545;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}
@media only screen and (min-width: 765px) {
  .site-footer__nav-title {
    padding: 0;
    margin-bottom: 10px;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 1200px) {
  .site-footer__nav-title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.site-footer__nav-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8em;
  height: 1.8em;
}
.site-footer__nav-toggle .svg-icon {
  width: 1.2em;
  height: 1.2em;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media only screen and (min-width: 765px) {
  .site-footer__nav-toggle {
    display: none;
  }
}
.site-footer__nav-toggle.active {
  background-color: #fefbf6;
}
.site-footer__nav-toggle.active .svg-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.site-footer__nav-list {
  display: none;
  list-style: none;
}
.site-footer__nav-list.active {
  display: block;
}
@media only screen and (min-width: 765px) {
  .site-footer__nav-list {
    display: block;
    margin: 0;
  }
}
.site-footer__nav-link {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000000;
  text-decoration: none;
}
@media only screen and (min-width: 1015px) {
  .site-footer__nav-link {
    font-size: 16px;
    font-size: 1rem;
    padding: 0;
    margin-bottom: 5px;
  }
}
.site-footer__nav-link:hover, .site-footer__nav-link:focus {
  color: #000000;
}
/*========================================
Site Footer social icons
========================================*/
.site-footer__social {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  padding: 20px 0;
}
@media only screen and (min-width: 765px) {
  .site-footer__social {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 765px) {
  .site-footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 30px;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__social {
    display: block;
    height: 100%;
    width: 40%;
    padding-top: 20px;
    padding-left: 40px;
    border-top: none;
    float: right;
  }
}
@media only screen and (min-width: 1200px) {
  .site-footer__social {
    padding-left: 80px;
  }
}
.site-footer__social:after {
  content: "";
  display: none;
}
@media only screen and (min-width: 765px) {
  .site-footer__social:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: url("../../frontend/Graham/default/en_GB/img/dotted_border.png");
    background-size: contain;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__social:after {
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-image: url("../../frontend/Graham/default/en_GB/img/dotted_border_vert.png");
  }
}
.site-footer__social-title {
  display: none;
}
@media only screen and (min-width: 765px) {
  .site-footer__social-title {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 0;
    margin: 0;
    color: #6eaab6;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__social-title {
    margin-bottom: 10px;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 1200px) {
  .site-footer__social-title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.site-footer__social-desc {
  display: none;
}
@media only screen and (min-width: 1015px) {
  .site-footer__social-desc {
    display: block;
  }
}
.site-footer__social-form {
  display: none;
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .site-footer__social-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-footer__social-form input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .site-footer__social-form button {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media only screen and (min-width: 765px) {
  .site-footer__social-form {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-left: 40px;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__social-form {
    display: block;
    margin-left: 0;
  }
  .site-footer__social-form button {
    margin-top: 20px;
  }
}
.site-footer__social-policy {
  display: none;
  color: #cbc1b2;
  margin-left: auto;
  margin-bottom: 0;
  margin-top: 10px;
}
@media only screen and (min-width: 765px) {
  .site-footer__social-policy {
    display: block;
    width: 100%;
    text-align: right;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__social-policy {
    text-align: left;
  }
}
.site-footer__social-policy a {
  color: #cbc1b2;
}
@media only screen and (min-width: 765px) {
  .site-footer__social-links {
    display: none;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__social-links {
    padding-top: 20px;
    display: block;
  }
}
.site-footer__social-links .site-social {
  padding-left: 20px;
}
@media only screen and (min-width: 1015px) {
  .site-footer__social-links .site-social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__social-links .site-social__item {
    margin-bottom: 10px;
  }
}
.site-footer__social-links .site-social__meta {
  display: none;
}
@media only screen and (min-width: 1015px) {
  .site-footer__social-links .site-social__meta {
    display: block;
  }
}
.site-footer__social-links .svg-icon {
  margin-right: 0;
}
@media only screen and (max-width: 765px) {
  .site-footer__actions-container {
    padding: 0;
  }

  .site-footer__social-title, .site-footer__social-desc, .site-footer__social-form {
    display: block !important;
    margin-left: 20px;
    margin-right: 20px;
  }

  form:last-of-type {
    margin-bottom: 20px !important;
  }

  form:last-of-type input.required.email {
    margin-bottom: 20px;
  }
}
/*========================================
Site copyright: Below the footer nav
========================================*/
.site-footer__copyright {
  width: 100%;
  text-align: center;
  padding: 0 20px 20px;
}
@media only screen and (min-width: 765px) {
  .site-footer__copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0 30px 20px;
    margin-top: -90px;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__copyright {
    width: 60%;
    float: left;
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.site-footer__copyright__logo {
  display: block;
  position: relative;
  z-index: 1;
}
.site-footer__copyright-image {
  display: inline-block;
  max-width: 216px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .site-footer__copyright-image {
    max-width: 190px;
    margin-bottom: 0;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .site-footer__copyright-image {
    max-width: 270px;
  }
}
.site-footer__copyright-trustpilot {
  text-align: center;
}
@media only screen and (min-width: 1015px) {
  .site-footer__copyright-trustpilot {
    display: block;
  }
}
.trustpilot-widget {
  max-width: 177px;
  margin: 20px auto 0;
}
@media only screen and (min-width: 765px) {
  .trustpilot-widget {
    margin: 20px 0 0 auto;
  }
}
@media only screen and (min-width: 1015px) {
  .trustpilot-widget {
    margin-left: 0;
  }
}
.trustpilot-widget iframe {
  height: 100px !important;
}
.site-footer__copyright-text {
  color: #cbc1b2;
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .site-footer__copyright-text {
    display: block;
    clear: both;
  }
}
@media only screen and (min-width: 1015px) {
  .site-footer__copyright-text {
    font-size: 16px;
    font-size: 1rem;
    margin: 0;
  }
}
/*========================================
Site navigation
========================================*/
.site-nav {
  height: calc(100% - 108px);
  top: 108px;
}
@media only screen and (min-width: 765px) {
  .site-nav {
    height: calc(100% - 99px);
    top: 99px;
  }
}
.site-nav.site-nav--promo-active {
  height: calc(100% - 132px);
  top: 143px;
}
@media only screen and (min-width: 765px) {
  .site-nav.site-nav--promo-active {
    height: calc(100% - 129px);
    top: 134px;
  }
}
@media only screen and (min-width: 1015px) {
  .site-nav.site-nav--promo-active {
    top: auto;
    height: auto;
  }
}
@media only screen and (min-width: 1015px) {
  .site-nav {
    top: auto;
    height: auto;
  }
}
@media only screen and (max-width: 1014px) {
  .site-nav {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: #ffffff;
    transition: -webkit-transform ease 0.3s;
    transition: transform ease 0.3s;
    transition: transform ease 0.3s, -webkit-transform ease 0.3s;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .site-nav.active .site-nav__close {
    display: block;
  }
  .site-nav.overflow {
    overflow: auto;
  }
}
@media only screen and (min-width: 1015px) {
  .site-nav {
    background-color: #ffffff;
    position: relative;
    border-bottom: 1px solid #e6e6e6;
  }
}
@media only screen and (max-width: 1014px) {
  .site-nav__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0;
  }
}
.site-nav__list {
  list-style: none;
  margin: 0;
}
@media only screen and (min-width: 1015px) {
  .site-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
  }
}
.site-nav__item {
  position: relative;
  border-top: 1px solid #e6e6e6;
}
@media only screen and (min-width: 1015px) {
  .site-nav__item {
    position: static;
    border: none;
    text-align: center;
  }
  .site-nav__item:first-child .site-nav__link {
    padding-left: 0;
  }
  .site-nav__item:last-child .site-nav__link {
    padding-right: 0;
  }
}
.site-nav__link {
  display: block;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-size: 1rem;
  color: #454545;
  text-decoration: none;
}
@media only screen and (max-width: 1014px) {
  .site-nav__link {
    padding: 20px 50px 16px 20px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 400;
  }
}
.site-nav__link:hover, .site-nav__link:focus {
  text-decoration: none;
  color: #454545;
}
@media only screen and (min-width: 1015px) {
  .site-nav__link {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 10px 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .site-nav__link {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 15px 10px;
  }
}
.site-nav__link img {
  display: none;
  color: #fd3670;
}
@media only screen and (min-width: 1015px) {
  .site-nav__link img {
    display: block;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    position: absolute;
    z-index: 3;
    transition: width ease-in-out 0.4s;
  }
  @supports ((-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%)) or (clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%))) {
    .site-nav__link img {
      -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
              clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
      transition: all cubic-bezier(1, 0.04, 0.99, 0.4) 0.4s;
      width: 100%;
    }
  }
}
.site-nav__link.active img {
  width: 100%;
}
@supports ((-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%)) or (clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%))) {
  .site-nav__link.active img {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.site-nav__additional {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
  background-size: 250px;
}
.site-nav__additional:before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: url("../../frontend/Graham/default/en_GB/img/dotted_border.png");
  background-size: contain;
}
@media only screen and (min-width: 1015px) {
  .site-nav__additional {
    display: none;
  }
}
.site-nav__social {
  padding: 20px 20px 10px;
  margin-bottom: 20px;
}
.site-nav__social .site-social__item {
  margin-right: 30px;
}
.site-nav__social .site-social__link .svg-icon {
  margin-right: 0;
}
.site-nav__social .site-social__link .site-social__meta {
  display: none;
}
.nav-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.nav-next:after {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  background: url("../../frontend/Graham/default/en_GB/img/icon_arrow-right-pink-thick.svg") no-repeat center;
  background-size: contain;
}
@media only screen and (min-width: 1015px) {
  .nav-next {
    display: none;
  }
}
.nav-back {
  display: table;
  padding: 20px 20px 16px;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  color: #000000;
}
.nav-back:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: url("../../frontend/Graham/default/en_GB/img//icon_arrow-left-pink.svg") left 20px center no-repeat;
  background-size: 8px;
}
.nav-back:after {
  content: "";
  position: relative;
  left: -8%;
  top: 3px;
  display: block;
  width: 110%;
  margin-top: -2px;
  height: 2px;
  background: url("../../frontend/Graham/default/en_GB/img//line-02.svg") left center no-repeat;
}
@media only screen and (min-width: 1015px) {
  .nav-back {
    display: none;
  }
}
.nav-back--no-bg:before {
  display: none;
}
/*========================================
Sub navigation
========================================*/
@media only screen and (max-width: 1014px) {
  .subnav,
.subnav__list {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 3;
    background-color: #ffffff;
    transition: -webkit-transform ease 0.3s;
    transition: transform ease 0.3s;
    transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  }
  .subnav.active,
.subnav__list.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .subnav.overflow,
.subnav__list.overflow {
    overflow: auto;
  }
}
@media only screen and (min-width: 1015px) {
  .subnav {
    display: block;
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease-in-out 0.3s;
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.8);
    border-top: 1px solid #e6e6e6;
    background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
    background-size: 250px;
  }
  .subnav.active {
    opacity: 1;
    visibility: visible;
  }
}
.subnav__container {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 1015px) {
  .subnav__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 30px;
  }
}
.subnav__col {
  position: relative;
  border-top: 1px solid #e6e6e6;
  text-align: left;
}
.subnav__col:first-child {
  border-top: none;
}
@media only screen and (min-width: 1015px) {
  .subnav__col {
    border-top: none;
    width: calc(16.6666666667% - 16.6666666667px);
    margin-left: 0;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 1199px) {
  .subnav__col:nth-child(6n+6) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .subnav__col {
    width: calc(16.6666666667% - 33.3333333333px);
    margin-left: 0;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 9998px) {
  .subnav__col:nth-child(6n+6) {
    margin-right: 0;
  }
}
.subnav__title {
  display: none;
}
@media only screen and (min-width: 1015px) {
  .subnav__title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    color: #454545;
    font-weight: 400;
    font-size: 18px;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
  }
}
.subnav__title:hover, .subnav__title:focus {
  color: #454545;
  text-decoration: none;
}
.subnav__heading {
  display: block;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-size: 1rem;
  color: #454545;
  text-decoration: none;
}
@media only screen and (max-width: 1014px) {
  .subnav__heading {
    padding: 20px 50px 16px 20px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 400;
  }
}
.subnav__heading:hover, .subnav__heading:focus {
  text-decoration: none;
  color: #454545;
}
@media only screen and (min-width: 1015px) {
  .subnav__heading {
    padding: 0;
    margin-bottom: 20px;
    font-weight: 400;
  }
  .subnav__heading:hover, .subnav__heading:focus {
    text-decoration: underline;
    color: #454545;
  }
}
.subnav__list {
  list-style: none;
  margin: 0;
}
@media only screen and (min-width: 1015px) {
  .subnav__list {
    display: block;
    padding: 0;
    background: none;
  }
}
.subnav__item {
  border-top: 1px solid #e6e6e6;
}
@media only screen and (min-width: 1015px) {
  .subnav__item {
    border: none;
  }
  .subnav__item:last-child .subnav__link {
    margin-bottom: 0;
  }
}
.subnav__link {
  display: block;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-size: 1rem;
  color: #454545;
  text-decoration: none;
}
@media only screen and (max-width: 1014px) {
  .subnav__link {
    padding: 20px 50px 16px 20px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 400;
  }
}
.subnav__link:hover, .subnav__link:focus {
  text-decoration: none;
  color: #454545;
}
@media only screen and (min-width: 1015px) {
  .subnav__link {
    padding: 0;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0;
  }
  .subnav__link:hover, .subnav__link:focus {
    text-decoration: underline;
    color: #454545;
  }
}
.subnav__link--bold {
  font-weight: 600;
}
@media only screen and (min-width: 1015px) {
  .subnav__link--bold {
    font-weight: 400;
  }
}
.subnav__image {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 1015px) {
  .subnav__title--underling-01:after,
.subnav__title--underling-02:after,
.subnav__title--underling-03:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
  }
}
.subnav__title--underling-01:after {
  background: url("../../frontend/Graham/default/en_GB/img/line-01.svg") no-repeat;
  background-size: 100% 3px;
}
.subnav__title--underling-02:after {
  background: url("../../frontend/Graham/default/en_GB/img/line-02.svg") no-repeat;
  background-size: 100% 3px;
}
.subnav__title--underling-03:after {
  background: url("../../frontend/Graham/default/en_GB/img/line-03.svg") no-repeat;
  background-size: 100% 3px;
}
.subnav__col--grid {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 0;
}
.subnav__col--image {
  display: none;
}
@media only screen and (min-width: 1015px) {
  .subnav__col--image {
    display: block;
  }
}
@media only screen and (max-width: 1014px) {
  .subnav__col--featured {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.subnav__list--featured {
  display: block;
  padding: 0;
}
@media only screen and (max-width: 1014px) {
  .subnav__list--featured {
    display: block;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    position: static;
    width: auto;
    padding: 0;
    height: auto;
  }
}
.subnav__list--featured .subnav__item {
  border-bottom-color: #e6e6e6;
}
@media only screen and (max-width: 1014px) {
  .subnav__list--featured .subnav__link {
    padding: 20px 50px 16px 20px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
}
@media only screen and (min-width: 1015px) {
  .subnav__list--featured .subnav__link {
    margin-bottom: 10px;
    padding: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1015px) {
  .subnav__list--featured .subnav__link--divider {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
  }
}
.subnav__list--grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fefbf6;
  padding: 20px 20px 0;
}
@media only screen and (min-width: 1015px) {
  .subnav__list--grid {
    padding: 0;
  }
}
.subnav__list--grid .subnav__item {
  width: calc(50% - 10px);
  margin-left: 0;
  margin-right: 20px;
  padding: 0;
  margin-bottom: 20px;
  border: none;
}
@media only screen and (max-width: 419px) {
  .subnav__list--grid .subnav__item:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 420px) {
  .subnav__list--grid .subnav__item {
    width: calc(33.3333333333% - 13.3333333333px);
    margin-left: 0;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 420px) and (max-width: 1014px) {
  .subnav__list--grid .subnav__item:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .subnav__list--grid .subnav__item {
    width: calc(20% - 16px);
    margin-left: 0;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 1199px) {
  .subnav__list--grid .subnav__item:nth-child(5n+5) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .subnav__list--grid .subnav__item {
    width: calc(20% - 32px);
    margin-left: 0;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 9998px) {
  .subnav__list--grid .subnav__item:nth-child(5n+5) {
    margin-right: 0;
  }
}
.subnav__list--grid .subnav__link {
  padding: 0;
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (min-width: 1015px) {
  .subnav__list--grid .subnav__link {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.subnav__list--grid .subnav__image {
  margin-bottom: 10px;
}
/*========================================
Site Body
========================================*/
/*========================================
Default magento layout styles
========================================*/
.column.main {
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .page-layout-2columns-left .columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 765px) {
  .page-layout-2columns-left .column.main {
    width: calc(65% - 10px);
  }
}
@media only screen and (min-width: 1015px) {
  .page-layout-2columns-left .column.main {
    width: calc(75% - 20px);
  }
}
@media only screen and (min-width: 765px) {
  .page-layout-2columns-left .sidebar {
    width: calc(35% - 10px);
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1015px) {
  .page-layout-2columns-left .sidebar {
    width: calc(25% - 20px);
    margin-right: 40px;
  }
}
.page-layout-2columns-left .sidebar-additional {
  width: 100%;
}
/*========================================
Top Promotion Bar
========================================*/
.site-promo {
  display: block;
  padding: 10px 0;
  background-color: #6eaab6;
}
.site-promo__container {
  padding: 0;
}
.site-promo__text {
  margin: 0;
  color: #ffffff;
  font-size: 10px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (min-width: 1015px) {
  .site-promo__text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.site-promo__highlight {
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (min-width: 1015px) {
  .site-promo__highlight {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
/*========================================================
Default social icon styles: may be extended in other files
========================================================*/
.site-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
}
.site-social__item {
  margin-right: 10px;
}
.site-social__item:last-child {
  margin: 0;
}
.site-social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000000;
}
.site-social__link .svg-icon {
  color: #fd3670;
  width: 1.6em;
  height: 1.6em;
  margin-right: 10px;
}
.site-social__link:hover, .site-social__link:focus {
  color: #000000;
}
.site-social__link:hover .svg-icon, .site-social__link:focus .svg-icon {
  color: #e40244;
}
/*========================================================
Site messages: Appear using knockout below the navigation
========================================================*/
.site-messages .messages {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1360px;
  margin: 0 auto;
}
@media only screen and (min-width: 765px) {
  .site-messages .messages {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.site-messages .message,
.site-messages__message {
  position: relative;
  margin-top: 20px;
  padding: 10px 10px 10px 45px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg) repeat;
  background-size: 200px;
}
@media only screen and (min-width: 765px) {
  .site-messages .message,
.site-messages__message {
    padding: 20px 20px 20px 65px;
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1015px) {
  .site-messages .message,
.site-messages__message {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1015px) {
  .site-messages .message,
.site-messages__message {
    padding: 30px 30px 30px 65px;
  }
}
@media only screen and (min-width: 1200px) {
  .site-messages .message,
.site-messages__message {
    margin-top: 30px;
  }
}
.site-messages .message-warning:before,
.site-messages .message-success:before,
.site-messages .message-error:before,
.site-messages__message-warning:before,
.site-messages__message-success:before,
.site-messages__message-error:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 20px;
  vertical-align: middle;
}
@media only screen and (min-width: 765px) {
  .site-messages .message-warning:before,
.site-messages .message-success:before,
.site-messages .message-error:before,
.site-messages__message-warning:before,
.site-messages__message-success:before,
.site-messages__message-error:before {
    left: 20px;
  }
}
.site-messages .message-warning:before,
.site-messages__message-warning:before {
  background: url("../../frontend/Graham/default/en_GB/img/icon_circle-warning.svg") no-repeat;
  background-size: contain;
}
.site-messages .message-success:before,
.site-messages__message-success:before {
  background: url("../../frontend/Graham/default/en_GB/img/icon_circle-tick.svg") no-repeat;
  background-size: contain;
}
.site-messages .message-error:before,
.site-messages__message-error:before {
  background: url("../../frontend/Graham/default/en_GB/img/icon_circle-cross.svg") no-repeat;
  background-size: contain;
}
.message {
  text-align: center;
  margin-bottom: 20px;
}
.checkout-index-index .messages .message-error {
  color: #ed8380;
  font-weight: 600;
  text-align: left;
}
/*! Flickity v2.0.10
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: height 0.2s;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.flickity-slider .gallery__image {
  position: relative;
  height: 100%;
}
/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  display: none;
  position: absolute;
  top: 50%;
  width: 30px;
  height: 50px;
  border: none;
  background: white;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 765px) {
  .flickity-enabled .flickity-prev-next-button {
    display: block;
  }
}
.flickity-prev-next-button:hover {
  background: white;
}
.flickity-prev-next-button:focus {
  outline: none;
}
.flickity-prev-next-button.previous {
  left: 0;
  background: url("../../frontend/Graham/default/en_GB/svg/icon_arrow-left.svg") no-repeat #ffffff center;
  background-size: 12px;
}
.flickity-prev-next-button.next {
  right: 0;
  background: url("../../frontend/Graham/default/en_GB/svg/icon_arrow-right.svg") no-repeat #ffffff center;
  background-size: 12px;
}
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}
.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}
.flickity-prev-next-button svg {
  display: none;
}
.flickity-prev-next-button .arrow {
  fill: #333;
}
/* dots */
.flickity-page-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0;
  padding-top: 20px;
}
@media only screen and (min-width: 765px) {
  .flickity-page-dots {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    width: auto;
  }
}
.flickity-page-dots .dot {
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform-origin: center;
          transform-origin: center;
  transition: all ease 0.3s;
}
.flickity-page-dots .dot:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
  padding: 20px;
}
@media only screen and (min-width: 765px) {
  .mfp-content {
    padding: 40px;
  }
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #ccc;
}
.mfp-preloader a:hover {
  color: #fff;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
  background: url("../../frontend/Graham/default/en_GB/img/icon_close.svg") no-repeat center;
  background-size: 50%;
  text-indent: -9999px;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  background: none;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.klevu-fluid .klevu-pt-rs-hover {
  border-radius: 0;
}
.klevu-fluid .klevu-pt-hover-box {
  border-radius: 0;
}
.klevu-fluid #klevuSearchingArea {
  border-radius: 0;
}
.klevu-fluid .klevuResultsBlock {
  border-radius: 0;
}
.klevu-fluid .klevuSearchResults-l2 {
  border-radius: 0;
}
.price-box,
.price-as-configured {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.price-container {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (min-width: 765px) {
  .price-container {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
}
.price-from {
  margin-bottom: 0;
}
.price-from .price-container {
  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;
}
.price-from .price-label {
  margin-right: 10px;
}
.price-label {
  display: inline-block;
  margin-right: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  font-size: 9px;
  font-size: 0.5625rem;
  line-height: 1.7;
  color: #6a6a6a;
  font-weight: 100;
}
@media only screen and (min-width: 765px) {
  .price-label {
    border-width: 1.5px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 2;
  }
}
.special-price {
  display: block;
  margin-right: 10px;
}
.special-price .price-container {
  color: #ec668d;
}
.special-price .price-label {
  display: none;
}
.old-price {
  display: block;
}
.old-price .price-label {
  display: none;
}
.old-price .price-container {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 100;
  text-decoration: line-through;
}
.old-price .price-container:before {
  content: "WAS";
}
.minimal-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.normal-price .price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.prices-tier {
  display: none;
}
.product-item__details .price-container,
.product-wishlist__details .price-container {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 100;
  color: #6a6a6a;
}
.product-item__details .old-price .price-container,
.product-wishlist__details .old-price .price-container {
  font-size: 12px;
  font-size: 0.75rem;
}
.product-item__details .special-price .price-container,
.product-wishlist__details .special-price .price-container {
  font-weight: 400;
  color: #ec668d;
}
.login-container .g-recaptcha, .form-login .g-recaptcha {
  margin-bottom: 10px !important;
}
.required-captcha.checkbox {
  position: absolute;
  display: block;
  visibility: visible;
  overflow: hidden;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.review-form .field-recaptcha {
  margin-bottom: 10px;
}
@media only screen and (min-width: 1015px) {
  .product-add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product-add__qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  position: relative;
}
.checkout-cart-index .product-add__qty {
  max-width: 137px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 1015px) {
  .product-add__qty {
    margin-bottom: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.product-add__qty div.mage-error {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
}
@media only screen and (min-width: 1015px) {
  .product-add__qty div.mage-error {
    position: absolute;
    bottom: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    padding-top: 10px;
  }
}
.product-add__qty--small .product-add__input {
  padding: 0;
}
.product-add__qty--small .product-add__input,
.product-add__qty--small .product-add__button {
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-size: 0.875rem;
}
.product-add__input {
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.checkout-cart-index .product-add__input {
  width: 47px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media only screen and (min-width: 1015px) {
  .product-add__input {
    max-width: 45px;
  }
}
.product-add__input.mage-error {
  margin-top: 0;
}
.product-add__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  width: 45px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
  cursor: pointer;
}
.product-add__button.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.product-add__button .svg-icon {
  margin: auto;
}
.product-add__button:first-of-type {
  border-right: none;
}
.product-add__button:last-of-type {
  border-left: none;
}
.product-add__button:hover, .product-add__button:focus {
  outline: none;
}
.product-add__submit {
  width: 100%;
}
@media only screen and (min-width: 1015px) {
  .product-add__submit {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-left: 20px;
  }
}
.breadcrumbs {
  display: none;
  min-height: 24px;
}
@media only screen and (min-width: 765px) {
  .breadcrumbs {
    display: block;
    padding-top: 20px;
    min-height: 44px;
  }
}
@media only screen and (min-width: 1200px) {
  .breadcrumbs {
    padding-top: 30px;
    min-height: 54px;
  }
}
.breadcrumbs__list {
  list-style: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs__item {
  white-space: nowrap;
}
.breadcrumbs__link {
  text-decoration: none;
  color: #000000;
}
.breadcrumbs__divider {
  margin: 0 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
.breadcrumbs__current {
  font-weight: 400;
}
.accordion {
  display: block;
}
.accordion__button {
  width: 100%;
  position: relative;
  padding: 10px 0 8px;
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  border: none;
  border-top: 1px solid #e6e6e6;
  background-color: #ffffff;
}
@media only screen and (min-width: 1015px) {
  .accordion__button {
    font-size: 16px;
    font-size: 1rem;
  }
}
.accordion__button.active .accordion__toggle .svg-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion__toggle {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  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;
}
.accordion__toggle .svg-icon {
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.accordion__content {
  display: none;
  padding-bottom: 20px;
}
.accordion__content.active {
  display: block;
}
.accordion-alt [data-toggle=trigger] {
  position: relative;
  display: block;
  padding: 10px 0 8px;
  line-height: 2;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-top: 1px solid #e6e6e6;
  text-decoration: none;
}
@media only screen and (min-width: 1015px) {
  .accordion-alt [data-toggle=trigger] {
    font-size: 16px;
    font-size: 1rem;
  }
}
.accordion-alt [data-toggle=trigger] .svg-icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.accordion-alt [aria-expanded=true] [data-toggle=trigger] .svg-icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordion-alt [data-role=content] {
  display: none;
  padding-bottom: 20px;
}
.accordion-alt [data-role=content][aria-hidden=false] {
  display: block;
}
.accordion-alt [data-role=content] .trustpilot-widget {
  max-width: 100%;
}
.accordion-alt [data-role=content] .trustpilot-widget iframe {
  height: 700px !important;
}
/*========================================
Product Blocks
========================================*/
.product-block--recent {
  display: none;
}
@media only screen and (min-width: 765px) {
  .product-block--recent {
    display: block;
  }
}
.product-block__container--flush {
  padding: 0;
}
.page-title.product {
  margin-bottom: 10px;
}
.page-title__heading {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1015px) {
  .page-title__heading {
    font-size: 32px;
    font-size: 2rem;
  }
}
.product-options-wrapper {
  padding: 10px 0;
}
.product-options-wrapper .fieldset {
  outline: 0;
}
.swatch-attribute {
  margin-bottom: 20px;
}
.swatch-attribute.color {
  margin-bottom: 0;
}
.swatch-attribute-label {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}
.swatch-attribute-label:after {
  content: ":";
}
@media only screen and (min-width: 1015px) {
  .swatch-attribute-label {
    font-size: 16px;
    font-size: 1rem;
  }
}
.swatch-attribute-selected-option {
  color: #636363;
  padding-left: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media only screen and (min-width: 1015px) {
  .swatch-attribute-selected-option {
    font-size: 16px;
    font-size: 1rem;
  }
}
.swatch-attribute-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  outline: none;
}
.swatch-option {
  position: relative;
  width: calc(25% - 7.5px);
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  background-size: cover !important;
}
@media only screen and (max-width: 1014px) {
  .swatch-option:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .swatch-option {
    width: calc(25% - 15px);
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 9998px) {
  .swatch-option:nth-child(4n+4) {
    margin-right: 0;
  }
}
.swatch-option:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.swatch-option:hover, .swatch-option:focus {
  outline: none;
}
.swatch-option:hover:after, .swatch-option:focus:after {
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 0 5px rgba(0, 0, 0, 0.2);
}
.swatch-option.selected:after {
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 0 5px rgba(0, 0, 0, 0.2);
}
.swatch-option.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.swatch-option.disabled:hover:after, .swatch-option.disabled:focus:after {
  background: none;
  box-shadow: none;
}
/* Bugfix for Add To Cart button */
.swatch-input {
  left: -1000px;
  position: absolute;
  visibility: hidden;
}
.overlay-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent url(../../frontend/Graham/default/en_GB/img/spinner.gif) center no-repeat;
  background-size: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.overlay-spinner--bg {
  background: rgba(255, 255, 255, 0.9) url(../../frontend/Graham/default/en_GB/img/spinner.gif) center no-repeat;
  background-size: 30px;
}
.overlay-spinner--active {
  opacity: 1;
  visibility: visible;
}
.overlay-spinner__text {
  position: absolute;
  top: calc(50% - 50px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.overlay-message {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.overlay-message .site-messages {
  width: 100%;
}
.overlay-message .site-messages__message {
  margin-top: 0;
}
.overlay-message--bg {
  background: rgba(255, 255, 255, 0.9) center no-repeat;
  background-size: 30px;
}
.overlay-message--active {
  opacity: 1;
  visibility: visible;
}
.overlay-message__text {
  position: absolute;
  top: calc(50% - 50px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.title-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding-top: 20px;
  text-align: center;
}
@media only screen and (min-width: 765px) {
  .title-banner {
    padding-top: 40px;
    margin-bottom: 40px;
  }
}
.title-banner:before, .title-banner:after {
  content: "";
  height: 1px;
  background-color: #e6e6e6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.title-banner__text {
  padding: 0 20px;
  margin: 0;
  border-bottom: grey;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1015px) {
  .title-banner__text {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
/*========================================
404 & 500 pages
========================================*/
.cms-index-defaultnoroute {
  background-color: #fefbf6;
}
.no-route {
  padding: 40px 0;
  text-align: center;
}
@media only screen and (min-width: 765px) {
  .no-route {
    padding: 80px 0;
  }
}
.no-route__image {
  position: relative;
  left: 50%;
  top: 5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 450px;
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .no-route__image {
    max-width: 650px;
  }
}
.no-route__title {
  text-transform: none;
  letter-spacing: 0;
  position: relative;
}
@media only screen and (min-width: 765px) {
  .no-route__title {
    font-size: 50px;
    font-size: 3.125rem;
    margin-bottom: 30px;
  }
}
.no-route__svg {
  fill: #bc9a4a;
  width: 115px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
@media only screen and (min-width: 765px) {
  .no-route__svg {
    bottom: 7px;
  }
}
.no-route__desc {
  font-weight: 400;
  font-size: 22px;
  font-size: 1.375rem;
}
@media only screen and (min-width: 765px) {
  .no-route__desc {
    margin-bottom: 30px;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 469px) {
  .no-route__desc br {
    display: none;
  }
}
.no-route__list {
  list-style: none;
  margin: 0 0 20px;
}
@media only screen and (min-width: 765px) {
  .no-route__list {
    margin: 0 0 40px;
  }
}
.no-route__item {
  margin-bottom: 10px;
}
.no-route__link {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fd3670;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #fd3670;
  line-height: 1;
}
.no-route__link:hover, .no-route__link:focus {
  color: #cb023d;
  text-decoration: none;
}
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}
.pswp * {
  box-sizing: border-box;
}
.pswp img {
  max-width: none;
}
/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--open {
  display: block;
}
.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}
.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}
.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}
.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}
/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}
/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}
.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}
.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  transition: opacity 0.2s;
  box-shadow: none;
}
.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}
.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../../frontend/Graham/default/en_GB/photoswipe/default-skin/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}
@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
.pswp--svg .pswp__button--arrow--left:before,
.pswp--svg .pswp__button--arrow--right:before {
    background-image: url(../../frontend/Graham/default/en_GB/photoswipe/default-skin/default-skin.svg);
  }

  .pswp--svg .pswp__button--arrow--left,
.pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}
.pswp__button--share {
  background-position: -44px -44px;
}
.pswp__button--fs {
  display: none;
}
.pswp--supports-fs .pswp__button--fs {
  display: block;
}
.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}
.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}
.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}
.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}
/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}
/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}
.pswp__button--arrow--left {
  left: 0;
}
.pswp__button--arrow--right {
  right: 0;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}
.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}
.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}
/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}
.pswp__share-modal--hidden {
  display: none;
}
.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}
.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}
.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}
.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}
.pswp__share-modal--fade-in {
  opacity: 1;
}
.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}
a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid rgba(0, 0, 0, 0);
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}
a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}
a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}
a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}
a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}
a.pswp__share--download:hover {
  background: #DDD;
}
/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}
/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}
.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}
.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}
.pswp__caption--empty {
  display: none;
}
/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}
/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}
.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}
.pswp__preloader--active {
  opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(../../frontend/Graham/default/en_GB/photoswipe/default-skin/preloader.gif) 0 0 no-repeat;
}
.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
          animation: clockwise 500ms linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
          animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}
.pswp--css_animation .pswp__preloader__cut {
  /* 
  	The idea of animating inner circle is based on Polymer ("material") loading indicator 
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}
.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}
/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}
.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}
.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}
/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}
/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}
/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}
/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}
.pswp__element--disabled {
  display: none !important;
}
.pswp--minimal--dark .pswp__top-bar {
  background: none;
}
.custom-dd {
  position: relative;
}
.custom-dd__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
  text-align: left;
  background-color: transparent;
  border-color: #c5c5c5;
  color: #000000;
  font-weight: 100;
  line-height: 1;
}
.custom-dd__button .svg-icon {
  margin-left: auto;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.custom-dd__button.active .svg-icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.custom-dd__button[disabled] {
  cursor: not-allowed;
}
.custom-dd__button:hover, .custom-dd__button:focus {
  background-color: transparent;
  color: #000000;
}
.custom-dd__label {
  margin-right: 5px;
}
.custom-dd__list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: -1px 0 20px;
  padding: 10px;
  list-style: none;
  border: 1px solid #c5c5c5;
  background-color: white;
  max-height: 450px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.custom-dd__list.active {
  display: block;
}
.custom-dd__item {
  cursor: pointer;
}
.custom-dd__item:hover, .custom-dd__item:focus {
  background: #fafafa;
}
.loading-mask {
  bottom: 0;
  left: 0;
  margin: auto;
  position: fixed;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 99;
  text-indent: 9999px;
}
.loading-mask .loader > img {
  bottom: 0;
  left: 0;
  margin: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}
.loading-mask .loader > p {
  display: none;
}
/*========================================
Marketing Catalogue page
========================================*/
.marketing-catalogue-order {
  background: url("../../frontend/Graham/default/en_GB/img/pattern_lines.jpg");
  background-size: 100px;
}
@media only screen and (min-width: 765px) {
  .catalogue {
    padding: 40px 0 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.catalogue__form,
.catalogue__sucess {
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .catalogue__form,
.catalogue__sucess {
    width: 50%;
    margin-right: 40px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .catalogue__form,
.catalogue__sucess {
    width: 40%;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .catalogue__form,
.catalogue__sucess {
    width: 30%;
    margin-right: 120px;
    margin-left: 40px;
  }
}
.catalogue__title {
  font-size: 20px;
  font-size: 1.25rem;
}
@media only screen and (min-width: 765px) {
  .catalogue__title {
    padding-top: 0;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.catalogue__desc {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
.catalogue__success-title {
  padding-top: 0;
  color: #fd3670;
  text-align: center;
}
.catalogue__success-desc {
  color: #fd3670;
  text-align: center;
}
.catalogue__submit {
  width: 100%;
  margin-top: 10px;
}
.catalogue__content {
  width: 100%;
  padding-top: 20px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 765px) {
  .catalogue__content {
    width: calc(50% - 40px);
    padding-top: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .catalogue__content {
    width: calc(60% - 40px);
  }
}
@media only screen and (min-width: 1200px) {
  .catalogue__content {
    width: calc(70% - (40px * 4));
  }
}
.catalogue__related-video {
  display: block;
  position: relative;
  margin-bottom: 20px;
}
.catalogue__related-video:before, .catalogue__related-video:after {
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: #777;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.catalogue__related-video:after {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}
.catalogue__related-image {
  display: block;
  position: relative;
  z-index: 1;
  border: 6px solid #ffffff;
  box-shadow: 0 0 5px #c5c5c5;
}
.catalogue__download {
  text-align: center;
}
.catalogue__download-banner {
  padding-top: 10px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .catalogue__download-banner {
    padding-top: 0;
  }
}
.catalogue__download-title {
  font-size: 20px;
  font-size: 1.25rem;
}
@media only screen and (min-width: 765px) {
  .catalogue__download-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.catalogue__download-desc {
  margin: 0 auto 20px;
  max-width: 490px;
  display: block;
}
@media only screen and (min-width: 765px) {
  .catalogue__download-desc {
    margin: 0 auto 40px;
  }
}
.catalogue__download-link {
  display: block;
  max-width: 400px;
  margin: 0 auto 20px;
  border: 6px solid #ffffff;
  box-shadow: 0 0 10px #c5c5c5;
}
@media only screen and (min-width: 765px) {
  .catalogue__download-link {
    margin-bottom: 40px;
  }
}
.catalogue__download-image {
  display: block;
  width: 100%;
}
.catalogue__download-button {
  margin-bottom: 30px;
}
.toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 500px) {
  .toolbar {
    width: 50%;
    border-left: 1px solid #e6e6e6;
  }
}
@media only screen and (min-width: 765px) {
  .toolbar {
    margin-bottom: 20px;
    width: 100%;
    border-left: 0;
  }
}
@media only screen and (min-width: 1060px) {
  .toolbar {
    margin-bottom: 30px;
    float: right;
    width: auto;
  }
}
.toolbar__top {
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  color: #000000;
}
.toolbar__top:hover, .toolbar__top:focus {
  color: #000000;
  text-decoration: underline;
}
.toolbar__top .svg-icon {
  position: relative;
  top: -1px;
  margin-right: 10px;
}
.toolbar__all {
  display: none;
  width: 100%;
  padding-top: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  text-align: center;
}
.toolbar__all:hover, .toolbar__all:focus {
  color: #000000;
  text-decoration: underline;
}
@media only screen and (min-width: 765px) {
  .toolbar__all {
    display: block;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    width: auto;
    margin-right: 20px;
    margin-left: auto;
  }
}
.toolbar__pages {
  display: none;
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 765px) {
  .toolbar__pages {
    display: block;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: auto;
  }
}
.pages__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0;
}
.pages__item--count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
@media only screen and (min-width: 765px) {
  .pages__button {
    padding: 0;
    border: none;
  }
}
@media only screen and (min-width: 765px) {
  .pages__text {
    display: none;
  }
}
.toolbar__sorter {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #e6e6e6;
}
@media only screen and (min-width: 500px) {
  .toolbar__sorter {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 765px) {
  .toolbar__sorter {
    border: 1px solid #e6e6e6;
    width: auto;
  }
}
@media only screen and (min-width: 1060px) {
  .toolbar__sorter {
    margin-right: 20px;
  }
}
.sorter__label {
  margin-right: 5px;
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 100;
}
.sorter__label:after {
  content: ":";
}
.sorter__options {
  border: none;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 0;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.5;
  font-weight: 700;
}
@media only screen and (max-width: 764px) {
  .sorter__options {
    background-position: right center;
    padding-right: 20px;
  }
}
.sorter__options:hover, .sorter__options:focus {
  border-color: #e6e6e6;
  cursor: pointer;
}
@media only screen and (min-width: 765px) {
  .sorter__options {
    width: auto;
  }
}
.order-products-toolbar,
.account-orders-history__toolbar {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #e6e6e6;
}
.order-products-toolbar .pager,
.account-orders-history__toolbar .pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.order-products-toolbar .pager a,
.account-orders-history__toolbar .pager a {
  margin-left: auto;
}
.order-products-toolbar .pages,
.account-orders-history__toolbar .pages {
  margin-left: 25px;
}
.order-products-toolbar .toolbar-amount,
.account-orders-history__toolbar .toolbar-amount {
  margin: 0;
}
.order-products-toolbar .limiter,
.account-orders-history__toolbar .limiter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.order-products-toolbar .limiter-label,
.account-orders-history__toolbar .limiter-label {
  margin-right: 10px;
}
.order-products-toolbar .limiter-options,
.account-orders-history__toolbar .limiter-options {
  margin-right: 10px;
}
.order-products-toolbar .limiter-text,
.account-orders-history__toolbar .limiter-text {
  white-space: nowrap;
}
.product-list ~ .toolbar,
.mto-category ~ .toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  float: none;
  width: 100%;
  padding-top: 10px;
  margin-bottom: 30px;
  border: none;
}
@media only screen and (min-width: 765px) {
  .product-list ~ .toolbar,
.mto-category ~ .toolbar {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-top: 20px;
    margin-bottom: 40px;
    width: auto;
  }
  .product-list ~ .toolbar.wishlist-toolbar,
.mto-category ~ .toolbar.wishlist-toolbar {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-list ~ .toolbar.wishlist-toolbar .pager,
.mto-category ~ .toolbar.wishlist-toolbar .pager {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .product-list ~ .toolbar.wishlist-toolbar .pager .limiter,
.mto-category ~ .toolbar.wishlist-toolbar .pager .limiter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .product-list ~ .toolbar.wishlist-toolbar .pager .limiter .limiter-options,
.mto-category ~ .toolbar.wishlist-toolbar .pager .limiter .limiter-options {
    margin: 10px;
  }
}
@media only screen and (min-width: 1015px) {
  .product-list ~ .toolbar,
.mto-category ~ .toolbar {
    padding-top: 30px;
    margin-bottom: 60px;
  }
}
.product-list ~ .toolbar .toolbar__top,
.mto-category ~ .toolbar .toolbar__top {
  display: block;
  margin: 0 auto;
}
@media only screen and (min-width: 765px) {
  .product-list ~ .toolbar .toolbar__top,
.mto-category ~ .toolbar .toolbar__top {
    margin: 0 auto 0 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.product-list ~ .toolbar .toolbar__all,
.mto-category ~ .toolbar .toolbar__all {
  display: block;
}
@media only screen and (min-width: 765px) {
  .product-list ~ .toolbar .toolbar__all,
.mto-category ~ .toolbar .toolbar__all {
    margin-left: 0;
  }
}
.product-list ~ .toolbar .toolbar__pages,
.mto-category ~ .toolbar .toolbar__pages {
  margin-top: 30px;
  display: block;
}
@media only screen and (min-width: 765px) {
  .product-list ~ .toolbar .toolbar__pages,
.mto-category ~ .toolbar .toolbar__pages {
    margin-top: 0;
  }
}
.product-list ~ .toolbar .sorter,
.mto-category ~ .toolbar .sorter {
  display: none;
}
.toolbar--landing {
  width: 100%;
  float: none;
  margin-bottom: 30px;
}
@media only screen and (min-width: 765px) {
  .toolbar--landing {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1015px) {
  .toolbar--landing {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 765px) {
  .toolbar--landing .toolbar__container:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e6e6e6;
  }
}
.toolbar--landing .toolbar__top {
  display: inline-block;
  padding-top: 10px;
}
@media only screen and (min-width: 765px) {
  .toolbar--landing .toolbar__top {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 1015px) {
  .toolbar--landing .toolbar__top {
    padding-top: 30px;
  }
}
/*========================================
Product Share template
========================================*/
.sendfriend-product-send {
  background-color: #fefbf6;
}
.share-friend {
  max-width: 360px;
  margin: 0 auto;
  padding: 10px 0 20px;
}
@media only screen and (min-width: 765px) {
  .share-friend {
    padding: 30px 0 80px;
  }
}
.share-friend .page-title__heading {
  margin-bottom: 40px;
}
.share-friend__form .field-recaptcha {
  padding-bottom: 20px;
}
.share-friend__submit {
  width: 100%;
  margin-bottom: 10px;
}
.share-friend__back {
  display: block;
  text-align: center;
}
.share-friend__add {
  width: 100%;
  margin-bottom: 10px;
}
.share-friend__remove {
  margin-bottom: 30px;
}
/*========================================
Home page widget: Carousel
========================================*/
.home-slider {
  position: relative;
  width: 100%;
  padding-bottom: 36px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .home-slider {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .home-slider {
    margin-bottom: 30px;
    float: left;
    width: calc(65% - (30px / 2));
  }
}
.home-slider__placeholder {
  width: 100%;
  padding-bottom: 100%;
  background: url("../../frontend/Graham/default/en_GB/img/spinner.gif") center #f2f2f2 no-repeat;
  background-size: 30px;
}
.home-slider__viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in 0.3s;
}
.home-slider__viewport.flickity-enabled {
  opacity: 1;
  visibility: visible;
}
.home-slider__viewport .flickity-page-dots .dot {
  border: 2px solid #999999;
  background-color: transparent;
}
.home-slider__viewport .flickity-page-dots .dot:after {
  background-color: transparent;
}
.home-slider__viewport .flickity-page-dots .dot.is-selected {
  border-color: #fd3670;
}
.home-slider__viewport .flickity-page-dots .dot.is-selected:after {
  background-color: #fd3670;
}
@media only screen and (min-width: 765px) {
  .home-slider__viewport .flickity-page-dots {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    left: auto;
  }
  .home-slider__viewport .flickity-page-dots .dot {
    border: 2px solid #ffffff;
    background-color: transparent;
  }
  .home-slider__viewport .flickity-page-dots .dot:after {
    background-color: transparent;
  }
  .home-slider__viewport .flickity-page-dots .dot.is-selected {
    border-color: #ffffff;
  }
  .home-slider__viewport .flickity-page-dots .dot.is-selected:after {
    background-color: #ffffff;
  }
}
.home-slider__item {
  width: 100%;
}
.home-slider__item a {
  display: block;
}
.home-slider__img {
  display: block;
  width: 100%;
}
.home-slider__content {
  position: absolute;
  right: 0;
  padding: 40px 20px;
  text-align: center;
}
@media only screen and (max-width: 764px) {
  .home-slider__content {
    bottom: 0;
    left: 0;
  }
}
@media only screen and (min-width: 765px) {
  .home-slider__content {
    top: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .home-slider__content {
    padding: 50px 40px 0;
  }
}
/*========================================
Home page widget: One image
========================================*/
.home-slider__heading {
  display: inline-block;
  position: relative;
  color: #ffffff;
  padding: 0;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 5px;
}
.home-slider__heading:before, .home-slider__heading:after {
  content: "......";
  position: absolute;
  top: -4px;
  letter-spacing: 1px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (min-width: 765px) {
  .home-slider__heading:before, .home-slider__heading:after {
    top: -2px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-slider__heading:before, .home-slider__heading:after {
    top: -1px;
  }
}
.home-slider__heading:after {
  right: -4px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.home-slider__heading:before {
  left: -4px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media only screen and (min-width: 765px) {
  .home-slider__heading {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-slider__heading {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.home-slider__title {
  padding: 0;
  color: #ffffff;
  letter-spacing: 5px;
  line-height: 1.2;
  text-decoration: none;
}
@media only screen and (min-width: 765px) {
  .home-slider__title {
    font-size: 44px;
    font-size: 2.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-slider__title {
    font-size: 56px;
    font-size: 3.5rem;
  }
}
.home-slider__button {
  background: transparent;
  border-color: #ffffff;
  font-weight: 600;
}
.home-slider__button:hover, .home-slider__button:focus {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.home-slide {
  position: relative;
  width: 100%;
  padding-bottom: 36px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .home-slide {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .home-slide {
    margin-bottom: 30px;
    float: left;
    width: calc(65% - (30px / 2));
  }
}
.home-slide__placeholder {
  width: 100%;
  padding-bottom: 100%;
  background: url("../../frontend/Graham/default/en_GB/img/spinner.gif") center #f2f2f2 no-repeat;
  background-size: 30px;
}
.home-slide__viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity ease-in 0.3s;
}
.home-slide__item {
  width: 100%;
}
.home-slide__item a {
  display: block;
}
.home-slide__img {
  display: block;
  width: 100%;
}
/*========================================
Home page widget: Home catalogue
========================================*/
.home-catalogue {
  margin-bottom: 20px;
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .home-catalogue {
    width: calc(50% - (30px /2));
    float: left;
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1015px) {
  .home-catalogue {
    float: right;
    width: calc(35% - (30px / 2));
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.home-catalogue__link {
  display: block;
  position: relative;
  padding-bottom: 100%;
  background-color: #fafafa;
}
@media only screen and (min-width: 1015px) {
  .home-catalogue__link {
    padding-bottom: 62.5%;
  }
}
.home-catalogue__image {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.lazy-load--padded-box img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/*========================================
Home page widget: Collections
========================================*/
.home-collection {
  display: block;
  margin-bottom: 15px;
}
@media only screen and (min-width: 765px) {
  .home-collection {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection {
    margin-bottom: 30px;
  }
}
.home-collection__link {
  display: block;
  position: relative;
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
  background-color: #fafafa;
}
.home-collection__link:hover, .home-collection__link:focus {
  text-decoration: none;
}
.home-collection__link:hover .home-collection__button, .home-collection__link:focus .home-collection__button {
  color: #000000;
}
.home-collection__image {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 1015px) {
  .home-collection__image {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.home-collection__image img {
  display: block;
  width: 100%;
}
.home-collection__content {
  padding: 15px 0;
  background: #ffffff;
  text-align: center;
  border-bottom: 1px dotted #c5c5c5;
}
@media only screen and (min-width: 765px) {
  .home-collection__content {
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection__content {
    margin-top: -60px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-collection__content {
    padding: 20px 0;
    margin-top: -80px;
  }
}
.home-collection__desc {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1015px) {
  .home-collection__desc {
    font-size: 16px;
    font-size: 1rem;
  }
}
.home-collection__button {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (min-width: 765px) {
  .home-collection__button {
    margin-left: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.home-collection--first {
  float: left;
  width: calc(50% - 10px);
}
@media only screen and (min-width: 765px) {
  .home-collection--first {
    width: calc(50% - (30px / 2));
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--first {
    float: right;
    width: calc(35% - (30px / 2));
  }
}
@media only screen and (min-width: 765px) {
  .home-collection--first .home-collection__content {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
    width: 100%;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--first .home-collection__content {
    margin-top: 0;
    border-bottom: none;
  }
}
@media only screen and (min-width: 765px) {
  .home-collection--first .home-collection__link {
    padding-top: 100%;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--first .home-collection__link {
    padding-top: 120%;
  }
}
@media only screen and (min-width: 765px) {
  .home-collection--first .home-collection__image {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.home-collection--second {
  float: left;
  width: calc(50% - 10px);
  margin-left: 20px;
}
@media only screen and (min-width: 765px) {
  .home-collection--second {
    position: relative;
    width: calc(50% - (30px / 2));
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--second {
    clear: right;
    margin-right: 0;
    margin-bottom: 30px;
    width: 35%;
    padding-right: 11px;
  }
}
@media only screen and (min-width: 765px) {
  .home-collection--second .home-collection__content {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
    width: 100%;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--second .home-collection__content {
    margin-top: 0;
  }
}
@media only screen and (min-width: 765px) {
  .home-collection--second .home-collection__link {
    padding-top: 100%;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--second .home-collection__link {
    padding-top: 141.6666666667%;
  }
}
@media only screen and (min-width: 765px) {
  .home-collection--second .home-collection__image {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.home-collection--third {
  clear: both;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px dotted #c5c5c5;
}
@media only screen and (min-width: 765px) {
  .home-collection--third {
    clear: none;
    position: relative;
    float: left;
    width: calc(50% - (30px / 2));
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--third {
    margin-bottom: 30px;
    width: 65%;
    padding-left: 19px;
  }
}
@media only screen and (min-width: 765px) {
  .home-collection--third .home-collection__content {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
    width: 100%;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--third .home-collection__content {
    margin-top: 0;
  }
}
@media only screen and (min-width: 765px) {
  .home-collection--third .home-collection__link {
    padding-top: 100%;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--third .home-collection__link {
    padding-top: 76.25%;
  }
}
@media only screen and (min-width: 765px) {
  .home-collection--third .home-collection__image {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.home-collection--fourth {
  clear: both;
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .home-collection--fourth {
    float: left;
    width: calc(33.3333% - (60px / 3));
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--fourth .home-collection__link {
    padding-top: 141.6666666667%;
  }
}
.home-collection--fifth {
  float: left;
  width: calc(50% - 10px);
}
@media only screen and (min-width: 765px) {
  .home-collection--fifth {
    margin-left: 30px;
    width: calc(33.3333% - (60px / 3));
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--fifth .home-collection__link {
    padding-top: 141.6666666667%;
  }
}
.home-collection--sixth {
  float: left;
  width: calc(50% - 10px);
  margin-left: 20px;
}
@media only screen and (min-width: 765px) {
  .home-collection--sixth {
    margin-left: 30px;
    width: calc(33.3333% - (60px / 3));
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--sixth .home-collection__link {
    padding-top: 141.6666666667%;
  }
}
.home-collection--alt .home-collection__title {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0;
  margin-bottom: 5px;
  min-height: 36px;
}
@media only screen and (min-width: 765px) {
  .home-collection--alt .home-collection__title {
    min-height: auto;
  }
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .home-collection--alt .home-collection__title {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 1015px) {
  .home-collection--alt .home-collection__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-collection--alt .home-collection__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.home-collection--alt .home-collection__desc {
  display: none;
}
@media only screen and (min-width: 765px) {
  .home-collection--alt .home-collection__desc {
    display: block;
    margin-bottom: 10px;
    min-height: 48px;
  }
}
/*========================================
Home page widget: CTA widget (Bestsellers & New in images)
========================================*/
.home-cta {
  clear: both;
}
@media only screen and (min-width: 765px) {
  .home-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 1200px) {
  .home-cta {
    padding-top: 10px;
  }
}
.home-cta__link {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .home-cta__link {
    width: calc(50% - 10px);
    margin-left: 0;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .home-cta__link:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .home-cta__link {
    width: calc(50% - 15px);
    margin-left: 0;
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 9998px) {
  .home-cta__link:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .home-cta__link {
    margin-bottom: 40px;
  }
}
.home-cta__image {
  display: block;
}
.home-cta__image img {
  display: block;
  width: 100%;
}
/*========================================
Home page widget: Explore G&G
========================================*/
.explore {
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
  background-size: 250px;
  padding: 20px 0;
}
@media only screen and (min-width: 765px) {
  .explore {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .explore {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 765px) {
  .explore__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.explore__title {
  position: relative;
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  color: #6a6a6a;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (min-width: 765px) {
  .explore__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1015px) {
  .explore__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__title {
    margin-bottom: 40px;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.explore__title svg {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 200px;
  height: 5px;
}
@media only screen and (min-width: 765px) {
  .explore__title--mobile {
    display: none;
  }
}
.explore__title--desktop {
  display: none;
}
@media only screen and (min-width: 765px) {
  .explore__title--desktop {
    display: block;
  }
}
.explore__media {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 765px) {
  .explore__media {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    border-bottom: 1px dotted #cbc1b2;
    width: calc(66.66666% - 15px);
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__media {
    width: calc(66.66666% - 30px);
    margin-right: 60px;
  }
}
.explore__media--desktop {
  display: none;
}
@media only screen and (min-width: 765px) {
  .explore__media--desktop {
    display: block;
  }
}
@media only screen and (min-width: 765px) {
  .explore__media--mobile {
    display: none;
  }
}
.explore__link {
  display: block;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 62.5%;
}
.explore__link:before, .explore__link:after {
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: #777;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.explore__link:after {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}
.explore__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  z-index: 1;
  border: 6px solid #ffffff;
  box-shadow: 0 0 5px #c5c5c5;
}
.explore__image img {
  display: block;
  width: 100%;
}
.explore__meta {
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}
@media only screen and (min-width: 765px) {
  .explore__meta {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__meta {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.explore__meta:before, .explore__meta:after {
  content: " – ";
  position: relative;
  top: -2px;
}
.explore__heading {
  padding: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 765px) {
  .explore__heading {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__heading {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.explore__event {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  background: url("../../frontend/Graham/default/en_GB/img/pattern_alt.jpg");
  background-size: 100%;
}
@media only screen and (min-width: 765px) {
  .explore__event {
    width: calc(33.33333% - 15px);
    display: block;
    margin: 0;
    padding: 30px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__event {
    width: calc(33.33333% - 30px);
  }
}
.explore__event:before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: url("../../frontend/Graham/default/en_GB/img/dotted_border_red.png");
  background-size: contain;
}
.explore__event:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: url("../../frontend/Graham/default/en_GB/img/dotted_border_red.png");
  background-size: contain;
}
.explore__event-header {
  margin-bottom: 20px;
  width: 100%;
}
.explore__event-header img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 250px;
}
.explore__event-image {
  display: block;
  width: 30%;
}
@media only screen and (min-width: 765px) {
  .explore__event-image {
    width: 100%;
    margin-bottom: 10px;
  }
}
.explore__event-content {
  width: 70%;
  padding-left: 30px;
}
@media only screen and (min-width: 765px) {
  .explore__event-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.explore__event-title {
  padding-top: 10px;
  font-size: 18px;
  font-size: 1.125rem;
}
.explore__event-desc {
  display: none;
}
@media only screen and (min-width: 1015px) {
  .explore__event-desc {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__event-desc {
    font-size: 16px;
    font-size: 1rem;
  }
}
.explore__event-link {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000000;
}
.explore__event-link:hover, .explore__event-link:focus {
  color: #000000;
}
@media only screen and (min-width: 765px) {
  .explore__event-link {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__event-link {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.explore__articles {
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .explore__articles {
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__articles {
    padding-top: 60px;
  }
}
.explore__articles .flickity-page-dots .dot {
  border: 2px solid #999999;
  background-color: transparent;
}
.explore__articles .flickity-page-dots .dot:after {
  background-color: transparent;
}
.explore__articles .flickity-page-dots .dot.is-selected {
  border-color: #fd3670;
}
.explore__articles .flickity-page-dots .dot.is-selected:after {
  background-color: #fd3670;
}
.explore__articles-item {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 765px) {
  .explore__articles-item {
    text-align: left;
    margin-bottom: 20px;
    width: calc(33.33% - ((60px) / 3));
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__articles-item {
    width: calc(33.33% - ((80px) / 3));
    margin-right: 40px;
  }
}
.explore__articles-item:nth-of-type(2) .explore__articles-meta {
  color: #ff5d1b;
}
.explore__articles-item:nth-of-type(2) .explore__articles-link:after {
  background-color: #ff5d1b;
}
.explore__articles-item:nth-of-type(3) .explore__articles-meta {
  color: #6eaab6;
}
.explore__articles-item:nth-of-type(3) .explore__articles-link:after {
  background-color: #6eaab6;
}
.explore__articles-item:nth-of-type(4) {
  margin-right: 0;
}
.explore__articles-item:nth-of-type(4) .explore__articles-meta {
  color: #98ce6a;
}
.explore__articles-item:nth-of-type(4) .explore__articles-link:after {
  background-color: #98ce6a;
}
.explore__articles-image-link {
  display: block;
  padding-bottom: 62.5%;
  position: relative;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) {
  .explore__articles-image-link {
    margin-bottom: 20px;
  }
}
.explore__articles-image-link:before, .explore__articles-image-link:after {
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: #777;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.explore__articles-image-link:after {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}
.explore__articles-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  z-index: 1;
  border: 6px solid #ffffff;
  box-shadow: 0 0 5px #c5c5c5;
}
.explore__articles-image img {
  display: block;
  width: 100%;
}
.explore__articles-meta {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 765px) {
  .explore__articles-meta {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__articles-meta {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.explore__articles-meta:before {
  content: " – ";
  position: relative;
  top: -2px;
}
.explore__articles-meta:after {
  content: " – ";
  position: relative;
  top: -2px;
}
.explore__articles-title {
  padding-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 765px) {
  .explore__articles-title {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__articles-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.explore__articles-desc {
  display: none;
}
@media only screen and (min-width: 765px) {
  .explore__articles-desc {
    display: block;
    padding-top: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__articles-desc {
    font-size: 16px;
    font-size: 1rem;
  }
}
.explore__articles-link {
  display: none;
}
@media only screen and (min-width: 765px) {
  .explore__articles-link {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-size: 0.875rem;
    color: #000000;
    text-decoration: none;
  }
  .explore__articles-link:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
  }
}
.explore__articles-link:hover, .explore__articles-link:focus {
  text-decoration: none;
  color: #000000;
}
@media only screen and (min-width: 765px) {
  .explore__articles-link {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .explore__articles-link {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/*========================================
Home page widget: Buyers Pick
========================================*/
.buyers-pick__container {
  padding-bottom: 10px;
}
@media only screen and (min-width: 765px) {
  .buyers-pick__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1200px) {
  .buyers-pick__container {
    padding-bottom: 20px;
  }
}
.buyers-pick__title {
  width: 100%;
  position: relative;
  padding-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
@media only screen and (min-width: 765px) {
  .buyers-pick__title {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .buyers-pick__title {
    margin-bottom: 40px;
  }
}
.buyers-pick__text {
  display: inline-block;
  padding: 0 30px;
  background: #ffffff;
}
.buyers-pick__text:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  z-index: -1;
  background-color: #e6e6e6;
}
.buyers-pick__image-link {
  display: block;
  width: 100%;
}
.buyers-pick__image {
  display: block;
  width: 100%;
}
.buyers-pick__image img {
  display: block;
  width: 100%;
}
.buyers-pick__product-name {
  margin-bottom: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.buyers-pick__link {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
}
.buyers-pick__link:hover, .buyers-pick__link:focus {
  color: #000000;
}
.buyers-pick__featured {
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (min-width: 765px) {
  .buyers-pick__featured {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(40% - 20px);
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1015px) {
  .buyers-pick__featured {
    width: calc(35% - 20px);
  }
}
@media only screen and (min-width: 765px) {
  .buyers-pick__featured-image-link {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
.buyers-pick__featured-info {
  padding-top: 10px;
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.buyers-pick__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 765px) {
  .buyers-pick__items {
    width: calc(60% - 20px);
  }
}
@media only screen and (min-width: 1015px) {
  .buyers-pick__items {
    width: calc(65% - 20px);
  }
}
.buyers-pick__items-product {
  margin-bottom: 10px;
  width: calc(50% - 5px);
  margin-left: 0;
  margin-right: 10px;
  text-align: center;
}
@media only screen and (max-width: 764px) {
  .buyers-pick__items-product:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 765px) {
  .buyers-pick__items-product {
    width: calc(33.3333333333% - 13.3333333333px);
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .buyers-pick__items-product:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .buyers-pick__items-product {
    width: calc(33.3333333333% - 20px);
    margin-left: 0;
    margin-right: 30px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 9998px) {
  .buyers-pick__items-product:nth-child(3n+3) {
    margin-right: 0;
  }
}
/*========================================
Home page widget: Quote
========================================*/
.quote {
  padding: 20px 0;
}
@media only screen and (min-width: 1015px) {
  .quote {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .quote {
    padding: 40px 0;
  }
}
.quote__text {
  max-width: 1015px;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 765px) {
  .quote__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    font-size: 1rem;
  }
}
.quote__text:before, .quote__text:after {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  margin: 0 auto 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (min-width: 765px) {
  .quote__text:before, .quote__text:after {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (min-width: 1015px) {
  .quote__text:before, .quote__text:after {
    width: 100px;
    height: 100px;
  }
}
.quote__text:before {
  background: url("../../frontend/Graham/default/en_GB/img/img_quote.png") no-repeat center;
  background-size: contain;
}
@media only screen and (min-width: 765px) {
  .quote__text:before {
    margin-right: 40px;
    background: url("../../frontend/Graham/default/en_GB/img/img_quote_alt.png") no-repeat center;
    background-size: contain;
  }
}
.quote__text:after {
  display: none;
  background: url("../../frontend/Graham/default/en_GB/img/img_quote.png") no-repeat center;
  background-size: contain;
}
@media only screen and (min-width: 765px) {
  .quote__text:after {
    display: block;
    margin-left: 40px;
  }
}
.quote__name {
  position: relative;
  padding-top: 30px;
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
.quote__name:before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #feca86;
}
/*========================================
Default product list styles
========================================*/
.product-list {
  padding-top: 20px;
  clear: both;
}
@media only screen and (min-width: 1015px) {
  .product-list {
    padding-top: 30px;
  }
}
.product-list__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
}
.product-list--bestseller .product-list__list {
  min-height: 225px;
}
@media only screen and (min-width: 765px) {
  .product-list--bestseller .product-list__list {
    min-height: 325px;
  }
}
.product-list--bestseller .product-list__list .product-list__item .product-item .product-item__image-link .product-item__image:before {
  padding-bottom: 100%;
}
.product-list__item {
  width: calc(50% - 5px);
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 764px) {
  .product-list__item:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 765px) {
  .product-list__item {
    width: calc(33.3333333333% - 13.3333333333px);
    margin-left: 0;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .product-list__item:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .product-list__item {
    width: calc(25% - 30px);
    margin-left: 0;
    margin-right: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 9998px) {
  .product-list__item:nth-child(4n+4) {
    margin-right: 0;
  }
}
.product-list--grid {
  border-top: 1px solid #e6e6e6;
}
@media only screen and (min-width: 765px) {
  .product-list--grid {
    border-bottom: 1px solid #e6e6e6;
  }
}
.product-list--related {
  padding-top: 0;
  overflow: hidden;
}
@media only screen and (min-width: 765px) {
  .checkout-cart-index .product-list--related .product-list__list--carousel {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .checkout-cart-index .product-list--related .product-list__list--carousel .product-list__item--carousel {
    width: 25%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .checkout-cart-index .product-list--related .product-list__list--carousel .flickity-prev-next-button.previous {
    left: 10px;
  }
  .checkout-cart-index .product-list--related .product-list__list--carousel .flickity-prev-next-button.next {
    right: 10px;
  }
}
.product-list--bestseller,
.product-list--upsell {
  padding-top: 0;
}
.product-list--bestseller .product-list__item,
.product-list--upsell .product-list__item {
  position: relative;
}
@media only screen and (min-width: 765px) {
  .product-list--bestseller .product-list__item,
.product-list--upsell .product-list__item {
    width: calc(25% - 7.5px);
    margin-left: 0;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .product-list--bestseller .product-list__item:nth-child(4n+4),
.product-list--upsell .product-list__item:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .product-list--bestseller .product-list__item,
.product-list--upsell .product-list__item {
    width: calc(25% - 15px);
    margin-left: 0;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 9998px) {
  .product-list--bestseller .product-list__item:nth-child(4n+4),
.product-list--upsell .product-list__item:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .product-list--bestseller .product-list__item:before, .product-list--bestseller .product-list__item:after,
.product-list--upsell .product-list__item:before,
.product-list--upsell .product-list__item:after {
    display: block;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #777;
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.3);
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
}
@media only screen and (min-width: 1015px) {
  .product-list--bestseller .product-list__item:after,
.product-list--upsell .product-list__item:after {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
    right: 10px;
    left: auto;
  }
}
.product-list--bestseller .product-item,
.product-list--upsell .product-item {
  position: relative;
  z-index: 1;
  background: none;
}
@media only screen and (min-width: 1015px) {
  .product-list--bestseller .product-item,
.product-list--upsell .product-item {
    background-color: #ffffff;
    padding: 20px;
  }
}
.product-list--recent {
  padding-top: 0;
}
.product-list--recent .product-list__item:nth-child(5) {
  display: none;
}
@media only screen and (min-width: 765px) {
  .product-list--recent .product-list__item {
    width: calc(25% - 7.5px);
    margin-left: 0;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .product-list--recent .product-list__item:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .product-list--recent .product-list__item {
    width: calc(20% - 16px);
    margin-left: 0;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 9998px) {
  .product-list--recent .product-list__item:nth-child(5n+5) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .product-list--recent .product-list__item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product-list--wishlist {
  padding: 0;
  width: 100%;
  max-width: 955px;
}
.product-list--wishlist .product-list__list {
  width: 100%;
  max-width: 955px;
}
@media only screen and (min-width: 1015px) {
  .product-list--wishlist .product-list__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  @supports ((display: -ms-grid) or (display: grid)) {
    .product-list--wishlist .product-list__list {
      margin-left: 0;
      display: -ms-grid;
      display: grid;
      grid-gap: 30px;
      -ms-grid-columns: (1fr)[4];
          grid-template-columns: repeat(4, 1fr);
    }
  }
}
.product-list--wishlist .product-list__item {
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0 0 20px;
  overflow: hidden;
}
.product-list--wishlist .product-list__item:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1015px) {
  .product-list--wishlist .product-list__item {
    position: relative;
  }
  .product-list--wishlist .product-list__item:last-child {
    margin-bottom: 20px;
  }
  @supports ((display: -ms-grid) or (display: grid)) {
    .product-list--wishlist .product-list__item {
      margin: 0 !important;
      width: auto;
      -ms-grid-column: span 1;
          grid-column: span 1;
      -ms-grid-row: span 5;
          grid-row: span 5;
    }
    .product-list--wishlist .product-list__item:nth-child(10n+1) {
      -ms-grid-column-span: 2;
      -ms-grid-column: 1;
          grid-column: 1/span 2;
      -ms-grid-row: span 8;
          grid-row: span 8;
    }
    .product-list--wishlist .product-list__item:nth-child(10n+8) {
      -ms-grid-column-span: 2;
      -ms-grid-column: 3;
          grid-column: 3/span 2;
      -ms-grid-row: span 8;
          grid-row: span 8;
    }
  }
  .product-list--wishlist .product-list__item:before, .product-list--wishlist .product-list__item:after {
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #777;
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.3);
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  .product-list--wishlist .product-list__item:after {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
    right: 10px;
    left: auto;
  }
  .product-list--wishlist .product-list__item:before, .product-list--wishlist .product-list__item:after {
    z-index: -1;
  }
}
.product-list--subscription {
  padding-top: 0;
  margin-bottom: 20px;
}
.product-list--subscription .product-list__item {
  background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
  background-size: 250px;
}
@media only screen and (max-width: 1014px) {
  .product-list--subscription .product-list__item {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .product-list--subscription .product-list__item {
    width: calc(50% - 15px);
    margin-left: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 9998px) {
  .product-list--subscription .product-list__item:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .product-list--subscription .product-list__item:before, .product-list--subscription .product-list__item:after {
    z-index: -1;
  }
}
/*========================================
Default product item styles
========================================*/
.product-item {
  width: 100%;
  background-color: #ffffff;
}
.product-item__image-link {
  position: relative;
  display: block;
  width: 100%;
}
.product-item__hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity ease-in-out 0.3s;
}
.product-item__hover:hover {
  opacity: 1;
}
.product-item__image {
  display: block;
  width: 100%;
}
.product-item__details {
  position: relative;
  padding-right: 20px;
}
.product-item__title {
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
@media only screen and (min-width: 1015px) {
  .product-item__title {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 5px;
  }
}
.product-item__link {
  white-space: normal;
  color: #000000;
}
.product-item__link:hover, .product-item__link:focus {
  color: #000000;
}
.product-item__availability {
  padding-top: 5px;
  font-size: 14px;
  font-size: 0.875rem;
}
.product-item__actions__button {
  width: 100%;
}
.product-item__wishlist {
  display: block;
  position: absolute;
  top: 15px;
  right: 0;
  background: none;
  outline: 0;
  border: 0;
  box-shadow: none;
}
.product-item__wishlist:hover .svg-icon, .product-item__wishlist:focus .svg-icon {
  color: #fd3670;
}
.product-item__wishlist .svg-icon {
  width: 0.8em;
  height: 0.8em;
  color: #c5c5c5;
}
@media only screen and (min-width: 765px) {
  .product-item__wishlist .svg-icon {
    width: 1em;
    height: 1em;
  }
}
.product-item__wishlist .svg-icon.active {
  color: #fd3670;
}
.product-item__wishlist--button {
  background: none;
  border: none;
  padding: 0;
}
.product-item__quick-shop {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 20px);
  left: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  background: #ffffff;
}
.product-item__quick-shop .svg-icon {
  height: 1.5rem;
  width: 1.5rem;
}
.product-list--recent .product-item__quick-shop {
  bottom: auto;
  top: 0;
  -webkit-transform: translateY(calc(-100% - 10px));
          transform: translateY(calc(-100% - 10px));
}
.product-item__quick-shop:hover, .product-item__quick-shop:focus {
  background: #ffffff;
}
.product-item:hover .product-item__quick-shop {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 765px) {
  .product-item__quick-shop {
    display: block;
  }
}
.product-item__quick-shop .svg-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
}
@media only screen and (min-width: 1015px) {
  .product-item__quick-shop .svg-icon {
    left: 10px;
  }
}
/*========================================
Category Hero
========================================*/
.category-hero {
  padding: 10px;
  margin-bottom: 20px;
  background: url("../../frontend/Graham/default/en_GB/img/category_hero_sml.jpg") no-repeat bottom left;
  background-size: cover;
}
@media only screen and (min-width: 765px) {
  .category-hero {
    background: url("../../frontend/Graham/default/en_GB/img/category_hero_bg.jpg") no-repeat bottom left #fefbf6;
    background-size: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
  }
}
@media only screen and (min-width: 1015px) {
  .category-hero {
    padding: 30px;
    margin-bottom: 30px;
  }
}
.category-hero--alt {
  background: url("../../frontend/Graham/default/en_GB/img/category_hero_sml_alt.jpg") no-repeat bottom left;
  background-size: cover;
}
@media only screen and (min-width: 765px) {
  .category-hero--alt {
    background: url("../../frontend/Graham/default/en_GB/img/category_hero_bg_alt.jpg") no-repeat bottom left #fefbf6;
    background-size: contain;
  }
  .category-hero--alt .category-hero__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.category-hero__image {
  margin-bottom: 10px;
  position: relative;
  -webkit-transform: rotate(-0.5deg);
          transform: rotate(-0.5deg);
}
.category-hero__image:before, .category-hero__image:after {
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: #777;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.category-hero__image:after {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}
@media only screen and (min-width: 765px) {
  .category-hero__image {
    width: 50%;
    margin-bottom: 0;
  }
}
.category-hero__frame {
  background-color: #f1f3f2;
  position: relative;
  z-index: 1;
  padding: 10px;
  padding-bottom: 72.5%;
}
@media only screen and (min-width: 765px) {
  .category-hero__frame {
    padding-bottom: 72.5%;
  }
}
@media only screen and (min-width: 1015px) {
  .category-hero__frame {
    padding-bottom: 72.5%;
  }
}
.category-hero__frame:before, .category-hero__frame:after {
  content: "";
  display: block;
  position: absolute;
  width: 61px;
  height: 20px;
}
@media only screen and (min-width: 765px) {
  .category-hero__frame:before, .category-hero__frame:after {
    width: 90px;
    height: 30px;
  }
}
@media only screen and (min-width: 1015px) {
  .category-hero__frame:before, .category-hero__frame:after {
    width: 123px;
    height: 40px;
  }
}
.category-hero__frame:before {
  top: -10px;
  left: 10px;
  background: url("../../frontend/Graham/default/en_GB/img//cat_image_bottom.png") no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 765px) {
  .category-hero__frame:before {
    top: -17px;
    left: 30px;
  }
}
.category-hero__frame:after {
  bottom: -10px;
  right: 10px;
  background: url("../../frontend/Graham/default/en_GB/img//cat_image_top.png") no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 765px) {
  .category-hero__frame:after {
    bottom: -17px;
    right: 30px;
  }
}
.category-hero__frame img {
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
}
.category-hero__frame img[data-loaded=true] {
  opacity: 1;
}
.category-hero__info {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 765px) {
  .category-hero__info {
    width: 50%;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1015px) {
  .category-hero__info {
    padding: 0 60px;
  }
}
.category-hero__info .page-title__heading {
  margin-bottom: 10px;
}
.category-hero__title {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 20px;
  padding: 0;
  font-weight: 400;
}
@media only screen and (min-width: 1015px) {
  .category-hero__title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.category-hero__title svg {
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  position: absolute;
  fill: #c5a666;
}
.category-hero__description {
  font-size: 14px;
  font-size: 0.875rem;
  overflow: hidden;
  max-height: 40px;
  margin-bottom: 10px;
}
.category-hero__description.active {
  max-height: 100%;
}
@media only screen and (min-width: 765px) {
  .category-hero__description {
    max-height: none;
  }
}
@media only screen and (min-width: 1015px) {
  .category-hero__description {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.category-hero__toggle {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  margin-bottom: 10px;
}
.category-hero__toggle .svg-icon {
  margin-left: 10px;
  width: 0.7em;
  height: 0.7em;
}
.category-hero__toggle.active .svg-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.category-hero__toggle:hover, .category-hero__toggle:focus {
  color: #000000;
}
@media only screen and (min-width: 765px) {
  .category-hero__toggle {
    display: none;
  }
}
.category-hero__button {
  margin: 10px 0;
}
/*========================================
Category Filters
========================================*/
.filter {
  display: block;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 500px) {
  .filter {
    width: 50%;
    float: left;
  }
}
@media only screen and (min-width: 765px) {
  .filter {
    border: none;
    width: auto;
  }
}
.filter__container {
  padding: 0;
}
.filter__title {
  position: relative;
  width: 100%;
  padding: 12px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  border: none;
  border-top: 1px solid #e6e6e6;
  background: white;
}
.filter__title .svg-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1.5em;
  height: 1.5em;
}
@media only screen and (min-width: 500px) {
  .filter__title .svg-icon {
    right: 10px;
  }
}
@media only screen and (min-width: 765px) {
  .filter__title {
    display: none;
  }
}
.filter-no-options .filter__title {
  color: #e6e6e6;
}
.filter-no-options .filter__title:hover, .filter-no-options .filter__title:focus {
  cursor: not-allowed;
}
.filter__content {
  display: none;
}
.filter__content.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #ffffff;
}
@media only screen and (min-width: 765px) {
  .filter__content {
    display: block;
  }
}
.filter__subtitle {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 20px;
  line-height: 2;
  margin: 0;
}
@media only screen and (min-width: 765px) {
  .filter__subtitle {
    display: none;
  }
}
.filter__close {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
@media only screen and (min-width: 765px) {
  .filter__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.filter__options-item {
  position: relative;
}
@media only screen and (min-width: 765px) {
  .filter__options-item {
    margin-right: 30px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1015px) {
  .filter__options-item {
    margin-bottom: 30px;
  }
}
.filter__options-title {
  position: relative;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-size: 0.75rem;
  border-top: 1px solid #e6e6e6;
}
.filter__options-title.active .filter__options-close {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media only screen and (min-width: 765px) {
  .filter__options-title {
    padding: 12px 60px 12px 20px;
    font-size: 14px;
    font-size: 0.875rem;
    text-align: left;
    border: 1px solid #e6e6e6;
  }
}
.filter__options-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  transition: all ease-in-out 0.3s;
  right: 20px;
}
.filter__options-content {
  display: none;
  padding: 0 20px 0;
}
.filter__options-content.active {
  display: block;
}
@media only screen and (min-width: 765px) {
  .filter__options-content {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    min-width: 100%;
    z-index: 2;
    padding: 0;
    white-space: nowrap;
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
  }
}
.filter-items {
  margin: 0 0 10px;
  list-style: none;
}
@media only screen and (min-width: 765px) {
  .filter-items {
    margin: 10px 0;
  }
}
.filter-items__link {
  display: block;
  width: 100%;
  padding: 5px 0;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 765px) {
  .filter-items__link {
    padding: 5px 10px;
  }
}
@media only screen and (min-width: 1015px) {
  .filter-items__link {
    font-size: 16px;
    font-size: 1rem;
    padding: 5px 20px;
  }
}
.filter-items__link:hover, .filter-items__link:focus {
  color: #000000;
}
/*========================================
Selected Filter items
========================================*/
@media only screen and (min-width: 765px) {
  .filter-current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.filter-current__title {
  display: block;
  position: relative;
  width: 100%;
  padding: 12px 0;
  border-top: 1px solid #e6e6e6;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  background: none;
}
@media only screen and (min-width: 765px) {
  .filter-current__title {
    width: auto;
    padding: 0;
    border-top: none;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 600;
  }
}
.filter-current__title:hover, .filter-current__title:focus {
  cursor: pointer;
}
.filter-current__title .svg-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1.2em;
  height: 1.2em;
}
@media only screen and (min-width: 765px) {
  .filter-current__title .svg-icon {
    display: none;
  }
}
@media only screen and (min-width: 765px) {
  .filter-current__count {
    display: none;
  }
}
.filter-current__content {
  display: none;
  margin-bottom: 10px;
}
.filter-current__content.active {
  display: block;
}
@media only screen and (min-width: 765px) {
  .filter-current__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 20px 0;
  }
}
.filter-current__items {
  list-style: none;
  margin: 0 0 10px;
}
@media only screen and (min-width: 765px) {
  .filter-current__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 0;
  }
}
.filter-current__item {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 5px;
}
@media only screen and (min-width: 765px) {
  .filter-current__item {
    margin: 0 0 0 20px;
  }
}
.filter-current__value {
  margin-left: 5px;
}
.filter-current__remove {
  position: relative;
  top: -2px;
  margin-left: 5px;
}
.filter-current__remove .svg-icon {
  color: #000000;
  width: 0.7em;
  height: 0.7em;
}
@media only screen and (min-width: 765px) {
  .filter-current__remove .svg-icon {
    width: 0.6em;
    height: 0.6em;
  }
}
@media only screen and (min-width: 765px) {
  .filter-current__actions {
    margin-left: 20px;
  }
}
.filter-current__actions a {
  color: #000000;
  text-decoration: none;
  font-weight: 400;
}
.filter-current__actions a:hover, .filter-current__actions a:focus {
  text-decoration: underline;
}
/*========================================
MTO category page listing
========================================*/
.mto-category {
  clear: both;
  padding-top: 20px;
  border-top: 1px solid #e6e6e6;
}
@media only screen and (min-width: 765px) {
  .mto-category {
    border-bottom: 1px solid #e6e6e6;
    padding: 20px 0;
  }
}
@media only screen and (min-width: 1015px) {
  .mto-category {
    padding-top: 30px;
  }
}
.mto-category__list {
  list-style: none;
  margin: 0;
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .mto-category__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.mto-category__item {
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
  background-size: 250px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .mto-category__item {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
  .mto-category__item:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .mto-category__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    height: 400px;
  }
}
.mto-category__image-link {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 1014px) {
  .mto-category__image-link {
    padding-bottom: 66.6666%;
  }
}
@media only screen and (min-width: 1015px) {
  .mto-category__image-link {
    width: 50%;
  }
}
.mto-category__details {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 1015px) {
  .mto-category__details {
    width: 50%;
    padding: 0 40px;
  }
}
.mto-category__details .minimal-price {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1015px) {
  .mto-category__details .minimal-price {
    margin-bottom: 20px;
  }
}
.mto-category__details .price-container {
  font-size: 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 1015px) {
  .mto-category__details .price-container {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.mto-category__content {
  width: 100%;
}
.mto-category__title {
  padding: 0;
  font-size: 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 1015px) {
  .mto-category__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.mto-category__link {
  color: #000000;
}
.mto-category__link:hover, .mto-category__link:focus {
  color: #000000;
}
.mto-category__detail {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 765px) {
  .mto-category__detail {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1015px) {
  .mto-category__detail {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.mto-category__detail svg {
  fill: #6a6a6a;
  width: 40px;
  height: 30px;
  margin-left: 10px;
}
@media only screen and (min-width: 765px) {
  .mto-category__detail svg {
    width: 70px;
    margin-left: 20px;
  }
}
.mto-category__detail--desc {
  white-space: normal;
}
.mto-category__detail--availability {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mto-category__button {
  width: 100%;
}
@media only screen and (min-width: 1015px) {
  .mto-category__button {
    width: auto;
  }
}
/*========================================
Category Landing page category list
========================================*/
.category-listing:last-of-type {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1015px) {
  .category-listing:last-of-type {
    margin-bottom: 30px;
  }
}
.category-listing__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  list-style: none;
}
.category-listing__item {
  width: calc(50% - 5px);
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 764px) {
  .category-listing__item:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 765px) {
  .category-listing__item {
    width: calc(25% - 15px);
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .category-listing__item:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .category-listing__item {
    width: calc(25% - 30px);
    margin-left: 0;
    margin-right: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 9998px) {
  .category-listing__item:nth-child(4n+4) {
    margin-right: 0;
  }
}
.category-listing__link {
  display: block;
  text-decoration: none;
  color: #000000;
  text-align: center;
}
.category-listing__link:hover, .category-listing__link:focus {
  color: #000000;
}
.category-listing__image {
  display: block;
  width: 100%;
}
.category-listing__title {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 1015px) {
  .category-listing__title {
    font-size: 16px;
    font-size: 1rem;
  }
}
/*========================================
Category Landing page collections
========================================*/
.category-collection {
  padding-top: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 764px) {
  .category-collection__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 765px) {
  .category-collection__items {
    zoom: 1;
    padding-left: 20px;
  }
  .category-collection__items:before, .category-collection__items:after {
    content: "";
    display: table;
  }
  .category-collection__items:after {
    clear: both;
  }
}
@media only screen and (min-width: 1015px) {
  .category-collection__items {
    padding-left: 30px;
  }
}
.category-collection__item {
  position: relative;
  float: left;
}
@media only screen and (max-width: 764px) {
  .category-collection__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(50% - 10px);
    margin-bottom: 30px;
  }
  .category-collection__item:nth-child(2n+2) {
    margin-right: 20px;
  }
  .category-collection__item:nth-last-child(-n+2) {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 765px) {
  .category-collection__item {
    margin-bottom: 20px;
  }
  .category-collection__item:nth-child(3) {
    clear: left;
    margin-left: -20px;
  }
  .category-collection__item:nth-last-child(-n+3) {
    width: calc(33.3333% - (20px / 3));
    margin-right: 20px;
  }
  .category-collection__item:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .category-collection__item {
    margin-bottom: 40px;
  }
  .category-collection__item:nth-child(3) {
    margin-left: -30px;
  }
  .category-collection__item:nth-last-child(-n+3) {
    width: calc(33.3333% - (30px / 3));
    margin-right: 30px;
  }
  .category-collection__item:last-child {
    margin-right: 0;
  }
}
.category-collection__item > a {
  position: relative;
  display: block;
  padding-top: 141.6666666667%;
  background-color: #fafafa;
}
.category-collection__image {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.category-collection__image img {
  display: block;
  width: 100%;
}
.category-collection__content {
  text-align: center;
}
@media only screen and (max-width: 764px) {
  .category-collection__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media only screen and (min-width: 765px) {
  .category-collection__content {
    text-align: left;
  }
}
@media only screen and (min-width: 1015px) {
  .category-collection__content {
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: #ffffff;
    margin-top: -60px;
  }
}
@media only screen and (min-width: 1200px) {
  .category-collection__content {
    margin-top: -80px;
  }
}
.category-collection__title {
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 765px) {
  .category-collection__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1015px) {
  .category-collection__title {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
}
.category-collection__desc {
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (max-width: 764px) {
  .category-collection__desc {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media only screen and (min-width: 765px) {
  .category-collection__desc {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1015px) {
  .category-collection__desc {
    display: block;
    margin: 0;
    font-size: 16px;
    font-size: 1rem;
  }
}
.category-collection__link {
  display: block;
  position: relative;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  text-decoration: none;
}
.category-collection__link:hover, .category-collection__link:focus {
  color: #000000;
}
@media only screen and (min-width: 765px) {
  .category-collection__link {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1015px) {
  .category-collection__link {
    display: none;
  }
}
.category-collection__item--main {
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .category-collection__item--main {
    width: 65%;
    left: -20px;
  }
}
@media only screen and (min-width: 1015px) {
  .category-collection__item--main {
    left: -30px;
  }
}
@media only screen and (min-width: 1015px) {
  .category-collection__item--main .category-collection__content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 60%;
    padding: 0 20px 20px;
    z-index: 2;
    margin: 0;
  }
}
.category-collection__item--main .category-collection__title {
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 1015px) {
  .category-collection__item--main .category-collection__title {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.category-collection__item--main .category-collection__title svg {
  display: none;
}
@media only screen and (min-width: 1015px) {
  .category-collection__item--main .category-collection__title svg {
    display: block;
    height: 3px;
    width: 100%;
    bottom: -2px;
    left: 0;
    position: absolute;
    fill: #fd3670;
  }
}
@media only screen and (min-width: 1015px) {
  .category-collection__item--main .category-collection__desc {
    margin-bottom: 20px;
  }
}
.category-collection__item--main .category-collection__link {
  display: block;
}
.category-collection__item--main > a {
  padding-top: 62.5%;
}
@media only screen and (min-width: 765px) {
  .category-collection__item--main > a {
    padding-top: 76.25%;
  }
  .category-collection__item--main > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: url("../../frontend/Graham/default/en_GB/img/border_image.png") repeat bottom left;
    background-size: contain;
    z-index: 2;
  }
  .category-collection__item--main > a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    border: 15px solid;
    -o-border-image: url("../../frontend/Graham/default/en_GB/img/border_image_alt.png") 15/15px round;
       border-image: url("../../frontend/Graham/default/en_GB/img/border_image_alt.png") 15/15px round;
  }
}
@media only screen and (min-width: 765px) {
  .category-collection__item--side {
    width: 35%;
  }
}
@media only screen and (min-width: 1015px) {
  .category-collection__item--side .category-collection__content {
    position: absolute;
    bottom: -1px;
    left: 0;
    margin: 0;
  }
}
/*========================================
Product page Layout
========================================*/
.product {
  zoom: 1;
}
.product:before, .product:after {
  content: "";
  display: table;
}
.product:after {
  clear: both;
}
.product__media {
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .product__media {
    width: 50%;
    float: left;
  }
}
.product__info {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 765px) {
  .product__info {
    width: 50%;
    float: right;
    padding-left: 20px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1015px) {
  .product__info {
    padding-left: 60px;
  }
}
.product__info .page-title__heading {
  font-size: 24px;
  font-size: 1.5rem;
}
.product__info .field {
  max-width: none;
}
.product__info-bottom {
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .product__info-bottom {
    padding-top: 10px;
    margin-bottom: 30px;
  }
}
.product__info-callout {
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .product__info-callout {
    margin-bottom: 30px;
  }
}
.product__info-attrs {
  min-height: 100px;
  background: url("../../frontend/Graham/default/en_GB/img/spinner.gif") center no-repeat;
  background-size: 20px 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 765px) {
  .product__info-attrs {
    margin-top: 30px;
  }
}
.product__info-attrs--ready {
  background: none;
}
.bg-callout {
  padding: 10px 15px;
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
}
.bg-callout p {
  margin-bottom: 0;
}
.bg-callout a {
  color: #000000;
  font-weight: bold;
}
.product__related {
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .product__related {
    width: 50%;
    float: left;
    clear: left;
  }
}
.product-upsell,
.product-bestseller {
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg") repeat;
  background-size: 250px;
}
@media only screen and (min-width: 1015px) {
  .product-upsell,
.product-bestseller {
    padding-bottom: 20px;
  }
}
.product-bestseller {
  margin-bottom: 20px;
}
/*========================================
Product page gallery
========================================*/
.gallery {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .gallery {
    padding-bottom: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1015px) {
  .gallery {
    margin-bottom: 20px;
  }
}
.gallery--ready {
  transition: opacity 0.3s;
  opacity: 1;
}
.gallery__placeholder {
  width: 100%;
  padding-bottom: 100%;
  background: url("../../frontend/Graham/default/en_GB/img/spinner.gif") center no-repeat;
  background-size: 30px;
}
.page-product-configurable-mto .gallery__placeholder {
  padding-bottom: 61.5%;
}
.quick-shop-gallery .gallery__placeholder {
  padding-bottom: 100%;
}
.gallery__viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
@media only screen and (min-width: 765px) {
  .gallery__viewport {
    height: 100%;
  }
}
.gallery__viewport.flickity-enabled.loading {
  opacity: 0;
  visibility: hidden;
}
.gallery__viewport .flickity-page-dots .dot {
  border: 2px solid transparent;
  background-color: transparent;
}
.gallery__viewport .flickity-page-dots .dot:after {
  background-color: #c5c5c5;
}
.gallery__viewport .flickity-page-dots .dot.is-selected {
  border-color: #fd3670;
}
.gallery__viewport .flickity-page-dots .dot.is-selected:after {
  background-color: transparent;
}
@media only screen and (min-width: 765px) {
  .gallery__viewport .flickity-page-dots {
    display: none;
  }
}
.gallery__image {
  display: block;
  width: 100%;
}
/*========================================
Product page gallery nav
========================================*/
.gallery-nav {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 765px) {
  .gallery-nav {
    display: block;
  }
}
.gallery-nav--ready {
  opacity: 1;
}
.gallery-nav__viewport {
  list-style: none;
  margin: 0;
  white-space: nowrap;
  width: calc(100% + 20px);
  margin-left: -10px;
}
.gallery-nav__viewport .gallery-nav__item {
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
}
.gallery-nav__viewport .flickity-prev-next-button.previous {
  left: 10px;
}
.gallery-nav__viewport .flickity-prev-next-button.next {
  right: 10px;
}
.gallery-nav__viewport .gallery-nav__item {
  display: inline-block;
}
.gallery-nav__viewport.flickity-enabled .gallery-nav__image {
  opacity: 1;
}
.gallery-nav__viewport.flickity-enabled.loading .gallery-nav__image {
  opacity: 0;
}
.gallery-nav__viewport.flickity-enabled .gallery-nav__item {
  display: block;
}
.gallery-nav__item {
  position: relative;
  cursor: pointer;
}
.gallery-nav__item:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background: url("../../frontend/Graham/default/en_GB/img/spinner.gif") center no-repeat;
  background-size: 30px;
}
.page-product-configurable-mto .gallery-nav__item:after {
  padding-bottom: 61.5%;
}
.gallery-nav__image {
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  width: calc(100% - 20px);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-nav__placeholder {
  height: 0;
  padding-bottom: calc(25% - 20px);
}
.gallery-nav__viewport {
  position: absolute;
  top: 0;
  left: 0;
}
/*========================================
Product page: Right column info
========================================*/
.product__info-attribute {
  margin-bottom: 10px;
}
@media only screen and (min-width: 765px) {
  .product__info-attribute.overview {
    margin-bottom: 10px;
  }
}
.product__info-attribute.sku {
  display: inline-block;
}
.product__info-eta + .product__info-attribute.sku {
  margin-left: 5px;
}
.product__info-eta + .product__info-attribute.sku:before {
  content: "-";
}
.product__info-attribute.sku .product__info-attribute-type {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1015px) {
  .product__info-attribute.sku .product__info-attribute-type {
    font-size: 16px;
    font-size: 1rem;
  }
}
.product__info-attribute.sku .product__info-attribute-value {
  display: inline-block;
  margin-left: 5px;
  font-size: 14px;
  font-size: 0.875rem;
}
.product__info-attribute-value {
  margin-left: 5px;
}
.product__info-eta {
  margin-left: 5px;
  margin-bottom: 0;
}
.product__info-price {
  margin-bottom: 10px;
}
.product-reviews-summary.empty {
  display: none;
}
.product__info-form {
  margin-bottom: 20px;
}
.product__info-sku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0 10px;
}
.product__info-sku.loading {
  opacity: 0;
}
.product__info-social-wrapper {
  position: relative;
}
.product__info-social {
  border-top: 1px solid #e6e6e6;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) {
  .product__info-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product__info-related {
  display: none;
}
@media only screen and (min-width: 765px) {
  .product__info-related {
    display: block;
    margin-bottom: 20px;
  }
}
.product__info-jump-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
}
.product__info-jump-link {
  display: block;
  margin: 0 15px;
  text-align: center;
  color: #454545;
  text-decoration: none;
  position: relative;
  font-weight: normal;
}
.product__info-jump-link img {
  display: none;
  color: #fd3670;
}
@media only screen and (min-width: 1015px) {
  .product__info-jump-link img {
    display: block;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    position: absolute;
    z-index: 3;
    transition: width ease-in-out 0.4s;
  }
  @supports ((-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%)) or (clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%))) {
    .product__info-jump-link img {
      -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
              clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
      transition: all cubic-bezier(1, 0.04, 0.99, 0.4) 0.4s;
      width: 100%;
    }
  }
}
.product__info-jump-link:hover, .product__info-jump-link:focus {
  text-decoration: none;
  color: #454545;
}
.product__info-jump-link:hover img, .product__info-jump-link:focus img {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
/*========================================
Product page: Social links
========================================*/
.product-social__addto {
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 0 8px;
}
@media only screen and (min-width: 1200px) {
  .product-social__addto {
    border-bottom: none;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 15px 20px 0 0;
  }
}
.product-social__addto a {
  display: block;
  width: 100%;
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
}
@media only screen and (min-width: 1200px) {
  .product-social__addto a {
    font-size: 12px;
    font-size: 0.75rem;
    text-align: left;
    padding-right: 20px;
    border-right: 1px solid #e6e6e6;
  }
}
.product-social__addto a:hover, .product-social__addto a:focus {
  cursor: pointer;
}
.product-social__addto a:hover .svg-icon, .product-social__addto a:focus .svg-icon {
  color: #ec668d;
}
.product-social__addto a .svg-icon {
  position: relative;
  top: -2px;
  width: 1.2em;
  height: 1.2em;
  margin-right: 20px;
  color: #c5c5c5;
  transition: all ease 0.3s;
}
@media only screen and (min-width: 1200px) {
  .product-social__addto a .svg-icon {
    width: 1.5em;
    height: 1.5em;
    top: -1px;
    margin-right: 10px;
  }
}
.product-social__addto a .svg-icon.active {
  color: #fd3670;
}
.product-social__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding-top: 20px;
  list-style: none;
}
@media only screen and (min-width: 1200px) {
  .product-social__share {
    padding: 15px 0 0;
    margin-left: auto;
  }
}
.product-social__share-item {
  border-left: 1px solid #e6e6e6;
  line-height: 2;
  padding: 0 20px;
}
.product-social__share-item:nth-child(2) {
  border: none;
}
.product-social__share-item:first-child {
  border: none;
}
@media only screen and (min-width: 1200px) {
  .product-social__share-item {
    margin-left: 10px;
    padding: 0 0 0 10px;
  }
}
.product-social__share-item--title {
  display: none;
  font-weight: 400;
  line-height: 2;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  white-space: nowrap;
}
@media only screen and (min-width: 1200px) {
  .product-social__share-item--title {
    display: block;
  }
}
.product-social__share-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-social__share-link .svg-icon {
  width: 1.4em;
  height: 1.4em;
  color: #c5c5c5;
  transition: all ease 0.3s;
}
@media only screen and (min-width: 1200px) {
  .product-social__share-link .svg-icon {
    width: 1.5em;
    height: 1.5em;
  }
}
.product-social__share-link:hover .svg-icon {
  color: grey;
}
.product-social--wishlist {
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .product-social--wishlist {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.product-social--wishlist .product-social__share {
  padding-top: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (min-width: 765px) {
  .product-social--wishlist .product-social__share {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.product-social--wishlist .product-social__share-item {
  margin-left: 20px;
  padding: 0 0 0 20px;
}
@media only screen and (max-width: 764px) {
  .product-social--wishlist .product-social__share-item:nth-child(2) {
    margin-left: auto;
  }
}
.product-social--wishlist .product-social__share-item--title {
  display: block;
  padding-left: 0;
  margin-left: 0;
}
.form-wishlist-items ~ .product-social--wishlist {
  margin-bottom: 40px;
  border-top: 1px solid #e6e6e6;
  padding-top: 20px;
  position: static;
}
@media only screen and (min-width: 1015px) {
  .form-wishlist-items ~ .product-social--wishlist {
    margin-top: 30px;
  }
}
/*========================================
Grouped product block on product page
========================================*/
.page-product-grouped .product-add__submit {
  width: 100%;
  margin: 0;
}
.product-grouped__list {
  margin-left: 0;
  margin-bottom: 20px;
  list-style: none;
  padding-top: 20px;
}
.product-grouped__item {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}
.product-grouped__item:first-child {
  border-top: 1px solid #e6e6e6;
}
.product-grouped__content {
  width: 100%;
}
@media only screen and (min-width: 1360px) {
  .product-grouped__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product-grouped__availability {
  margin-bottom: 0;
  padding-top: 10px;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1200px) {
  .product-grouped__availability {
    padding-top: 0;
  }
}
.product-grouped__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1200px) {
  .product-grouped__info {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-bottom: 0;
    padding-right: 20px;
  }
}
.product-grouped__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .product-grouped__actions {
    width: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.product-grouped__actions .price-container {
  font-size: 16px;
  font-size: 1rem;
}
.product-grouped__actions .product-add__qty {
  margin: 0 0 0 auto;
  padding-left: 20px;
}
@media only screen and (min-width: 1360px) {
  .product-grouped__actions .price-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
                -ms-grid-row-align: flex-end;
            align-items: flex-end;
  }
}
.product-grouped__stock {
  width: 100%;
  padding-top: 10px;
  text-align: right;
  color: #fd3670;
  font-size: 14px;
  font-size: 0.875rem;
}
.product-grouped__image {
  width: 50px;
}
@media only screen and (min-width: 1015px) {
  .product-grouped__image {
    width: 80px;
  }
}
.product-grouped__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0;
  padding: 0 0 0 20px;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1015px) {
  .product-grouped__title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.product-grouped__sku {
  display: block;
  font-weight: 100;
  font-size: 14px;
  font-size: 0.875rem;
}
/*========================================
Product page: Stock alert
========================================*/
.stock-alert--grouped {
  padding-top: 10px;
}
.stock-alert--grouped label {
  text-align: right;
}
/*========================================
Stock notification
========================================*/
.stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.stock + .availability:before,
.stock + .product__info-attribute:before {
  content: "–";
  padding: 0 4px;
}
.availability {
  margin-bottom: 10px;
  margin-right: 5px;
}
.stock--unavailable .stock__icon {
  color: #fd3670;
}
.stock--available .stock__icon {
  color: #98ce6a;
}
.stock__icon {
  margin-right: 10px;
  width: 1.2em;
  height: 1.2em;
}
.stock__icon--circle-dots {
  color: #fec584;
}
.stock__icon--circle-cross {
  color: #fd3670;
}
.stock__icon--circle-complete {
  color: #98ce6a;
}
.category-sofas .toolbar .toolbar__all {
  display: none;
}
/*========================================
Product page: Related content
========================================*/
.related-content__link {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.related-content__link:before, .related-content__link:after {
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: #777;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.related-content__link:after {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}
.related-content__image {
  position: relative;
  z-index: 1;
  border: 6px solid #ffffff;
  box-shadow: 0 0 5px #c5c5c5;
}
/*========================================
Product page MTO: Detail
========================================*/
.mto-detail {
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (min-width: 765px) {
  .mto-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0;
    border-bottom: 0;
  }
}
.mto-detail__banner {
  display: none;
}
@media only screen and (min-width: 765px) {
  .mto-detail__banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 764px) {
  .mto-detail__button {
    width: 100%;
    position: relative;
    padding: 10px 0 8px;
    line-height: 2;
    font-size: 14px;
    font-size: 0.875rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    border: none;
    border-top: 1px solid #e6e6e6;
    background-color: #ffffff;
  }
}
@media only screen and (max-width: 764px) and (min-width: 1015px) {
  .mto-detail__button {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 764px) {
  .mto-detail__button .svg-icon {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #000000;
  }
}
@media only screen and (min-width: 765px) {
  .mto-detail__button {
    display: none;
  }
}
.mto-detail__content {
  display: none;
  padding-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .mto-detail__content {
    display: block;
    width: calc(33.3333% - ((20px * 2) / 3));
    margin-right: 20px;
    padding-bottom: 40px;
  }
  .mto-detail__content:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .mto-detail__content {
    width: calc(33.3333% - ((40px * 2) / 3));
    margin-right: 40px;
  }
}
.mto-detail__content.active {
  display: block;
}
.mto-detail__desc:last-of-type {
  margin-bottom: 0;
}
/*========================================
Product page MTO: Insights
========================================*/
.mto-insight {
  padding-top: 10px;
}
@media only screen and (min-width: 765px) {
  .mto-insight {
    padding-top: 20px;
    margin-top: 10px;
    border-top: 1px solid #e6e6e6;
  }
}
@media only screen and (min-width: 1015px) {
  .mto-insight {
    padding-top: 40px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 764px) {
  .mto-insight__button {
    width: 100%;
    position: relative;
    padding: 10px 0 8px;
    line-height: 2;
    font-size: 14px;
    font-size: 0.875rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    border: none;
    border-top: 1px solid #e6e6e6;
    background-color: #ffffff;
  }
}
@media only screen and (max-width: 764px) and (min-width: 1015px) {
  .mto-insight__button {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 764px) {
  .mto-insight__button .svg-icon {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #000000;
  }
}
@media only screen and (min-width: 765px) {
  .mto-insight__button {
    display: none;
  }
}
.mto-insight__content {
  display: none;
  padding-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .mto-insight__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-width: 1015px) {
  .mto-insight__content {
    padding-bottom: 40px;
  }
}
.mto-insight__content.active {
  display: block;
}
@media only screen and (min-width: 765px) {
  .mto-insight__content--alt .mto-insight__details {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .mto-insight__content--alt .mto-insight__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.mto-insight__image {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
@media only screen and (min-width: 765px) {
  .mto-insight__image {
    width: calc(50% - 20px);
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 765px) {
  .mto-insight__details {
    width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 1015px) {
  .mto-insight__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.mto-insight__desc:last-of-type {
  margin-bottom: 0;
}
/*========================================
Product page MTO: Specifications
========================================*/
@media only screen and (min-width: 1015px) {
  .mto-specification {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 765px) {
  .mto-specification__banner {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1015px) {
  .mto-specification__banner {
    padding: 30px 30px 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .mto-specification__dimensions {
    width: calc(65% - 20px);
    margin-right: 40px;
    background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
    background-size: 250px;
  }
}
@media only screen and (min-width: 1200px) {
  .mto-specification__dimensions {
    width: calc(70% - 20px);
  }
}
@media only screen and (min-width: 1015px) {
  .mto-specification__fabrics {
    width: calc(35% - 20px);
    background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
    background-size: 250px;
  }
}
@media only screen and (min-width: 1200px) {
  .mto-specification__fabrics {
    width: calc(30% - 20px);
  }
}
/*========================================
Product page MTO: Specifications Dimensions
========================================*/
.specification-dimension {
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
  background-size: 250px;
  padding: 20px;
}
@media only screen and (min-width: 765px) {
  .specification-dimension {
    padding: 30px;
  }
}
@media only screen and (min-width: 1015px) {
  .specification-dimension {
    background: none;
  }
}
@media only screen and (min-width: 765px) {
  .specification-dimension__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
}
.specification-dimension__heading {
  padding-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
}
@media only screen and (min-width: 765px) {
  .specification-dimension__heading {
    width: calc(65% - 40px);
    margin-bottom: 0;
    margin-right: 40px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .specification-dimension__heading {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.specification-dimension__dd {
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .specification-dimension__dd {
    width: 35%;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 765px) {
  .specification-dimension__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 40px;
  }
}
.specification-dimension__image {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .specification-dimension__image {
    width: calc(65% - 40px);
    margin-bottom: 0;
    margin-right: 40px;
  }
}
.specification-dimension__image--secondary {
  width: 60%;
  margin: 0 auto 20px;
}
@media only screen and (min-width: 765px) {
  .specification-dimension__image--secondary {
    width: 35%;
    margin: 0;
  }
}
@media only screen and (min-width: 765px) {
  .specification-dimension__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 765px) {
  .specification-dimension__content {
    width: calc(50% - 20px);
    margin-right: 40px;
  }
  .specification-dimension__content:nth-child(even) {
    margin-right: 0;
  }
}
.specification-dimension__title {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 5px;
}
/*========================================
Product page MTO: Specifications Fabrics
========================================*/
.specification-fabrics {
  padding: 0 20px 20px;
}
@media only screen and (min-width: 765px) {
  .specification-fabrics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
    background-size: 250px;
    padding: 30px;
  }
}
@media only screen and (min-width: 1015px) {
  .specification-fabrics {
    display: block;
    background: none;
  }
}
@media only screen and (min-width: 765px) {
  .specification-fabrics__select {
    width: calc(40% - 20px);
  }
}
@media only screen and (min-width: 1015px) {
  .specification-fabrics__select {
    width: 100%;
  }
}
.specification-fabrics__dd {
  margin-bottom: 20px;
}
.specification-fabrics__image {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .specification-fabrics__image {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .specification-fabrics__image {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 765px) {
  .specification-fabrics__content {
    width: calc(60% - 20px);
  }
}
@media only screen and (min-width: 1015px) {
  .specification-fabrics__content {
    width: 100%;
  }
}
.specification-fabrics__title {
  padding-top: 0;
  font-size: 20px;
  font-size: 1.25rem;
}
.specification-fabrics__desc:last-of-type {
  margin-bottom: 0;
}
.complete-the-collection {
  position: relative;
  overflow-x: hidden;
}
.complete-the-collection--fetching {
  min-height: 100px;
}
.product-list__list--carousel {
  display: block;
  list-style: none;
  white-space: nowrap;
  margin-bottom: 20px;
  overflow: hidden;
  width: calc(100% + 20px);
  margin-left: -10px;
}
.product-list__list--carousel .product-list__item--carousel {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}
.product-list__list--carousel .flickity-prev-next-button.previous {
  left: 10px;
}
.product-list__list--carousel .flickity-prev-next-button.next {
  right: 10px;
}
.product-list__list--carousel .flickity-prev-next-button {
  top: calc((100% - 65px) /2);
}
@media only screen and (min-width: 1015px) {
  .product-list__list--carousel .flickity-prev-next-button {
    top: calc((100% - 75px) /2);
  }
}
.product-list__list--carousel .flickity-page-dots .dot {
  border: 2px solid transparent;
  background-color: transparent;
}
.product-list__list--carousel .flickity-page-dots .dot:after {
  background-color: #c5c5c5;
}
.product-list__list--carousel .flickity-page-dots .dot.is-selected {
  border-color: #fd3670;
}
.product-list__list--carousel .flickity-page-dots .dot.is-selected:after {
  background-color: transparent;
}
@media only screen and (min-width: 765px) {
  .product-list__list--carousel .flickity-page-dots {
    display: none;
  }
}
.product-list__list--carousel.flickity-enabled .product-list__item--carousel {
  display: block;
}
.product-list__item--carousel {
  margin: 0;
  display: inline-block;
}
.product-list__item--carousel .product-item__image-link {
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  display: block;
}
@media only screen and (min-width: 765px) {
  .product-list__item--carousel .product-item__details {
    max-height: 65px;
  }
  .product-list__item--carousel .product-item__details .product-item__title {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-list__item--carousel .product-item__details .product-item__link {
    white-space: nowrap;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1015px) {
  .product-list__item--carousel .product-item__details {
    max-height: 75px;
  }
}
.drift-zoom-pane {
  left: 20px;
  max-width: calc(100% - 20px);
  height: 0;
  padding-bottom: 100%;
}
.quick-shop {
  position: relative;
  min-height: 200px;
}
@media only screen and (min-width: 765px) {
  .quick-shop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.quick-shop .gallery {
  margin-bottom: 0;
}
.quick-shop .gallery__viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.quick-shop .gallery__viewport .flickity-page-dots .dot {
  border: 2px solid transparent;
  background-color: transparent;
}
.quick-shop .gallery__viewport .flickity-page-dots .dot:after {
  background-color: #ffffff;
}
.quick-shop .gallery__viewport .flickity-page-dots .dot.is-selected {
  border-color: #ffffff;
}
.quick-shop .gallery__viewport .flickity-page-dots .dot.is-selected:after {
  background-color: transparent;
}
@media only screen and (min-width: 765px) {
  .quick-shop .gallery__viewport .flickity-page-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.quick-shop__cta {
  margin-bottom: 20px;
}
.quick-shop-gallery {
  position: relative;
}
@media only screen and (min-width: 765px) {
  .quick-shop-gallery {
    width: 55%;
  }
}
.quick-shop-info {
  padding-top: 20px;
  position: relative;
}
@media only screen and (min-width: 765px) {
  .quick-shop-info {
    width: 45%;
    padding-top: 0;
    padding-left: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.quick-shop-info .page-title__heading {
  font-size: 24px;
  font-size: 1.5rem;
}
@media only screen and (min-width: 1015px) {
  .checkout-cart-index .quick-shop-info .page-title__heading {
    display: block;
  }
}
.quick-shop-info__price {
  padding-top: 20px;
  margin-bottom: 10px;
}
.quick-shop-info__link {
  width: 100%;
  position: relative;
}
.quick-shop-info__link .svg-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
.quick-shop-info__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e6e6e6;
  margin-bottom: 10px;
}
.quick-shop-popup .mfp-content {
  position: relative;
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}
/* overlay at start */
.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.options-list.nested {
  padding-top: 0;
}
.options-list .field {
  position: relative;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.options-list .field .checkbox {
  margin: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.options-list .field .checkbox:checked {
  border-color: #98ce6a;
}
.options-list .field .checkbox:checked:after {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../../frontend/Graham/default/en_GB/img/icon_tick.svg") no-repeat center #98ce6a;
  background-size: 12px;
}
.options-list .field .checkbox:checked + label {
  border-color: #98ce6a;
}
.options-list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 400;
  line-height: 1.5;
  border: 2px solid #e6e6e6;
  padding: 5px 40px 3px 10px;
}
.options-list label:after {
  display: none;
}
.price-notice {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 10px;
}
.price-notice .price-container {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #6a6a6a;
}
/*========================================
Search Page
========================================*/
.search-hero {
  padding: 20px 10px;
  background-color: #fefbf6;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (min-width: 1015px) {
  .search-hero {
    padding: 30px;
    margin-bottom: 30px;
  }
}
.search-hero__title {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 20px;
  padding: 0;
  font-weight: 400;
}
@media only screen and (min-width: 1015px) {
  .search-hero__title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.search-hero__title svg {
  width: 100%;
  height: 3px;
  bottom: -8px;
  left: 0;
  position: absolute;
  fill: #c5a666;
}
.search-hero__result {
  padding: 0;
  margin-bottom: 0;
  text-transform: none;
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0;
}
@media only screen and (min-width: 765px) {
  .search-hero__result {
    font-size: 32px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.search-hero__result:before, .search-hero__result:after {
  content: '"';
}
/*========================================
Customer login page
========================================*/
.customer-login {
  margin: -20px -20px 0;
}
@media only screen and (min-width: 765px) {
  .customer-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .customer-login {
    margin: 0 0 30px;
  }
}
.customer-login__current {
  padding: 40px 20px;
  background-color: #6eaab6;
  text-align: center;
}
@media only screen and (min-width: 765px) {
  .customer-login__current {
    width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 1200px) {
  .customer-login__current {
    padding: 60px 40px;
  }
}
.customer-login__current .page-title__heading {
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}
.customer-login__form {
  color: #ffffff;
  text-align: center;
  max-width: 23em;
  margin: 0 auto;
}
.customer-login__form .field {
  margin-bottom: 30px;
}
.customer-login__form .field.password {
  margin-bottom: 10px;
}
.customer-login__form-msg {
  padding-top: 10px;
  margin-bottom: 30px;
}
.customer-login__form-reminder {
  display: block;
  margin-bottom: 30px;
  text-decoration: underline;
  color: #ffffff;
}
.customer-login__form-submit {
  border-color: #ffffff;
  width: 100%;
}
.customer-login__new {
  padding: 40px 20px;
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg") repeat;
  background-size: 250px;
  text-align: center;
}
@media only screen and (min-width: 765px) {
  .customer-login__new {
    width: calc(50% - 10px);
    margin-left: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .customer-login__new {
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 764px) {
  .customer-login__new-content {
    max-width: 23em;
    margin: 0 auto;
  }
}
.customer-login__new-title {
  padding: 0;
  line-height: 1.4;
}
.customer-login__new-desc {
  max-width: 420px;
  margin: 0 auto;
}
.customer-login__benefits {
  margin-left: 0;
  margin-bottom: 40px;
  padding-top: 10px;
  list-style: none;
}
@media only screen and (min-width: 765px) {
  .customer-login__benefits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.customer-login__benefits-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
.customer-login__benefits-item:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 765px) {
  .customer-login__benefits-item {
    width: calc(33.3333333333% - 6.6666666667px);
    margin-left: 0;
    margin-right: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 765px) and (max-width: 1014px) {
  .customer-login__benefits-item:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .customer-login__benefits-item {
    width: calc(33.3333333333% - 13.3333333333px);
    margin-left: 0;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1015px) and (max-width: 1199px) {
  .customer-login__benefits-item:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .customer-login__benefits-item {
    width: calc(33.3333333333% - 26.6666666667px);
    margin-left: 0;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 9998px) {
  .customer-login__benefits-item:nth-child(3n+3) {
    margin-right: 0;
  }
}
.customer-login__benefits-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media only screen and (min-width: 765px) {
  .customer-login__benefits-text {
    background-color: #ffffff;
  }
}
.customer-login__benefits-img {
  display: block;
  max-width: 80px;
}
@media only screen and (min-width: 765px) {
  .customer-login__benefits-img {
    max-width: 100%;
  }
}
.customer-login__benefits-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  padding-left: 10px;
}
@media only screen and (min-width: 765px) {
  .customer-login__benefits-text {
    padding: 5px;
  }
}
/*========================================
Forgotten Password page
========================================*/
.customer-forgot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto;
  padding: 0;
  background: url("../../frontend/Graham/default/en_GB/img/img_forgotpassword-mobile.jpg") no-repeat;
  background-size: contain;
  width: 280px;
  height: 363px;
}
@media only screen and (min-width: 765px) {
  .customer-forgot {
    width: 705px;
    height: 458px;
    margin: 80px auto;
    background: url("../../frontend/Graham/default/en_GB/img/img_forgotpassword.jpg") no-repeat;
    background-size: contain;
  }
}
.customer-forgot__content {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: 0 30px 40px 20px;
}
@media only screen and (min-width: 765px) {
  .customer-forgot__content {
    margin: 0 auto;
    max-width: 380px;
    padding: 0 0 60px 0;
  }
}
.customer-forgot__content .page-title__heading {
  font-size: 16px;
  font-size: 1rem;
  color: #6eaab6;
  font-weight: 400;
  margin-bottom: 10px;
}
@media only screen and (min-width: 765px) {
  .customer-forgot__content .page-title__heading {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.customer-forgot__desc {
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 765px) {
  .customer-forgot__desc {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 764px) {
  .customer-forgot__form label {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.customer-forgot__form-submit {
  width: 100%;
}
/*========================================
Register for an account page
========================================*/
.customer-account-create {
  background-color: #fefbf6;
}
.customer-register {
  max-width: 360px;
  margin: 0 auto;
  padding: 10px 0 20px;
}
@media only screen and (min-width: 765px) {
  .customer-register {
    padding: 30px 0 80px;
  }
}
.customer-register .page-title__heading {
  margin-bottom: 40px;
}
.customer-register__submit {
  width: 100%;
  margin-bottom: 10px;
}
.customer-register__back {
  display: block;
  text-align: center;
}
/*========================================
Register for an account page
========================================*/
.customer-account-confirmation {
  background-color: #fefbf6;
}
.customer-confirmation {
  max-width: 360px;
  margin: 0 auto;
  padding: 10px 0 20px;
}
@media only screen and (min-width: 765px) {
  .customer-confirmation {
    padding: 30px 0 80px;
  }
}
.customer-confirmation .page-title__heading {
  margin-bottom: 40px;
}
.customer-confirmation__submit {
  width: 100%;
  margin-bottom: 10px;
}
.customer-confirmation__back {
  display: block;
  text-align: center;
}
/*========================================
Logout page
========================================*/
.customer-account-logoutsuccess .page-title {
  margin-bottom: 20px;
}
.customer-account-logoutsuccess .columns {
  padding-top: 30px;
  padding-bottom: 40px;
}
.customer-account-createpassword .page-title {
  margin-bottom: 20px;
}
.wishlist-shared-index .page-title-wrapper {
  margin-bottom: 20px;
}
.wishlist-shared-index .page-title-wrapper .page-title {
  font-size: 20px;
  font-size: 1.25rem;
  padding: 0;
}
@media only screen and (min-width: 1015px) {
  .wishlist-shared-index .page-title-wrapper .page-title {
    font-size: 32px;
    font-size: 2rem;
  }
}
.wishlist-shared-index .actions-toolbar {
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .wishlist-shared-index .actions-toolbar {
    margin-bottom: 40px;
  }
}
.wishlist-shared-index .actions-toolbar .primary {
  margin-right: 20px;
}
.table.data.wishlist {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1014px) {
  .table.data.wishlist {
    border-top: 1px solid #000000;
  }
}
.table.data.wishlist tr {
  padding: 0;
}
@media only screen and (max-width: 1014px) {
  .table.data.wishlist tr {
    border-bottom: 1px solid #000000;
  }
}
.table.data.wishlist .table-caption {
  display: none;
}
.table.data.wishlist .col.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.table.data.wishlist .col.product .product.photo {
  display: none;
  max-width: 100px;
}
@media only screen and (min-width: 1015px) {
  .table.data.wishlist .col.product .product.photo {
    display: block;
  }
}
.table.data.wishlist .col.product .product.info {
  width: 100%;
  text-align: right;
}
@media only screen and (min-width: 1015px) {
  .table.data.wishlist .col.product .product.info {
    text-align: left;
  }
}
.table.data.wishlist .col.product .product.name {
  display: block;
}
@media only screen and (min-width: 765px) {
  .table.data.wishlist .col.product .product.name {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.table.data.wishlist .col.product .product.name a {
  display: block;
  text-decoration: none;
  color: #000000;
}
.table.data.wishlist .col.product .price-as-configured {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
}
@media only screen and (min-width: 1015px) {
  .table.data.wishlist .col.product .price-as-configured {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.table.data.wishlist .col.product .price-container {
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 765px) {
  .table.data.wishlist .col.product .price-container {
    font-size: 16px;
    font-size: 1rem;
  }
}
.table.data.wishlist .col.actions {
  text-align: right;
}
.table.data.wishlist .col.actions .action.tocart {
  background: none;
  border: none;
  padding: 0;
  color: #000000;
  color: #6eaab6;
  text-decoration: underline;
}
.table.data.wishlist .col.actions .action.tocart:hover, .table.data.wishlist .col.actions .action.tocart:focus {
  color: #000000;
  background: none;
}
.table.data.wishlist .col.actions .action.towishlist {
  display: block;
}
/*========================================
Account Pages: default layout styles
========================================*/
.account .columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 764px) {
  .account .columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 764px) {
  .account .column {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
/*========================================
Account Pages: default Block styles
========================================*/
.block,
.account-block {
  zoom: 1;
  margin-bottom: 30px;
}
.block:before, .block:after,
.account-block:before,
.account-block:after {
  content: "";
  display: table;
}
.block:after,
.account-block:after {
  clear: both;
}
@media only screen and (min-width: 765px) {
  .block,
.account-block {
    padding: 20px;
    border: 1px solid #e6e6e6;
  }
}
@media only screen and (min-width: 1015px) {
  .block,
.account-block {
    padding: 25px;
    margin-bottom: 40px;
  }
}
.block-title,
.account-block legend {
  display: block;
  width: 100%;
  padding-top: 0;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 18px;
  font-size: 1.125rem;
}
.block-title strong,
.account-block legend strong {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.block-title a,
.account-block legend a {
  float: right;
  color: #000000;
  font-size: 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 1015px) {
  .block-title a,
.account-block legend a {
    float: none;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 1015px) {
  .block-title,
.account-block legend {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
.block-content {
  zoom: 1;
}
.block-content:before, .block-content:after {
  content: "";
  display: table;
}
.block-content:after {
  clear: both;
}
.block-dashboard-addresses .block-content,
.block-addresses-default .block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/*========================================
Account Pages: default Box styles
========================================*/
.box,
.account-block fieldset {
  margin-bottom: 20px;
}
.box:last-of-type,
.account-block fieldset:last-of-type {
  margin-bottom: 0;
}
.box-title {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.box-actions a {
  text-decoration: none;
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #e6e6e6;
}
.box-actions a:hover, .box-actions a:focus {
  text-decoration: underline;
}
.box-actions a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.box-billing-address,
.box-shipping-address,
.box-address-billing,
.box-address-shipping {
  width: 100%;
  padding: 20px;
}
@media only screen and (min-width: 1015px) {
  .box-billing-address,
.box-shipping-address,
.box-address-billing,
.box-address-shipping {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(50% - 20px);
    margin-bottom: 0;
  }
  .box-billing-address .box-actions,
.box-shipping-address .box-actions,
.box-address-billing .box-actions,
.box-address-shipping .box-actions {
    margin-top: auto;
  }
}
.box-billing-address,
.box-address-billing {
  background: url(../../frontend/Graham/default/en_GB/img/account_address1.png) no-repeat top right, url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
  background-size: 250px, 200px;
}
@media only screen and (min-width: 1015px) {
  .box-billing-address,
.box-address-billing {
    margin-right: 40px;
  }
}
.box-shipping-address,
.box-address-shipping {
  background: url(../../frontend/Graham/default/en_GB/img/account_address2.png) no-repeat top right, url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
  background-size: 250px, 200px;
}
/*========================================
Account Pages: Hero page title
========================================*/
.account-hero {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  background: url("../../frontend/Graham/default/en_GB/img/banner_account-mobile.jpg") no-repeat bottom left;
  background-size: cover;
}
@media only screen and (max-width: 764px) {
  .account-hero {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (min-width: 765px) {
  .account-hero {
    background: url("../../frontend/Graham/default/en_GB/img/banner_account.jpg") no-repeat bottom left;
    margin-bottom: 30px;
    background-size: cover;
  }
}
@media only screen and (min-width: 1015px) {
  .account-hero {
    margin-bottom: 40px;
  }
}
.account-hero__content {
  padding: 40px 0;
}
@media only screen and (min-width: 765px) {
  .account-hero__content {
    padding: 80px 0;
  }
}
.account-hero__content .page-title {
  display: inline-block;
  position: relative;
}
.account-hero__content .page-title__heading,
.account-hero__content .page-title__heading span {
  display: inline;
}
.account-hero__content svg {
  display: block;
  min-width: 100%;
  height: 3px;
  fill: #c5a666;
  margin-bottom: 30px;
}
.account-hero__content-desc {
  margin-bottom: 0;
}
/*========================================
Account Pages: Navigation
========================================*/
.account-nav {
  border: none;
  padding: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 764px) {
  .account-nav {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (min-width: 765px) {
  .account-nav {
    margin-bottom: 40px;
  }
}
.account-nav__button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.account-nav__button .svg-icon {
  margin-left: auto;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.account-nav__button.active .svg-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media only screen and (min-width: 765px) {
  .account-nav__button {
    display: none;
  }
}
.account-nav__content {
  display: none;
  border: 1px solid #e6e6e6;
  margin-top: -1px;
}
.account-nav__content.active {
  display: block;
}
@media only screen and (min-width: 765px) {
  .account-nav__content {
    display: block;
  }
}
.account-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}
.account-nav__list li {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.account-nav__list li.current {
  color: #fd3670;
}
.account-nav__list li.current a {
  padding: 0;
}
.account-nav__list li.current strong {
  position: relative;
  font-weight: 400;
}
.account-nav__list li.current strong:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: url("../../frontend/Graham/default/en_GB/img/line-02.svg") no-repeat;
  background-size: 100% 3px;
}
.account-nav__list a {
  color: #000000;
}
.account-nav__list a:hover, .account-nav__list a:focus {
  text-decoration: underline;
}
.account-nav__list li.current,
.account-nav__list a {
  display: block;
  padding: 5px 20px;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}
@media only screen and (min-width: 765px) {
  .account-nav__list li.current,
.account-nav__list a {
    line-height: 2;
  }
}
/*========================================
Account Pages: Address book address block
========================================*/
.account-addresses {
  list-style: none;
  margin: 0;
}
@media only screen and (min-width: 1015px) {
  .account-addresses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.account-addresses__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #e6e6e6;
}
.account-addresses__item:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 1015px) {
  .account-addresses__item {
    width: calc(50% - 20px);
    margin-right: 40px;
  }
  .account-addresses__item:nth-child(even) {
    margin-right: 0;
  }
  .account-addresses__item:nth-child(2) {
    margin-top: 0;
  }
}
.account-addresses__item--add {
  position: relative;
  padding: 0 0 50%;
}
@media only screen and (min-width: 1015px) {
  .account-addresses__item--add {
    padding: 0 0 25%;
  }
}
.account-addresses__add-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  background-color: #ffffff;
  transition: background-color ease 0.3s;
}
.account-addresses__add-new:hover, .account-addresses__add-new:focus {
  background-color: #fafafa;
}
.account-addresses__add-new .svg-icon {
  display: block;
  clear: both;
  margin: 0 auto 10px;
  width: 40px;
  height: 40px;
}
.account-addresses__actions {
  padding-top: 20px;
  margin-top: auto;
}
.account-addresses__action {
  text-decoration: none;
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #e6e6e6;
}
.account-addresses__action:hover, .account-addresses__action:focus {
  text-decoration: underline;
}
.account-addresses__action--delete {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
/*========================================
Account Pages: Order history table
========================================*/
.account-orders-history {
  padding-bottom: 20px;
}
.account-orders-history__table {
  margin-bottom: 0;
}
/*========================================
Account Pages: Default actions toolbar styling
========================================*/
.actions-toolbar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.actions-toolbar button:not(.braintree-googlepay-button) {
  display: inline-block;
  padding: 13px 20px 11px;
  width: auto;
  vertical-align: middle;
  background: #6eaab6;
  color: #ffffff;
  border: 1px solid #6eaab6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}
.actions-toolbar button:not(.braintree-googlepay-button):hover, .actions-toolbar button:not(.braintree-googlepay-button):focus {
  color: #ffffff;
  background-color: #5193a0;
  text-decoration: none;
  outline: none;
}
.account .actions-toolbar {
  margin-top: 20px;
}
.account .actions-toolbar .primary .action {
  margin-right: 20px;
}
.checkout-index-index .actions-toolbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.checkout-index-index .actions-toolbar .primary {
  width: 100%;
}
.checkout-index-index .actions-toolbar .primary .action {
  width: 100%;
}
.checkout-index-index .actions-toolbar .primary button + button {
  background-color: transparent;
  border-color: #e6e6e6;
  color: #454545;
  margin-top: 10px;
}
.checkout-index-index .actions-toolbar .primary button + button:hover, .checkout-index-index .actions-toolbar .primary button + button:focus {
  color: #454545;
  background-color: transparent;
  border-color: #cdcdcd;
  text-decoration: none;
}
.checkout-index-index .actions-toolbar .secondary {
  margin-top: 10px;
  width: 100%;
}
.checkout-index-index .actions-toolbar .secondary .action {
  display: inline-block;
  padding: 13px 20px 11px;
  width: auto;
  vertical-align: middle;
  background: #6eaab6;
  color: #ffffff;
  border: 1px solid #6eaab6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  background-color: transparent;
  border-color: #e6e6e6;
  color: #454545;
  margin-top: 10px;
  width: 100%;
}
.checkout-index-index .actions-toolbar .secondary .action:hover, .checkout-index-index .actions-toolbar .secondary .action:focus {
  color: #ffffff;
  background-color: #5193a0;
  text-decoration: none;
  outline: none;
}
.checkout-index-index .actions-toolbar .secondary .action:hover, .checkout-index-index .actions-toolbar .secondary .action:focus {
  color: #454545;
  background-color: transparent;
  border-color: #cdcdcd;
  text-decoration: none;
}
/*========================================
Account Pages: Marketing / Subscriptions
========================================*/
.account-marketing {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1015px) {
  .account-marketing {
    margin-bottom: 40px;
  }
}
.account-marketing__title {
  display: block;
  width: 100%;
  padding-top: 0;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media only screen and (min-width: 1015px) {
  .account-marketing__title {
    margin-bottom: 30px;
  }
}
.account-marketing__container {
  margin-bottom: 30px;
  padding-top: 10px;
}
@media only screen and (min-width: 1015px) {
  .account-marketing__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 40px;
  }
}
.account-marketing__image {
  display: block;
  max-width: 90px;
  margin-bottom: 20px;
  float: right;
}
@media only screen and (min-width: 420px) {
  .account-marketing__image {
    float: left;
    margin-right: 40px;
    max-width: 120px;
  }
}
.account-marketing__detail {
  width: 100%;
  margin-bottom: 30px;
  padding-left: 20px;
}
@media only screen and (min-width: 1015px) {
  .account-marketing__detail {
    margin-bottom: 0;
  }
}
.account-marketing__detail .field {
  position: relative;
  left: -20px;
  margin-bottom: 10px;
}
.account-marketing__detail label {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}
.account-marketing__detail input {
  margin-top: 0;
}
.account-marketing__detail-address {
  overflow: hidden;
}
@media only screen and (min-width: 1015px) {
  .account-marketing__detail-address {
    margin-right: 20px;
  }
}
.account-marketing__detail-action {
  display: block;
  color: #000000;
  margin-top: 20px;
  font-style: italic;
}
.account-marketing__content {
  position: relative;
  width: 100%;
  padding: 20px;
  border: 1px solid #ffffff;
  text-align: center;
  clear: both;
}
.account-marketing__content-title {
  display: table;
  padding: 0 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: -20px auto 0;
  background-color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
}
.account-marketing__content-desc {
  margin-bottom: 0;
}
.account-marketing__action {
  padding-top: 20px;
  border-top: 1px solid #e6e6e6;
}
.account-marketing__container--green .account-marketing__content {
  border-color: #89b14c;
}
.account-marketing__container--green .account-marketing__content-title,
.account-marketing__container--green label {
  color: #89b14c;
}
.account-marketing__container--amber .account-marketing__content {
  border-color: #f7a813;
}
.account-marketing__container--amber .account-marketing__content-title,
.account-marketing__container--amber label {
  color: #f7a813;
}
.account-marketing__container--blue .account-marketing__content {
  border-color: #66a0af;
}
.account-marketing__container--blue .account-marketing__content-title,
.account-marketing__container--blue label {
  color: #66a0af;
}
/*========================================
Account Pages: Marketing subscription page
========================================*/
.marketing-email-subscribe {
  background: url("../../frontend/Graham/default/en_GB/img/pattern_lines.jpg");
  background-size: 100px;
}
.account-subscribe {
  margin-bottom: 30px;
}
@media only screen and (min-width: 765px) {
  .account-subscribe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 1015px) {
  .account-subscribe {
    padding: 20px 0 80px;
  }
}
@media only screen and (min-width: 765px) {
  .account-subscribe__form {
    width: 50%;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1015px) {
  .account-subscribe__form {
    width: 40%;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .account-subscribe__form {
    width: 25%;
    margin-right: 120px;
    margin-left: 40px;
  }
}
.account-subscribe__title {
  font-size: 18px;
  font-size: 1.125rem;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (min-width: 1015px) {
  .account-subscribe__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.account-subscribe__desc {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1015px) {
  .account-subscribe__desc {
    margin-bottom: 40px;
  }
}
.account-subscribe__submit {
  width: 100%;
}
.account-subscribe__image {
  display: block;
  padding-top: 40px;
}
@media only screen and (min-width: 765px) {
  .account-subscribe__image {
    width: calc(50% - 40px);
    padding-top: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .account-subscribe__image {
    width: calc(60% - 40px);
  }
}
@media only screen and (min-width: 1200px) {
  .account-subscribe__image {
    width: calc(75% - (40px * 4));
  }
}
/*========================================
Wishlist: Product Item
========================================*/
.form-wishlist-items {
  position: relative;
}
.product-wishlist {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media only screen and (min-width: 1015px) {
  .product-wishlist {
    display: block;
    background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
    background-size: 250px;
  }
}
.product-wishlist .tooltip {
  display: none;
}
.product-wishlist__image-link {
  display: block;
  width: 50%;
}
@media only screen and (min-width: 1015px) {
  .product-wishlist__image-link {
    width: 100%;
  }
}
.product-wishlist__image {
  display: block;
  width: 100%;
}
.product-wishlist__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  padding: 0 0 0 20px;
}
@media only screen and (min-width: 1015px) {
  .product-wishlist__details {
    width: 100%;
    padding: 20px;
  }
}
.product-wishlist__title {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 420px) {
  .product-wishlist__title {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 5px;
  }
}
.product-wishlist__link {
  color: #000000;
}
.product-wishlist__link:hover, .product-wishlist__link:focus {
  color: #000000;
}
@media only screen and (min-width: 765px) {
  .product-wishlist__add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.product-wishlist__add .product-add__qty {
  margin-right: 10px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 765px) {
  .product-wishlist__add .product-add__qty {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 765px) {
  .product-wishlist__add .product-add__qty .product-add__button {
    display: none;
  }
}
.product-wishlist__add .stock {
  margin-bottom: 0;
}
.product-wishlist__button {
  width: 100%;
}
.product-wishlist__edit,
.product-wishlist__delete {
  position: absolute;
  top: 10px;
  padding: 5px;
  z-index: 1;
  background-color: #ffffff;
}
.product-wishlist__edit .svg-icon,
.product-wishlist__delete .svg-icon {
  display: block;
  width: 0.9em;
  height: 0.9em;
  color: #000000;
}
.product-wishlist__edit {
  left: 10px;
}
.product-wishlist__delete {
  right: 50%;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
@media only screen and (min-width: 1015px) {
  .product-wishlist__delete {
    right: 10px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*========================================
Wishlist: Product Subscription
========================================*/
.product-subscription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding: 20px;
}
@media only screen and (min-width: 765px) {
  .product-subscription {
    -webkit-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
  }
}
.product-subscription.in-stock {
  border: 1px solid #7fb450;
}
.product-subscription.in-stock .product-subscription__submit {
  border: 1px solid #7fb450;
}
.product-subscription.in-stock .product-subscription__stock {
  color: #7fb450;
}
.product-subscription__image-link {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
}
@media only screen and (min-width: 765px) {
  .product-subscription__image-link {
    width: 170px;
  }
}
.product-subscription__image {
  width: 100%;
}
.product-subscription__details {
  padding-left: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.product-subscription__title {
  margin-bottom: 5px;
  padding-top: 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
}
.product-subscription__link {
  display: block;
  color: #000000;
}
.product-subscription__link:hover, .product-subscription__link:focus {
  color: #000000;
  text-decoration: underline;
}
.product-subscription__email {
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.product-subscription__stock {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 20px;
}
.product-subscription__submit {
  width: 100%;
}
.product-subscription-cancel {
  padding-bottom: 30px;
}
.sales-order-view .order-links {
  display: none;
}
.sales-order-view .order-details-items .items-qty {
  list-style: none;
  margin: 0;
}
.sales-order-view .order-details-items .items-qty .title {
  display: none;
}
.sales-order-view .block-order-details-view .table-caption {
  display: none;
}
.order-details-container .order-date .label {
  font-weight: 600;
}
.order-details-container .order-date .label,
.order-details-container .order-date date {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
}
.order-details-container .order-status {
  margin-left: auto;
}
.order-details-container .order-status:before {
  content: "Status: ";
  font-weight: 600;
}
.order-details-container .order-actions-toolbar {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 10px;
}
.order-details-container .order-actions-toolbar .actions {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mmWrapping {
  margin-top: 10px;
  margin-bottom: 20px;
}
.mmWrapping iframe {
  width: 100%;
}
.mmLink {
  color: #48838f;
  font-weight: 600;
  text-decoration: underline;
}
/*========================================
Basket page layout
========================================*/
.checkout-cart-index .page-title {
  display: none;
}
.basket {
  padding-bottom: 20px;
}
@media only screen and (min-width: 1015px) {
  .basket {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 1015px) {
  .basket__products {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 60%;
    padding-right: 80px;
  }
}
@media only screen and (min-width: 1015px) {
  .basket-summary-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 40%;
  }
}
.basket-summary-contents {
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
  background-size: 250px;
}
.basket__summary {
  padding: 0 20px;
}
@media only screen and (min-width: 1015px) {
  .basket__summary {
    padding: 0 40px;
  }
}
.basket__summary-title {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
  font-weight: 600;
}
@media only screen and (min-width: 1015px) {
  .basket__summary-title {
    margin-bottom: 20px;
  }
}
.basket__summary-title-heading {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media only screen and (min-width: 1015px) {
  .basket__summary-title-heading {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.basket__summary-methods {
  padding: 0 20px;
}
.basket__summary-free-delivery {
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.3em;
  margin-bottom: 20px;
}
.basket__summary-free-delivery-highlighted {
  color: deeppink;
}
.basket__summary-extra-actions {
  padding-bottom: 20px;
}
.basket__summary-extra-actions fieldset legend {
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  width: auto;
  border: none;
  padding: 0;
  margin: 0 0 -14px;
  text-align: center;
}
.basket__summary-extra-actions fieldset legend span {
  padding: 0 10px;
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
  background-size: 250px;
}
.basket__summary-extra-actions .paypal {
  padding: 32px 20px 20px;
  border: 1px solid #c5c5c5;
}
.basket__summary-actions {
  list-style: none;
  margin-left: 0;
  margin-bottom: 20px;
  padding: 0 20px;
}
.basket__summary-action {
  position: relative;
  margin: 0 -20px;
}
.basket__summary-action-checkout,
.braintree-paypal-mini-cart-container,
.braintree-applepay-minicart {
  width: 100%;
  margin-bottom: 10px;
}
.basket__gift {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1015px) {
  .basket__gift {
    max-width: 400px;
    margin-bottom: 0;
  }
}
.basket__gift .svg-icon {
  transition: all ease 0.3s;
}
.basket__gift .field {
  margin: 0;
  max-width: 100%;
}
.basket__gift-button,
.basket__discount-button {
  width: 100%;
}
.basket__gift-button .svg-icon,
.basket__discount-button .svg-icon {
  margin-left: auto;
  transition: all ease 0.3s;
}
.basket__gift-button.expanded .svg-icon,
.basket__discount-button.expanded .svg-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media only screen and (max-width: 764px) {
  .basket__gift-button,
.basket__discount-button {
    border: none;
    padding: 0;
  }
}
.basket__gift-content {
  display: none;
}
.basket__gift-content.active {
  display: block;
  padding-top: 20px;
}
.basket__discount {
  padding: 10px 0;
  border-bottom: 1px solid #e6e6e6;
}
.basket__discount .payment-option-content {
  padding-top: 10px;
  padding-bottom: 10px;
}
.basket__discount .payment-option-content .form-discount {
  margin-bottom: 20px;
}
.basket__discount .payment-option-content .messages .message-success {
  color: #7fb450;
}
.basket__discount .payment-option-content .messages .message-error {
  color: #fd3670;
}
.basket__discount .payment-option-content .messages .message:last-child {
  padding: 0;
  margin-bottom: 0;
}
.basket__discount-content {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 600;
  font-size: 16px !important;
}
.basket__discount-content .action span {
  text-decoration: underline;
}
.basket__discount-totals td, .basket__discount-totals th {
  border-bottom: none;
}
.basket__discount-actions {
  margin-left: auto;
}
.basket__discount-actions .svg-icon {
  width: 0.6em;
  height: 0.6em;
}
.basket__discount-actions-remove {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1015px) {
  .basket__discount-actions-remove {
    font-size: 16px !important;
  }
}
.basket__discount-added-message {
  color: green;
}
.basket__discount-added-message:after {
  background: url("../../frontend/Graham/default/en_GB/img/icon_circle-tick.svg") no-repeat;
  background-size: contain;
}
.basket__gift-actions {
  display: block;
}
.basket__gift-actions button {
  width: 100%;
}
.basket__gift-actions button + button {
  margin-top: 20px;
}
.basket__checkout-button {
  width: 100%;
}
.trustpilot-container {
  background: #ffffff;
}
.login_signup-container {
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -ms-grid-column-align: center;
      justify-items: center;
  border-top: 1px solid #e6e6e6;
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
  background-size: 250px;
}
@media only screen and (max-width: 764px) {
  .login_signup-container {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
}
.login_signup-container p {
  color: #000000;
  text-align: center;
  font-size: 16px;
}
.login_signup-container button {
  padding: 10px 10px;
  min-width: 210px;
  border: 1px solid #000000;
  color: #000000;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #ffffff;
  font-size: 14px;
}
.login_signup-container .basket-popup-title {
  -ms-grid-column-span: 2;
  -ms-grid-column: 1;
      grid-column: 1/span 2;
}
@media only screen and (max-width: 764px) {
  .login_signup-container .basket-popup-title {
    -ms-grid-column: 1;
        grid-column: 1;
  }
}
@media only screen and (max-width: 764px) {
  .login_signup-container .login-signup {
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1315px) {
  .basket-customer-login {
    justify-self: end;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1315px) {
  .basket-customer-register {
    justify-self: start;
    margin-left: 20px;
  }
}
.basket-delivery-info {
  overflow: hidden;
  max-height: 0;
}
.basket-delivery-info.active {
  max-height: 100%;
}
@media only screen and (min-width: 1015px) {
  .basket-delivery-info {
    padding-top: 5px;
    margin-bottom: 20px;
    max-height: 100%;
  }
}
.basket-delivery-info__title.active .svg-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.basket-delivery-info__title:hover, .basket-delivery-info__title:focus {
  color: #000000;
}
/*========================================
Basket with no items
========================================*/
.basket-empty {
  padding: 20px 0 40px;
  text-align: center;
}
@media only screen and (min-width: 765px) {
  .basket-empty {
    padding: 30px 0 80px;
  }
}
.basket-empty__title {
  padding-top: 0;
  font-size: 24px;
  font-size: 1.5rem;
}
.basket-empty__desc {
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 40px;
}
.basket-empty__img {
  display: block;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
/*========================================
Basket page products table
========================================*/
.basket-table {
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .basket-table {
    margin-bottom: 0;
  }
}
.basket-table__header {
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (max-width: 764px) {
  .basket-table__header {
    display: none;
  }
}
.basket-table__header tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.basket-table__header-item {
  display: block;
  width: 15%;
  padding: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.875rem;
}
.basket-table__header-item:first-child {
  width: 55%;
}
.basket-table__header-item:nth-child(3) {
  text-align: center;
}
.basket-table__header-item:last-child {
  text-align: right;
}
.basket-table__item {
  width: 100%;
  display: block;
  zoom: 1;
  padding: 20px 0;
  border-bottom: 1px solid #e6e6e6;
}
.basket-table__item:before, .basket-table__item:after {
  content: "";
  display: table;
}
.basket-table__item:after {
  clear: both;
}
.basket-table__item td {
  padding: 0;
}
@media only screen and (min-width: 765px) {
  .basket-table__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 0;
    margin-bottom: 20px;
  }
}
.basket-table__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .basket-table__product {
    width: 55%;
    margin-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
  }
}
.basket-table__product-image {
  display: block;
  width: calc(50% - 10px);
  margin-right: 20px;
}
.basket-table__product-image img {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 765px) {
  .basket-table__product-image {
    width: calc(40% - 20px);
    margin-right: 40px;
  }
}
.basket-table__product-details {
  width: calc(50% - 10px);
}
@media only screen and (min-width: 765px) {
  .basket-table__product-details {
    width: calc(60% - 20px);
    padding-right: 40px;
  }
}
.basket-table__product-title,
.basket-table__product-link {
  color: #000000;
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 0;
  padding-top: 0;
}
@media only screen and (min-width: 765px) {
  .basket-table__product-title,
.basket-table__product-link {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.basket-table__product-sku {
  margin-bottom: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media only screen and (min-width: 1015px) {
  .basket-table__product-sku {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.basket-table__product-price {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #999999;
}
@media only screen and (min-width: 765px) {
  .basket-table__product-price {
    display: none;
  }
}
.basket-table__product-options {
  list-style: none;
  margin: 0;
}
.basket-table__product-options-item {
  margin-bottom: 10px;
  line-height: 1;
  color: #999999;
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (min-width: 1015px) {
  .basket-table__product-options-item {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.basket-table__product-options-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  color: #000000;
}
.basket-table__product-action {
  margin-right: 10px;
  text-decoration: none;
  color: #6a6a6a;
}
.basket-table__product-action:hover, .basket-table__product-action:focus {
  color: #6a6a6a;
}
.basket-table__product-action--wishlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.basket-table__product-action--wishlist:hover .svg-icon, .basket-table__product-action--wishlist:focus .svg-icon {
  color: #fd3670;
}
.basket-table__product-action--wishlist .svg-icon {
  transition: color ease 0.2s;
  margin-left: 10px;
}
.basket-table__price {
  display: none;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 765px) {
  .basket-table__price {
    display: block;
    width: 10%;
    text-align: left;
    vertical-align: middle;
  }
}
.basket-table__qty {
  display: block;
  float: left;
}
@media only screen and (min-width: 765px) {
  .basket-table__qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 25%;
    text-align: center;
  }
}
.basket-table__qty .product-add__qty {
  margin: 0;
}
.basket-table__subtotal {
  margin-left: 20px;
  margin-top: 9px;
  float: left;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
}
@media only screen and (min-width: 765px) {
  .basket-table__subtotal {
    width: 10%;
    text-align: right;
    margin: 0;
  }
}
/*========================================
Basket page products items
========================================*/
.basket-list {
  margin: 0;
}
.basket-table__product-title,
.basket-table__product-link {
  color: #000000;
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 0;
  padding-top: 0;
}
@media only screen and (min-width: 765px) {
  .basket-table__product-title,
.basket-table__product-link {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.basket-list__title {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  padding-top: 0;
}
@media only screen and (min-width: 1015px) {
  .basket-list__title {
    padding-bottom: 20px;
    margin-bottom: 40px;
    padding-top: 20px;
  }
}
.basket-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (min-width: 1015px) {
  .basket-list__item {
    margin-bottom: 40px;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.basket-list__product-image-wrapper {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.basket-list__product-image {
  display: block;
}
.basket-list__product-details {
  padding-left: 20px;
}
@media only screen and (min-width: 1015px) {
  .basket-list__product-details {
    padding-left: 40px;
  }
}
.basket-list__product-title {
  text-transform: none;
  padding-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0;
}
@media only screen and (min-width: 1015px) {
  .basket-list__product-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.basket-list__product-sku {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 1015px) {
  .basket-list__product-sku {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.basket-list__product-price {
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1015px) {
  .basket-list__product-price {
    margin-bottom: 40px;
  }
}
.basket-list__product-price .price-container {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}
@media only screen and (min-width: 1015px) {
  .basket-list__product-price .price-container {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.basket-list__product-price .has-special-price .minicart-price {
  color: #ec668d;
}
.basket-list__product-price .has-special-price .minicart-price-old {
  text-decoration: line-through;
}
.basket-list__qty {
  margin-bottom: 10px;
}
@media only screen and (min-width: 1015px) {
  .basket-list__qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.basket-list__qty .product-add__qty {
  margin-bottom: 10px;
}
@media only screen and (min-width: 1015px) {
  .basket-list__qty .product-add__qty {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1015px) {
  .basket-list__qty > button {
    margin-left: 20px;
  }
}
.basket-list__note {
  margin-bottom: 20px;
}
.basket-shipping {
  border: none;
  margin: 0;
  padding: 0;
}
.basket-shipping__content {
  border-bottom: 1px solid #e6e6e6;
}
.basket-shipping__form {
  margin: 0;
}
.basket-shipping__form .field {
  margin: 0;
}
.basket-shipping__form .control {
  position: relative;
}
.basket-shipping__form .control:before {
  display: block;
  content: "Deliver To:";
  font-weight: 700;
  font-size: 16px !important;
  padding-top: 10px;
}
.basket-shipping__form .control:after {
  display: block;
  content: "Change";
  position: absolute;
  right: 0;
  bottom: 11px;
  font-weight: 700;
  font-size: 14px !important;
  text-decoration: underline;
  pointer-events: none;
  padding-right: 20px;
  background: url("../../frontend/Graham/default/en_GB/img//icon_arrow-down.svg") no-repeat right 0 center transparent;
  background-size: 11px;
}
@media only screen and (min-width: 1015px) {
  .basket-shipping__form .control:after {
    font-size: 16px !important;
  }
}
.basket-shipping__form select {
  padding-left: 0;
  padding-right: 80px;
  background: none;
  border: none;
}
.basket-shipping__form select:hover {
  cursor: pointer;
}
/*========================================
Checkout: Rate
========================================*/
.rate__content__inner {
  display: block;
}
.rate__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rate__inputs .label {
  display: block;
  width: 100%;
}
.rate__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.rate__info .price {
  font-weight: bold;
  display: block;
  line-height: 1;
}
.rate__info__link {
  color: #fd3670;
  text-decoration: underline;
}
.rate__info__link:hover, .rate__info__link:focus {
  color: #fd3670;
  text-decoration: none;
}
.rate__extension-attributes__item {
  margin-top: 10px;
  padding-left: 30px;
}
/*========================================
Basket page summary totals
========================================*/
.basket-totals {
  padding: 0;
}
.basket-totals .table-wrapper {
  position: relative;
}
.basket-totals__table {
  margin: 0;
}
.basket-totals__table th, .basket-totals__table td {
  padding: 10px 0;
}
.basket-totals__total--shipping .label {
  display: none;
}
.basket-totals__total--grand .basket-totals__label,
.basket-totals__total--grand .basket-totals__value {
  font-size: 16px !important;
}
.basket-totals__label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 16px !important;
}
.basket-totals__value, .discount > .price {
  text-align: right;
}
/*========================================
Basket page actions
========================================*/
.basket-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .basket-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: none;
  }
}
@media only screen and (min-width: 765px) {
  .basket-actions .mmWrapping {
    margin-bottom: 0;
  }
}
.basket-actions__action {
  width: 100%;
}
@media only screen and (min-width: 765px) {
  .basket-actions__action {
    width: auto;
    margin-bottom: 0;
  }
}
.basket-actions__action--continue {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .basket-actions__action--continue {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 20px;
    margin-bottom: 0;
  }
}
.basket-actions__action--update {
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .basket-actions__action--update {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 0;
  }
}
.cart-nosto-block {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  padding: 20px;
}
@media only screen and (max-width: 764px) {
  .cart-nosto-block {
    padding: 0 30px;
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
}
.login-popup-div {
  display: none;
}
._show.login-modal .login-popup-div {
  display: block;
}
.register-popup {
  display: none;
}
._show.register-modal .register-popup {
  display: block;
}
aside.modal-popup.login-modal.modal-slide._show .modal-inner-wrap {
  background: #6eaab6;
  color: #ffffff;
  width: auto;
  padding-bottom: 30px;
}
@media only screen and (min-width: 765px) {
  aside.modal-popup.login-modal.modal-slide._show .modal-inner-wrap {
    width: 440px;
    max-height: calc(100% - 3.5rem);
  }
}
aside.modal-popup.login-modal.modal-slide._show .modal-inner-wrap .modal-header h1 {
  border-bottom: none !important;
  text-align: center;
}
aside.modal-popup.login-modal.modal-slide._show .modal-inner-wrap .action-close {
  background-color: transparent;
  background: url("../../frontend/Graham/default/en_GB/img/icon_close_white.svg") no-repeat center;
}
aside.modal-popup.register-modal.modal-slide._show .modal-inner-wrap {
  background: #fefbf6;
  padding-bottom: 30px;
}
@media only screen and (min-width: 765px) {
  aside.modal-popup.register-modal.modal-slide._show .modal-inner-wrap {
    max-height: calc(100% - 3.5rem);
  }
}
aside.modal-popup.register-modal.modal-slide._show .modal-inner-wrap .modal-header h1 {
  border-bottom: none !important;
  text-align: center;
}
/*========================================
Checkout: Header
========================================*/
.checkout-header {
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (min-width: 765px) {
  .checkout-header {
    margin-bottom: 20px;
  }
}
.checkout-header__container {
  position: relative;
  text-align: center;
}
.checkout-header__button {
  display: none;
}
@media only screen and (min-width: 765px) {
  .checkout-header__button {
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
  }
}
.checkout-header__logo {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 15px 0;
}
@media only screen and (min-width: 765px) {
  .checkout-header__logo {
    margin: 0 auto;
    padding: 30px 0;
  }
}
.checkout-header__logo svg {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 38px;
}
@media only screen and (min-width: 765px) {
  .checkout-header__logo svg {
    width: 250px;
    height: 46px;
  }
}
@media only screen and (min-width: 1015px) {
  .checkout-header__logo svg {
    width: 300px;
    height: 57px;
  }
}
.checkout-header__contact {
  display: none;
}
@media only screen and (min-width: 765px) {
  .checkout-header__contact {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
  }
  .checkout-header__contact .svg-icon {
    position: relative;
    top: -1px;
    width: 1.7em;
    height: 1.7em;
    margin-right: 10px;
  }
}
/*========================================
Checkout: Layout styling
========================================*/
@media only screen and (min-width: 1015px) {
  .checkout-index-index {
    background-color: #fefbf6;
    padding: 0 20px;
  }
}
.checkout-index-index .page-title {
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (min-width: 1015px) {
  .checkout-index-index .page-title {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1015px) {
  .checkout-index-index .page-wrapper {
    max-width: 1420px;
    margin: 40px auto 80px;
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    min-height: 90vh;
  }
}
.checkout-index-index .note {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
}
.checkout {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  zoom: 1;
}
.checkout:before, .checkout:after {
  content: "";
  display: table;
}
.checkout:after {
  clear: both;
}
@media only screen and (min-width: 765px) {
  .checkout__main {
    width: calc(55% - 20px);
    margin-right: 40px;
    float: left;
  }
}
.checkout__steps {
  list-style: none;
  margin: 0;
}
@media only screen and (min-width: 765px) {
  .checkout__side {
    width: calc(45% - 20px);
    float: right;
    background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
    background-size: 250px;
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .checkout__side .modal-header {
    display: none;
  }
}
.checkout__estimated {
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .checkout__estimated {
    display: none;
  }
}
.checkout__authentication-button {
  display: inline-block;
  padding: 13px 20px 11px;
  width: auto;
  vertical-align: middle;
  background: #6eaab6;
  color: #ffffff;
  border: 1px solid #6eaab6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}
.checkout__authentication-button:hover, .checkout__authentication-button:focus {
  color: #ffffff;
  background-color: #5193a0;
  text-decoration: none;
  outline: none;
}
@media only screen and (min-width: 765px) {
  .checkout__authentication-container {
    padding: 20px;
  }
}
fieldset.street legend {
  display: none;
}
.cart-price-subtotal {
  color: #fd3670;
  letter-spacing: 1px;
}
.cart-old-price {
  display: inline-block;
  text-decoration: line-through;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.8rem;
  color: #999999;
}
/*========================================
Checkout: Sign in Authentication
========================================*/
.checkout-authentication__title {
  padding: 0;
  margin-bottom: 20px;
}
/*========================================
Checkout: Progress bar
========================================*/
.checkout-progress {
  position: relative;
  margin-bottom: 20px;
  clear: both;
}
@media only screen and (min-width: 765px) {
  .checkout-progress {
    margin-bottom: 60px;
  }
}
.checkout-progress__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 300px;
  position: relative;
  list-style: none;
  margin: 0 auto;
}
.checkout-progress__list:before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 15px;
  display: block;
  height: 1px;
  background-color: #e6e6e6;
}
.checkout-progress__item {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
}
.checkout-progress__item:before {
  display: block;
  position: relative;
  margin: 0 auto 10px;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #ffffff;
  z-index: 1;
  border: 1px solid #e6e6e6;
  border-radius: 100%;
}
.checkout-progress__item:first-child:before {
  content: "1";
}
.checkout-progress__item:last-child:before {
  content: "2";
}
.checkout-progress__item.active {
  color: #fd3670;
}
.checkout-progress__item.active:before {
  border-color: #fd3670;
}
.checkout-progress__item:hover, .checkout-progress__item:focus {
  cursor: pointer;
}
/*========================================
Checkout: Step styling
========================================*/
.checkout-steps__step {
  margin-bottom: 40px;
}
.checkout-steps__title {
  margin-bottom: 20px;
  padding: 0 0 10px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 18px;
  font-size: 1.125rem;
}
/*========================================
Checkout: Sidebar product list
========================================*/
.checkout-products.active .svg-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.checkout-products__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.875rem;
}
.checkout-products__button .svg-icon {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: auto;
  transition: all ease 0.3s;
}
.checkout-products__button-count {
  margin-right: 5px;
}
.checkout-products__items {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
}
.checkout-products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
.checkout-products__item:last-child {
  margin-bottom: 0;
}
.checkout-products__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout-products__image {
  width: 40%;
  margin-bottom: 0;
}
.checkout-products__image img {
  display: block;
  width: 100%;
}
.checkout-products__product {
  width: 60%;
  padding-left: 20px;
}
.checkout-products__product .subtotal {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 3px;
}
.checkout-products__title {
  padding: 0;
  margin-bottom: 3px;
  font-size: 16px;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
.checkout-products__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3px;
  font-size: 14px;
  font-size: 0.875rem;
}
.checkout-products__detail-label {
  margin-right: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.checkout-products__detail-label:after {
  content: ":";
}
.checkout-products__options {
  font-size: 14px;
  font-size: 0.875rem;
}
.checkout-products__options-button {
  display: none;
}
.checkout-products__options-title {
  display: none;
}
.checkout-products__options-configurations {
  zoom: 1;
  margin-bottom: 0;
}
.checkout-products__options-configurations:before, .checkout-products__options-configurations:after {
  content: "";
  display: table;
}
.checkout-products__options-configurations:after {
  clear: both;
}
.checkout-products__options-configurations-label {
  margin-right: 10px;
  float: left;
  font-weight: 600;
}
.checkout-products__options-configurations-label:after {
  content: ":";
}
.checkout-products__options-configurations-value {
  float: left;
}
.checkout-products__options-configuration-option {
  margin-top: 10px;
}
/*========================================
Checkout: Sidebar shipping info
========================================*/
.checkout-shipping-info__container {
  margin: 20px 0;
}
.checkout-shipping-info__container:last-child {
  margin-bottom: 0;
}
.checkout-shipping-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.checkout-shipping-info__title:before, .checkout-shipping-info__title:after {
  content: "";
  height: 1px;
  background-color: #e6e6e6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.checkout-shipping-info__title-text {
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
.checkout-shipping-info__actions {
  padding-top: 20px;
}
.checkout-shipping-info__button {
  padding: 0;
  border: none;
  background: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
/*========================================
Checkout: Shipping table.
========================================*/
.checkout-shipping {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checkout-shipping__item {
  position: relative;
  width: 50%;
  padding: 20px 40px 0 20px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
.checkout-shipping__item.selected-item {
  background: url(../../frontend/Graham/default/en_GB/img/account_address1.png) no-repeat top 10px right 0px, url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
  background-size: 150px, 200px;
}
.checkout-shipping__item.selected-item .checkout-shipping__button--select {
  background-color: #fd3670;
  border-color: #fd3670;
}
.checkout-shipping__item.selected-item .checkout-shipping__button--select .svg-icon {
  display: block;
}
.checkout-shipping__button:hover, .checkout-shipping__button:focus {
  border-color: #fd3670;
  background-color: #ffffff;
}
.checkout-shipping__button--select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  padding: 0;
  background-color: transparent;
  border-radius: 100%;
  border-color: #e6e6e6;
}
.checkout-shipping__button--select .svg-icon {
  display: none;
  width: 12px;
  height: 12px;
  color: #ffffff;
}
.checkout-shipping__button--edit {
  margin-bottom: 20px;
  margin-top: 20px;
  display: block;
}
.checkout-shipping__button--edit:hover, .checkout-shipping__button--edit:focus {
  color: #ffffff;
  background-color: #5193a0;
  border-color: #5193a0;
  text-decoration: none;
  outline: none;
}
.checkout-shipping__link {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
}
.checkout-shipping__link:hover, .checkout-shipping__link:focus {
  text-decoration: underline;
}
/*========================================
Checkout: Sidebar styling
========================================*/
.checkout-summary__title {
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 765px) {
  .checkout-summary__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 20px 0 10px;
    text-align: center;
    border-bottom: none;
  }
  .checkout-summary__title:before, .checkout-summary__title:after {
    content: "";
    height: 1px;
    background-color: #e6e6e6;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.checkout-summary__title-text {
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 765px) {
  .checkout-summary__title-text {
    padding: 0 10px;
  }
}
.cart-summary__table {
  margin-bottom: 10px;
}
.cart-summary__table th,
.cart-summary__table td {
  font-size: 16px;
  font-size: 1rem;
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
}
/*========================================
Checkout: Mobile only estimation bar, toggles sidebar
========================================*/
.checkout-estimated {
  position: relative;
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
  background-size: 250px;
  padding: 20px;
}
.checkout-estimated__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
.checkout-estimated__price {
  display: block;
  font-weight: 400;
  clear: both;
}
.checkout-estimated__button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  padding: 0 10px 0 0;
  border: none;
  background-color: transparent;
}
.checkout-estimated__button .svg-icon {
  width: 2em;
  height: 2em;
}
.checkout-estimated__counter {
  display: block;
  position: absolute;
  right: 0;
  top: -5px;
  width: 20px;
  height: 20px;
  background-color: #fd3670;
  border-radius: 100%;
}
.checkout-estimated__number {
  position: relative;
  top: -2px;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
/*========================================
Checkout: Payment methods
========================================*/
.payment-method {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
.payment-method._active .payment-method-content {
  display: block;
}
.payment-method-title {
  margin-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
              -ms-grid-row-align: center;
          align-items: center;
}
.payment-method-title img {
  max-width: 50px;
}
.payment-method-item.braintree-paypal-account {
  margin-bottom: 20px;
}
.payment-method-content {
  display: none;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #e6e6e6;
}
.payment-method-billing-address {
  margin-bottom: 20px;
}
.action-edit-address {
  margin-top: 10px;
  display: inline-block;
  padding: 13px 20px 11px;
  width: auto;
  vertical-align: middle;
  background: #6eaab6;
  color: #ffffff;
  border: 1px solid #6eaab6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}
.action-edit-address:hover, .action-edit-address:focus {
  color: #ffffff;
  background-color: #5193a0;
  text-decoration: none;
  outline: none;
}
.payment-option {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
.payment-option._active .svg-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.payment-option.discount-code label {
  display: none;
}
.payment-option-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.payment-option-title .svg-icon {
  margin-left: auto;
  transition: all ease 0.3s;
}
.payment-option-title:hover, .payment-option-title:focus {
  outline: none;
  cursor: pointer;
}
.payment-option-content {
  padding-top: 20px;
}
.braintree-apple-pay-button {
  -webkit-appearance: -apple-pay-button;
  -apple-pay-button-type: plain;
  display: block;
  width: 100%;
  min-height: 40px;
  border: 1px solid black;
  background-image: -webkit-named-image(apple-pay-logo-black);
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: black;
  background-position: 50% 50%;
  padding: 2px;
  height: 45px;
  transition: background-color 0.15s;
  cursor: pointer;
}
.braintree-googlepay-button,
.braintree-googlepay-button:focus,
.braintree-googlepay-button:hover {
  background-origin: content-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 120px;
  border: 0;
  box-shadow: 0px 1px 3px 0px #6d6d6d;
  outline: 0;
  padding: 10px 8px;
  width: 100%;
  height: 47px;
  min-height: 47px;
}
button.braintree-googlepay-button.black {
  background-color: #000;
  box-shadow: none;
}
button.braintree-googlepay-button.black:hover, button.braintree-googlepay-button.black:focus {
  background-color: #000;
  box-shadow: none;
}
button.braintree-googlepay-button.white {
  background-color: #fff;
}
.braintree-googlepay-button.short {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2241%22%20height%3D%2217%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M19.526%202.635v4.083h2.518c.6%200%201.096-.202%201.488-.605.403-.402.605-.882.605-1.437%200-.544-.202-1.018-.605-1.422-.392-.413-.888-.62-1.488-.62h-2.518zm0%205.52v4.736h-1.504V1.198h3.99c1.013%200%201.873.337%202.582%201.012.72.675%201.08%201.497%201.08%202.466%200%20.991-.36%201.819-1.08%202.482-.697.665-1.559.996-2.583.996h-2.485v.001zm7.668%202.287c0%20.392.166.718.499.98.332.26.722.391%201.168.391.633%200%201.196-.234%201.692-.701.497-.469.744-1.019.744-1.65-.469-.37-1.123-.555-1.962-.555-.61%200-1.12.148-1.528.442-.409.294-.613.657-.613%201.093m1.946-5.815c1.112%200%201.989.297%202.633.89.642.594.964%201.408.964%202.442v4.932h-1.439v-1.11h-.065c-.622.914-1.45%201.372-2.486%201.372-.882%200-1.621-.262-2.215-.784-.594-.523-.891-1.176-.891-1.96%200-.828.313-1.486.94-1.976s1.463-.735%202.51-.735c.892%200%201.629.163%202.206.49v-.344c0-.522-.207-.966-.621-1.33a2.132%202.132%200%200%200-1.455-.547c-.84%200-1.504.353-1.995%201.062l-1.324-.834c.73-1.045%201.81-1.568%203.238-1.568m11.853.262l-5.02%2011.53H34.42l1.864-4.034-3.302-7.496h1.635l2.387%205.749h.032l2.322-5.75z%22%20fill%3D%22%235F6368%22%2F%3E%3Cpath%20d%3D%22M13.448%207.134c0-.473-.04-.93-.116-1.366H6.988v2.588h3.634a3.11%203.11%200%200%201-1.344%202.042v1.68h2.169c1.27-1.17%202.001-2.9%202.001-4.944%22%20fill%3D%22%234285F4%22%2F%3E%3Cpath%20d%3D%22M6.988%2013.7c1.816%200%203.344-.595%204.459-1.621l-2.169-1.681c-.603.406-1.38.643-2.29.643-1.754%200-3.244-1.182-3.776-2.774H.978v1.731a6.728%206.728%200%200%200%206.01%203.703%22%20fill%3D%22%2334A853%22%2F%3E%3Cpath%20d%3D%22M3.212%208.267a4.034%204.034%200%200%201%200-2.572V3.964H.978A6.678%206.678%200%200%200%20.261%206.98c0%201.085.26%202.11.717%203.017l2.234-1.731z%22%20fill%3D%22%23FABB05%22%2F%3E%3Cpath%20d%3D%22M6.988%202.921c.992%200%201.88.34%202.58%201.008v.001l1.92-1.918C10.324.928%208.804.262%206.989.262a6.728%206.728%200%200%200-6.01%203.702l2.234%201.731c.532-1.592%202.022-2.774%203.776-2.774%22%20fill%3D%22%23E94235%22%2F%3E%3Cpath%20d%3D%22M0%200h41.285v18H0z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  width: 160px;
}
button.braintree-googlepay-button.white.long {
  background-image: url(https://www.gstatic.com/instantbuy/svg/light/en.svg);
}
button.braintree-googlepay-button.black.long {
  background-image: url(https://www.gstatic.com/instantbuy/svg/dark/en.svg);
}
.braintree-googlepay-button:focus {
  box-shadow: 0px 1px 3px 0px #6d6d6d, inset 0px 0px 0px 1px #a8abb3;
}
.braintree-googlepay-button:hover:enabled {
  background-color: #f7f7f7;
}
.braintree-googlepay-button:active:enabled {
  background-color: #e7e8e8;
}
.braintree-googlepay-button-no-shadow {
  box-shadow: inset 0px 0px 0px 1px #dadce0 !important;
  /* important to enforce brand requirements */
}
.braintree-googlepay-button-no-shadow:focus {
  box-shadow: inset 0px 0px 0px 1px #a8abb3 !important;
  /* important to enforce brand requirements */
}
.braintree-googlepay-button:disabled::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.5);
}
.paypal-button-size-responsive {
  width: 300px !important;
  margin: 0 auto !important;
}
fieldset.marketing-preferences {
  padding: 20px 20px 10px;
  background: url(../../frontend/Graham/default/en_GB/img/checkout_marketing_bg.png);
  background-size: cover;
}
fieldset.marketing-preferences:before {
  content: "";
  display: block;
  background: url(../../frontend/Graham/default/en_GB/img/checkout_marketing_title.png) center no-repeat;
  background-size: contain;
  width: 100%;
  height: 160px;
}
fieldset.marketing-preferences legend {
  display: none;
  visibility: hidden;
  opacity: 0;
}
fieldset.marketing-preferences > .control:before {
  content: "Please tick the boxes if you are happy to hear from us in the following ways:";
  display: block;
  position: static;
  width: 100%;
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
fieldset.marketing-preferences .admin__field-value {
  display: inline-block;
  color: #cbc1b2;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
fieldset.marketing-preferences .admin__field-value a {
  color: #cbc1b2;
}
/*========================================
Checkout: Brain tree styling
========================================*/
.credit-card-types {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.credit-card-types .item {
  display: block;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 40px;
  border: 1px solid #e6e6e6;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  transition: -webkit-filter ease 0.3s;
  transition: filter ease 0.3s;
  transition: filter ease 0.3s, -webkit-filter ease 0.3s;
}
.credit-card-types .item._active {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.credit-card-types .item._inactive {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.hosted-control {
  display: block;
  padding: 0 20px;
  width: 100%;
  line-height: 1;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  font-weight: 100;
  color: #000000;
  height: 47px;
}
.hosted-control:focus {
  outline: none;
  border-color: #6eaab6;
}
.braintree-hosted-fields-focused {
  outline: none;
  border-color: #6eaab6;
}
.hosted-error {
  display: none;
  margin-top: 10px;
  color: #e02b27;
  font-size: 16px;
  font-size: 1rem;
}
.braintree-hosted-fields-invalid .hosted-error {
  display: block;
}
.hosted-date-wrap {
  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;
}
.hosted-date-wrap .hosted-control {
  width: calc(50% - 10px);
}
.hosted-date-wrap .hosted-error {
  width: 100%;
}
/*========================================
Checkout: Success Page
========================================*/
.checkout-success {
  padding-top: 40px;
  margin-bottom: 120px;
}
.checkout-success .actions-toolbar {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.checkout-success .actions-toolbar .action.primary.continue {
  display: inline-block;
  padding: 13px 20px 11px;
  width: auto;
  vertical-align: middle;
  background: #6eaab6;
  color: #ffffff;
  border: 1px solid #6eaab6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}
.checkout-success .actions-toolbar .action.primary.continue:hover, .checkout-success .actions-toolbar .action.primary.continue:focus {
  color: #ffffff;
  background-color: #5193a0;
  text-decoration: none;
  outline: none;
}
.checkout-success__container {
  max-width: 500px !important;
  margin: 0 auto;
}
.checkout-success__container_grey {
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
  padding-bottom: 30px;
}
.checkout-success__title {
  color: #000000;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: bold;
  padding-bottom: 20px;
}
@media only screen and (max-width: 764px) {
  .checkout-success__title {
    color: #6eaab6;
  }
}
.checkout-success__text {
  color: #000000;
  text-align: center;
  font-size: 26px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 764px) {
  .checkout-success__text {
    font-size: 19px;
  }
}
.checkout-success__confirmation {
  text-align: center;
  margin-bottom: 20px;
}
.checkout-success__purchase {
  text-align: center;
}
.checkout-success__purchase h1 {
  font-weight: bold;
  color: #636363;
  padding: 50px;
  text-transform: uppercase;
}
.checkout-success__purchase .checkout-success__purchase-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 245px auto;
      grid-template-columns: 245px auto;
  color: #999999;
  margin: 0 30%;
  padding-bottom: 40px;
}
@media only screen and (max-width: 764px) {
  .checkout-success__purchase .checkout-success__purchase-items {
    -ms-grid-columns: none;
        grid-template-columns: none;
  }
}
.checkout-success__purchase .checkout-success__purchase-items img {
  -ms-grid-row-span: 3;
  -ms-grid-row: 1;
      grid-row: 1/span 3;
}
.checkout-success__purchase .checkout-success__purchase-items p {
  text-align: left;
}
@media only screen and (max-width: 764px) {
  .checkout-success__purchase .checkout-success__purchase-items p {
    text-align: center;
  }
}
.checkout-success__purchase .checkout-success__purchase-items p.purchase-item-name {
  font-weight: bold;
}
.checkout-success__purchase .checkout-success__purchase-items p.purchase-item-price {
  font-weight: bold;
}
.checkout-success__details {
  color: #636363;
  text-align: center;
  font-size: 22px;
}
@media only screen and (max-width: 764px) {
  .checkout-success__details {
    font-size: 16px;
  }
}
.checkout-success__contact {
  text-align: center;
  color: #999999;
  padding-top: 50px;
  font-size: 22px;
}
@media only screen and (max-width: 764px) {
  .checkout-success__contact {
    font-size: 19px;
  }
}
.checkout-success__actions {
  border-bottom: 1px solid #e6e6e6;
  padding: 20px;
}
.checkout-success__order {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  text-align: center;
  display: block;
  color: #636363;
}
@media only screen and (max-width: 764px) {
  .checkout-success__order {
    font-size: 16px;
  }
}
.success-register {
  margin-bottom: 20px;
  padding-bottom: 30px;
}
.success-register p {
  font-size: 18px;
  text-align: center;
  color: #999999;
}
.success-register .checkout-success__button {
  width: 65%;
  margin: 0 17.5%;
  background: #6eaab6;
  color: #ffffff;
  font-size: 16px;
}
@media only screen and (max-width: 764px) {
  .success-register .checkout-success__button {
    width: auto;
    margin: 0px 10%;
  }
}
.success-register .control {
  width: 65%;
  margin: 0 17.5%;
}
@media only screen and (max-width: 764px) {
  .success-register .control {
    width: auto;
    margin: 0px 10%;
  }
}
.success-register .field label {
  display: none;
}
.success-login {
  margin-bottom: 20px;
  padding-bottom: 30px;
}
.success-login p {
  font-size: 18px;
  text-align: center;
  color: #999999;
}
.success-login .checkout-success__button {
  width: 65%;
  margin: 0 17.5%;
  background: #6eaab6;
  color: #ffffff;
  font-size: 16px;
}
@media only screen and (max-width: 764px) {
  .success-login .checkout-success__button {
    width: auto;
    margin: 0px 10%;
  }
}
.success-login .control {
  width: 65%;
  margin: 0 17.5%;
}
@media only screen and (max-width: 764px) {
  .success-login .control {
    width: auto;
    margin: 0px 10%;
  }
}
.success-login .field label {
  margin: 0 17.5%;
}
.extension-attributes__item {
  background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
  margin-bottom: 0;
  margin-top: 0;
}
div[name="shippingAddress.telephone"] .addon-suffix {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 10px;
  background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg);
  background-size: 250px;
  color: #000000;
  border: 2px solid #ffffff;
  display: none;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 200;
  font-size: 16px;
  font-size: 1rem;
}
div[name="shippingAddress.telephone"] .addon-suffix.active {
  display: block;
}
/*========================================
Checkout: Deafult modal styling, do not change
========================================*/
@media only screen and (max-width: 764px) {
  .modal-slide {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease;
    left: 40px;
    z-index: 900;
  }
  .modal-slide._show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .modal-slide._show .modal-inner-wrap {
    display: block;
  }
  .modal-slide .modal-inner-wrap {
    pointer-events: auto;
    background-color: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
  }
  .modal-slide .modal-header {
    padding: 30px 30px 20px;
  }
  .modal-slide .modal-header .action-close {
    position: absolute;
    top: 30px;
    right: 20px;
    background-color: transparent;
    background: url("../../frontend/Graham/default/en_GB/img/icon_close.svg") no-repeat center;
    border: none;
    text-indent: 9999px;
    width: 20px;
    height: 20px;
  }
  .modal-slide .modal-title {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
  }
  .modal-slide .modal-content {
    padding: 0 30px;
  }
  .modal-slide .modal-content:hover, .modal-slide .modal-content:focus {
    outline: none;
  }
  .modal-slide .modal-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid #e6e6e6;
    margin-top: 10px;
  }
  .modal-slide .modal-footer .action-primary,
.modal-slide .modal-footer .action.primary {
    display: inline-block;
    padding: 13px 20px 11px;
    width: auto;
    vertical-align: middle;
    background: #6eaab6;
    color: #ffffff;
    border: 1px solid #6eaab6;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    margin-bottom: 10px;
  }
  .modal-slide .modal-footer .action-primary:hover, .modal-slide .modal-footer .action-primary:focus,
.modal-slide .modal-footer .action.primary:hover,
.modal-slide .modal-footer .action.primary:focus {
    color: #ffffff;
    background-color: #5193a0;
    text-decoration: none;
    outline: none;
  }
  .modal-slide .modal-footer .action-secondary,
.modal-slide .modal-footer .action.secondary {
    display: inline-block;
    padding: 13px 20px 11px;
    width: auto;
    vertical-align: middle;
    background: #6eaab6;
    color: #ffffff;
    border: 1px solid #6eaab6;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    background-color: transparent;
    border-color: #e6e6e6;
    color: #454545;
  }
  .modal-slide .modal-footer .action-secondary:hover, .modal-slide .modal-footer .action-secondary:focus,
.modal-slide .modal-footer .action.secondary:hover,
.modal-slide .modal-footer .action.secondary:focus {
    color: #ffffff;
    background-color: #5193a0;
    text-decoration: none;
    outline: none;
  }
  .modal-slide .modal-footer .action-secondary:hover, .modal-slide .modal-footer .action-secondary:focus,
.modal-slide .modal-footer .action.secondary:hover,
.modal-slide .modal-footer .action.secondary:focus {
    color: #454545;
    background-color: transparent;
    border-color: #cdcdcd;
    text-decoration: none;
  }
  .modal-slide .modal-footer .action-accept {
    margin-bottom: 0;
  }
  .modal-slide .modal-footer .action-dismiss {
    margin-bottom: 10px;
  }
  .modal-slide._show .modal-inner-wrap {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .modal-slide .modal-inner-wrap {
    height: 100%;
    overflow-y: auto;
    position: static;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}
.modal-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-width: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s ease;
  z-index: 900;
  left: 0;
  overflow-y: auto;
}
.modal-popup._show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.modal-popup._show .modal-inner-wrap {
  display: block;
}
.modal-popup .modal-inner-wrap {
  pointer-events: auto;
  background-color: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
}
.modal-popup .modal-header {
  padding: 30px 30px 20px;
}
.modal-popup .modal-header .action-close {
  position: absolute;
  top: 30px;
  right: 20px;
  background-color: transparent;
  background: url("../../frontend/Graham/default/en_GB/img/icon_close.svg") no-repeat center;
  border: none;
  text-indent: 9999px;
  width: 20px;
  height: 20px;
}
.modal-popup .modal-title {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}
.modal-popup .modal-content {
  padding: 0 30px;
}
.modal-popup .modal-content:hover, .modal-popup .modal-content:focus {
  outline: none;
}
.modal-popup .modal-footer {
  padding: 20px 30px 30px;
  border-top: 1px solid #e6e6e6;
  margin-top: 10px;
}
.modal-popup .modal-footer .action-primary,
.modal-popup .modal-footer .action.primary {
  display: inline-block;
  padding: 13px 20px 11px;
  width: auto;
  vertical-align: middle;
  background: #6eaab6;
  color: #ffffff;
  border: 1px solid #6eaab6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  margin-bottom: 10px;
}
.modal-popup .modal-footer .action-primary:hover, .modal-popup .modal-footer .action-primary:focus,
.modal-popup .modal-footer .action.primary:hover,
.modal-popup .modal-footer .action.primary:focus {
  color: #ffffff;
  background-color: #5193a0;
  text-decoration: none;
  outline: none;
}
.modal-popup .modal-footer .action-secondary,
.modal-popup .modal-footer .action.secondary {
  display: inline-block;
  padding: 13px 20px 11px;
  width: auto;
  vertical-align: middle;
  background: #6eaab6;
  color: #ffffff;
  border: 1px solid #6eaab6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  background-color: transparent;
  border-color: #e6e6e6;
  color: #454545;
}
.modal-popup .modal-footer .action-secondary:hover, .modal-popup .modal-footer .action-secondary:focus,
.modal-popup .modal-footer .action.secondary:hover,
.modal-popup .modal-footer .action.secondary:focus {
  color: #ffffff;
  background-color: #5193a0;
  text-decoration: none;
  outline: none;
}
.modal-popup .modal-footer .action-secondary:hover, .modal-popup .modal-footer .action-secondary:focus,
.modal-popup .modal-footer .action.secondary:hover,
.modal-popup .modal-footer .action.secondary:focus {
  color: #454545;
  background-color: transparent;
  border-color: #cdcdcd;
  text-decoration: none;
}
.modal-popup .modal-footer .action-accept {
  margin-bottom: 0;
}
.modal-popup .modal-footer .action-dismiss {
  margin-bottom: 10px;
}
.modal-popup .modal-inner-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0 auto;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 765px) {
  .modal-popup .modal-inner-wrap {
    width: 90%;
    max-width: 540px;
  }
}
.modal-popup._inner-scroll {
  overflow-y: visible;
}
.modal-popup._inner-scroll .modal-inner-wrap {
  max-height: 90%;
}
.modal-popup._inner-scroll .modal-content {
  overflow-y: auto;
}
.modal-popup .modal-footer-actions {
  text-align: right;
}
@media only screen and (max-width: 764px) {
  .modal-popup.modal-slide {
    left: 40px;
    z-index: 900;
  }
  .modal-popup.modal-slide._show .modal-inner-wrap {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .modal-popup.modal-slide .modal-inner-wrap {
    height: 100%;
    overflow-y: auto;
    position: static;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .modal-popup.modal-slide .modal-inner-wrap {
    margin: 0;
    max-height: 100%;
  }
}
@media only screen and (min-width: 765px) {
  .modal-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ffffff;
    min-width: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease;
    z-index: 1 !important;
  }
  .modal-dropdown._show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .modal-dropdown .action-close {
    position: absolute;
    top: 10px;
    right: 20px;
    display: inline-block;
    padding: 13px 20px 11px;
    width: auto;
    vertical-align: middle;
    background: #6eaab6;
    color: #ffffff;
    border: 1px solid #6eaab6;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: border 0.3s ease, background 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
  }
  .modal-dropdown .action-close:hover, .modal-dropdown .action-close:focus {
    color: #ffffff;
    background-color: #5193a0;
    text-decoration: none;
    outline: none;
  }
}
body._has-modal, body._has-modal-custom {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.modals-overlay {
  z-index: 100;
}
.modal-custom-overlay,
.modals-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
body._has-modal-custom .modal-custom-overlay {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 900;
}
@media only screen and (min-width: 765px) {
  .dropdown-overlay {
    display: none;
  }
}
.secure-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 0;
  padding: 10px 0;
  color: #6a6a6a;
  font-size: 10px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.secure-message--basket-summary {
  padding: 10px 20px;
  font-size: 16px;
  font-size: 1rem;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.secure-message--checkout-summary {
  padding: 20px 0;
}
.secure-message__image {
  max-width: 60px;
  margin-left: 10px;
}
.methods-shipping-items {
  margin-bottom: 40px;
}
.methods-shipping-items__row .col {
  padding: 10px 0;
}
.methods-shipping-items__row .col-method {
  width: 8%;
}
.methods-shipping-items__row .col-price {
  width: 15%;
  font-weight: bold;
  padding-right: 20px;
}
.methods-shipping-items__row .col-price .label {
  margin-bottom: 0;
}
.methods-shipping-items__row .col-method-label {
  padding-left: 40px;
  font-weight: 600;
}
.methods-shipping-items__row .col-info {
  margin-left: auto;
  text-align: right;
}
.methods-shipping-items__row .col-info .rate__info__link {
  display: inline-block;
}
.row-notice {
  display: none;
}
.row-notice.row-collection {
  display: table-row;
}
.col-notice {
  color: #fd3670;
  border: 1px solid #e6e6e6 !important;
}
.shipping-info-popup .mfp-content {
  background-color: #ffffff;
  max-width: 540px;
}
#label_method_standard_graham,
#label_method_quote_graham {
  background: url("../../frontend/Graham/default/en_GB/img/shipping-methods/standard-delivery.png") no-repeat left center;
  background-size: 30px;
}
#label_method_express_graham {
  background: url("../../frontend/Graham/default/en_GB/img/shipping-methods/express-delivery.png") no-repeat left center;
  background-size: 30px;
}
#label_method_saturday_graham,
#label_method_sunday_graham,
#label_method_weekend_graham {
  background: url("../../frontend/Graham/default/en_GB/img/shipping-methods/weekend-delivery.png") no-repeat left center;
  background-size: 30px;
}
#label_method_furniture_graham {
  background: url("../../frontend/Graham/default/en_GB/img/shipping-methods/furniture_delivery.png") no-repeat left center;
  background-size: 30px;
}
#label_method_bulk_graham,
#label_method_large_parcel_graham {
  background: url("../../frontend/Graham/default/en_GB/img/shipping-methods/large-parcel-delivery.png") no-repeat left center;
  background-size: 30px;
}
#label_method_collection_graham {
  background: url("../../frontend/Graham/default/en_GB/img/shipping-methods/collection.png") no-repeat left center;
  background-size: 30px;
}
#label_method_letter_graham,
#label_method_email_graham {
  background: url("../../frontend/Graham/default/en_GB/img/shipping-methods/letter.png") no-repeat left center;
  background-size: 30px;
}
#label_method_large_mirrors_graham {
  background: url("../../frontend/Graham/default/en_GB/img/shipping-methods/fragile-delivery.png") no-repeat left center;
  background-size: 30px;
}
.checkout-index-index .messages .message {
  position: relative;
  padding: 20px 20px 20px 47px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  background: url(../../frontend/Graham/default/en_GB/img/pattern.jpg) repeat;
  background-size: 200px;
}
@media only screen and (min-width: 765px) {
  .checkout-index-index .messages .message {
    font-size: 16px;
    font-size: 1rem;
    padding: 20px 20px 20px 60px;
  }
}
.checkout-index-index .messages .message-warning:before,
.checkout-index-index .messages .message-success:before,
.checkout-index-index .messages .message-error:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 20px;
  vertical-align: middle;
}
@media only screen and (min-width: 765px) {
  .checkout-index-index .messages .message-warning:before,
.checkout-index-index .messages .message-success:before,
.checkout-index-index .messages .message-error:before {
    left: 20px;
  }
}
.checkout-index-index .messages .message-warning:before {
  background: url("../../frontend/Graham/default/en_GB/img/icon_circle-warning.svg") no-repeat;
  background-size: contain;
}
.checkout-index-index .messages .message-success:before {
  background: url("../../frontend/Graham/default/en_GB/img/icon_circle-tick.svg") no-repeat;
  background-size: contain;
}
.checkout-index-index .messages .message-error:before {
  background: url("../../frontend/Graham/default/en_GB/img/icon_circle-cross.svg") no-repeat;
  background-size: contain;
}
.checkout-index-index .message {
  text-align: left;
  margin-bottom: 20px;
}
/*========================================
Checkout: Giftcard
========================================*/
.totals.giftcard > .amount {
  text-align: right;
  width: 100px;
}
.totals.giftcard > .amount .price {
  padding: 15px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
}
.gift-card-information {
  margin-bottom: 1em;
  font-size: 14px;
  font-size: 0.875rem;
}
.gift-card-information span:first-of-type {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.giftcard-account-info {
  margin-top: 1em;
}
.giftcard-account-number, .giftcard-account-balance {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 1em;
}
.giftcard-account-number > span:first-of-type, .giftcard-account-balance > span:first-of-type {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
span[data-bind="html: amountApplied()"],
.giftcard-number,
.giftcard-account-balance .price {
  float: right;
  font-weight: 600;
  letter-spacing: 2px;
}
/*========================================
Checkout: Success Page Google pay
========================================*/
.braintree-paypal-review .page-title,
.braintree-googlepay-review .page-title {
  max-width: 1360px;
  margin: 0 auto 20px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 765px) {
  .braintree-paypal-review .page-title,
.braintree-googlepay-review .page-title {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1015px) {
  .braintree-paypal-review .page-title,
.braintree-googlepay-review .page-title {
    margin-bottom: 40px;
  }
}
.paypal-review {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  zoom: 1;
}
.paypal-review:before, .paypal-review:after {
  content: "";
  display: table;
}
.paypal-review:after {
  clear: both;
}
@media only screen and (min-width: 765px) {
  .block-order-details-view {
    width: calc(55% - 20px);
    margin-right: 40px;
    float: left;
  }
}
.block-order-details-view .box-order-shipping-method {
  margin-bottom: 0;
}
.block-order-details-view .action.update.primary {
  margin-bottom: 20px;
}
.paypal-review-discount {
  padding-top: 20px;
}
.paypal-review-items {
  padding: 0 20px 20px;
  margin-bottom: 30px;
  background-size: 250px;
  background: url("../../frontend/Graham/default/en_GB/img/pattern.jpg");
}
@media only screen and (min-width: 765px) {
  .paypal-review-items {
    width: calc(45% - 20px);
    float: right;
  }
}
.paypal-review-items .order-review-form .actions-toolbar {
  display: block;
}
.paypal-review-items .order-review-form .actions-toolbar .primary,
.paypal-review-items .order-review-form .actions-toolbar button {
  display: block;
  width: 100%;
}
.paypal-review-items .order-review-form .actions-toolbar .please-wait.load.indicator {
  display: block;
  width: 100%;
  padding-top: 10px;
}
.paypal-review-title {
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 0;
  margin-bottom: 20px;
}
@media only screen and (min-width: 765px) {
  .paypal-review-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 20px 0 10px;
    text-align: center;
    border-bottom: none;
    margin-bottom: 0;
  }
  .paypal-review-title:before, .paypal-review-title:after {
    content: "";
    height: 1px;
    background-color: #e6e6e6;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .paypal-review-title strong {
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 765px) and (min-width: 765px) {
  .paypal-review-title strong {
    padding: 0 10px;
  }
}
.paypal-review-title a {
  display: none;
}
.table-paypal-review-items tbody,
.table-paypal-review-items tr,
.table-paypal-review-items td {
  display: block;
  border: none;
}
.table-paypal-review-items caption,
.table-paypal-review-items thead {
  display: none;
}
.table-paypal-review-items .cart.item {
  width: 100%;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
.table-paypal-review-items .cart.item:last-of-type {
  margin-bottom: 0;
}
.table-paypal-review-items .cart.item tr {
  padding-left: 100px;
}
.table-paypal-review-items .cart.item .col.item {
  padding: 0;
  margin-bottom: 5px;
}
.table-paypal-review-items .cart.item .col.item .product-item-photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
}
.table-paypal-review-items .cart.item .col.price,
.table-paypal-review-items .cart.item .col.qty,
.table-paypal-review-items .cart.item .col.subtotal {
  padding: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.table-paypal-review-items .cart.item .col.price:before,
.table-paypal-review-items .cart.item .col.qty:before,
.table-paypal-review-items .cart.item .col.subtotal:before {
  content: attr(data-th);
  display: inline;
}
.table-paypal-review-items .opc-block-summary tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
}
.table-paypal-review-items .opc-block-summary tr:last-child {
  border-bottom: 0;
}
.table-paypal-review-items .opc-block-summary th {
  text-align: left;
}
.table-paypal-review-items .opc-block-summary th,
.table-paypal-review-items .opc-block-summary td {
  border: none;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 15px 0;
}
.hidden {
  display: none;
}
/**
 * These values will not show up in content, but can be
 * queried by JavaScript to know which breakpoint is active.
 * Add or remove as many breakpoints as you like.
 */
body:before {
  content: "mobile";
  display: none;
  /* Prevent from displaying. */
}
@media (min-width: 765px) {
  body:before {
    content: "desk";
  }
}
.policy-text {
  color: #cbc1b2;
  font-size: 14px;
  font-size: 0.875rem;
}
.policy-text a {
  color: #cbc1b2;
}
/*# sourceMappingURL=core.css.map */
.shake-and-hide-element{-moz-animation:hide-element 0s ease-in 5s forwards,shake-element 1s;-webkit-animation:hide-element 0s ease-in 5s forwards,shake-element 1s;-o-animation:hide-element 0s ease-in 5s forwards,shake-element 1s;animation:hide-element 0s ease-in 5s forwards,shake-element 1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@keyframes shake-element{0%,100%{transform:translateX(0)}
10%,30%,50%,70%,90%{transform:translateX(-5px)}20%,40%,60%,80%{transform:translateX(5px)}}@-webkit-keyframes shake-element{0%,100%{transform:translateX(0)}10%,30%,50%,70%,90%{transform:translateX(-5px)}20%,40%,60%,80%{transform:translateX(5px)}}@keyframes hide-element{to{width:0;height:0;padding:0;margin:0;overflow:hidden}}@-webkit-keyframes hide-element{to{width:0;height:0;padding:0;margin:0;visibility:hidden}}.warning-icon{width:20%;max-width:30px;font-size:21px;display:inline-block;vertical-align:middle}
.trustbox-message-text{width:80%;display:inline-block;vertical-align:middle}.trustbox-message-box{background-color:#fcf8e3;color:#8a6d3b;padding:15px;margin-bottom:20px;border-radius:4px;border:1px solid;border-color:#faebcc}