/* =============================================================================

IE8-targeted stylesheet for those pesky little issues

============================================================================= */
/* =============================================================================
    Pre-build - Generic classes, reset (normalize), silent workers
    ========================================================================= */
/* Variables - Establish site wide values =================================== */
/* =============================================================================
    Variables
    ========================================================================= */
/* Design assets =========================================================== */
/* Branding ================================================================= */
/* Typography =============================================================== */
/* Links ==================================================================== */
/* Grid Structure =========================================================== */
/* Media Queries ============================================================ */
/* Tables =================================================================== */
/* Forms ==================================================================== */
/* CTAs ===================================================================== */
/* Custom Colours */
/* Mixins - Setup some handy, resuable snippets ============================= */
/* =============================================================================
    Mixins - Select which (or all) mixins to use
    ========================================================================= */
/* =============================================================================
    Mixins - Include all
    ========================================================================= */
/* =============================================================================
    Animations & Keyframes mixins
    ========================================================================= */
/* Example

@include keyframe(changecolour) {
    0% {
        color: #000;
    }

    100% {
        color: #FFF;
    }
}

a:hover {
    @include animationperf;
    @include animation(1s, 2s, changecolour);
}

*/
/* =============================================================================
    Box-shadow complete with vendor prefixes, up to 5 shadow parameters
    ========================================================================= */
/* Example

div {
    @include box-shadow(
        0 0 5px 5px rgba(0,0,0,.25),
        inset 0 0 5px rgba(0,0,0,.25),
    );
}

*/
/* =============================================================================
    Column width calculator
    ========================================================================= */
/* Example:

.margin-element {
    margin-left: column(12, 6);
}

*/
/* Example:

.col-2of6 {
    @include col(6, 2);
}

*/
/* =============================================================================
    Calculate fluid ratio for an image based on two dimensions (width/height)
    - https://goo.gl/Wl694
    ========================================================================= */
/* Example - The following will have fluid ratio from 4:1 at 800px to 2:1 at 300px.

    HTML:
    <div class="column">
        <figure class="fixedratio"></figure>
    </div>

    CSS:
    .column {
        max-width: 800px;
    }
    .fixedratio {
        @include fluid-ratio(800px 200px, 300px 150px);
        background-image: url(/path/to/file/);
    }

*/
/* =============================================================================
	Calculate fluid ratio for a video/iframe based on two dimensions (width/height)
	- https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php
	========================================================================= */
/* Example - The following will have fluid ratio from 4:1 at 800px to 2:1 at 300px.

	HTML:
	<div class="my-fluid-video">
		<iframe src="blahblah" width="640" height="360" frameborder="0"></iframe>
	</div>

	CSS:
	.my-fluid-video {
		@include fluid-video(640, 360);
	}

*/
/* =============================================================================
    Font Sizing using rem's
    - https://goo.gl/4ow8e
    ========================================================================= */
/* Example

p {
    @include font-size(16);
}

*/
/* =============================================================================
    Vertical Gradient with solid colour back-up
    ========================================================================= */
/* Example

nav {
    @include gradient(#F5F5F5, #EEE, #FFF);
}

// multiple backgorun
.multiple-bg-elem {
	background: url("/assets/images/my-img.png") no-repeat left center, gradient(#ccc, #999);
}

*/
/* =============================================================================
    Line height using rem's
    ========================================================================= */
/* Example

p {
    @include line-height(24);
}

*/
/* =============================================================================
	Opacity with IE8 fallback
	========================================================================= */
/* Example

.inactive {
	@include opacity(.24);
}

*/
/* =============================================================================
    Transition mixin with speed and timing function
    ========================================================================= */
/* Example

a {
    @include transition(.3s, ease-out);
}

*/
/* =============================================================================
    Vector (SVG) background with fallback for IE8
    - https://goo.gl/72Ok6
    ========================================================================= */
/* Example

.logo {
    @include vector-bg-with-fallback(logo);
}

*/
/* =============================================================================
	Font Face includes
	========================================================================= */
/* Example

	@include font-face('open_sans', 'OpenSans-Regular-webfont');

*/
/* Normalize - Start with a nice clean cross browser base =================== */
/* =============================================================================
   normalize.css v3.0.1 | 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,
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: 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: 300;
}

/**
 * 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: .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: -.5em;
}

sub {
  bottom: -.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 {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
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 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 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: .35em .625em .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: 300;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Reusable helper classes such as IR, Clearfix, border-box etc. ============ */
/* =============================================================================
   Helper Classes/Mixins
   ========================================================================== */
.ir {
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
}

/* Vertical alignment - http://goo.gl/Im9MF5 ================================ */
/* Hide from screenreaders and browsers ===================================== */
/*
 * Accessibility helper
 */
.ll-a11y {
  color: transparent !important;
  font: 0/0 serif;
  padding: 0 !important;
  position: absolute;
  text-shadow: none;
}

/*
 * Visibility
 * Avoids setting display to `block` so it works also with `inline-block` and `table`
 */
@media (min-width: 86.375em) {
  .ll-visible-small {
    display: none !important;
  }

  .ll-visible-medium {
    display: none !important;
  }

  .ll-hidden-xlarge {
    display: none !important;
  }
}
/* Desktop and bigger */
@media (min-width: 60em) {
  .ll-visible-small {
    display: none !important;
  }

  .ll-visible-medium {
    display: none !important;
  }

  .ll-visible-xlarge {
    display: none !important;
  }

  .ll-hidden-large {
    display: none !important;
  }
}
/* Tablets portrait */
@media (min-width: 47.5em) and (max-width: 60em) {
  .ll-visible-small {
    display: none !important;
  }

  .ll-visible-large {
    display: none !important;
  }

  .ll-visible-xlarge {
    display: none !important;
  }

  .ll-hidden-medium {
    display: none !important;
  }
}
/* Phone landscape and smaller*/
@media (max-width: 47.5em) {
  .ll-visible-medium {
    display: none !important;
  }

  .ll-visible-large {
    display: none !important;
  }

  .ll-visible-xlarge {
    display: none !important;
  }

  .ll-hidden-small {
    display: none !important;
  }
}
/* Remove from the flow and screen readers on any device */
.ll-hidden {
  display: none !important;
  visibility: hidden !important;
}

/* Clearfix - Use @extend cf on element ===================================== */
.cf:after {
  clear: both;
  content: '';
  display: table;
}

/**
 * Clears
 */
.c-both {
  clear: both;
}

/**
 * Floats
 */
.f-right {
  float: right;
}

.f-left {
  float: left;
}

.f-none {
  float: none;
}

/**
 * Displays
 */
.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

/**
 * Text positioning
 */
.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

/**
 * Text styles
 */
.t-underline {
  text-decoration: underline !important;
}

.t-none {
  text-decoration: none !important;
}

/**
 * Positioning
 */
.p-rel {
  position: relative;
}

/**
 * Super margins
 */
.m-bottom {
  margin-bottom: 24px;
}
.m-bottom.x01 {
  margin-bottom: 12px / 2;
}
.m-bottom.x05 {
  margin-bottom: 12px;
}
.m-bottom.x3 {
  margin-bottom: 36px;
}
.m-bottom.x4 {
  margin-bottom: 48px;
}
.m-bottom.x6 {
  margin-bottom: 72px;
}

.m-right {
  margin-right: 12px;
}

.m-left {
  margin-left: 12px;
}
.m-left.x3 {
  margin-left: 36px;
}

.m-remove {
  margin: 0;
}

/**
 * Paddings
 */
.p-all {
  padding: 15px;
}

/**
 * Other position
 */
.v-middle {
  vertical-align: middle;
}

.v-top {
  vertical-align: top;
}

/**
 * Widths
 */
.w-45 {
  width: 45%;
}

/**
 * Images with borders
 */
.bordered {
  border: 1px solid #dcdcdc;
  padding: 2px;
}

/**
 * Images that should be full width
 */
.i-full-width {
  display: block;
  width: 100%;
}

/**
 * Need to add a margin to the header on certain pages
 * So that elements don't sit flush against it
 */
.header-margin header {
  margin-bottom: 20px;
}

/**
 * Some new margin helpers
 */
/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.ll-grid-margin {
  margin-top: 20px;
}

.ll-margin {
  margin-bottom: 20px;
}
.ll-margin + .ll-margin {
  margin-top: 20px;
}
.ll-margin-top {
  margin-top: 20px !important;
}
.ll-margin-bottom {
  margin-bottom: 20px !important;
}
.ll-margin-left {
  margin-left: 20px !important;
}
.ll-margin-right {
  margin-right: 20px !important;
}
.ll-margin-vertical {
  margin-bottom: 20px !important;
  margin-top: 20px !important;
}
.ll-margin-horizontal {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

* + .ll-margin {
  margin-top: 20px;
}

/*
 * Smaller margins
 */
.ll-margin-small {
  margin-bottom: 10px;
}
.ll-margin-small + .ll-margin-small {
  margin-top: 10px;
}
.ll-margin-small-top {
  margin-top: 10px !important;
}
.ll-margin-small-bottom {
  margin-bottom: 10px !important;
}
.ll-margin-small-left {
  margin-left: 10px !important;
}
.ll-margin-small-right {
  margin-right: 10px !important;
}
.ll-margin-small-vertical {
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}
.ll-margin-small-horizontal {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

* + .ll-margin-small {
  margin-top: 10px;
}

/*
 * Medium margins
 */
.ll-margin-medium {
  margin: 40px;
}
.ll-margin-medium-top {
  margin-top: 40px !important;
}
.ll-margin-medium-bottom {
  margin-bottom: 40px !important;
}
.ll-margin-medium-left {
  margin-left: 40px !important;
}
.ll-margin-medium-right {
  margin-right: 40px !important;
}
.ll-margin-medium-vertical {
  margin-bottom: 40px !important;
  margin-top: 40px !important;
}
.ll-margin-medium-horizontal {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

* + .ll-margin-medium {
  margin-top: 40px !important;
}

/*
 * Larger margins
 */
.ll-margin-large {
  margin-bottom: 40px;
}
.ll-margin-large + .ll-margin-large {
  margin-top: 40px;
}
.ll-margin-large-top {
  margin-top: 40px !important;
}
.ll-margin-large-bottom {
  margin-bottom: 40px !important;
}
.ll-margin-large-left {
  margin-left: 40px !important;
}
.ll-margin-large-right {
  margin-right: 40px !important;
}
.ll-margin-large-vertical {
  margin-bottom: 40px !important;
  margin-top: 40px !important;
}
.ll-margin-large-horizontal {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

* + .ll-margin-large {
  margin-top: 40px;
}

/*
 * Extra Large margins
 */
.ll-margin-xlarge {
  margin-bottom: 80px;
}
.ll-margin-xlarge + .ll-margin-xlarge {
  margin-top: 80px;
}
.ll-margin-xlarge-top {
  margin-top: 80px !important;
}
.ll-margin-xlarge-bottom {
  margin-bottom: 80px !important;
}
.ll-margin-xlarge-left {
  margin-left: 80px !important;
}
.ll-margin-xlarge-right {
  margin-right: 80px !important;
}
.ll-margin-xlarge-vertical {
  margin-bottom: 80px !important;
  margin-top: 80px !important;
}
.ll-margin-xlarge-horizontal {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

* + .ll-margin-xlarge {
  margin-top: 80px;
}

/*
 * Remove margins
 */
.ll-margin-remove {
  margin: 0 !important;
}

.ll-margin-top-remove {
  margin-top: 0 !important;
}

.ll-margin-bottom-remove {
  margin-bottom: 0 !important;
}

.ll-pos-rel {
  position: relative;
}

.lt-ie9 {
  /**
   * Form fixes for heights
   */
  /**
   * Header sections go too big
   */
  /**
   * The checkout steps
   */
  /**
   * Banners (mainly on homepage)
   */
  /**
   * Catalogue fix for translate
   */
}
.lt-ie9 .ll-form select,
.lt-ie9 .ll-form textarea,
.lt-ie9 .ll-form input.ll-form-width-full {
  background-color: #f5f5f5;
  background-position: right center;
  border: 1px solid #cecece;
  border-color: #cecece #f5f5f5 #f5f5f5 #cecece;
  padding: 12px 8px 13px;
}
.lt-ie9 .ll-form select.btn,
.lt-ie9 .ll-form textarea.btn,
.lt-ie9 .ll-form input.ll-form-width-full.btn {
  padding: 0 15px;
}
@media only screen and (min-width: 60em) {
  .lt-ie9 .head-bits > li.chat.logged-in {
    margin-left: 44px;
  }
  .lt-ie9 .head-bits > li.chat.logged-in > a > img {
    left: -40px;
    position: absolute;
  }
  .lt-ie9 .head-bits > li.chat.logged-in .current-person {
    margin-bottom: 4px;
  }
  .lt-ie9 .head-bits > li.chat.logged-in .icon-text {
    clear: both;
  }
}
.lt-ie9 .checkout-steps ol:before {
  left: 20%;
}
.lt-ie9 .ll-banner .ll-slide a .ie8-helper {
  background-color: #FFF;
  bottom: 0;
  display: block;
  left: 0;
  opacity: 0.6;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  position: absolute;
  right: 0;
  top: 0;
}
.lt-ie9 .ll-banner .ll-slide.active a .ie8-helper {
  display: none;
}
.lt-ie9 .catalogue-list li a .img-cont .img-modal .img-overlay {
  margin-left: -76px;
  top: 25%;
}
.lt-ie9 .image-section .panel-roundel h4 {
  top: 20%;
}
