@font-face {
  font-family: 'Circular Std';
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-medium.eot");
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-medium.eot?#iefix") format("embedded-opentype"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-medium.woff") format("woff"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-medium.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: 'Circular Std';
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-bold.eot");
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-bold.eot?#iefix") format("embedded-opentype"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-bold.woff") format("woff"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Circular Std';
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-book.eot");
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-book.eot?#iefix") format("embedded-opentype"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-book.woff") format("woff"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-book.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) {
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) {
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) {
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) {
    div { color:#888; }
}

// ----------------------------------------------
*/
/**
 * Wraps any styles in a retina media query.
 */
/**
 * Wraps any styles in a retina media query.
 */
/**
 * Option variable to define the spacing between images in the generated sprite
 */
/**
 * A mixin to create retina sprites with hover & active states
 *
 * You have to register a pair of sprites using `{@link #retina-sprite-add}` and then you can use this mixin:
 *
 *     @include retina-sprite-add(icons, "icons/*.png", "icons-retina/*.png");
 *
 *     .my-icon {
 *       @include retina-sprite(icon-name, icons);
 *     }
 *
 * @param {String} $name
 * @param {String} [$sprite-name]
 * @param {Boolean} [$hover=false]
 * @param {Boolean} [$active=false]
 */
/**
 * @param {String} $name
 * @param {String} $path
 * @param {String} $path2x
 */
/**
 * Wraps any styles in a retina media query.
 */
/**
 * Mixin for retina backgrounds where you can't use a sprite.
 *
 * - Make sure you have a file@2x.png file additional to your file.png.
 * - The mixin prepends $imgPath, which should be set globally at some point. Default is: "img/"
 *
 * Examples:
 *     li {
 *       @include retina-background(arrow, no-repeat 10px 15px)
 *     }
 *
 *     a.external {
 *       @include retina-background(external, no-repeat right)
 *     }
 *
 * @param {String} $file Path to file relative to images folder defined in config.rb and without a file extension
 * @param {Object} [$attr] Additional attributes like position or repetition. E.g. `no-repeat top right`
 * @param {String} [$type] The file type.
 */
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

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

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

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

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

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

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

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

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

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

/*
 * Prevents `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
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

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

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves 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],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 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;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/* ============================================ *
 * Reset
 * ============================================ */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-tap-highlight-color: transparent;
  /* Prevent tap highlight on iOS/Android */
  -webkit-text-size-adjust: 100%;
  /* Prevent automatic scaling on iOS */
}

body {
  background: #FFFFFF;
  color: #000000;
  line-height: 1;
}

html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

th,
code,
cite,
caption {
  font-weight: normal;
  font-style: normal;
  text-align: left;
}

address {
  font-style: normal;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

img {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

input:focus,
input[type="search"]:focus {
  outline-offset: -2px;
}

input[type="search"] {
  -webkit-appearance: none;
  /* 1 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* 2 */
  box-sizing: border-box;
}

/* ============================================ *
 * Base Styles
 * ============================================ */
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body,
button,
input,
select,
table,
textarea {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #636363;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: #46C2AC;
  text-decoration: none;
}

a:hover {
  color: #3bb39e;
  text-decoration: underline;
}

a:focus {
  outline-color: #3ebda6;
  color: #1c534a;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #46C2AC;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #636363;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* ============================================ *
 * Shared Classes
 * ============================================ */
.address-list address {
  margin-bottom: 1em;
}

.availability {
  margin-bottom: 0;
  font-size: 13px;
  text-transform: uppercase;
}

.availability .label {
  display: none;
}

.availability.in-stock {
  color: #11B400;
}

.availability.available-soon,
.availability.out-of-stock {
  color: #DF280A;
}

.availability-only {
  color: #DF280A;
  margin-bottom: 10px;
}

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  color: white;
  text-transform: capitalize;
  font-family: "Circular Std", sans-serif;
  font-weight: bold;
  font-size: 1em;
}
.page-title h1:lang(fr),
.page-title h2:lang(fr),
.product-name h1:lang(fr),
.product-name .h1:lang(fr) {
  text-transform: none;
}

/* -------------------------------------------- *
 * Block Module
 */
.block,
.col-left-first {
  margin-bottom: 20px;
}

.col-left-first .block:last-of-type {
  margin-bottom: 0;
}

.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
}
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #46C2AC;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #A0A0A0;
}

body:not(.customer-account) .block:first-child .block-title {
  border-top: none;
  padding-top: 0;
}

.block-subtitle {
  font-weight: bold;
  margin-bottom: 7px;
}

.block-content {
  margin-top: 5px;
}

.block-content.unpad {
  padding: 0;
}

.block-content li.item {
  margin: 0 0 10px 9px;
}

.block-content li.item:last-child {
  margin-bottom: 0;
}

.block .actions {
  margin: 10px 0 0;
}
.block .actions:after {
  content: '';
  display: table;
  clear: both;
}
.block .actions a {
  float: left;
}
.block .actions .button {
  float: right;
}

.col-left .block .actions .button ~ a,
.col-right .block .actions .button ~ a {
  line-height: 33px;
  margin-right: 5px;
}

@media only screen and (max-width: 770px) {
  .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) .block-title {
    padding: 0;
    margin-top: 0;
    border-bottom: none;
    border-top: none;
    margin-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) .block-title > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #636363;
    font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #CCCCCC;
    position: relative;
    background-color: #F4F4F4;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) .block-title > strong:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #46C2AC;
    border-right: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
    background-color: #ececec;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #636363;
    font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #CCCCCC;
    position: relative;
    background-color: #F4F4F4;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #46C2AC;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
    background-color: #ececec;
  }
  .sidebar .block:not(.block-layered-nav) .block-content {
    padding: 10px;
    margin-top: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
  }
  .sidebar .block:last-of-type {
    border-bottom: 1px solid #CCCCCC;
  }
}
/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}
.block-account li,
.block-cms-menu li {
  text-transform: uppercase;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 7px 0;
}
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #46C2AC;
}
.block-account li a,
.block-cms-menu li a {
  color: #636363;
}
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #46C2AC;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.cart .buttons-set .button,
.cart-table .button,
.sidebar .actions .button,
.button.button-secondary {
  background: #DDDDDD;
  color: #636363;
  padding: 7px 15px;
}
.cart .buttons-set .button:hover,
.cart-table .button:hover,
.sidebar .actions .button:hover,
.button.button-secondary:hover {
  background: #d0d0d0;
  cursor: pointer;
}
.cart .buttons-set .button:active,
.cart-table .button:active,
.sidebar .actions .button:active,
.button.button-secondary:active {
  background: #c4c4c4;
  color: #636363;
}
.cart .buttons-set .button:focus,
.cart-table .button:focus,
.sidebar .actions .button:focus,
.button.button-secondary:focus {
  color: #636363;
  background: #c4c4c4;
  outline: none;
}

.sidebar .actions button.button {
  white-space: normal;
}

/* Primary Buttons */
.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  background: #46C2AC;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #3bb39e;
  cursor: pointer;
}
.button:active,
.cart-table .product-cart-actions .button:active,
#co-shipping-method-form .buttons-set .button:active,
.footer .button:active {
  background: #35a08d;
  color: #FFFFFF;
}
.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #35a08d;
  outline: none;
  color: #FFFFFF;
}

a.button {
  text-decoration: none;
}

a.button:hover {
  color: #FFFFFF;
}

/* Disabled - class for anchor, state for form elements */
.button.disabled,
.button:disabled {
  background: #C8C8C8;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Adjacent buttons */
.button + .button {
  margin-left: 5px;
}

.button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
}

.button2:focus {
  outline: none;
}

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #46C2AC;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #2e8d7c;
}

@media only screen and (max-width: 770px) {
  .col2-set .buttons-set .button,
  .col2-set .buttons-set .button2 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .col2-set .buttons-set .back-link {
    display: none;
  }
  .col2-set .buttons-set .required {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .buttons-set .button {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px;
  }
  .buttons-set .back-link {
    display: none;
  }
  .buttons-set .required {
    display: none;
  }
}
/* -------------------------------------------- *
 * Paypal Button
 */
.paypal-logo.paypal-after {
  float: left;
}

.paypal-after .paypal-or {
  float: left;
}

.paypal-or {
  line-height: 34px;
  margin: 0px 10px 5px;
}

.paypal-after .paypal-button {
  float: left;
}

.paypal-button {
  line-height: 0px;
}

.paypal-button img {
  display: inline;
}

@media only screen and (max-width: 740px) {
  .paypal-or {
    line-height: 20px;
  }

  .paypal-logo,
  .paypal-or,
  .paypal-button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}
/* -------------------------------------------- *
 * Button Sets
 */
.buttons-set {
  clear: both;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
  text-align: right;
}
.buttons-set p.required {
  margin: 0;
  margin-left: 10px;
  line-height: 33px;
  float: right;
}
.buttons-set .back-link {
  float: left;
  margin: 0;
  line-height: 33px;
}
.buttons-set a:not(.button) {
  line-height: 20px;
  display: inline-block;
  padding: 5px;
}
.buttons-set button.button {
  float: right;
  margin-left: 5px;
  min-width: 140px;
}
.buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
.sorter > .view-mode .list, .skip-search .icon, #search_mini_form .search-button:before, .skip-account .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
  background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
  .sorter > .view-mode .list, .skip-search .icon, #search_mini_form .search-button:before, .skip-account .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
    background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}
.style-selection-circles li {
  background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites/icons-general-sdf01f05dbd.png');
  background-position: 0 -306px;
  background-repeat: repeat-y;
  height: 11px;
  width: 11px;
  /**
   * Option variable to turn on/off IE8 support.
   *
   * This requires Modernizr's test for `css-mediaqueries` and RespondJS
   *
   * Set to `1` to turn on support.
   */
  display: inline-block;
  cursor: pointer;
}
.style-selection-circles li:hover {
  background-position: 0 -319px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .style-selection-circles li {
    background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites-retina/icons-general-sb2327ac76a.png');
    -moz-background-size: 31px 330px;
    -o-background-size: 31px 330px;
    -webkit-background-size: 31px 330px;
    background-size: 31px 330px;
    background-position: 0 -305.5px;
  }
  .style-selection-circles li:hover {
    background-position: 0 -318.5px;
  }
}

.style-selection-circles li.active {
  background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites/icons-general-sdf01f05dbd.png');
  background-position: 0 -293px;
  background-repeat: repeat-y;
  height: 11px;
  width: 11px;
  /**
   * Option variable to turn on/off IE8 support.
   *
   * This requires Modernizr's test for `css-mediaqueries` and RespondJS
   *
   * Set to `1` to turn on support.
   */
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .style-selection-circles li.active {
    background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites-retina/icons-general-sb2327ac76a.png');
    -moz-background-size: 31px 330px;
    -o-background-size: 31px 330px;
    -webkit-background-size: 31px 330px;
    background-size: 31px 330px;
    background-position: 0 -292.5px;
  }
}

.section-divider {
  width: 55px;
  border-top: 1px solid dimgrey;
  border-bottom: 1px solid #808080;
  line-height: 0;
  margin-bottom: -6px;
}
@media only screen and (min-width: 771px) {
  .section-divider {
    width: 75px;
  }
}

/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: -15px 0 15px;
}

.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.breadcrumbs a {
  float: left;
  color: #636363;
}

.breadcrumbs a:hover {
  color: #46C2AC;
}

.breadcrumbs strong {
  color: #636363;
  font-weight: normal;
}

.breadcrumbs span {
  float: left;
  padding: 0 7px;
}

@media only screen and (max-width: 770px) {
  .breadcrumbs {
    display: none;
  }
}
/* -------------------------------------------- *
 * Button - Remove / Previous
 */
.btn-remove,
.btn-previous {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #EDEDED;
  text-align: center;
  /* Hide text */
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: relative;
}
.btn-remove:hover,
.btn-previous:hover {
  background-color: #46C2AC;
  border-color: #46C2AC;
}

.btn-remove:after {
  content: 'X';
  color: #46C2AC;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-family: Arial, "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
}
.btn-remove:hover:after {
  color: #FFFFFF;
  text-decoration: none;
}

.btn-remove2 {
  background-position: 4px -648px;
  border: none;
  vertical-align: top;
}
.btn-remove2:after {
  display: none;
}
.btn-remove2:hover {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.btn-previous:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #46C2AC;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px;
}
.btn-previous:hover:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #FFFFFF;
  border-left: none;
}

.block-layered-nav .currently .btn-remove,
.block-layered-nav .currently .btn-previous,
.mini-products-list .btn-remove,
.mini-products-list .btn-previous,
#compare-items .btn-remove,
#compare-items .btn-previous {
  float: right;
  margin-left: 6px;
}

/* -------------------------------------------- *
 * Checkout Agreements
 */
.checkout-agreements li {
  margin-bottom: 20px;
}

.checkout-agreements .agreement-content {
  overflow-y: auto;
  max-width: 670px;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
}

/* -------------------------------------------- *
 * CVV Security Code
 */
.cvv-what-is-this {
  margin-left: 10px;
  font-size: 13px;
  line-height: 24px;
}

/* -------------------------------------------- *
 * Container
 */
.main-container {
  position: relative;
  margin: 0 auto;
}
.main-container:after {
  content: '';
  display: table;
  clear: both;
}

.container-inner {
  max-width: 1260px;
}

.footer-container {
  display: table-row;
  height: 1px;
  margin: 0 auto;
  background-color: #222222;
}

/* -------------------------------------------- *
 * Column Layouts
 */
.main:after,
.col-wrapper:after {
  content: '';
  display: table;
  clear: both;
}

.col-left,
.col-right,
.col-main {
  padding: 0 10px;
}

.col-left {
  float: left;
  width: 25%;
  padding-left: 0;
  /* Remove the 15px padding */
  clear: left;
}
.col-left img {
  max-width: 100%;
}

.col-right {
  float: right;
  width: 25%;
  padding-right: 0;
  /* Remove the 15px padding */
}
.col-right img {
  max-width: 100%;
}

.col-main {
  float: left;
  width: 75%;
}

.col1-layout .col-main {
  float: none;
  width: auto;
  padding: 0;
  /* Remove the 15px padding */
}

.col2-left-layout .col-main {
  float: right;
  padding-right: 0;
  /* Remove the 15px padding */
}

.col2-right-layout .col-main {
  padding-left: 0;
  /* Remove the 15px padding */
}

.col3-layout .col-right {
  width: 20.83333%;
}
.col3-layout .col-wrapper {
  float: left;
  width: 79.16667%;
}
.col3-layout .col-wrapper .col-main {
  float: right;
  width: 73.68421%;
}
.col3-layout .col-wrapper .col-left {
  width: 26.31579%;
}

@media only screen and (max-width: 1000px) {
  .col3-layout .col-right {
    float: left;
    clear: left;
    padding-left: 0;
    padding-right: 10px;
    width: 25%;
  }
  .col3-layout .col-wrapper {
    float: right;
    width: 100%;
  }
  .col3-layout .col-wrapper .col-main {
    float: right;
    width: 75%;
  }
  .col3-layout .col-wrapper .col-left {
    width: 25%;
  }
}
/* Content Columns */
.col2-set {
  width: 100%;
}
.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}
@media only screen and (max-width: 770px) {
  .col2-set .col-1,
  .col2-set .col-2 {
    padding: 10px;
  }
}
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
.col2-set .col-2 {
  float: right;
  padding-right: 0;
}
@media only screen and (max-width: 479px) {
  .col2-set .col-1,
  .col2-set .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
.col2-set .narrow {
  width: 33%;
}
.col2-set .wide {
  width: 65%;
}
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Top Container
 */
@media only screen and (min-width: 771px) {
  .top-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: #676157;
  color: #FFFFFF;
  font-size: 11px;
}
.global-site-notice .notice-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  text-align: center;
}
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #46C2AC;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* -------------------------------------------- *
 * Grid
 */
.grid:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #11B400;
}

.error {
  color: #DF280A;
  font-weight: bold;
}

.notice {
  color: #E26703;
  font-weight: bold;
}

/* -------------------------------------------- *
 * Messages
 */
.messages {
  margin-bottom: 10px;
}

.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 7px 10px 7px 20px;
  background: #F4F4F4;
  font-size: 15px;
}

.messages li li:before {
  top: 50%;
  left: 0;
  margin-top: -6px;
}

.messages .error-msg li {
  color: #000000;
  border-left: 5px solid #DF280A;
  background-color: #FAEBE7;
}

.messages .error-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #DF280A;
  border-right: none;
}

.messages .notice-msg li {
  color: #000000;
  border-left: 5px solid #E26703;
  background-color: #F9EBE6;
}

.messages .notice-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #E26703;
  border-right: none;
}

.messages .success-msg li {
  color: #000000;
  border-left: 5px solid #11B400;
  background-color: #EFF5EA;
}

.messages .success-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #11B400;
  border-right: none;
}

@media only screen and (min-width: 915px) {
  .order-list-grid .col-1 {
    width: 30%;
  }

  .order-list-grid .col-2 {
    width: 50%;
    padding-right: 20px;
  }

  .order-list-grid .col-3 {
    clear: none;
    width: 20%;
    padding-top: 0;
  }
}
/* -------------------------------------------- *
 * Page Popup
 */
.page-popup {
  padding: 20px;
  background: #FFFFFF;
  height: auto;
}

.page-popup h1 {
  margin: 0 0 0.5em;
  font-size: 36px;
}

/* -------------------------------------------- *
 * Payment Methods
 */
.payment-methods {
  margin-bottom: 20px;
}

.payment-methods dt {
  padding: 5px 0;
}

.payment-methods dd {
  padding-top: 10px;
}

.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
}

.payment-methods .form-list:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #CCCCCC;
  border-top: none;
  top: -11px;
  left: 30px;
}

.payment-methods .form-list:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #F4F4F4;
  border-top: none;
  top: -10px;
  left: 30px;
}

.payment-methods .form-list li:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */
.please-wait {
  display: inline-block;
  margin-left: 10px;
  margin-top: 5px;
  line-height: 24px;
  height: 24px;
  white-space: nowrap;
  /* Prevent the linebreak in the HTML from causing layout issues */
}
.please-wait img {
  float: left;
  margin-right: 5px;
  width: 24px;
}

/* -------------------------------------------- *
 * Price Box - Standard
 */
.price-box {
  margin: 7px 0;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}

.price-box p {
  margin-bottom: 0;
}

.price-notice {
  color: #A0A0A0;
}

.price-box .price {
  color: #5f5a5f;
}

.price-box .price,
.price {
  font-family: "Circular Std", sans-serif;
}

.price-box .price-label {
  color: #A0A0A0;
  white-space: nowrap;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.price-box .minimal-price-link {
  padding-left: 1em;
  color: #46C2AC;
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */
}
.price-box .minimal-price-link .label {
  color: #A0A0A0;
}

/* -------------------------------------------- *
 * Price Box - Special
 */
.price-box .old-price,
.price-box .special-price {
  display: inline-block;
}
.price-box .old-price .price-label,
.price-box .special-price .price-label {
  display: none;
}
.price-box .old-price .price,
.price-box .special-price .price {
  display: inline-block;
}

.price-box .old-price .price {
  color: #A0A0A0;
  text-decoration: line-through;
}

.price-box .special-price {
  color: #46C2AC;
  padding-left: 1em;
}
.price-box .special-price .price-label {
  color: #D84D3C;
}

/* -------------------------------------------- *
 * Price Box - Taxes
 */
.price-box .price-excluding-tax,
.price-box .price-including-tax {
  display: block;
}

span.weee {
  display: block;
}

/* -------------------------------------------- *
 * Tier Prices
 */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  padding: 4px 8px;
  background: #FBF4DE;
  border: 1px solid #E2D4C7;
  margin-top: 7px;
}
.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px;
}
.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic;
}
.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold;
}

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options {
  font-size: 14px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
.item-options dt {
  float: left;
  clear: left;
  font-weight: 600;
  padding-right: 5px;
  font-style: italic;
}
.item-options dt:after {
  content: ': ';
}
.item-options dd {
  float: left;
  padding-left: 10px;
  margin: 0 0 6px;
}

.truncated,
.truncated a.dots {
  cursor: help;
}

.truncated a.details {
  cursor: help;
  height: 16px;
  line-height: 16px;
}
.truncated a.details:hover {
  text-decoration: none;
}

.truncated .truncated_full_value {
  position: relative;
  z-index: 300;
}

.truncated .truncated_full_value .item-options {
  display: none;
  position: absolute;
  z-index: 300;
  width: 200px;
  padding: 8px;
  border: 1px solid #46C2AC;
  background-color: #F6F6F6;
  top: 21px;
  left: -100px;
}
.truncated .truncated_full_value .item-options:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #46C2AC;
  border-top: none;
  left: 97px;
  top: -7px;
}

.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.truncated .show .item-options {
  display: block;
}

@media only screen and (max-width: 479px) {
  .truncated {
    cursor: inherit;
  }
  .truncated a.details {
    display: none;
  }
  .truncated .truncated_full_value .item-options {
    display: block;
    position: static;
    z-index: 1;
    width: 100%;
    border: none;
    background-color: transparent;
  }
  .truncated .truncated_full_value .item-options p {
    float: none;
  }
  .truncated .truncated_full_value .item-options:after {
    display: none;
  }
}
/* -------------------------------------------- *
 * Printer Friendly Page
 */
.page-print {
  width: 6.5in;
  margin: 20px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Add to links
 */
.add-to-links {
  margin: 7px 0;
}
.add-to-links a {
  display: inline-block;
  padding: 0px 3px 3px;
}

.add-to-links .separator {
  display: none;
}

/* -------------------------------------------- *
 * Product Image
 */
.product-image,
.no-touch .product-img-box .product-image:not(.zoom-available):hover {
  position: relative;
  display: block;
}

@media only screen and (max-width: 770px) {
  body .product-img-box .product-image:hover {
    border-color: #EDEDED;
  }
}
.no-touch .product-image:hover {
  border-color: #46C2AC;
}

/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 7px 0;
}
.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}
.ratings .rating-box {
  width: 65px;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -615px;
  overflow: hidden;
}
.ratings .rating-box .rating {
  float: left;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -600px;
}
.ratings .amount {
  display: block;
  margin: 5px auto;
}
.ratings .rating-links .separator {
  margin: 0 3px;
}

/* -------------------------------------------- *
 * Tabs
 */
.tabs {
  margin-bottom: 10px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  background: #F4F4F4;
  padding: 5px 10px 0px 10px;
}
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}

.pager-no-toolbar {
  margin-bottom: 10px;
}

.pager-no-toolbar ~ .pager-no-toolbar {
  margin-top: 10px;
}

.toolbar,
.pager {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #636363;
  line-height: 30px;
  font-size: 12px;
}

.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
  text-transform: uppercase;
}

.sorter {
  float: left;
  margin-bottom: 5px;
}
.sorter label {
  float: left;
  margin-right: 5px;
}
.sorter label:after {
  content: ':';
}

.sorter > .sort-by {
  float: left;
  margin-right: 5px;
  height: 30px;
}
.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block;
}
.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}
.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}
.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}
.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}

.sorter > .view-mode {
  float: right;
}
.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  float: left;
  width: 30px;
  height: 30px;
}
.sorter > .view-mode .grid {
  margin-right: 5px;
  background-position: 8px -492px;
}
.sorter > .view-mode strong.grid,
.sorter > .view-mode a.grid:hover {
  background-position: -42px -492px;
}
.sorter > .view-mode .list {
  background-position: 11px -517px;
}
.sorter > .view-mode strong.list,
.sorter > .view-mode a.list:hover {
  background-position: -39px -517px;
}

.pager {
  float: right;
  overflow: hidden;
}
.pager > .count-container {
  float: left;
}
.pager .amount {
  float: left;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  white-space: nowrap;
  margin: 0 15px 0 0;
}
.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px;
}
.pager .limiter > label {
  padding-right: 5px;
}
.pager .limiter > label:after {
  content: ':';
}
.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px;
}

.pages {
  float: right;
  overflow: hidden;
  margin-left: 15px;
}
.pages strong {
  display: none;
}

.pages li {
  float: left;
}

.pages a,
.pages .current {
  display: inline-block;
  border: 0;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 30px;
  width: 25px;
  height: 30px;
  padding: 0;
  color: #46C2AC;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}

.pages .current,
.pages .current:hover {
  color: #636363;
  border: 1px solid #CCCCCC;
  width: 30px;
  background-color: #FFFFFF;
  cursor: default;
}

.pages .next,
.pages .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative;
}
.pages .next:hover,
.pages .previous:hover {
  border: 1px solid #46C2AC;
}

.pages .next:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #46C2AC;
  border-right: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}
.pages .next:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #2e8d7c;
  border-right: none;
}

.pages .previous:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #46C2AC;
  border-left: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}
.pages .previous:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #2e8d7c;
  border-left: none;
}

@media only screen and (max-width: 479px) {
  .pager .amount--has-pages {
    display: none;
  }

  .pages {
    float: left;
  }

  .limiter label {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  .col1-layout .sorter,
  .col1-layout .pager {
    width: 100%;
  }
  .col1-layout .pager {
    float: left;
    clear: both;
  }
  .col1-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  .col1-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 979px) {
  .col2-left-layout .sorter,
  .col2-left-layout .pager,
  .col2-right-layout .sorter,
  .col2-right-layout .pager,
  .col3-layout .sorter,
  .col3-layout .pager {
    width: 100%;
  }
  .col2-left-layout .pager,
  .col2-right-layout .pager,
  .col3-layout .pager {
    float: left;
    clear: both;
  }
  .col2-left-layout .pager .pages,
  .col2-right-layout .pager .pages,
  .col3-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  .col2-left-layout .pager .count-container,
  .col2-right-layout .pager .count-container,
  .col3-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 1279px) {
  .toolbar .view-mode > label {
    display: none;
  }
}
/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}
#checkout-review-table .summary-collapse:before,
#shopping-cart-totals-table .summary-collapse:before,
body.customer-account .data-table .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #46C2AC;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .summary-collapse:hover:before,
#shopping-cart-totals-table .summary-collapse:hover:before,
body.customer-account .data-table .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #2e8d7c;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .show-details .summary-collapse:before,
#shopping-cart-totals-table .show-details .summary-collapse:before,
body.customer-account .data-table .show-details .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #46C2AC;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .show-details .summary-collapse:hover:before,
#shopping-cart-totals-table .show-details .summary-collapse:hover:before,
body.customer-account .data-table .show-details .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #2e8d7c;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

#shopping-cart-totals-table tfoot td .summary-collapse:before, #shopping-cart-totals-table tfoot td .summary-collapse:hover:before {
  margin-bottom: 5px;
}

/* ============================================ *
 * Toggle PC and mobile versions of text (mobile default)
 * ============================================ */
.pc-text {
  display: none;
}

@media only screen and (min-width: 771px) {
  .pc-text {
    display: block;
  }

  .mobile-text {
    display: none;
  }
}
/* ============================================ *
 * Magento Helpers
 * ============================================ */
.a-center {
  text-align: center;
}

.a-right,
.align-right {
  text-align: right;
}

.no-display {
  display: none !important;
}

.nobr,
.nowrap {
  white-space: nowrap;
}

.width-full {
  width: 100%;
}

/* ============================================ *
 * Custom Helpers
 * ============================================ */
.hidden {
  display: none;
}

/* ============================================ *
 * Print Styles
 * ============================================ */
.page-print .print-head {
  margin: 0 0 15px;
}

.page-print .print-head .logo {
  float: none;
  max-height: 50px;
  width: auto;
}

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset p {
  margin-bottom: 7px;
}
.fieldset p.required {
  margin-bottom: 5px;
  float: right;
  font-size: 12px;
  margin-top: 0px;
}

.fieldset + .fieldset {
  margin-top: 5px;
}

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EDEDED;
}

/* -------------------------------------------- *
 * Input Box
 */
.input-box {
  padding-top: 2px;
}
.input-box:after {
  content: '';
  display: table;
  clear: both;
}

li.centinel-logos div.input-box img {
  display: inline;
  vertical-align: middle;
}

/* For adjacent select inputs. */
/* Example: credit card expiration month and year. */
.input-box .v-fix {
  float: left;
  margin-right: 5px;
  max-width: 100%;
}

/* -------------------------------------------- *
 * Labels
 */
label {
  display: inline-block;
  font-size: 13px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

label.required:after,
span.required:after {
  content: ' *';
  color: #DF280A;
  font-weight: normal;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}

label.required em,
span.required em {
  display: none;
}

/* -------------------------------------------- *
 * Hints
 */
.input-hint {
  color: #A0A0A0;
  font-size: 12px;
}

/* -------------------------------------------- *
 * Select
 */
select {
  font-size: 14px;
}

select + select {
  margin-left: 5px;
}

select[multiple] {
  width: 270px;
  border: 1px solid #C0C0C0;
  font-size: 15px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Textarea
 */
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 450px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #C0C0C0;
  background: #FFFFFF;
  font-size: 15px;
}
.input-text:focus {
  border: 1px solid #46C2AC;
}

.input-text.validation-failed {
  border-color: #DF280A;
}

.input-text.validation-failed:focus {
  outline-color: #ef9384;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 30px;
  padding: 0 8px;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  width: 365px;
  max-width: 100%;
}

/* Only show on iPhones (not iPads or any other device) */
@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 0) {
  input[type=email],
  input[type=search],
  input[type=number],
  input[type=password],
  input[type=tel],
  input[type=text],
  select {
    font-size: 16px;
    /* Prevent from zooming on focus */
  }
}
.ie8 .input-text {
  max-width: none;
}

/* -------------------------------------------- *
 * Inputs - Quantity
 */
input[type=number].qty,
input[type=text].qty {
  width: 3em;
  text-align: center;
  vertical-align: middle;
}

/* -------------------------------------------- *
 * Placeholder
 */
::-webkit-input-placeholder {
  color: #A0A0A0;
}

input:-moz-placeholder {
  color: #A0A0A0;
}

/* -------------------------------------------- *
 * Checkbox And Radio
 */
.checkbox,
.radio {
  position: relative;
  top: -1px;
  display: inline-block;
}

.checkbox + label,
.radio + label {
  width: auto;
  max-width: 85%;
  padding: 0 0 0 8px;
  font-size: 14px;
  font-weight: normal;
  vertical-align: top;
}

/* -------------------------------------------- *
 * Validation
 */
p.required,
.validation-advice {
  margin: 5px 0 0;
  color: #DF280A;
  font-size: 13px;
}

/* ============================================ *
 * Form List
 * ============================================ */
.form-list > li {
  margin-bottom: 10px;
}
.form-list select {
  margin-top: 4px;
  width: 365px;
  max-width: 100%;
}
.form-list .input-range .input-text {
  width: 74px;
}
.form-list .field,
.form-list .wide,
.form-list .control {
  margin-bottom: 10px;
}

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */
}
.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}
.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
.product-options ul.options-list div.input-box:after {
  display: none;
}
.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -40px;
  margin-top: 10px;
  margin-left: 15px;
}
.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
#co-shipping-method-form .sp-methods dd label,
.product-options ul.options-list label {
  color: #636363;
  background-color: #F4F4F4;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 40px;
}
.form-list .control label:hover,
.sp-methods dt label:hover,
#checkout-shipping-method-load .sp-methods dd label:hover,
#co-shipping-method-form .sp-methods dd label:hover,
.product-options ul.options-list label:hover {
  background-color: #ececec;
}
.form-list .control .no-display + label,
.sp-methods dt .no-display + label,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd .no-display + label,
.product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}
.form-list .control .no-display + label:hover,
.sp-methods dt .no-display + label:hover,
#checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dd .no-display + label:hover,
.product-options ul.options-list .no-display + label:hover {
  background-color: transparent;
}

.product-options ul.options-list label,
.col2-set .form-list .control label {
  min-width: inherit;
  width: 250px;
  max-width: 100%;
}

.form-list .control.remember-me-box label {
  width: auto;
  max-width: none;
  min-width: inherit;
}

.form-list .control {
  margin-top: 10px;
}
.form-list .control label {
  float: none;
}
.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 6px;
}
.form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0;
}

form .form-instructions {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  color: #A0A0A0;
}

/* ============================================ *
 * Table Helpers
 * ============================================ */
.hide-th {
  text-indent: -9999px;
}

/* ============================================ *
 * Data Table
 * ============================================ */
.data-table {
  width: 100%;
}

.data-table td,
.data-table th {
  padding: 10px;
  vertical-align: top;
}

.data-table th {
  background: #F4F4F4;
  text-transform: uppercase;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 1.4;
  white-space: nowrap;
}

.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid #C0C0C0;
}

.data-table tbody td,
.data-table tfoot td {
  font-family: Georgia, Times, "Times New Roman", serif;
}

.data-table tfoot tr {
  background: #F4F4F4;
}

.data-table tbody td .item-options {
  margin-left: 20px;
  margin-top: 10px;
}
.data-table tbody td .item-options dt:after {
  content: ':';
}

/* ============================================ *
 * Generic Info Table
 * ============================================ */
.info-box {
  border: 1px solid #C0C0C0;
  padding: 12px 15px;
  margin: 0 0 15px;
}
.info-box h2 {
  font-weight: bold;
  font-size: 13px;
}

.info-table th,
.info-table td {
  vertical-align: top;
}

.info-table th {
  font-weight: bold;
  padding: 4px 20px 4px 0;
}

.info-table td {
  padding: 4px 0;
}

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */
.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 1px solid #C0C0C0;
}
.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #C0C0C0;
  padding: 6px;
  background-color: transparent;
}
.zebra-table tr {
  background-color: #EEEDED;
}
.zebra-table tr:nth-child(odd) {
  background-color: #F8F7F5;
}

/* ============================================ *
 * Linearize Table
 * ============================================ */
@media only screen and (max-width: 479px) {
  .linearize-table {
    /* Helpers */
  }
  .linearize-table tr,
  .linearize-table th,
  .linearize-table td {
    display: block;
  }
  .linearize-table thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table thead th.lin-hide {
    display: none;
  }
  .linearize-table thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .linearize-table tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table tbody td.lin-hide {
    display: none;
  }
  .linearize-table tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table tbody td:first-child,
  .linearize-table tbody td:first-child h3 {
    font-weight: bold;
  }
  .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .linearize-table tfoot td {
    display: block;
    float: left;
  }
  .linearize-table tfoot td.lin-hide {
    display: none;
  }
  .linearize-table tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table .linearize-hide {
    display: none;
  }
  .linearize-table .linearize-unpad {
    padding: 0;
  }
  .linearize-table .linearize-show {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  .linearize-table-large {
    /* Helpers */
  }
  .linearize-table-large tr,
  .linearize-table-large th,
  .linearize-table-large td {
    display: block;
  }
  .linearize-table-large thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table-large thead th.lin-hide {
    display: none;
  }
  .linearize-table-large thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table-large tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .linearize-table-large tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table-large tbody td.lin-hide {
    display: none;
  }
  .linearize-table-large tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table-large tbody td:first-child,
  .linearize-table-large tbody td:first-child h3 {
    font-weight: bold;
  }
  .linearize-table-large tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table-large tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table-large tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table-large tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .linearize-table-large tfoot td {
    display: block;
    float: left;
  }
  .linearize-table-large tfoot td.lin-hide {
    display: none;
  }
  .linearize-table-large tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table-large tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table-large .linearize-hide {
    display: none;
  }
  .linearize-table-large .linearize-unpad {
    padding: 0;
  }
  .linearize-table-large .linearize-show {
    display: block;
  }
}
@media only screen and (min-width: 600px) {
  .linearize-table .linearize-collapse {
    display: none;
  }
}
/* ============================================ *
 * Global
 * ============================================ */
html,
body {
  height: 100%;
}

html {
  overflow: hidden;
}

body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.wrapper {
  height: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  background: #FFFFFF;
}

.page {
  display: table;
  height: 100%;
  table-layout: fixed;
  width: 100%;
}

.wrapper:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Header
 * ============================================ */
header {
  margin-bottom: 65px;
}

@media only screen and (min-width: 771px) {
  .page-header {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
.header-language-container,
.page-header {
  font-family: "Circular Std", sans-serif;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  height: 35px;
  background-color: #222222;
  text-transform: uppercase;
  line-height: 18px;
}
.header-language-background .header-language-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.header-language-background:after {
  content: '';
  display: table;
  clear: both;
}
.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}
.header-language-background .welcome-msg {
  float: right;
}

.page-header-container {
  position: relative;
}

.page-header-container .store-language-container {
  float: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px;
}
.page-header-container .store-language-container label {
  display: none;
}
.page-header-container .store-language-container select {
  max-width: 100%;
}

@media only screen and (max-width: 479px) {
  .page-header-container .store-language-container {
    padding-top: 8px;
  }
  .page-header-container .store-language-container select {
    font-size: 12px;
  }
}
.header-language-background,
.header-language-background a {
  color: #FFFFFF;
}

@media only screen and (max-width: 770px) {
  .page-header-container {
    padding: 10px;
    background: #222222;
  }

  .page-header-container:after {
    content: '';
    display: table;
    clear: both;
  }

  .header-language-background, #follow-us-wrapper {
    display: none;
  }
}
/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: block;
  width: 176px;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  margin: auto;
}
.logo img {
  max-width: 100%;
}
.logo img.small {
  margin: 0 auto;
  max-height: 40px;
}
.logo .large {
  display: none;
}

.logo:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 771px) {
  .logo {
    width: 197px;
    margin: 0;
    top: 45px;
  }
  .logo .small {
    display: none;
  }
  .logo .large {
    display: block;
  }
}
/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link {
  position: relative;
  float: left;
  color: #636363;
}

a.skip-link {
  text-decoration: none;
}

.skip-link:not(.skip-active):hover {
  opacity: 0.8;
}

/* -------------------------------------------- *
 * Follow us
 */
#follow-us-wrapper {
  float: right;
  margin-top: 14px;
}
#follow-us-wrapper p {
  float: left;
  font-family: "Circular Std", sans-serif;
  font-size: 14px;
  line-height: 30px;
  margin-right: 9px;
  margin-top: 3px;
}
#follow-us-wrapper ul {
  float: left;
}
#follow-us-wrapper ul li {
  float: left;
  margin-left: 7px;
}
#follow-us-wrapper ul li a {
  display: inline-block;
}
#follow-us-wrapper ul li a span {
  display: none;
}
#follow-us-wrapper ul:last-child {
  margin-right: 20px;
}
#follow-us-wrapper .fb-follow-icon {
  background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites/icons-general-sdf01f05dbd.png');
  background-position: 0 -18px;
  background-repeat: repeat-y;
  height: 30px;
  width: 31px;
  /**
   * Option variable to turn on/off IE8 support.
   *
   * This requires Modernizr's test for `css-mediaqueries` and RespondJS
   *
   * Set to `1` to turn on support.
   */
}
#follow-us-wrapper .fb-follow-icon:hover {
  background-position: 0 -50px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #follow-us-wrapper .fb-follow-icon {
    background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites-retina/icons-general-sb2327ac76a.png');
    -moz-background-size: 31px 330px;
    -o-background-size: 31px 330px;
    -webkit-background-size: 31px 330px;
    background-size: 31px 330px;
    background-position: 0 -18px;
  }
  #follow-us-wrapper .fb-follow-icon:hover {
    background-position: 0 -50px;
  }
}
#follow-us-wrapper .instagram-follow-icon {
  background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites/icons-general-sdf01f05dbd.png');
  background-position: 0 -164px;
  background-repeat: repeat-y;
  height: 30px;
  width: 30px;
  /**
   * Option variable to turn on/off IE8 support.
   *
   * This requires Modernizr's test for `css-mediaqueries` and RespondJS
   *
   * Set to `1` to turn on support.
   */
}
#follow-us-wrapper .instagram-follow-icon:hover {
  background-position: 0 -196px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #follow-us-wrapper .instagram-follow-icon {
    background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites-retina/icons-general-sb2327ac76a.png');
    -moz-background-size: 31px 330px;
    -o-background-size: 31px 330px;
    -webkit-background-size: 31px 330px;
    background-size: 31px 330px;
    background-position: 0 -164px;
  }
  #follow-us-wrapper .instagram-follow-icon:hover {
    background-position: 0 -196px;
  }
}

/* -------------------------------------------- *
 * Skip Link - Icon
 */
.skip-link .icon {
  display: inline-block;
  vertical-align: middle;
}

.skip-link.skip-nav .icon,
.skip-link.skip-cart:not(.no-count) .icon {
  margin-right: 3px;
}

@media only screen and (min-width: 500px) {
  .skip-link .icon {
    margin-right: 3px;
  }
}
/* -------------------------------------------- *
 * Skip Link - Label
 */
.skip-link .label {
  display: none;
}

@media only screen and (min-width: 500px) {
  .skip-link .label {
    display: inline;
  }
}
/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content {
  display: none;
  color: #FFFFFF;
}

.skip-content.skip-active {
  display: block;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-account li a,
  .nav-primary a.level0 {
    padding: 0 15px 0 25px;
    border-bottom: 1px solid #CCCCCC;
    text-align: left;
    color: #636363;
    text-transform: uppercase;
    line-height: 30px;
    font-family: "Circular Std", sans-serif;
    font-weight: 300;
  }

  #header-account li:last-child a,
  .nav-primary li.level0:last-child a.level0 {
    border-bottom: 0;
  }

  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover {
    background-color: #aaaaaa;
    text-decoration: none;
  }
}
header:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
.skip-nav {
  width: 25%;
}
.skip-nav:not(.skip-active):hover {
  text-decoration: none;
}
.skip-nav .icon {
  background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites/icons-general-sdf01f05dbd.png');
  background-position: 0 -228px;
  background-repeat: repeat-y;
  height: 15px;
  width: 18px;
  /**
   * Option variable to turn on/off IE8 support.
   *
   * This requires Modernizr's test for `css-mediaqueries` and RespondJS
   *
   * Set to `1` to turn on support.
   */
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .skip-nav .icon {
    background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites-retina/icons-general-sb2327ac76a.png');
    -moz-background-size: 31px 330px;
    -o-background-size: 31px 330px;
    -webkit-background-size: 31px 330px;
    background-size: 31px 330px;
    background-position: 0 -228px;
  }
}

@media only screen and (min-width: 771px) {
  .skip-nav {
    display: none;
  }
}
/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-nav {
    clear: left;
    /* want the menu to show after the cart */
    position: relative;
  }
  #header-nav nav {
    position: absolute;
    background: #8D8D8D;
    padding: 5px 0;
    z-index: 200;
    width: 50%;
  }
}
@media only screen and (min-width: 771px) {
  #header-nav {
    position: relative;
    display: block;
    /* Force visibility */
    clear: right;
    float: right;
    right: -10px;
    border-bottom: none;
    max-width: 80%;
    text-align: right;
  }
}
/* ============================================ *
 * Nav Primary
 * ============================================ */
@media only screen and (min-width: 771px) {
  .nav-primary {
    display: block;
    margin-top: 15px;
  }
}
/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #000000;
  line-height: 30px;
}
.nav-primary a:hover {
  text-decoration: underline;
}
.nav-primary li {
  position: relative;
}
.nav-primary li.level1 a {
  border-bottom: 1px solid #CCCCCC;
}

.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
  display: block;
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
@media only screen and (max-width: 770px) {
  .nav-primary a.level0,
  .nav-primary a {
    line-height: 35px;
    color: #FFFFFF;
    font-family: "Circular Std", sans-serif;
  }
  .nav-primary li.level0 ul {
    display: none;
  }
  .nav-primary li.level0 li {
    padding: 0 0 0 25px;
  }
  .nav-primary li.level1 a {
    padding: 0 15px 0 25px;
  }
  .nav-primary li.menu-active > a,
  .nav-primary li.sub-menu-active > a {
    font-weight: bold;
  }
}
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
@media only screen and (min-width: 771px) {
  /* Highlight "Home" link when on homepage since it doesn't get an active class like the other pages */
  body.cms-home .nav-primary .nav-0 a {
    color: #46C2AC;
  }

  .nav-primary {
    /* Default styles for 1+ drop-down menus */
    /* Level 2+ */
    /* Class for js to add briefly to evaluate element positioning. */
    /* Correct menus that will hang off the page (class added by js) */
    /* Level 1+ */
  }
  .nav-primary a.level0 {
    padding: 0 25px;
    font-size: 1.1em;
    font-weight: 300;
  }
  .nav-primary li.active > a {
    color: #46C2AC;
  }
  .nav-primary li.level0,
  .nav-primary a.level0 {
    display: inline-block;
  }
  .nav-primary li:last-child > a {
    border-bottom: none;
  }
  .nav-primary .menu-active {
    z-index: 200;
  }
  .nav-primary li.level0 ul {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    border: none;
    position: absolute;
    left: 0;
    top: 30px;
    /* Height of ".nav-primary a.level0" */
    z-index: 10;
    width: 250px;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
    /* Hide until displayed. */
  }
  .nav-primary li.level1 ul {
    left: 60px;
    top: 15px;
  }
  .nav-primary li.level0 ul.level0.position-test {
    display: block;
  }
  .nav-primary li.level0 ul.level0.spill {
    right: 0;
    left: auto;
  }
  .nav-primary li.level0 ul.level0.spill li.level1 ul {
    left: auto;
    right: 50px;
    top: 20px;
  }
  .nav-primary li.level0 li.parent > a {
    position: relative;
  }
  .nav-primary li.level0 li.parent > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #ccc;
    border-right: none;
    right: 5px;
    top: 50%;
    margin-top: -3px;
  }
  .nav-primary li.level1 {
    text-align: left;
  }
}
.nav-primary li.menu-active > ul {
  display: block;
}

/* ============================================ *
 * Large Viewports - Top-most mini-menu
 * ============================================ */
ul#header-top-mininav {
  position: absolute;
  right: 25px;
  top: 10px;
}
ul#header-top-mininav li {
  display: inline;
  list-style-type: none;
  padding-right: 10px;
  margin-right: 10px;
  font-size: 10px;
  font-weight: 300;
  border-right: 1px solid;
}
ul#header-top-mininav li a {
  color: #FFFFFF;
  text-transform: uppercase;
}
ul#header-top-mininav li a:hover {
  text-decoration: none;
  color: #46C2AC;
}
ul#header-top-mininav li:last-child {
  border-right: none;
}

@media only screen and (min-width: 771px) {
  ul#header-top-mininav {
    top: -26px;
  }
}
/* ============================================ *
 * Search - Skip Link
 * ============================================ */
.skip-search:not(.skip-active):hover .icon {
  background-position: -46px -146px;
}
.skip-search .icon {
  background-position: 4px -146px;
}

@media only screen and (min-width: 771px) {
  .skip-search {
    display: none;
  }
}
/* ============================================ *
 * Search - Skip Content
 * ============================================ */
#header-search {
  padding: 20px;
}

@media only screen and (min-width: 771px) {
  #header-search {
    display: block;
    position: absolute;
    top: 90px;
    right: 22px;
    width: 25%;
    height: 50px;
    padding: 0;
  }
}
/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}

#search_mini_form label {
  display: none;
}

#search {
  width: 100%;
  height: 40px;
  padding-right: 40px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}

#search_mini_form .search-button {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
}

#search_mini_form .search-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  background-position: 4px -146px;
}

#search_mini_form .search-button:hover:before {
  opacity: 0.8;
}

#search_mini_form .search-button:active:before {
  margin-top: -13px;
  margin-left: -13px;
}

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-account:not(.skip-active):hover .icon {
  background-position: -46px -44px;
}
.skip-account .icon {
  background-position: 4px -44px;
}

@media only screen and (min-width: 771px) {
  .skip-account {
    float: none;
    width: auto;
    vertical-align: top;
    display: inline-block;
    padding: 0 10px;
    text-transform: uppercase;
  }

  #header-account.skip-active {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    display: block;
    position: absolute;
    z-index: 200;
    top: 40px;
    right: 115px;
    width: 200px;
  }

  #header-account a {
    display: block;
    padding: 5px 10px;
    color: #636363;
    line-height: 2;
  }

  #header-account a:hover {
    color: #46C2AC;
  }
}
/* -------------------------------------------- *
 * Account Links
 */
#header-account {
  padding: 5px 0;
}

#header-account a {
  position: relative;
  display: block;
  padding: 5px 10px;
  line-height: 23px;
  text-align: center;
}

#header-account a:hover {
  color: #46C2AC;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
.skip-cart {
  float: right;
}
.skip-cart .icon {
  background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites/icons-general-sdf01f05dbd.png');
  background-position: 0 -245px;
  background-repeat: repeat-y;
  height: 22px;
  width: 30px;
  /**
   * Option variable to turn on/off IE8 support.
   *
   * This requires Modernizr's test for `css-mediaqueries` and RespondJS
   *
   * Set to `1` to turn on support.
   */
  float: right;
}
.skip-cart .icon:hover {
  background-position: 0 -269px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .skip-cart .icon {
    background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites-retina/icons-general-sb2327ac76a.png');
    -moz-background-size: 31px 330px;
    -o-background-size: 31px 330px;
    -webkit-background-size: 31px 330px;
    background-size: 31px 330px;
    background-position: 0 -244.5px;
  }
  .skip-cart .icon:hover {
    background-position: 0 -268.5px;
  }
}
.skip-cart .label {
  display: none;
}

/* -------------------------------------------- *
 * Place the cart sub-menu below the cart on small screens (mobile)
 */
@media only screen and (max-width: 770px) {
  #header-cart {
    clear: both;
  }
}
@media only screen and (min-width: 771px) {
  .skip-cart {
    position: absolute;
    top: -28px;
    right: 0;
    width: auto;
  }

  #header-cart.skip-active {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    display: block;
    position: absolute;
    z-index: 200;
    right: 0;
    width: 320px;
    background: white;
  }
}
/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart .count {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  display: inline-block;
  top: -5px;
  left: 10px;
  position: relative;
  z-index: 5;
  width: 22px;
  height: 22px;
  background: rgba(70, 194, 172, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}

.skip-link.skip-active .count {
  color: white;
}

.skip-cart.no-count .count {
  display: none;
}

@media only screen and (max-width: 499px) {
  .skip-cart .count {
    margin-left: -12px;
  }
}
@media only screen and (min-width: 771px) {
  .skip-cart {
    color: #46C2AC;
    text-transform: uppercase;
  }
  .skip-cart:hover {
    text-decoration: none;
  }
  .skip-cart .count {
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}
.skip-cart .count.empty {
  display: none;
}

/* -------------------------------------------- *
 * Mini Cart - Empty
 */
.cart-menu .empty {
  padding: 20px;
  text-align: center;
}

/* -------------------------------------------- *
 * Mini Cart - Full
 */
/* Actions */
.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}

.cart-menu .actions .button {
  float: left;
  width: 48%;
}

.cart-menu .actions .button + .button {
  margin-left: 4%;
}

/* Subtotal */
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

/* List */
.mini-cart-list {
  margin-bottom: 5px;
}

.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #CCCCCC;
  font-size: 13px;
  line-height: 1.35;
}

.mini-cart-list .product-name {
  display: inline-block;
}

.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px;
}

.mini-cart-list .product-image img {
  width: 60px;
  height: 60px;
}

.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #A0A0A0;
  font-size: 12px;
}

/* Too full - additional items will be shown in cart */
.cart-menu .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #CCCCCC;
  font-size: 13px;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer-container-cell {
  padding: 30px 5%;
  border-top: 6px solid #46C2AC;
}
@media only screen and (min-width: 480px) {
  .footer-container-cell {
    padding: 30px 15%;
  }
}
@media only screen and (min-width: 771px) {
  .footer-container-cell {
    padding: 30px 0;
  }
}

.footer {
  clear: both;
  margin: 0 auto;
  max-width: 1260px;
  font-family: "Circular Std", sans-serif;
}
@media only screen and (max-width: 479px) {
  .footer {
    padding-top: 15px;
  }
}
.footer .footer-heading {
  display: block;
  line-height: 1;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 8px;
}
.footer .footer-link-block-1 {
  float: left;
  min-width: 100px;
  width: 35%;
}
.footer .footer-link-block-1 > ul > li {
  margin-bottom: 25px;
}
.footer .footer-link-block-1 ul ul li > a {
  color: #7b7b7b;
  font-style: normal;
  font-weight: 300;
  font-size: 0.9em;
  padding: 0;
}
.footer .everything-right-of-block-1 {
  overflow: hidden;
}
.footer .everything-right-of-block-1 .contact-info-block {
  margin-bottom: 25px;
}
.footer .everything-right-of-block-1 .contact-info-block .footer-header {
  text-transform: capitalize;
}
.footer .everything-right-of-block-1 .contact-info-block a {
  color: #7b7b7b;
  font-style: normal;
  font-weight: 300;
  font-size: 0.9em;
}
.footer .everything-right-of-block-1 .stay-connected-info-block {
  min-width: 165px;
  max-width: 300px;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .button {
  font-family: inherit;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .sign-up-newsletter-msg {
  color: #7b7b7b;
  font-weight: 300;
  font-size: 0.9em;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe {
  clear: none;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe .block-content {
  margin-top: 0;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe .block-content input {
  font-size: 0.9em;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe .block-content input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #c4c4c4;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe .block-content input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #c4c4c4;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe .block-content input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #c4c4c4;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe .block-content input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #c4c4c4;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe .block-content .actions {
  width: 50px;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe .block-content .actions .pc-btn {
  display: none;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe #recaptcha-branding {
  font-size: 0.8em;
  position: relative;
  top: 7px;
  opacity: 0.9;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe #recaptcha-branding a {
  color: darkgrey;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block:after {
  content: '';
  display: table;
  clear: both;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block p.footer-heading {
  display: inline-block;
  margin-right: 10px;
  text-transform: capitalize;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block ul {
  display: inline-block;
  position: relative;
  top: 4px;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block ul li {
  padding: 0 15px;
  display: inline-block;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block ul li a {
  display: inline-block;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block ul li a span {
  display: none;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block .fb-follow-icon {
  background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites/icons-general-sdf01f05dbd.png');
  background-position: 0 -82px;
  background-repeat: repeat-y;
  height: 17px;
  width: 9px;
  /**
   * Option variable to turn on/off IE8 support.
   *
   * This requires Modernizr's test for `css-mediaqueries` and RespondJS
   *
   * Set to `1` to turn on support.
   */
  position: relative;
  top: -2px;
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block .fb-follow-icon:hover {
  background-position: 0 -101px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block .fb-follow-icon {
    background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites-retina/icons-general-sb2327ac76a.png');
    -moz-background-size: 31px 330px;
    -o-background-size: 31px 330px;
    -webkit-background-size: 31px 330px;
    background-size: 31px 330px;
    background-position: 0 -82px;
  }
  .footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block .fb-follow-icon:hover {
    background-position: 0 -101px;
  }
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block .instagram-follow-icon {
  background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites/icons-general-sdf01f05dbd.png');
  background-position: 0 -120px;
  background-repeat: repeat-y;
  height: 20px;
  width: 20px;
  /**
   * Option variable to turn on/off IE8 support.
   *
   * This requires Modernizr's test for `css-mediaqueries` and RespondJS
   *
   * Set to `1` to turn on support.
   */
}
.footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block .instagram-follow-icon:hover {
  background-position: 0 -142px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3 / 2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  .footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block .instagram-follow-icon {
    background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites-retina/icons-general-sb2327ac76a.png');
    -moz-background-size: 31px 330px;
    -o-background-size: 31px 330px;
    -webkit-background-size: 31px 330px;
    background-size: 31px 330px;
    background-position: 0 -120px;
  }
  .footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block .instagram-follow-icon:hover {
    background-position: 0 -142px;
  }
}
.footer .everything-right-of-block-1 .stay-connected-info-block:after {
  content: '';
  display: table;
  clear: both;
}
.footer .everything-right-of-block-1:after {
  content: '';
  display: table;
  clear: both;
}
@media only screen and (min-width: 771px) {
  .footer {
    max-width: 1200px;
    padding: 30px 0 0 0;
  }
  .footer .footer-link-block-1 {
    width: 33.33333%;
    padding-left: 50px;
  }
  .footer .footer-link-block-1 ul ul li {
    display: inline;
  }
  .footer .footer-link-block-1 ul ul li > a {
    padding: 0 15px;
    border-right: 1px solid;
  }
  .footer .footer-link-block-1 ul ul li:first-child a {
    padding-left: 0;
  }
  .footer .footer-link-block-1 ul ul li:last-child a {
    border-right: none;
  }
  .footer .everything-right-of-block-1 {
    float: left;
    width: 66.66667%;
  }
  .footer .everything-right-of-block-1 .contact-info-block {
    float: left;
    width: 50%;
    border-right: 1px solid #393939;
    border-left: 1px solid #393939;
  }
  .footer .everything-right-of-block-1 .contact-info-block .content-centering {
    width: 205px;
    /* This number needs to be adjusted to reflect the actual width of the contents when the content changes */
    margin: 0 auto;
  }
  .footer .everything-right-of-block-1 .contact-info-block ul {
    margin-top: 20px;
  }
  .footer .everything-right-of-block-1 .contact-info-block ul li {
    display: block;
    margin-bottom: 30px;
  }
  .footer .everything-right-of-block-1 .contact-info-block .ci-contact-email a {
    color: #7b7b7b;
    font-weight: 300;
    font-size: 0.9em;
  }
  .footer .everything-right-of-block-1 .contact-info-block .ci-contact-email a:before {
    content: "";
    background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites/icons-general-sdf01f05dbd.png');
    background-position: 0 0;
    background-repeat: repeat-y;
    height: 16px;
    width: 25px;
    /**
     * Option variable to turn on/off IE8 support.
     *
     * This requires Modernizr's test for `css-mediaqueries` and RespondJS
     *
     * Set to `1` to turn on support.
     */
    float: left;
    margin: 3px 15px 2px 0;
  }
}
@media only screen and (min-width: 771px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 771px) and (min--moz-device-pixel-ratio: 1.5), only screen and (min-width: 771px) and (-o-min-device-pixel-ratio: 3 / 2), only screen and (min-width: 771px) and (min-device-pixel-ratio: 1.5), only screen and (min-width: 771px) and (min-resolution: 144dpi) {
  .footer .everything-right-of-block-1 .contact-info-block .ci-contact-email a:before {
    background-image: url('https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/sprites-retina/icons-general-sb2327ac76a.png');
    -moz-background-size: 31px 330px;
    -o-background-size: 31px 330px;
    -webkit-background-size: 31px 330px;
    background-size: 31px 330px;
    background-position: 0 0;
  }
}
@media only screen and (min-width: 771px) {
  .footer .everything-right-of-block-1 .stay-connected-info-block {
    float: left;
    width: 50%;
    padding-left: 10%;
    padding-right: 10%;
    min-width: 0;
    max-width: none;
  }
  .footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .sign-up-newsletter-msg {
    line-height: 22px;
  }
  .footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe {
    border-bottom: 1px solid #393939;
    padding-bottom: 30px;
  }
  .footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe .block-content .actions button.button span.pc-btn {
    display: inline-block;
  }
  .footer .everything-right-of-block-1 .stay-connected-info-block .footer-newsletter-block .block-subscribe .block-content .actions button.button span.mobile-btn {
    display: none;
  }
  .footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block ul {
    display: block;
    margin-left: 2px;
  }
  .footer .everything-right-of-block-1 .stay-connected-info-block .footer-social-block ul li {
    padding: 0;
    margin-right: 26px;
  }
}
.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
.footer .block-title strong {
  font-weight: normal;
}
.footer .block-title,
.footer address {
  color: #46C2AC;
}
.footer .links {
  float: left;
  width: 17%;
  padding: 0 30px 0 0;
  margin-bottom: 30px;
}
.footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}
.footer .links a {
  color: #636363;
}
.footer .links a:hover {
  color: #46C2AC;
}
.footer .block-subscribe {
  margin-bottom: 30px;
}
.footer .links,
.footer .block-subscribe {
  font-size: 12px;
}
.footer .form-subscribe-header {
  display: none;
}
.footer .block-subscribe .input-box {
  float: left;
  width: 100%;
  padding-right: 50px;
  /* submit button width */
  margin-right: -50px;
  /* submit button width */
  padding-top: 0;
}
.footer .block-subscribe .input-text {
  width: 100%;
  border-right: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-family: "Circular Std", sans-serif;
  padding-top: 4px;
}
.footer .block-subscribe .block-content {
  padding-top: 7px;
}
.footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
.footer .block-subscribe .actions {
  float: left;
  width: 34.375%;
  margin: 0;
}
.footer .block-subscribe .actions .button {
  height: 30px;
  line-height: 17px;
  float: left;
  text-transform: capitalize;
}
.footer .bugs,
.footer address {
  clear: both;
}
.footer .bugs {
  display: none;
}
.footer .form-language,
.footer .currency-switcher,
.footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}
.footer .form-language,
.footer .currency-switcher {
  display: none;
}
.footer address {
  border-top: 1px solid #CCCCCC;
  text-align: center;
  width: 100%;
  font-size: 11px;
  margin-top: 30px;
  padding: 30px 0;
}
@media only screen and (max-width: 1199px) {
  .footer .links {
    width: 22.65625%;
    padding-right: 0;
    margin-right: 3.125%;
  }
  .footer .links:nth-child(4) {
    margin-right: 0;
  }
  .footer .block-subscribe {
    clear: both;
    float: none;
    margin: 0 auto 30px auto;
  }
}
@media only screen and (max-width: 770px) {
  .footer .form-language,
  .footer .currency-switcher {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  .footer .links {
    width: 48.4375%;
    margin-right: 0;
  }
  .footer .links:nth-child(odd) {
    margin-right: 3.125%;
    clear: both;
  }
  .footer .block-subscribe {
    clear: both;
    float: left;
    width: 100%;
  }
}
.footer:after {
  content: '';
  display: table;
  clear: both;
}

.wrapper .page #bio_ep {
  text-align: center;
  height: auto;
  padding: 30px 0;
  background-color: #fee893;
}
.wrapper .page #bio_ep h2 {
  margin-top: 10%;
  font-size: 2em;
}
.wrapper .page #bio_ep p {
  color: #231f20;
  font-family: "Circular Std", sans-serif;
  width: 400px;
  font-size: 1.1em;
  margin: 0 auto;
}
.wrapper .page #bio_ep #discount-code {
  background-color: white;
  width: fit-content;
  padding: 12px 40px;
  border: dashed 1px #cfcfcf;
  margin: 25px auto;
  font-size: 1.4em;
}
.wrapper .page #bio_ep #next-step {
  margin: 25px auto;
}
.wrapper .page #bio_ep #modal-msg {
  margin-top: 10px;
}
.wrapper .page #bio_ep #loading-message, .wrapper .page #bio_ep #show-message {
  display: none;
}
.wrapper .page #bio_ep #loading-message {
  font-family: "Circular Std", sans-serif;
}
.wrapper .page #bio_ep #newsletter-thank-you {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 50px;
}
.wrapper .page #bio_ep #dp-code {
  margin-top: 25px;
}
.wrapper .page #bio_ep #dp-link {
  margin: 30px 0 50px 0;
  background-color: #3f70b2;
  font-family: "Circular Std", sans-serif;
  font-size: 0.9em;
  padding: 12px 50px;
  display: inline-block;
  color: white;
}
.wrapper .page #bio_ep #dp-link:hover {
  text-decoration: none;
}
.wrapper .page #bio_ep a.button {
  margin: 0 3%;
  background-color: #EA5B3A;
  text-transform: none;
  font-family: "Circular Std", sans-serif;
  font-size: 1em;
  padding: 16px 23px;
}
.wrapper .page #bio_ep #bio_ep_close {
  background-color: inherit;
  color: black;
  margin: -25px 0 0 -35px;
  font-size: 30px;
  font-weight: normal;
}
.wrapper .page #bio_ep img.mailing-list-image {
  display: none;
}
@media only screen and (min-width: 771px) {
  .wrapper .page #bio_ep {
    width: 930px;
    height: 456px;
    padding: 0;
  }
  .wrapper .page #bio_ep h2 {
    margin-top: 20%;
  }
  .wrapper .page #bio_ep #bio_ep_close {
    margin: 5px 0 0 -40px;
  }
  .wrapper .page #bio_ep #newsletter-thank-you {
    margin-top: 140px;
  }
  .wrapper .page #bio_ep div.bio_ep-main-content {
    width: 464px;
    float: right;
  }
  .wrapper .page #bio_ep img.mailing-list-image {
    display: block;
  }
  .wrapper .page #bio_ep button.button {
    padding: 11px 40px;
    font-size: 0.9em;
  }
}

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

.category-image {
  margin-bottom: 1.5em;
}

.products-list .action .button,
.products-grid .actions .button {
  white-space: normal;
}

/* -------------------------------------------- *
 * Product Name
 */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  font-size: 13px;
  font-family: "Circular Std", sans-serif;
  font-weight: normal;
  line-height: 1.4;
  font-style: italic;
}
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #251f26;
}
h2.product-name a:hover,
h3.product-name a:hover,
h4.product-name a:hover,
h5.product-name a:hover,
p.product-name a:hover {
  color: #46C2AC;
  text-decoration: none;
}

.products-grid .product-name,
.products-list .product-name {
  margin-bottom: 5px;
  font-size: 14px;
}
.products-grid .product-name a,
.products-list .product-name a {
  font-weight: 500;
}

/* ============================================ *
 * Product Grid
 * ============================================ */
.products-grid {
  position: relative;
}

.products-grid:after {
  content: '';
  display: table;
  clear: both;
}

.products-grid > li {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
.products-grid > li:after {
  content: '';
  display: table;
  clear: both;
}

.products-grid .product-image {
  width: 100%;
  margin-bottom: 15px;
}

.products-grid .product-image img {
  width: 100%;
  height: auto;
}
.products-grid .product-image img:hidden {
  display: none;
}

.widget-new-products .products-grid .product-image {
  width: 75%;
  margin-bottom: 15px;
  margin-left: 10%;
}

.products-grid .product-info {
  position: relative;
  padding-bottom: 60px;
}

.products-grid .actions {
  padding-top: 10px;
  position: absolute;
  bottom: 0px;
  min-height: 50px;
  width: 100%;
}

.products-grid .ratings .rating-box {
  margin: 0 auto;
}

.products-grid .ratings .amount {
  display: none;
}

.products-grid .price-box {
  color: #A0A0A0;
  font-size: 13px;
  margin: 0 0 5px;
}

.products-grid .add-to-links {
  margin-bottom: 0;
}

/* Config: Two columns + flexible gutter */
.products-grid > li {
  float: left;
  width: 47.72727%;
  margin-right: 4.54545%;
}

.products-grid > li:nth-child(odd) {
  clear: left;
}

.products-grid > li:nth-child(even) {
  margin-right: 0;
}

.products-grid .product-image {
  margin-bottom: 5px;
}
.products-grid .product-image:before, .products-grid .product-image:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.products-grid .product-image:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.products-grid .product-image:after {
  background-image: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.products-grid .product-image.loading {
  position: relative;
}
.products-grid .product-image.loading:before, .products-grid .product-image.loading:after {
  display: block;
}

@media only screen and (min-width: 480px) {
  /* Config: Three columns + flexible gutter */
  .products-grid {
    /* Undo two-column config */
    /* Set three-column config */
  }
  .products-grid > li:nth-child(odd) {
    clear: none;
  }
  .products-grid > li:nth-child(even) {
    margin-right: 3.7037%;
  }
  .products-grid > li {
    width: 30.8642%;
    margin-right: 3.7037%;
  }
  .products-grid > li:nth-child(3n+1) {
    clear: left;
  }
  .products-grid > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-4-col > li:nth-child(odd) {
    clear: none;
  }

  .products-grid--max-4-col > li:nth-child(3n+1) {
    clear: none;
  }

  .products-grid--max-4-col > li:nth-child(even),
  .products-grid--max-4-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  .products-grid--max-4-col > li {
    margin-right: 2.22222%;
  }

  .products-grid--max-4-col > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }

  .products-grid--max-4-col > li:nth-child(4n+1) {
    clear: left;
  }

  .products-grid--max-4-col > li:nth-child(4n) {
    margin-right: 0;
  }

  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-5-col > li:nth-child(odd) {
    clear: none;
  }

  .products-grid--max-5-col > li:nth-child(3n+1) {
    clear: none;
  }

  .products-grid--max-5-col > li:nth-child(even),
  .products-grid--max-5-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  .products-grid--max-5-col > li {
    margin-right: 2.22222%;
  }

  .products-grid--max-5-col > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }

  .products-grid--max-5-col > li:nth-child(5n+1) {
    clear: left;
  }

  .products-grid--max-5-col > li:nth-child(5n) {
    margin-right: 0;
  }

  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-6-col > li:nth-child(odd) {
    clear: none;
  }

  .products-grid--max-6-col > li:nth-child(3n+1) {
    clear: none;
  }

  .products-grid--max-6-col > li:nth-child(even),
  .products-grid--max-6-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  .products-grid--max-6-col > li {
    margin-right: 2.22222%;
  }

  .products-grid--max-6-col > li {
    width: 14.81481%;
    margin-right: 2.22222%;
  }

  .products-grid--max-6-col > li:nth-child(6n+1) {
    clear: left;
  }

  .products-grid--max-6-col > li:nth-child(6n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * Product List
 * ============================================ */
.products-list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.products-list > li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
}
.products-list > li:after {
  content: '';
  display: table;
  clear: both;
}
.products-list > li .product-image {
  float: left;
  width: 33.33333%;
}
.products-list > li .product-image img {
  width: 100%;
  max-width: 100%;
}
.products-list > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.products-list .product-shop {
  float: right;
  width: 66.66667%;
  padding-left: 20px;
}
.products-list .product-shop .product-name {
  margin-bottom: 0;
}
.products-list .product-shop .ratings {
  margin: 0;
}
.products-list .product-shop .ratings .rating-box,
.products-list .product-shop .ratings .rating-links {
  float: left;
  margin-right: 7px;
}
.products-list .product-shop .ratings .rating-links {
  margin-top: 4px;
}
.products-list .product-shop .price-box {
  margin-top: 0;
}
.products-list .product-shop .price-box .price {
  font-size: 18px;
}
.products-list .product-shop .action {
  margin: 7px 0;
}
.products-list .product-shop .desc {
  margin-top: 7px;
}
.products-list .product-shop .product-primary,
.products-list .product-shop .desc {
  float: left;
  width: 65%;
  overflow: hidden;
}
.products-list .product-shop .product-secondary {
  float: right;
  width: 35%;
  text-align: right;
  clear: right;
}

@media only screen and (min-width: 480px) {
  .products-list .product-name a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1279px) {
  .products-list .product-shop .product-primary,
  .products-list .product-shop .desc {
    float: left;
    width: 60%;
    padding-right: 20px;
  }
  .products-list .product-shop .product-secondary {
    float: right;
    width: 40%;
  }
}
@media only screen and (max-width: 600px) {
  .products-list .product-shop .price-box .special-price {
    padding-left: 0;
  }

  .products-list .product-shop .product-primary,
  .products-list .product-shop .product-secondary,
  .products-list .product-shop .desc {
    float: none;
    width: 100%;
    padding-right: 0;
    text-align: left;
  }
}
/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list .product-image {
  float: left;
  min-width: 50px;
}
.mini-products-list .product-details {
  margin-left: 60px;
}
.mini-products-list .product-details .product-name {
  padding-top: 10px;
}
.mini-products-list li {
  margin-bottom: 10px;
  clear: both;
}
.mini-products-list li:after {
  content: '';
  display: table;
  clear: both;
}

.mini-products-images-list:after {
  content: '';
  display: table;
  clear: both;
}
.mini-products-images-list li.item {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 5px 10px 0;
}
.mini-products-images-list li.item:nth-child(even) {
  padding-right: 0;
  padding-left: 5px;
}
.mini-products-images-list li.item .product-image {
  display: block;
}
.mini-products-images-list li.item .product-image img {
  width: 100%;
  max-width: 100%;
}

/* ============================================ *
 * Catalog - List
 * ============================================ */
.category-image {
  border: 1px solid #CCCCCC;
  padding: 10px;
}
.category-image img {
  width: 100%;
  max-width: 100%;
}
.category-image img:hidden {
  display: none;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #CCCCCC;
  position: relative;
  background-color: #F4F4F4;
  cursor: pointer;
}
.block-layered-nav .block-subtitle--filter:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #46C2AC;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ececec;
}

.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
.block-layered-nav .block-content > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #CCCCCC;
  position: relative;
  background-color: #F4F4F4;
  display: block;
}
.block-layered-nav .block-content > dl > dt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #46C2AC;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-content > dl > dt:hover {
  background-color: #ececec;
}
.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #CCCCCC;
}
.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}

.block-layered-nav dl dd {
  margin-bottom: 10px;
  margin-top: 10px;
}
.block-layered-nav dl dd ol > li > span, .block-layered-nav dl dd ol > li > a {
  padding: 5px 15px;
  display: block;
}
.block-layered-nav dl dd ol > li > a .count {
  color: #A0A0A0;
}

@media only screen and (min-width: 771px) {
  .block-layered-nav .block-content > dl > dt {
    padding-left: 10px;
  }
  .block-layered-nav .block-content > dl > dt:after {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  .sidebar .block.block-layered-nav {
    border-bottom: none;
  }

  .block-layered-nav--no-filters .block-title {
    display: none;
  }

  .block-layered-nav .block-content {
    padding-top: 0;
    margin-top: 15px;
  }
  .block-layered-nav .block-content > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  .block-layered-nav .block-content > dl > dt:hover {
    color: #46C2AC;
  }
  .block-layered-nav .block-content > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #46C2AC;
    border-right: none;
  }
  .block-layered-nav .block-content > dl > dt.last {
    border-bottom-width: 1px;
  }
  .block-layered-nav .block-content > dl > dd {
    display: none;
  }
  .block-layered-nav .block-content.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  .block-layered-nav .block-content.accordion-open > dl > dt.current:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #46C2AC;
    border-bottom: none;
    left: 6px;
    top: 50%;
    margin-top: -3px;
  }
  .block-layered-nav .block-content.accordion-open > dl > dd.current {
    display: block;
  }

  .block-layered-nav .block-subtitle--filter {
    background-color: #46C2AC;
    border: 0;
    margin-bottom: 0;
    display: block;
    color: #FFFFFF;
  }
  .block-layered-nav .block-subtitle--filter:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #FFFFFF;
    border-right: none;
    right: 10px;
    top: 50%;
    margin-top: -5px;
  }
  .block-layered-nav .block-subtitle--filter:hover {
    background-color: #3bb39e;
    color: #FFFFFF;
  }
  .block-layered-nav .block-subtitle--filter.active:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #FFFFFF;
    border-bottom: none;
    right: 10px;
    top: 50%;
    margin-top: -3px;
  }

  #narrow-by-list,
  #narrow-by-list2 {
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-top: 0;
  }

  .block-layered-nav dl ol > li > a,
  .block-layered-nav dl ol > li > span {
    padding: 7px;
    margin: 5px;
  }

  .block-layered-nav dl ol > li > a {
    color: #636363;
    background-color: #F4F4F4;
    padding: 5px 10px;
  }
  .block-layered-nav dl ol > li > a:hover {
    text-decoration: none;
    background: #ececec;
  }
}
.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}
.block-layered-nav .currently ol {
  padding-left: 10px;
  margin-bottom: 10px;
}
.block-layered-nav .currently ol li {
  margin-bottom: 5px;
}
.block-layered-nav .currently ol li .label {
  font-weight: bold;
}
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

.block-layered-nav .actions {
  text-align: right;
  margin-bottom: 7px;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.product-view {
  padding: 50px 10px 0 10px;
}
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}
.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px;
}
.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential .product-image-thumbs a.active {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  color: #251f26;
  font-family: "Circular Std", sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
  border: 0;
}
.product-view .product-shop .product-name .h1 .product-category,
.product-view .product-img-box .product-name h1 .product-category {
  display: block;
  color: #5f5a5f;
  font-size: 0.6em;
  margin-left: 2px;
}
.product-view .price-info .price-box {
  float: right;
  font-weight: bold;
  font-size: 2.9em;
  margin: 0;
}
.product-view .product-shop .product-name {
  display: none;
  float: left;
}
.product-view .product-shop .product-name .h1 {
  float: left;
  margin-bottom: 5px;
}
.product-view .product-shop .extra-info {
  float: left;
  padding-right: 15px;
  clear: left;
  width: 70%;
}
.product-view .product-shop .price-info {
  display: none;
}
.product-view .product-shop .extra-info,
.product-view .product-shop .price-info {
  max-width: 70%;
  margin-bottom: 10px;
}
.product-view .product-shop .short-description {
  margin-bottom: 10px;
  clear: both;
}
.product-view .product-shop .ratings {
  margin-bottom: 8px;
}
.product-view .product-shop .availability {
  font-size: 16px;
}
.product-view .product-shop .price-box {
  margin-top: 0;
}
.product-view .product-shop .price-box .old-price,
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
}
.product-view .product-shop .price-box .special-price .price-label {
  font-size: 16px;
  text-transform: uppercase;
}
.product-view .product-shop .price-box .special-price span.weee {
  color: #636363;
}
.product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 16px;
}
.product-view .product-shop .price-box .price-excluding-tax,
.product-view .product-shop .price-box .price-including-tax {
  display: block;
  line-height: 1.2;
  color: #636363;
}
.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300;
}
.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}
.product-view .price-box.map-info a {
  display: inherit;
}
.product-view .old-price .price-label {
  display: none;
}
.product-view .block-related {
  float: right;
  clear: right;
}

@media only screen and (max-width: 850px) {
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 15px;
  }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 18px;
  }
}
@media only screen and (max-width: 770px) {
  .product-view .add-to-cart-wrapper {
    margin-top: 35px;
    float: none;
    width: 100%;
    clear: both;
  }
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 16px;
  }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 20px;
  }
}
@media only screen and (max-width: 420px) {
  .product-view .product-shop .price-box .price-excluding-tax,
  .product-view .product-shop .price-box .price-including-tax {
    margin-bottom: 5px;
  }
  .product-view .product-shop .price-box .price-excluding-tax span,
  .product-view .product-shop .price-box .price-including-tax span {
    display: block;
  }
}
h2 {
  font-family: "Circular Std", sans-serif;
  font-weight: bold;
  font-size: 1.1em;
  color: #222222;
}

.frame-measurements {
  text-align: center;
}
.frame-measurements h2 {
  display: inline-block;
  font-size: 1.1em;
}
.frame-measurements p {
  display: inline-block;
  font-weight: bold;
  color: #251f26;
  font-family: "Circular Std", sans-serif;
  font-size: 1.1em;
}

.product-detail-wrapper {
  padding: 0 5%;
  font-family: "Circular Std", sans-serif;
}

.product-description {
  margin-top: 35px;
  color: #222222;
  font-weight: 300;
  font-size: 1em;
}

.product-features {
  margin-top: 30px;
}
.product-features h2 {
  margin-bottom: 10px;
}
.product-features ul {
  list-style-type: disc;
  padding-inline-start: 15px;
}
.product-features ul li {
  color: #222222;
  font-size: 1em;
  font-weight: 300;
}

.product-img-box {
  width: 60%;
  float: left;
}
.product-img-box .more-views h2 {
  display: none;
}
.product-img-box .block-before-product-display {
  padding: 0 10px;
}
.product-img-box .product-name {
  margin-bottom: 25px;
}
.product-img-box .product-name h1 {
  border: 0;
}
.product-img-box .product-image img {
  max-width: 100%;
  max-height: 750px;
  margin: 0px auto;
}

@media only screen and (max-width: 479px) {
  .product-img-box .product-image img {
    max-height: 450px;
  }
}
.product-image-gallery {
  position: relative;
}
.product-image-gallery .gallery-image {
  display: none;
}
.product-image-gallery .gallery-image.visible {
  display: block;
}
.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden;
}
.product-image-gallery:before, .product-image-gallery:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.product-image-gallery:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.product-image-gallery:after {
  background-image: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.product-image-gallery.loading {
  position: relative;
}
.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}

.product-image-thumbs {
  margin-top: 5px;
  text-align: center;
}
.product-image-thumbs li {
  display: inline-block;
}
.product-image-thumbs li:first-child {
  margin-left: -1px;
}
.product-image-thumbs a {
  display: inline-block;
  border: 1px solid transparent;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.no-touch .product-image-thumbs a:hover {
  border-color: #c7c7c7;
}

.product-img-box {
  padding-right: 15px;
}

.product-view .product-shop,
.product-img-box,
.product-collateral,
.product-view .block-related,
.box-collateral {
  margin-bottom: 10px;
}

.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-cart {
  margin-bottom: 20px;
}
.product-view .add-to-cart .add-to-cart-buttons {
  float: none;
  text-align: center;
}
.product-view .add-to-cart button.button {
  background: #222222;
  font-family: "Circular Std", sans-serif;
  font-weight: bold;
  font-size: 1.6em;
}
.product-view .add-to-cart .qty-wrapper {
  display: none;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px;
}
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 10px;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  margin-right: 7px;
  float: left;
}
.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
}
.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px;
}
.product-view .add-to-cart-buttons {
  float: left;
  margin-right: 10px;
  max-width: 100%;
}
.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 170px;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-or {
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1;
  text-align: center;
}
.product-view .add-to-cart-buttons .button {
  min-height: 60px;
  line-height: 60px;
  padding: 0px 30px;
  min-width: 160px;
  width: 90%;
  white-space: normal;
}
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

@media only screen and (max-width: 479px) {
  .product-view .add-to-cart-buttons .paypal-or {
    line-height: 20px;
  }
  .product-view .add-to-cart-buttons .paypal-logo,
  .product-view .add-to-cart-buttons .paypal-or,
  .product-view .add-to-cart-buttons .paypal-button,
  .product-view .add-to-cart-buttons .button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}
/* This is the "or" that separates the "Add to Cart" and "Add to X" links */
.add-to-box .or {
  display: none;
}

.product-view .add-to-links {
  clear: both;
  margin-top: 0px;
  margin-right: 15px;
  float: left;
}
.product-view .add-to-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-links li {
  float: left;
}
.product-view .add-to-links a {
  padding: 2px 7px 2px 0px;
  margin-left: 7px;
  border-right: 1px solid #CCCCCC;
}
.product-view .add-to-links li:first-child a {
  margin-left: 0px;
}
.product-view .add-to-links li:last-child a {
  border-right: 0px;
}

.product-view .sharing-links {
  float: left;
}
.product-view .sharing-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .sharing-links li {
  float: left;
  padding: 0px 7px 7px;
}
.product-view .sharing-links a {
  text-indent: -9999px;
  display: block;
  width: 26px;
  height: 26px;
}
.product-view .sharing-links a:hover {
  opacity: 0.8;
}
.product-view .sharing-links a.link-wishlist {
  background-position: 0px -225px;
}
.product-view .sharing-links a.link-compare {
  background-position: 0px -250px;
}
.product-view .sharing-links a.link-email-friend {
  background-position: 0px -322px;
}
.product-view .sharing-links a.link-facebook {
  background-position: 0px -425px;
}
.product-view .sharing-links a.link-twitter {
  background-position: 0px -372px;
}

@media only screen and (max-width: 599px) {
  .add-to-box .add-to-links a {
    float: none;
    width: auto;
    text-indent: 0;
  }
}
.product-collateral {
  clear: both;
}

.collateral-tabs dd h2 {
  display: none;
}

.box-collateral {
  clear: both;
}

@media only screen and (min-width: 771px) {
  .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #CCCCCC;
    background-color: #F4F4F4;
  }
  .product-collateral .toggle-tabs li {
    float: left;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
  }
  .product-collateral .toggle-tabs li > span {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    bottom: -1px;
  }
  .product-collateral .toggle-tabs li.current {
    border-right: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
  }
  .product-collateral .toggle-tabs li.current > span {
    background-color: #FFFFFF;
    z-index: 5;
  }
  .product-collateral .toggle-tabs li.current span,
  .product-collateral .toggle-tabs li:hover span {
    color: #46C2AC;
  }
  .product-collateral .toggle-tabs li:first-child {
    border-left: none;
  }
  .product-collateral .toggle-tabs:after {
    content: '';
    display: table;
    clear: both;
  }
  .product-collateral > dl {
    width: 100%;
  }
  .product-collateral > dl > dt {
    display: none;
  }
  .product-collateral > dl > dd {
    width: 100%;
    display: none;
    padding: 15px;
    border: 1px solid #CCCCCC;
    border-top: 0;
  }
  .product-collateral > dl > dd.current {
    display: block;
  }
}
@media only screen and (max-width: 770px) {
  .product-collateral .toggle-tabs {
    display: none;
  }
  .product-collateral > dl > dt {
    margin: 0;
    margin-bottom: 10px;
    color: #636363;
    font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #CCCCCC;
    position: relative;
    background-color: #F4F4F4;
    display: block;
  }
  .product-collateral > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #46C2AC;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .product-collateral > dl > dt:hover {
    background-color: #ececec;
  }
  .product-collateral > dl > dd {
    padding: 10px;
    margin: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
  }
  .product-collateral > dl > dd:last-child {
    border-width: 0 1px 1px 1px;
  }
  .product-collateral > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  .product-collateral > dl > dt:hover {
    color: #46C2AC;
  }
  .product-collateral > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #46C2AC;
    border-right: none;
  }
  .product-collateral > dl > dt.last {
    border-bottom-width: 1px;
  }
  .product-collateral > dl > dd {
    display: none;
  }
  .product-collateral.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  .product-collateral.accordion-open > dl > dt.current:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #46C2AC;
    border-bottom: none;
    left: 6px;
    top: 50%;
    margin-top: -3px;
  }
  .product-collateral.accordion-open > dl > dd.current {
    display: block;
  }
}
@media only screen and (max-width: 770px) {
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-img-box,
  .product-collateral {
    width: 100%;
    float: none;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 771px) {
  .product-view {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px 100px 30px;
    margin-top: 100px;
  }
  .product-view .add-to-cart .add-to-cart-buttons {
    margin-top: 35px;
    text-align: left;
  }
  .product-view .add-to-cart .add-to-cart-buttons .button {
    min-height: 40px;
    line-height: 40px;
    min-width: 160px;
    width: 205px;
    font-size: 0.9em;
  }

  .product-view .product-shop .product-name,
  .product-view .product-shop .price-info {
    display: block;
  }

  .product-img-box .product-name,
  .product-img-box .price-info {
    display: none;
  }

  .product-view .product-shop .product-name,
  .product-view .product-shop .product-name .h1,
  .product-view .price-info .price-box {
    float: none;
  }

  h2 {
    font-size: 1.1em;
  }

  .frame-measurements-responsive {
    margin-top: 5px;
  }
  .frame-measurements-responsive ul {
    width: 80%;
  }

  .product-description {
    margin-top: 15px;
  }

  .product-features {
    margin-top: 35px;
  }

  .product-detail-wrapper {
    width: 40%;
    float: right;
    padding-left: 60px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 479px) {
  .product-view .product-shop,
  .product-img-box,
  .product-collateral,
  .product-view .block-related,
  .box-collateral {
    margin-bottom: 15px;
  }
}
.product-view .ratings .rating-links {
  clear: left;
  float: left;
  margin-top: 0;
}

#product-attribute-specs-table {
  max-width: 50em;
  border: 1px solid #C0C0C0;
}
#product-attribute-specs-table th {
  border-right: 1px solid #C0C0C0;
  border-bottom: 1px solid #C0C0C0;
}

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-items-table-wrapper {
  border: solid 1px #C0C0C0;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}
.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}
@media only screen and (max-width: 479px) {
  .grouped-items-table-wrapper {
    margin-bottom: 15px;
  }
}

.grouped-items-table .name-wrapper {
  color: #46C2AC;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}
.grouped-items-table .qty-label {
  margin-left: 7px;
}
.grouped-items-table td {
  padding: 4px;
}
.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}
.grouped-items-table .price-box {
  text-align: right;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
#product-options-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 6;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  color: black;
  font-family: "Circular Std", sans-serif;
}

/* Modal Content/Box */
#product-options-container {
  position: relative;
  margin: 15px auto;
  padding: 30px;
  border: 1px solid #888;
  background-color: white;
  width: 95%;
  max-width: 550px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
#product-options-container dl.last > dt, #product-options-container dl.last > dd, #product-options-container p.required, #product-options-container button.btn-cart {
  display: none;
}
#product-options-container dl.last dd:first-of-type {
  display: block;
}
#product-options-container label {
  background-color: inherit;
}
#product-options-container h3 {
  font-family: inherit;
  font-size: 1.4em;
  color: inherit;
  text-transform: none;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}
#product-options-container div.centerer {
  text-align: center;
}
#product-options-container button.continue {
  width: 85%;
  max-width: 275px;
  height: 60px;
  background-color: #222222;
  text-transform: none;
  font-family: inherit;
  font-size: 1.2em;
  margin: 50px 0 10px 0;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* future proofing */
  -khtml-border-radius: 2px;
  /* for old Konqueror browsers */
}
#product-options-container li label {
  color: black;
  font-family: inherit;
  font-weight: 300;
  font-size: 1.3em;
}
#product-options-container p.no-margin {
  color: #999;
  font-size: 0.8em;
}
#product-options-container ul.options-list {
  margin: 0 auto;
  width: 90%;
  border: 1px solid #878787;
}
#product-options-container ul.options-list li {
  border-bottom: 1px solid #878787;
}
#product-options-container ul.options-list li:last-child {
  border-bottom: 0;
}
#product-options-container #prescription-options dd:first-of-type {
  padding: 30px;
}
#product-options-container #prescription-options dd:first-of-type div.input-box {
  float: none;
}
#product-options-container #prescription-options dd:nth-of-type(2) {
  text-align: center;
}
#product-options-container #prescription-options dd:nth-of-type(2) input[type=text] {
  width: 60px;
}
#product-options-container #prescription-options dd:nth-of-type(2) div.input-box {
  float: none;
}
#product-options-container #prescription-options dd:nth-of-type(2) p.note {
  text-align: left;
  padding: 22px;
}
#product-options-container #prescription-options dt {
  width: 80%;
  border-top: 1px solid black;
  margin: 0 auto;
}
#product-options-container #prescription-options dt label {
  text-align: center;
  padding: 25px 0 0 0;
}
#product-options-container .product-options ul.options-list label {
  width: 100%;
}
#product-options-container .product-options ul.options-list input.radio {
  margin-top: 13px;
}

/* The Close Button */
.close {
  position: absolute;
  color: black;
  top: 6px;
  right: 5%;
  font-size: 24px;
}

.close:hover,
.close:focus {
  color: #46C2AC;
  text-decoration: none;
  cursor: pointer;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px;
  text-align: right;
}

@media only screen and (max-width: 979px) {
  .product-view .product-options .required {
    position: static;
  }
}
.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal;
}

.product-options dt:first-child {
  margin-top: 0;
}

.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0 0;
}

.product-options dd .qty-holder .qty {
  width: 3em;
}

.product-options dd .qty-holder label {
  vertical-align: middle;
}

.product-options dd .qty-disabled {
  background: none;
  border: 0;
  padding: 0 2px;
}

.product-options dl.last dd.last {
  border-bottom: 0;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.product-options dd .input-text {
  width: 98%;
}

.product-options dd .input-box {
  padding-top: 0;
}

.product-options dd input.datetime-picker {
  width: 150px;
}

.product-options dd .time-picker {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 2px 0;
  vertical-align: middle;
}

.product-options dd textarea {
  width: 98%;
  height: 8em;
}

.product-options dd select {
  width: 330px;
  max-width: 100%;
}

.product-options ul.options-list {
  margin-right: 5px;
}

.product-options ul.options-list li {
  line-height: 1.5;
  margin-bottom: 7px;
}

.product-options ul.options-list li:last-child {
  margin-bottom: 0;
}

.product-options ul.options-list .radio,
.product-options ul.options-list .checkbox {
  float: left;
  margin-top: 5px;
}

.product-options ul.options-list .label {
  display: block;
}

.product-options ul.options-list label {
  font-weight: normal;
}

.product-options p.note {
  margin: 0;
  font-size: 11px;
}

.product-options-bottom:after {
  content: '';
  display: table;
  clear: both;
}

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #636363;
}
@media only screen and (max-width: 1199px) {
  .product-options-bottom .product-pricing,
  .product-options-bottom .tier-prices {
    float: none;
    width: 100%;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #CCCCCC;
  }
}

.product-options-bottom .tier-prices li {
  background: 0;
  padding: 2px 0;
}

.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #636363;
}

/* "display: none" should be removed if products on site have a long list of product options and those product options */
/*  affect the price so that the customer can see the updated price close to the "Add to Cart" button */
.product-options-bottom .price-box {
  display: none;
  float: right;
  margin: 0 0 10px;
  padding: 0;
}

@media only screen and (max-width: 479px) {
  .product-options-bottom .price-box .price-as-configured .price-label {
    display: block;
  }
}
.product-options-bottom .price-tax {
  float: left;
}

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
.block-related li {
  margin-bottom: 7px;
}
.block-related .block-title {
  border-bottom: none;
}
.block-related .block-title h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #636363;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  margin-bottom: 0;
}
.block-related .block-subtitle {
  margin-bottom: 7px;
}
.block-related .product {
  margin-left: 20px;
  position: relative;
}
.block-related .checkbox {
  float: left;
  margin-top: 36px;
}
.block-related .product-details {
  margin-left: 90px;
}
.block-related .product-name {
  margin-bottom: 3px;
}
.block-related .product-details .price-box {
  margin: 2px 0 3px;
}
.block-related .product-details .price-box a,
.block-related .product-details .price-box p,
.block-related .product-details .price-box span {
  float: left;
  margin-left: 3px;
}
.block-related .product-details .price-box a:first-child,
.block-related .product-details .price-box p:first-child,
.block-related .product-details .price-box span:first-child {
  margin-left: 0;
  font-size: 16px;
  padding-right: 5px;
  padding-left: 5px;
}
.block-related .product-details .price-box:after {
  content: '';
  display: table;
  clear: both;
}
.block-related .link-wishlist {
  display: none;
}

/* -------------------------------------------- *
 * Upsell Products
 */
.box-up-sell {
  margin-top: 20px;
}
.box-up-sell .ratings {
  display: none;
}

/* ============================================ *
 * Catalog - MSRP MAP Popup
 * ============================================ */
.cart-msrp-totals {
  color: red;
  font-size: 12px !important;
  font-weight: bold;
  margin: 10px 10px 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase;
}

.map-cart-sidebar-total {
  color: red;
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding: 2px 5px;
}

.map-popup {
  background: #FFFFFF;
  border: 5px solid #CCCCCC;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}
@media only screen and (min-width: 771px) {
  .map-popup.map-popup-right {
    left: 10px !important;
  }
  .map-popup.map-popup-left {
    left: auto !important;
    right: 10px !important;
  }
}
@media only screen and (max-width: 770px) {
  .map-popup {
    width: 100%;
    left: 0px !important;
  }
}
.map-popup .map-popup-heading {
  padding: 8px 10px;
  margin-right: 40px;
  width: auto;
}
.map-popup .map-popup-heading h3 {
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-heading h3 {
    text-align: center;
  }
}
.map-popup .map-popup-close {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 36px;
  width: 36px;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}
.map-popup .map-popup-content {
  border-top: 1px solid #EDEDED;
  padding: 10px;
  margin: 0 10px;
  overflow: hidden;
  text-align: left;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-content {
    text-align: center;
  }
}
.map-popup .map-popup-checkout {
  padding: 10px 0;
}
.map-popup .map-popup-checkout form:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-checkout span {
  display: block;
}
.map-popup .map-popup-checkout .button {
  float: left;
  margin: 0 2px;
  clear: left;
}
.map-popup .map-popup-checkout .additional-addtocart-box {
  float: left;
  min-width: 210px;
}
.map-popup .map-popup-checkout .additional-addtocart-box li {
  list-style-type: none;
}
.map-popup .map-popup-checkout .paypal-logo {
  width: auto;
}
.map-popup .map-popup-checkout .paypal-logo a {
  display: inline-block;
  float: left;
  clear: left;
}
.map-popup .map-popup-checkout .paypal-logo .paypal-or {
  float: left;
  text-align: center;
  padding: 5px 15px;
  clear: left;
}
.map-popup .map-popup-checkout .paypal-logo:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-checkout .paypal-logo .bml_button a {
  clear: left;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-checkout {
    text-align: center;
  }
  .map-popup .map-popup-checkout .button,
  .map-popup .map-popup-checkout .additional-addtocart-box,
  .map-popup .map-popup-checkout .paypal-logo a,
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    float: none;
  }
  .map-popup .map-popup-checkout .additional-addtocart-box {
    min-width: 0px;
  }
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    margin: 0px;
    margin-bottom: 10px;
  }
}
.map-popup .map-popup-checkout:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-price {
  padding: 10px 0;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-price {
    text-align: center;
    padding-top: 0px;
  }
}
.map-popup .map-popup-price .price-box,
.map-popup .map-popup-price .price-box .special-price {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.map-popup .map-popup-price .price-box .minimal-price-link {
  display: inline-block;
}
.map-popup .map-popup-text {
  padding: 10px 0;
  margin: 0 10px;
  word-wrap: break-word;
}
.map-popup .map-popup-text,
.map-popup .map-popup-only-text {
  border-top: 1px solid #EDEDED;
}

/* ============================================ *
 * Catalog - MSRP Product Listing
 * ============================================ */
.price-box .map-link {
  display: block;
  text-align: center;
}

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
.block-compare .product-name:after {
  content: '';
  display: table;
  clear: both;
}

.compare-table .product-image {
  display: inline-block;
}

.compare-table .product-shop-row.top td {
  padding-bottom: 0;
  border-bottom: 0;
}
.compare-table .product-shop-row.bottom td {
  padding-top: 0;
}

/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.cart-table {
  float: left;
  width: 60%;
}

.cart-forms .shipping {
  display: none;
}

.cart .button {
  white-space: normal;
}

.cart-forms,
.cart-totals-wrapper,
.crosssell {
  float: right;
  clear: right;
  width: 40%;
  padding-left: 20px;
}

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 10px;
  background-color: #F4F4F4;
  border: 1px solid #CCCCCC;
}

.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 20px;
}

.checkout-cart-index #postcode {
  width: 100%;
}

.display-both-prices .cart-table {
  float: none;
  width: 100%;
}
.display-both-prices .cart-forms {
  float: left;
  padding-right: 10px;
  padding-left: 0;
}
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  padding-left: 10px;
}
.display-both-prices .cart-forms,
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  width: 50%;
}
.display-both-prices .crosssell {
  clear: right;
  float: right;
}

@media only screen and (max-width: 979px) {
  .display-single-price .cart-table {
    float: none;
    width: 100%;
  }
  .display-single-price .cart-forms {
    float: left;
    padding-right: 10px;
    padding-left: 0;
  }
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-left: 10px;
  }
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    width: 50%;
  }
  .display-single-price .crosssell {
    clear: right;
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  .product-cart-sku {
    display: none;
  }

  .display-both-prices .cart-forms,
  .display-both-prices .cart-totals-wrapper,
  .display-both-prices .crosssell,
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    float: none;
    width: 100%;
  }
}
.display-single-price:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart {
  padding: 10px;
  margin-top: 20px;
}

@media only screen and (min-width: 771px) {
  .checkout-cart-index .main {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding: 100px 30px;
  }
}
.cart .page-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
}
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 6px;
  margin-right: 10px;
}

.checkout-types {
  float: right;
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */
}
.checkout-types li {
  vertical-align: top;
  margin: 0 0 5px 5px;
}
.checkout-types li:after {
  content: '';
  display: table;
  clear: both;
}
.checkout-types li img {
  display: inline;
  vertical-align: top;
}
.checkout-types li:first-child {
  margin-left: 0;
}
.checkout-types .method-checkout-cart-methods-multishipping {
  display: block;
}
.checkout-types.top li {
  display: inline-block;
}
.checkout-types.top .bml_button {
  display: inline-block;
  vertical-align: top;
}
.checkout-types.top .bml_button img {
  display: block;
}
.checkout-types.top .paypal-logo .paypal-or {
  margin-top: 5px;
}
.checkout-types.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
  display: block;
}
.checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
  margin: 0px;
  display: block;
  text-align: center;
}

@media only screen and (min-width: 741px) {
  .checkout-types.bottom .paypal-or {
    text-align: right;
    padding-right: 70px;
  }
}
.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px;
}

@media only screen and (max-width: 740px) {
  .checkout-types {
    float: none;
    text-align: center;
  }
  .checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
    width: auto;
    float: none;
  }

  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  .btn-checkout {
    width: 100%;
  }
}
.cart-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
.cart-table h2 {
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 5px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 40px;
}
.cart-table tr {
  border-bottom: 1px solid #C0C0C0;
}
.cart-table tfoot tr {
  background: none;
}
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none;
}
.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}
.cart-table .product-cart-image .product-image img {
  max-width: 100%;
  width: 100%;
}
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
.cart-table .product-cart-sku {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  font-size: 12px;
  margin: 5px 0 12px;
}
.cart-table .product-cart-sku .label {
  font-weight: 600;
}
.cart-table .btn-empty {
  float: left;
}
.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
}
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #46C2AC;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #46C2AC;
  border-bottom: none;
  right: -15px;
  top: 6px;
}
.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 13px;
}
.cart-table .cart-links > li > a {
  display: block;
}
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
.cart-table .cart-links {
  display: none;
}
.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
}
.cart-table .product-cart-actions .qty {
  height: 30px;
  border-color: #C0C0C0;
  border-radius: 0;
  margin-bottom: 10px;
  text-align: center;
  width: 3.2em;
}
.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
}
.cart-table .item-options {
  padding-left: 15px;
}

@media only screen and (max-width: 770px) {
  .cart-table th {
    font-size: 12px;
  }
  .cart-table th,
  .cart-table td {
    padding: 7px 6px;
  }
  .cart-table .product-cart-actions > li {
    white-space: inherit;
  }
}
@media only screen and (max-width: 699px) {
  .display-both-prices .cart-table thead th.cart-total-head,
  .display-both-prices .cart-table td.product-cart-total {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .cart-table colgroup, .cart-table thead {
    display: none;
  }
  .cart-table tr {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
  }
  .cart-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .cart-table tr:last-child {
    margin-bottom: 0;
  }
  .cart-table tfoot tr {
    padding-bottom: 0;
  }
  .cart-table td {
    border: none;
    display: block;
  }
  .cart-table td[data-rwd-label] {
    padding-left: 40px;
    margin-bottom: 6px;
  }
  .cart-table td[data-rwd-label] .price {
    font-weight: normal;
  }
  .cart-table td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .cart-table td.product-cart-price {
    text-align: left;
  }
  .cart-table h2 {
    font-size: 12px;
  }
  .cart-table .cart-links {
    padding-top: 5px;
    padding-right: 5px;
  }
  .cart-table .cart-links > li {
    white-space: normal;
    text-align: center;
  }
  .cart-table .cart-links > li > a {
    padding: 2px 0px;
  }
  .cart-table .cart-tax-info {
    font-style: italic;
    padding-left: 15px;
    font-size: 13px;
  }
  .cart-table .cart-tax-info .price {
    font-size: 13px;
  }
  .cart-table .product-cart-image {
    width: 40%;
    float: left;
    padding-bottom: 0;
  }
  .cart-table .product-cart-image a.cart-edit {
    display: block;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
  }
  .cart-table .product-cart-info,
  .cart-table td[data-rwd-label] {
    float: right;
    width: 60%;
  }
  .cart-table .product-cart-actions,
  .cart-table .product-cart-price {
    padding-bottom: 0;
    padding-top: 0;
    float: right;
  }
  .cart-table .product-cart-remove,
  .cart-table .product-cart-total,
  .cart-table .product-cart-actions .cart-links {
    display: none;
  }
  .cart-table .product-cart-info .btn-remove {
    display: block;
  }
  .cart-table .product-cart-actions .button {
    display: none;
  }
  .cart-table .product-cart-info .btn-remove {
    float: right;
    margin: -4px 0px 2px 7px;
  }
  .cart-table .product-cart-info .product-cart-sku {
    margin-bottom: 5px;
  }
  .cart-table .product-cart-actions {
    text-align: left;
  }
  .cart-table .product-cart-actions .qty {
    margin-right: 7px;
    margin-bottom: 7px;
  }
  .cart-table .price,
  .cart-table .product-cart-price:before {
    font-weight: 500;
    font-size: 15px;
    font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  }
  .cart-table .cart-footer-actions {
    text-align: center;
    width: 100%;
  }
  .cart-table .cart-footer-actions #empty_cart_button {
    float: right;
  }
  .cart-table .cart-footer-actions .btn-continue {
    float: left;
  }
  .cart-table .cart-footer-actions .btn-update,
  .cart-table .cart-footer-actions span.or {
    display: none;
  }

  .display-both-prices .cart-table td[data-rwd-tax-label]:before {
    content: attr(data-rwd-tax-label) ":";
  }
}
/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px;
}
.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #C0C0C0;
}
.shipping select.validation-failed {
  border-color: #DF280A;
}
.shipping .shipping-desc {
  display: none;
}
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}
.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}
.shipping .form-list .shipping-country {
  width: 37%;
}
.shipping .form-list .shipping-region {
  width: 41%;
}
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%;
}
.shipping .form-list .shipping-postcode input {
  margin-top: 4px;
}
.shipping .form-list .input-box {
  padding-top: 0;
}
.shipping .form-list input {
  height: 30px;
  margin-top: 4px;
}
.shipping .form-list label {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}
.shipping .sp-methods dd {
  margin-bottom: 10px;
}
.shipping .sp-methods label {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}
.shipping .sp-methods label span {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
}
.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
}
.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #CCCCCC;
  background-color: #ececec;
  min-width: 220px;
}
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: #dbdbdb;
}

@media only screen and (max-width: 770px) {
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none;
  }
  .shipping .shipping-form .form-list > li label {
    display: block;
  }
  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%;
  }
}
.cart .cart-totals {
  text-align: right;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
}
.cart .cart-totals table td {
  padding: 2px 0px;
}
.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}
.cart .cart-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}
.cart .cart-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.cart .cart-totals table tfoot td {
  font-size: 24px;
  padding: 2px 5px;
  vertical-align: top;
}
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  .cart-totals {
    text-align: right;
  }
}
@media only screen and (max-width: 770px) {
  .cart .cart-totals table tfoot td {
    font-size: 18px;
  }
}
.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}
#discount-coupon-form label,
.cart .giftcard label {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block;
}
#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: inline;
}
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
}
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: left;
}
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  border-radius: 0;
  height: 30px;
  margin: 4px 10px 0 0;
  width: 190px;
}

.cart .giftcard p {
  margin-bottom: 7px;
}

.cart .giftcard .check-gc-status {
  float: left;
  padding: 0px;
}
.cart .giftcard .check-gc-status > span > span {
  font-size: 14px;
  text-transform: none;
}

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
.crosssell h2 {
  color: #46C2AC;
}
.crosssell .item a.product-image {
  width: auto;
  float: left;
}

/* Change the layout to 2 columns at a breakpoint that is higher than a 3 columns layout would normally break */
@media only screen and (max-width: 979px) {
  .crosssell {
    /* Undo three-column config */
  }
  .crosssell .products-grid > li:nth-child(even),
  .crosssell .products-grid > li:nth-child(3n),
  .crosssell .products-grid > li {
    width: 47.72727%;
    margin-right: 4.54545%;
  }
  .crosssell .products-grid > li:nth-child(odd) {
    clear: left;
  }
  .crosssell .products-grid > li:nth-child(even) {
    margin-right: 0;
  }
  .crosssell .products-grid > li:nth-child(3n+1) {
    clear: none;
  }
}
@media only screen and (max-width: 599px) {
  .cart-table .cart-tax-total:after {
    right: -9px;
  }
  .cart-table .cart-tax-total.cart-tax-total-expanded:after {
    right: -13px;
  }
}
@media only screen and (max-width: 320px) {
  .crosssell ul .item {
    padding: 0 0px 40px;
  }
  .crosssell ul .product-details .crosssell-actions {
    padding: 0 5px;
  }
}
/* ============================================ *
 * Checkout - One Page
 * ============================================ */
.checkout-onepage-index .main-container {
  padding: 10px;
  margin-top: 20px;
}
@media only screen and (min-width: 771px) {
  .checkout-onepage-index .main-container {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 30px;
  }
}

.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

.checkout-onepage-index .col-main {
  width: auto;
  float: none;
}

@media only screen and (min-width: 980px) {
  .checkout-onepage-index .col-main {
    float: left;
    width: 68.75%;
    padding-right: 20px;
  }
  .checkout-onepage-index .col-right,
  .checkout-onepage-index .col-left {
    width: 31.25%;
    display: block;
  }
  .checkout-onepage-index .col-right {
    padding-left: 0;
  }
}
.opc select {
  width: 365px;
}

/* -------------------------------------------- *
 * Section Styling - Default
 */
.opc .section .step-title {
  width: 100%;
  border-top: 1px solid #ECECEC;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.opc .section .step-title:after {
  content: '';
  display: table;
  clear: both;
}

.opc .section.allow:not(.active) .step-title {
  cursor: pointer;
}

/* Using .no-touch since touch devices emulate hover, thereby making steps look active that are not */
.no-touch .opc .section.allow:not(.active) .step-title:hover {
  background-color: #F4F4F4;
}

.opc .section.active .step-title {
  border-bottom: 1px solid #ECECEC;
}

.opc .section .step-title a {
  display: none;
}

.opc .section.allow:not(.active) .step-title a {
  display: block;
  float: right;
  line-height: 40px;
  height: 40px;
  padding: 0px 10px;
}

.no-touch .opc .section .step-title a:hover {
  text-decoration: none;
}

.opc .section .step-title .number,
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  width: 26px;
  height: 26px;
  text-align: center;
  color: #FFFFFF;
  line-height: 26px;
  background-color: #46C2AC;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -13px;
}

.opc .section.allow .step-title .number {
  background-color: #a2e0d5;
}

.opc .section.allow .step-title h2 {
  color: #A0A0A0;
}

.opc .section.allow .step-title:hover h2,
.opc .section.active .step-title h2 {
  color: #46C2AC;
}

.opc .section .step-title h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  float: left;
  margin: 0px 4px 0px 45px;
}

.opc .section .step {
  padding: 20px;
}
.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}
@media only screen and (max-width: 979px) {
  .opc .section .step {
    padding: 10px;
  }
}

.opc select {
  max-width: 365px;
  width: 100%;
}

.opc h3 {
  font-weight: 500;
}

.opc .buttons-set {
  text-align: left;
}
.opc .buttons-set button.button {
  float: left;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
}
.opc .buttons-set p.required {
  float: right;
  margin-left: 5px;
  margin-bottom: 0;
}
.opc .buttons-set .back-link {
  float: right;
  margin: 0;
}
.opc .buttons-set a {
  line-height: 20px;
  display: inline-block;
  padding: 5px 5px 5px 0;
}

@media only screen and (max-width: 479px) {
  .opc .buttons-set .button + .buttons-set .button,
  .paypal-express-review .buttons-set .button + .buttons-set .button {
    margin-left: 0;
  }
}
.opc #opc-login .step {
  padding: 0px;
}
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px;
}

@media only screen and (max-width: 770px) {
  .opc #opc-login .description,
  .opc #opc-login p.required {
    display: none;
  }
}
#opc-payment .note {
  padding: 10px;
}

/* -------------------------------------------- *
 * This section hides everything but the "Checkout Method" step of the checkout process and fades in the content
 * once the customer progresses to the next step. The purpose of this is to simplify what the customer has to focus on.
 * It is limited to larger viewports since smaller devices are inherently going to be focused solely on the
 * "Checkout Method" step.
 */
.opc.opc-firststep-login .section:not(#opc-login) .step-title,
.opc-block-progress-step-login {
  -moz-transition: opacity 300ms 0;
  -o-transition: opacity 300ms 0;
  -webkit-transition: opacity 300ms 0;
  transition: opacity 300ms 0;
}

.opc.opc-firststep-login .section#opc-login .step-title .number {
  -moz-transition: width 80ms 0;
  -o-transition: width 80ms 0;
  -webkit-transition: width 80ms 0;
  transition: width 80ms 0;
}

.opc.opc-firststep-login .section#opc-login .step-title h2 {
  -moz-transition: margin-left 80ms 0;
  -o-transition: margin-left 80ms 0;
  -webkit-transition: margin-left 80ms 0;
  transition: margin-left 80ms 0;
}

/* When a user progresses from the "Checkout Method" to "Billing Information" for the first time, the              */
/* "opc-has-progressed-from-login" class gets added to the body. Also, the .opc element will only have the         */
/* "opc-firststep-login" class if the first step of the checkout is the "Checkout Method" (eg, not when logged in) */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section:not(#opc-login) .step-title,
body:not(.opc-has-progressed-from-login) .opc-block-progress-step-login {
  opacity: 0;
}

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title .number {
  width: 0px;
  overflow: hidden;
}

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title h2 {
  margin-left: 0px;
}

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
.sp-methods {
  margin: 0 0 8px;
}
.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
}
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
.sp-methods dd li {
  margin: 5px 0;
}
.sp-methods label img {
  float: left;
}
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
.sp-methods .price {
  font-weight: bold;
}
.sp-methods .form-list {
  padding-left: 20px;
}
.sp-methods .form-list li {
  margin: 0 0 8px;
}
.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}
.sp-methods select.year {
  width: 96px;
}
.sp-methods input.cvv {
  width: 4em !important;
}
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
.sp-methods .checkmo-list address {
  float: left;
}
@media only screen and (max-width: 479px) {
  .sp-methods .checkmo-list {
    padding-left: 0;
  }
  .sp-methods .checkmo-list label {
    width: 135px;
  }
}
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #CCCCCC;
  padding-left: 20px;
}
.block-progress .block-content {
  font-size: 13px;
}
.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: normal;
  color: #A0A0A0;
}
.block-progress dt.complete {
  color: #636363;
}
.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
}
.block-progress dd address {
  font-style: italic;
}
.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px;
}
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #636363;
  font-family: Georgia, Times, "Times New Roman", serif;
  text-transform: none;
  font-style: italic;
  float: left;
  clear: both;
  font-size: 13px;
}
.block-progress .payment-info dt:after {
  content: ': ';
}
.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 13px;
}
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

/* review step */
#checkout-review-table .btn-remove img {
  display: none;
}

#checkout-review-table-wrapper {
  clear: both;
}

#review-buttons-container {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
#review-buttons-container .btn-checkout {
  min-width: 220px;
}
#review-buttons-container .please-wait {
  float: left;
  margin-right: 10px;
}
#review-buttons-container .f-left {
  float: right;
}

@media only screen and (max-width: 599px) {
  .linearize-table-large.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .linearize-table.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline;
}

.opc-block-progress dt a,
.opc-block-progress dt .separator {
  display: none;
}

/* On small screens, the progress review content will be moved to the review step via JS. Styled via this CSS: */
#checkout-step-review .opc-block-progress {
  border-left: none;
  padding-left: 0;
}
#checkout-step-review .opc-block-progress .block-title {
  display: none;
}
#checkout-step-review .opc-block-progress .block-content {
  display: block !important;
  padding: 0;
}
#checkout-step-review .opc-block-progress .block-content > dl > div {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 479px) {
  #checkout-step-review .opc-block-progress .block-content > dl > div {
    float: none;
    width: auto;
  }
}
#checkout-step-review .opc-block-progress .block-content .changelink {
  display: none;
}

@media only screen and (max-width: 479px) {
  #checkout-review-table thead > tr > th {
    display: none;
  }
  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }

  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }
}
#checkout-step-review .centinel > p {
  margin-bottom: 10px;
}
#checkout-step-review .centinel iframe {
  width: 100%;
  min-height: 400px;
}

/* Gift options */
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 30px;
}
.gift-messages-form .item h5 {
  font-weight: bold;
}
.gift-messages-form .item .product-img-box {
  width: auto;
  float: left;
  padding-right: 15px;
}
.gift-messages-form .item .details {
  float: left;
}

.gift-message-form .inner-box > div {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-top: 15px;
  display: block;
}
.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 15px;
}
.gift-message-form .gift-wrapping-form label {
  margin-right: 10px;
}
.gift-message-form .gift-wrapping-form img {
  float: left;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px;
}
.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ECECEC;
}
.gift-message-form .gift-item:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-item .product-img-box {
  width: 200px;
}
.gift-message-form .gift-item .product-img-box .product-image {
  width: 75px;
  margin-left: auto;
  margin-right: auto;
}
.gift-message-form .gift-item .product-img-box .product-name {
  display: block;
}
.gift-message-form .gift-item .fieldset {
  margin-left: 200px;
}

@media only screen and (max-width: 770px) {
  .gift-message-form .giftmessage-area {
    max-width: 100%;
  }
  .gift-message-form .gift-item .product-img-box {
    width: 100%;
    float: none;
  }
  .gift-message-form .gift-item .fieldset {
    margin-left: 0px;
  }
  .gift-message-form .gift-item .fieldset textarea {
    width: 100%;
  }
}
/* Remove the 'Company' fields */
#billing-new-address-form li.fields:nth-child(2) div:first-child, #shipping-new-address-form li.fields:nth-child(2) div:first-child {
  display: none;
}

/* Remove the 'Fax' fields */
input#billing\:fax {
  display: none;
}

label[for=billing\:fax] {
  display: none;
}

input#shipping\:fax {
  display: none;
}

label[for=shipping\:fax] {
  display: none;
}

/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .main-container {
  padding: 10px;
  margin-top: 20px;
  font-family: "Circular Std", sans-serif;
}
.checkout-onepage-success .main-container .button {
  font-family: inherit;
}
@media only screen and (min-width: 771px) {
  .checkout-onepage-success .main-container {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 30px;
  }
}
.checkout-onepage-success .col-main {
  padding: 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set {
  margin: 10px 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set button {
  float: none;
}

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
.clearfix:after,
.configurable-swatch-list:after,
.product-view .product-options .swatch-attr:after {
  content: '';
  display: table;
  clear: both;
}

/* General Swatch Styling */
.swatch-link,
.swatch-label {
  display: block;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  color: #636363;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 1px solid #CCCCCC;
  margin: 0 0 3px;
}
.swatch-link img {
  border-radius: 2px;
}
.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}
.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #F4F4F4;
}

.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px);
}
.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 0 0 3px;
}
.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}
.configurable-swatch-list .not-available .x {
  display: block;
}
.configurable-swatch-list .not-available .swatch-link {
  border-color: #EDEDED;
  position: relative;
}
.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}
.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}
.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left;
}
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #46C2AC;
}
#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}
#narrow-by-list dd .swatch-label img {
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: content-box;
}
#narrow-by-list dd .has-image .swatch-label {
  padding: 0;
}

@media only screen and (max-width: 770px) {
  #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
    clear: left;
  }
}
.currently .swatch-current {
  position: relative;
}
.currently .swatch-current .btn-remove {
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
}
.currently .swatch-current span {
  display: block;
  float: left;
}
.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px;
}
.currently .swatch-link:hover {
  border-color: #CCCCCC;
  cursor: default;
}

/* Other Swatch States */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #46C2AC;
}

.configurable-swatch-box {
  background: none !important;
}
.configurable-swatch-box select.swatch-select {
  display: none;
}
.configurable-swatch-box .validation-advice {
  margin: 0 0 5px;
  background: #DF280A;
  padding: 2px 5px !important;
  font-weight: bold;
  color: #fff !important;
  float: left;
  display: block;
  border-radius: 3px;
}

/* CUSTOM */
.availability.out-of-stock span {
  color: #A0A0A0;
}

.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
}
.product-view .product-options .swatch-attr label,
.product-view .product-options .swatch-attr .select-label {
  font-size: 12px;
}
.product-view .product-options .swatch-attr label {
  display: block;
  line-height: 1.3;
}
.product-view .product-options .swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #46C2AC;
  padding-left: 5px;
}
.product-view .product-options dd .input-box {
  width: auto;
  height: auto;
}
.product-view .product-options .select-label {
  display: none;
}
.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-login .scaffold-form label:first-child {
  width: 115px;
}
.customer-account-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}
.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button {
  float: none;
  min-width: 50%;
  margin: 0;
}
.customer-account-login .col2-set .col-1 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}
@media only screen and (min-width: 480px) {
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    padding-top: 0;
    margin-top: 20px;
  }
  .customer-account-login .col2-set .col-1 {
    padding-right: 20px;
  }
  .customer-account-login .col2-set .col-2 {
    padding-left: 20px;
    border-left: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 770px) {
  .customer-account-login .col2-set .col-1 {
    padding-right: 0;
  }
  .customer-account-login .col2-set .col-2 {
    padding-left: 60px;
    border-left: 1px solid #EDEDED;
  }
}
@media only screen and (max-width: 479px) {
  .customer-account-login .col2-set .col-1 {
    padding-bottom: 30px;
  }
  .customer-account-login .col2-set .col-2 {
    padding-top: 30px;
    border-top: 1px solid #EDEDED;
  }
}
@media only screen and (max-width: 770px) {
  .customer-account-login .col2-set p.required {
    display: none;
  }
}

.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}

.opc #opc-login p:not(.required) {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  color: #A0A0A0;
}

.remember-me-box a.hide {
  display: none;
}
.remember-me-box .link-tip {
  font-size: 13px;
  padding-left: 10px;
}

.remember-me-popup {
  display: none;
  border: 1px solid #CCCCCC;
  padding: 10px;
  position: relative;
}
.remember-me-popup.show {
  display: block;
}
.remember-me-popup p {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
}
.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

.customer-account-create .buttons-set {
  max-width: 455px;
}
.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 30px;
}
@media only screen and (max-width: 479px) {
  .customer-account-create .fieldset,
  .customer-account-create .buttons-set {
    margin-left: 0;
  }
}
.customer-account-create .fieldset .hidden {
  display: none;
}
.customer-account-create #remember-me-popup {
  max-width: 455px;
}

.customer-account-forgotpassword .fieldset,
.customer-account-forgotpassword .buttons-set {
  margin-left: 30px;
  max-width: 400px;
}
@media only screen and (max-width: 479px) {
  .customer-account-forgotpassword .fieldset,
  .customer-account-forgotpassword .buttons-set {
    margin-left: 0;
  }
}
.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
}
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
}
body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}
body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block;
}
body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-weight: 600;
}
body.customer-account .my-account .fieldset {
  margin-top: 30px;
  margin-bottom: 30px;
}
body.customer-account .data-table {
  margin-top: 5px;
}
body.customer-account .data-table td a {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  font-style: normal;
  font-size: 13px;
}
body.customer-account .data-table span.nobr {
  white-space: normal;
}
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
body.customer-account .data-table td.view a {
  display: block;
}
body.customer-account .data-table .separator {
  display: none;
}
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block .block-content .actions {
  margin-top: 30px;
}
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
}

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px;
}
.form-list .customer-dob .dob-year {
  width: 80px;
  float: left;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .box-head {
  margin-top: 30px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 7px;
}
.dashboard .box-head h2 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
}
.dashboard .box-head a {
  padding: 10px;
}
.dashboard .box-title a,
.dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
}
.dashboard .box-account {
  padding-bottom: 40px;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 45px;
}
.dashboard .box-account p,
.dashboard .box-account address {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
}
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 12.09677%;
  padding-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}
.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 19.6px;
}
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list {
  font-family: Georgia, Times, "Times New Roman", serif;
}
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
.my-account .addresses-list .item {
  margin: 0 0 30px 0;
}
.my-account .addresses-list .item p {
  margin-top: 10px;
}
@media only screen and (max-width: 770px) {
  .my-account .addresses-list .col-1,
  .my-account .addresses-list .col-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .my-account .addresses-list .col-1 li.empty,
  .my-account .addresses-list .col-2 li.empty {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .my-account .addresses-list .addresses-additional p a {
    white-space: nowrap;
  }
}

/* ============================================ *
 * Order View
 * ============================================ */
.order-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
  width: 100%;
  margin-bottom: 30px;
}
.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline;
}
.order-info dt {
  margin-right: 20px;
}
.order-info li {
  margin: 0 0 0 20px;
}
.order-info li.current {
  font-weight: 600;
}
.order-info li:first-child {
  margin-left: 0;
}

.order-date {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
.order-info-box .col-2 {
  width: 52%;
}
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}
.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
.order-info-box .box-title h2:after {
  content: ':';
}
.order-info-box .box-content {
  float: left;
  font-family: Georgia, Times, "Times New Roman", serif;
}
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: Georgia, Times, "Times New Roman", serif;
  line-height: 1.3;
}
.order-info-box .box-content th {
  padding-top: 10px;
}
.order-info-box .box-content td {
  padding-left: 15px;
}
.order-info-box .box-content strong {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

#my-orders-table .option-label {
  margin-left: 10px;
  font-weight: 600;
  font-style: italic;
}
#my-orders-table .option-value {
  margin-left: 20px;
}
#my-orders-table tr.bundle:not(:last-child) td {
  border-bottom: none;
  border-top: none;
}

ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
ol#cart-sidebar-reorder p.product-name {
  display: inline;
}

@media only screen and (max-width: 599px) {
  #my-orders-table .option-label {
    margin-left: 20px;
  }
  #my-orders-table .option-value {
    margin-left: 35px;
  }
  #my-orders-table td[data-rwd-label=Qty] .nobr br {
    display: none;
  }
  #my-orders-table td[data-rwd-label=Qty] .nobr strong {
    margin-right: 10px;
  }
  #my-orders-table tr.bundle {
    border-color: #EDEDED;
  }
  #my-orders-table tr.bundle.child td[data-rwd-label] {
    padding-left: 60px;
  }
  #my-orders-table tbody:last-child tr:last-child td {
    padding-bottom: 10px;
    border-bottom: 0;
  }
  #my-orders-table tbody:last-child tr:last-child td:last-child {
    padding-bottom: 15px;
  }
  #my-orders-table tfoot tr.shipping {
    margin-top: 0;
  }
}
.order-additional {
  margin: 40px 0;
}

.order-gift-message dd {
  margin-top: 10px;
}

@media only screen and (max-width: 1199px) {
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    padding-right: 30px;
    padding-bottom: 0;
  }

  body.customer-account .data-table td.view a {
    white-space: normal;
  }
}
@media only screen and (max-width: 979px) {
  body.customer-account .my-account .title-buttons {
    text-align: left;
  }
  body.customer-account .my-account .title-buttons span.separator,
  body.customer-account .my-account .title-buttons a {
    top: -12px;
  }
}
@media only screen and (max-width: 770px) {
  body.customer-account .data-table.orders th.ship,
  body.customer-account .data-table.orders td.ship,
  body.customer-account .data-table.orders td.status,
  body.customer-account .data-table.orders th.status {
    display: none;
  }

  .order-info-box .box-content {
    clear: left;
  }

  .addresses-list .item {
    float: left;
    width: 50%;
    padding-right: 30px;
  }

  .order-info dt {
    display: none;
  }

  .dashboard .page-title {
    margin-top: 20px;
  }
  .dashboard .page-title h1 {
    margin-top: 0;
  }
  .dashboard .welcome-msg {
    font-family: Georgia, Times, "Times New Roman", serif;
  }
  .dashboard .welcome-msg .hello {
    font-style: italic;
  }
  .dashboard .box-account {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 48%;
    padding-right: 0;
    padding-left: 0;
  }
  .dashboard .col2-set .col-1 {
    float: left;
    margin-right: 4%;
  }
  .dashboard .col2-set .col-2 {
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  body.customer-account .my-account .form-list .control {
    padding-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  body.customer-account .my-account .page-title h1 {
    text-align: center;
  }
  body.customer-account .my-account .title-buttons {
    text-align: center;
  }
  body.customer-account .my-account .title-buttons .button {
    width: 100%;
    position: static;
    margin-bottom: 15px;
  }
  body.customer-account .my-account .title-buttons .button + .button {
    margin-left: 0px;
  }
  body.customer-account .my-account .fieldset h2 {
    margin-bottom: 15px;
  }
  body.customer-account .my-account .order-details h2 {
    margin-bottom: 15px;
  }
  body.customer-account .my-account .buttons-set {
    border-top: 0;
  }
  body.customer-account .my-account .addresses-list .item {
    margin-bottom: 15px;
    padding-right: 0;
    float: none;
    width: auto;
  }
  body.customer-account .my-account .addresses-list h2 {
    margin-bottom: 15px;
  }

  .order-info {
    margin-top: 15px;
  }

  .data-table.orders .link-reorder,
  .data-table.orders .date {
    display: none;
  }
  .data-table.orders td.view {
    text-align: right;
  }

  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 100%;
    margin-top: 15px;
  }

  .order-info-box {
    margin: 0;
  }
  .order-info-box .col-1,
  .order-info-box .col-2 {
    width: 100%;
    border-bottom: 1px solid #EDEDED;
    padding: 15px 0;
  }
  .order-info-box + .order-info-box {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 30px;
  }

  #my-reviews-table .nobr {
    white-space: normal;
  }
}
/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px;
}
body.newsletter-manage-index .my-account .fieldset h2 {
  display: none;
}
body.newsletter-manage-index .my-account .form-list {
  border-top: 1px solid #EDEDED;
  padding-top: 10px;
}

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .buttons-set {
  margin-left: 30px;
  max-width: 435px;
}
.contacts-index-index .buttons-set p.required {
  float: left;
}
@media only screen and (max-width: 599px) {
  .contacts-index-index .buttons-set {
    max-width: 330px;
    margin-left: 0;
  }
  .contacts-index-index .buttons-set button {
    float: left;
    margin-left: 0px;
  }
  .contacts-index-index .buttons-set p.required {
    float: right;
  }
}

/* ============================================ *
 * PayPal
 * ============================================ */
@media only screen and (max-width: 870px) and (min-width: 771px) {
  .paypal-review-order .col2-set .col-1,
  .paypal-review-order .col2-set .col-2 {
    padding: 0px;
  }
}

.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
}
.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0;
}
.paypal-review-order .buttons-set button {
  margin-bottom: 10px;
}
@media only screen and (max-width: 770px) {
  .paypal-review-order .col-1 {
    padding-bottom: 0;
  }
  .paypal-review-order .field.inactive {
    display: none;
  }
}

.top-container .bml-ad {
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: center;
}
.top-container .bml-ad span {
  display: inline-block;
}
.top-container .bml-ad span a {
  display: block;
}

.bml-ad {
  display: none;
  text-align: center;
  margin-bottom: 5px;
}
.bml-ad span {
  display: block;
  line-height: 0;
}
.bml-ad a {
  display: inline-block;
  max-width: 100%;
}
.bml-ad a:hover {
  opacity: 0.7;
}
.bml-ad img {
  height: auto !important;
  max-width: 100%;
}

.cart-totals-wrapper .bml-ad.large img {
  display: block;
  margin: 0;
}

@media only screen and (max-width: 770px) {
  .bml-ad.small {
    display: block;
  }
}
@media only screen and (min-width: 771px) {
  .bml-ad.large {
    display: block;
  }
}
div.paypal-logo {
  text-align: center;
  margin: 15px 0;
  max-width: 100%;
}
div.paypal-logo span {
  display: block;
  width: 100%;
}
div.paypal-logo span a {
  display: inline-block;
  max-width: 100%;
}
div.paypal-logo span a img {
  max-width: 100%;
}
div.paypal-logo span > img {
  display: none;
}

.checkout-types div.paypal-logo {
  text-align: right;
}

.bml-checkout-type {
  list-style-type: none;
}

.sidebar .paypal-logo {
  text-align: center;
  line-height: 0;
}
.sidebar .paypal-logo > a {
  display: inline-block;
  max-width: 100%;
}
.sidebar .paypal-logo > a:hover {
  opacity: 0.8;
}
.sidebar .paypal-logo > a img {
  display: block;
}
.sidebar .paypal-logo .label {
  margin-top: 4px;
}
.sidebar .paypal-logo .label a {
  font-size: 12px;
  line-height: 1.5;
}

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: auto;
  float: none;
}
#customer-reviews .review-heading {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 0 5px;
}
#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .review-heading h2 {
  float: left;
  display: block;
}
#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}
#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}
#customer-reviews .review-heading .pager .count-container .limiter label {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews h2 {
  color: #46C2AC;
  font-size: 12px;
  text-transform: uppercase;
}
#customer-reviews h2 span {
  color: #636363;
}
#customer-reviews h3 {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews h3 span {
  color: #46C2AC;
}
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #CCCCCC;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
#customer-reviews .fieldset h4 em {
  display: none;
}
#customer-reviews .fieldset .form-list {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 470px;
}
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .fieldset .form-list label {
  font-size: 12px;
  font-weight: normal;
}
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #CCCCCC;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #CCCCCC;
  border-radius: 0;
}
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}
#customer-reviews dl {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}
#customer-reviews dl dd {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  margin: 10px 0;
}
#customer-reviews dl dd .ratings-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  width: 100%;
}
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #46C2AC;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.review-summary-table {
  border-bottom: 1px solid #CCCCCC;
  margin: 0 0 10px;
}
.review-summary-table thead {
  background: transparent;
}
.review-summary-table thead th {
  background: transparent;
  border: none;
  padding: 15px 7px 10px 8px;
}
.review-summary-table tbody th {
  background: #FFFFFF;
  font-size: 12px;
}
.review-summary-table tbody td {
  border: none;
  text-align: center;
  padding: 0;
}
.review-summary-table tbody td label {
  width: 100%;
  display: block;
  padding: 11px 0;
}
.review-summary-table .rating-box .rating-number {
  display: none;
}
.review-summary-table .rating-box .rating-number:after {
  content: "";
  display: inline-block;
  background-position: 0px -599px;
  width: 13px;
  height: 14px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.ratings-table th {
  padding-right: 10px;
}
.ratings-table .rating-box {
  background-position: 0 -615px;
  background-repeat: repeat-x;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}
.ratings-table .rating-box .rating {
  background-position: 0 -600px;
  background-repeat: repeat-x;
  float: left;
  height: 13px;
  text-indent: -9999px;
}

@media only screen and (max-width: 770px) {
  body.review-product-list .product-view .product-shop .price-info {
    padding-left: 0;
  }
  body.review-product-list .product-view .product-shop .extra-info {
    padding: 0;
    min-width: 84%;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table {
    margin: 10px 0;
    width: 100%;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 535px) {
  body.review-product-list .product-view .product-shop .extra-info {
    min-width: 0;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    float: none;
    margin-right: 0;
  }
}
@media only screen and (max-width: 520px) {
  #customer-reviews .fieldset {
    width: 100%;
  }
  #customer-reviews .fieldset .form-list {
    width: 100%;
  }
  #customer-reviews .fieldset .form-list .inline-label label,
  #customer-reviews .fieldset .form-list .inline-label .input-box {
    float: none;
  }
  #customer-reviews .buttons-set {
    width: 100%;
  }
  #customer-reviews .review-summary-table thead th {
    padding-left: 0px;
    padding-right: 0px;
  }
  #customer-reviews .review-summary-table tbody th {
    padding-left: 0px;
    padding-right: 0px;
  }
  #customer-reviews .review-summary-table tbody td {
    width: 20%;
    padding: 0px;
  }
  #customer-reviews .review-summary-table .rating-box {
    text-indent: 0px;
    text-align: center;
    background: none;
    height: 19.6px;
    width: 100%;
  }
  #customer-reviews .review-summary-table .rating-box .rating {
    display: none;
  }
  #customer-reviews .review-summary-table .rating-box .rating-number {
    display: inline-block;
  }
}
@media only screen and (max-width: 450px) {
  #customer-reviews dl dd .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * Review View Page
 * ============================================ */
.review-product-view .product-review .product-details h2 {
  border-bottom: none;
}
.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%;
}
.review-product-view .product-review .product-img-box > a {
  width: 100%;
}
.review-product-view .product-review .product-img-box .product-image {
  width: 100%;
}

@media only screen and (max-width: 770px) {
  .review-product-view .product-review .product-img-box {
    max-width: 100%;
  }
}
/* ============================================ *
 * Slideshow
 * ============================================ */
.slideshow-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 10px 0;
  border: 1px solid #EDEDED;
}
.slideshow-container .slideshow {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0;
  border: 10px solid #FFFFFF;
}
.slideshow-container .slideshow > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
  margin: 0;
}
.slideshow-container .slideshow > li:first-child {
  position: static;
  z-index: 100;
}
.slideshow-container .slideshow > li img {
  max-width: 100%;
  width: 100%;
}

.slideshow-pager {
  text-align: center;
  width: 100%;
  z-index: 115;
  position: absolute;
  bottom: 0px;
  top: auto;
  overflow: hidden;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.slideshow-pager span {
  font-family: arial;
  width: 44px;
  height: 44px;
  display: inline-block;
  color: #DDDDDD;
  cursor: pointer;
}
.slideshow-pager span:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 1px;
  background-color: #FFFFFF;
  position: relative;
}
.slideshow-pager span:hover:before {
  background-color: #3bb39e;
}
.slideshow-pager span.cycle-pager-active:before {
  background-color: #35a08d;
}
.slideshow-pager > * {
  cursor: pointer;
}

.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 0;
  width: 15%;
  max-width: 80px;
  height: 100%;
  opacity: 0.6;
  z-index: 110;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.slideshow-prev:before,
.slideshow-next:before {
  content: '';
  width: 0;
  height: 0;
  font-size: 0;
  position: absolute;
  border-style: solid;
  display: block;
  top: 50%;
  margin-top: -15px;
}
.slideshow-prev:hover,
.slideshow-next:hover {
  opacity: 1;
}
.slideshow-prev.disabled,
.slideshow-next.disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  cursor: default;
}

.slideshow-prev {
  left: 8px;
}
.slideshow-prev:before {
  border-width: 15px 15px 15px 0;
  border-color: transparent #FFFFFF transparent transparent;
  top: 50%;
  left: 10px;
}
.slideshow-prev:hover:before {
  border-color: transparent #3bb39e transparent transparent;
}

.slideshow-next {
  right: 8px;
}
.slideshow-next:before {
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #FFFFFF;
  top: 50%;
  right: 10px;
}
.slideshow-next:hover:before {
  border-color: transparent transparent transparent #3bb39e;
}

.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 110;
}

.cycle-overlay {
  font-family: tahoma, arial;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 120;
  background: black;
  color: white;
  padding: 15px;
  opacity: .5;
}

/* ============================================ *
 * Wishlist
 * ============================================ */
#wishlist-table th {
  text-align: center;
}
#wishlist-table.clean-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}
#wishlist-table.clean-table th {
  border-bottom: 1px solid #C0C0C0;
}
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}
#wishlist-table.clean-table thead th {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
#wishlist-table .product-name {
  font-size: 16px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
}
#wishlist-table .product-name a {
  color: #46C2AC;
}
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 5px 0;
}
#wishlist-table textarea {
  border: 1px solid #C0C0C0;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:focus {
  border: 1px solid #46C2AC;
}
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}
#wishlist-table .item-manage .button {
  font-size: 11px;
  padding: 3px 5px;
}
#wishlist-table .cart-cell {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-image {
  width: 113px;
}
#wishlist-table td.customer-wishlist-item-quantity {
  width: 3em;
}
#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart {
  width: 150px;
}
#wishlist-table td.customer-wishlist-item-cart .button {
  font-size: 12px;
  margin-bottom: 10px;
  padding: 3px 5px;
  width: 100%;
}
#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px;
}
#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}
#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}
#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
}
#wishlist-table td .button,
#wishlist-table td button {
  white-space: normal;
}
#wishlist-table .price-box {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}
#wishlist-table .price-box .price {
  color: #636363;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #46C2AC;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #46C2AC;
}
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

@media only screen and (max-width: 1199px) {
  #wishlist-table.clean-table td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 979px) {
  #wishlist-table.clean-table td {
    padding-left: 5px;
    padding-right: 5px;
  }
  #wishlist-table.clean-table td textarea {
    height: 100px;
  }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 110px;
  }
  #wishlist-table .product-name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 770px) {
  #wishlist-table:after {
    content: '';
    display: table;
    clear: both;
  }
  #wishlist-table .product-name {
    font-size: 16px;
  }
  #wishlist-table textarea {
    height: 68px;
    max-width: 100%;
  }
  #wishlist-table .item-manage {
    max-width: 100%;
  }
  #wishlist-table tr {
    position: relative;
  }
  #wishlist-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  #wishlist-table td.customer-wishlist-item-image {
    width: 70px;
  }
  #wishlist-table td.customer-wishlist-item-image img {
    width: 70px;
    height: 70px;
  }
  #wishlist-table td.customer-wishlist-item-cart p {
    margin-bottom: 0;
  }
  #wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
    margin-right: 0;
    padding-top: 4px;
  }
  #wishlist-table td.customer-wishlist-item-cart {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 599px) {
  #wishlist-table td.customer-wishlist-item-quantity {
    padding-left: 0;
  }
  #wishlist-table td.customer-wishlist-item-image,
  #wishlist-table th.customer-wishlist-item-image {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  #wishlist-table tr {
    position: relative;
  }
  #wishlist-table th.customer-wishlist-item-image {
    display: block;
  }
  #wishlist-table td.customer-wishlist-item-image, #wishlist-table td.customer-wishlist-item-info, #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price, #wishlist-table td.customer-wishlist-item-cart {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    empty-cells: hide;
  }
  #wishlist-table td.customer-wishlist-item-image {
    display: block;
    overflow: hidden;
  }
  #wishlist-table td.customer-wishlist-item-image a {
    float: left;
  }
  #wishlist-table td.customer-wishlist-item-image a img {
    width: 113px;
    height: 113px;
  }
  #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price {
    text-align: left;
  }
  #wishlist-table td.customer-wishlist-item-quantity:before, #wishlist-table td.customer-wishlist-item-price:before {
    float: left;
    margin-right: 15px;
  }
  #wishlist-table td.customer-wishlist-item-quantity .cart-cell, #wishlist-table td.customer-wishlist-item-price .cart-cell {
    text-align: left;
  }
  #wishlist-table td.customer-wishlist-item-quantity .price-box, #wishlist-table td.customer-wishlist-item-price .price-box {
    margin-top: 0;
  }
  #wishlist-table td.customer-wishlist-item-cart .cart-cell {
    float: left;
    width: 48%;
  }
  #wishlist-table td.customer-wishlist-item-cart > p {
    float: right;
    width: 48%;
  }
  #wishlist-table td.customer-wishlist-item-remove {
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    padding: 0px;
    height: 20px;
  }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 100%;
  }
}
/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px;
}
.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px;
}
.block-wishlist .price-box {
  float: left;
  margin: 0;
}
.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px;
}
.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #EDEDED;
}

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
@media only screen and (max-width: 770px) {
  .header-minicart {
    display: block;
  }
}
.header-minicart .minicart-message {
  display: block;
  padding: 10px;
}
.header-minicart .empty {
  padding: 10px;
  text-align: center;
}
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
  padding: 10px;
}
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.header-minicart .minicart-wrapper:after {
  background-image: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-subtitle {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  color: #898785;
  display: block;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px;
}
.header-minicart .mini-products-list {
  padding: 10px;
  padding-top: 0px;
}
.header-minicart .mini-products-list li {
  padding: 8px 5px 8px 11px;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}
.header-minicart .mini-products-list li.last {
  border: none;
}
.header-minicart .mini-products-list li .product-details {
  position: relative;
}
.header-minicart .product-details .product-name {
  padding-top: 0px;
  font-weight: bold;
}
.header-minicart .product-details .product-name a {
  color: #46C2AC;
}
.header-minicart .info-wrapper {
  margin-bottom: 0.5em;
}
.header-minicart .info-wrapper th {
  text-transform: uppercase;
  padding-right: 10px;
}
.header-minicart .info-wrapper td {
  color: #46C2AC;
  clear: right;
}
.header-minicart .info-wrapper .qty-wrapper td {
  height: 33px;
  line-height: 33px;
}
.header-minicart .info-wrapper .qty {
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 2px;
  width: 3.2em;
  text-align: center;
  height: 30px;
}
.header-minicart .info-wrapper .quantity-button {
  opacity: 0;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 100ms;
  -o-transition-duration: 100ms;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
}
.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default;
}
.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1;
}
.header-minicart .subtotal {
  background-color: #DDDDDD;
  text-align: center;
  line-height: 2em;
}
.header-minicart .subtotal .label {
  color: white;
  text-transform: uppercase;
}
.header-minicart .subtotal .price {
  color: #46C2AC;
}
.header-minicart .minicart-actions {
  padding: 10px;
  margin-top: 0px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.header-minicart .minicart-actions .checkout-button {
  min-width: 145px;
}
.header-minicart .minicart-actions .cart-link {
  height: 33px;
  line-height: 39px;
  text-transform: uppercase;
  font-size: 13px;
  text-align: right;
}
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none;
}
.header-minicart #minicart-success-message {
  text-align: center;
  color: green;
  display: none;
}
.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}

.header-minicart.skip-active .block-cart,
.block-cart.skip-active {
  display: block;
  position: relative;
  margin: 0;
}

@media only screen and (min-width: 771px) {
  .checkout-types.minicart {
    float: none;
    text-align: center;
  }
}
@media only screen and (max-width: 479px) {
  .header-minicart a.skip-cart {
    z-index: 1;
  }
}
@media only screen and (max-width: 770px) {
  .header-minicart {
    /* Contain floats */
  }
  .header-minicart:after {
    content: '';
    display: table;
    clear: both;
  }
  .header-minicart .subtotal .label {
    color: #636363;
  }
  .header-minicart .minicart-wrapper {
    right: 0;
    z-index: 200;
    position: absolute;
    background-color: white;
    border: 1px solid #898785;
  }
  .header-minicart .quantity-button {
    float: none;
  }
  .header-minicart .header-minicart .block-cart {
    padding: 15px;
  }
  .header-minicart .block-subtitle {
    color: #898785;
  }
  .header-minicart .minicart-actions {
    padding-bottom: 33px;
  }
  .header-minicart .minicart-actions .cart-link {
    bottom: 0;
    right: 10px;
    position: absolute;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li {
    display: inline-block;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo > a {
    display: inline;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .bml_button {
    display: inline-block;
    vertical-align: top;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    width: auto;
    float: none;
    display: inline;
    margin: 0 10px 5px 10px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 740px) {
  .header-minicart .minicart-actions .checkout-button {
    width: 100%;
  }
  .header-minicart .minicart-actions .cart-link {
    right: auto;
    left: 0;
    text-align: center;
    width: 100%;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or,
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-button {
    width: 100%;
    display: block;
    margin-left: 0;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    line-height: 1.6;
  }
}
@media only screen and (max-width: 599px) {
  .header-minicart .minicart-actions .checkout-button {
    width: 100%;
  }
}
/* ============================================ *
 * Checkout - Mini cart - Large resolution
 * ============================================ */
@media only screen and (min-width: 771px) {
  .header-minicart .skip-content, .header-minicart .block-subtitle > .close {
    color: #636363;
  }
}
/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 200;
}
.search-autocomplete ul {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #46C2AC;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.search-autocomplete ul li {
  border-bottom: 1px solid #F4F4F4;
  color: #46C2AC;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left;
}
.search-autocomplete ul li:hover {
  color: #3bb39e;
}
.search-autocomplete ul li.selected {
  background-color: #46C2AC;
  color: white;
}
.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold;
}
.search-autocomplete ul li:last-child {
  border-bottom: none;
}
.search-autocomplete:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #46C2AC;
  border-top: none;
  left: 50%;
  top: -7px;
}

/* ============================================ *
 * Search - Advanced
 * ============================================ */
.advanced-search {
  background: #F4F4F4;
  border: 1px solid #EDEDED;
  padding: 30px;
}
.advanced-search select.multiselect option {
  border-bottom: 1px solid #EDEDED;
  padding: 2px 5px;
}

@media only screen and (max-width: 479px) {
  .advanced-search {
    padding: 15px;
  }
}
/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.product-review .product-img-box .rating-box {
  margin: 15px 0;
}
.product-review .product-details h2 {
  border-bottom: 1px solid #CCCCCC;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  padding-bottom: 10px;
}
.product-review .ratings-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.product-review .ratings-table th {
  padding-right: 10px;
}
.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}
.product-review .ratings-description dt {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 400;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  color: #737373;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
}

@media only screen and (min-width: 771px) {
  .product-review .ratings-table tr {
    float: none;
  }
}
@media only screen and (min-width: 1126px) {
  .product-review .ratings-table tr {
    float: left;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 320px) {
  .product-review .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * CMS Pages
 * ============================================ */
.cms-page-view .page-title h1,
.cms-page-view .page-title h3,
.cms-page-view .page-head h1,
.cms-page-view .page-head h3,
.cms-no-route .page-title h1,
.cms-no-route .page-title h3,
.cms-no-route .page-head h1,
.cms-no-route .page-head h3 {
  border: none;
}
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}
.cms-page-view .std p,
.cms-no-route .std p {
  font-size: 14px;
}
.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #46C2AC;
}
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #46C2AC;
}
.cms-page-view .std li,
.cms-no-route .std li {
  color: #636363;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}

.cms-no-route .main-container {
  padding: 10px;
  margin-top: 20px;
}
@media only screen and (min-width: 771px) {
  .cms-no-route .main-container {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 30px;
  }
}
.cms-no-route .std img {
  width: 100%;
}

.cms-page-view .std .messages,
.cms-home .std .messages,
.cms-no-route .std .messages {
  margin-bottom: 10px;
}
.cms-page-view .std .messages ul,
.cms-home .std .messages ul,
.cms-no-route .std .messages ul {
  margin-bottom: 0;
}
.cms-page-view .std .messages li,
.cms-home .std .messages li,
.cms-no-route .std .messages li {
  list-style: none;
  margin-left: 0;
  font-style: normal;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #CCCCCC;
  position: relative;
  background-color: #F4F4F4;
  display: block;
}
#accordion > dl > dt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #46C2AC;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
#accordion > dl > dt:hover {
  background-color: #ececec;
}
#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #CCCCCC;
}
#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
#accordion li {
  position: relative;
  overflow: hidden;
}
#accordion li .plusimage h2 {
  margin-right: 10px;
}

.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0;
}
.page-sitemap .links a {
  position: relative;
}
.page-sitemap .sitemap {
  padding: 0 20px;
  margin: 15px 0;
  font-size: 12px;
}
.page-sitemap .sitemap li {
  margin: 3px 0;
}

.contacts-index-index h1 {
  border: none;
}

#contactForm {
  padding-left: 40px;
}
#contactForm h2 {
  display: none;
}
#contactForm:after {
  content: '';
  display: table;
  clear: both;
}
#contactForm .fieldset .legend + .required {
  margin: 0;
}

@media only screen and (max-width: 770px) {
  #contactForm {
    padding-left: 0;
  }
}
/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #CF5050;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.map-info {
  white-space: nowrap;
}

.catalog-product-view .map-info {
  white-space: normal;
}
.catalog-product-view .map-info > span {
  float: right;
  margin-bottom: 5px;
}
.catalog-product-view .map-info .price-box.map-info > a {
  float: right;
  width: 100%;
}

/* ============================================ *
 * Cookies
 * ============================================ */
.notice-cookie .notice-inner {
  padding-bottom: 0;
}
.notice-cookie .notice-inner:after {
  content: '';
  display: table;
  clear: both;
}
.notice-cookie .notice-text {
  float: left;
  max-width: 90%;
  padding-top: 4px;
  text-align: left;
}
.notice-cookie .notice-text p {
  padding-bottom: 14.5px;
  line-height: 1.3;
}
.notice-cookie .actions {
  float: left;
  text-align: right;
  padding-bottom: 14.5px;
}

@media only screen and (max-width: 979px) {
  .notice-cookie .notice-text {
    max-width: 86%;
  }
}
@media only screen and (max-width: 770px) {
  .notice-cookie {
    padding: 0 20px;
  }
  .notice-cookie .notice-text {
    max-width: 82%;
    padding-top: 0;
  }
}
@media only screen and (max-width: 620px) {
  .notice-cookie {
    padding: 0 20px;
  }
  .notice-cookie .notice-inner {
    background-position: left 10px;
  }
  .notice-cookie .notice-inner:after {
    content: '';
    display: table;
    clear: both;
  }
  .notice-cookie .notice-text {
    float: none;
    max-width: 100%;
    padding-top: 0;
  }
  .notice-cookie .actions {
    text-align: left;
  }
}
/* ============================================ *
 * Tags
 * ============================================ */
#addTagForm button {
  margin-top: 5px;
  margin-bottom: 10px;
}

#addTagForm .form-add {
  margin-top: 10px;
}

.product-tags {
  background-color: #F4F4F4;
  border: 1px solid #CCCCCC;
  float: left;
  margin-bottom: 10px;
  padding: 5px 1% 10px;
  width: 98%;
}

.product-tags li {
  float: left;
  margin-right: 15px;
}

.product-tags li.last {
  margin-right: 0px;
}

.tags-list {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.tags-list > li {
  float: left;
  margin-right: 10px;
}

.block-tags .actions > a {
  font-size: 12px;
}

.my-tag-edit .button.btn-remove {
  padding: 0;
}
.my-tag-edit .button.btn-remove:after {
  color: white;
}

@media only screen and (max-width: 770px) {
  .tags-list > li,
  .tags-list {
    float: none;
  }
}
/* ============================================ *
 * Captcha
 * ============================================ */
.captcha-note {
  clear: left;
  padding-top: 5px;
}

.captcha-image {
  float: left;
  display: inline;
  max-width: 100%;
  position: relative;
  width: 258px;
  margin-bottom: 10px;
}

.captcha-image .captcha-img {
  border: 1px solid #b6b6b6;
  vertical-align: bottom;
  width: 100%;
}

.registered-users .captcha-image {
  margin: 0;
}

.captcha-reload {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
}

.captcha-reload.refreshing {
  animation: rotate 1.5s infinite linear;
  -webkit-animation: rotate 1.5s infinite linear;
  -moz-animation: rotate 1.5s infinite linear;
}

.customer-account-create .scaffold-form .captcha-input-container label:first-child {
  width: 100%;
}

.captcha-reload {
  position: absolute;
  right: 4px;
  top: 4px;
}

.captcha-img {
  border: 20px solid #bbb;
}

.captcha-input-container {
  margin-bottom: 10px;
}

.control.newsletter-box, .captcha-input-container, .captcha-img-container {
  float: none;
  clear: both;
}
.control.newsletter-box:after, .captcha-input-container:after, .captcha-img-container:after {
  content: '';
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout Billing Fix to place the Captcha properly
 * ============================================ */
#co-billing-form ul.form-list > .control {
  float: left;
  margin: 0 0 5px;
  width: 100%;
}

/* ============================================ *
 * Account - Orders, Invoices, Credit Memos.
 * ============================================ */
@media only screen and (max-width: 479px) {
  .sales-order-invoice .sub-title,
  .sales-order-creditmemo .sub-title,
  .sales-order-shipment .sub-title {
    float: left;
    font-size: 15px;
    text-align: center;
    width: 100%;
  }
  .sales-order-invoice .order-links,
  .sales-order-creditmemo .order-links,
  .sales-order-shipment .order-links {
    text-align: center;
    width: 100%;
  }
}
/* ============================================ *
 * Recurring Profiles
 * ============================================ */
#recurring_profile_list_view th {
  white-space: normal;
}
#recurring_profile_list_view th span {
  white-space: inherit;
}
@media only screen and (max-width: 479px) {
  #recurring_profile_list_view {
    font-size: 12px;
  }
  #recurring_profile_list_view a {
    font-size: inherit;
  }
  #recurring_profile_list_view th,
  #recurring_profile_list_view td {
    padding: 2px;
  }
}

.recurring-profiles-title {
  float: left;
}
.recurring-profiles-title h1 {
  margin-bottom: 7px;
}

body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
  float: right;
  text-align: right;
  margin-bottom: 30px;
}
@media only screen and (max-width: 479px) {
  body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
    text-align: center;
    float: none;
  }
}
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button {
  position: static;
}

.recurring-profiles-messages:after {
  content: '';
  display: table;
  clear: both;
}

#recurring_start_date_trig {
  display: inline;
}

/* ============================================ *
 * Billing Agreements
 * ============================================ */
.billing-agreements .info-box {
  margin-bottom: 30px;
}
.billing-agreements .info-box:after {
  content: '';
  display: table;
  clear: both;
}
.billing-agreements .info-box .form-list {
  max-width: 400px;
  width: 100%;
}
.billing-agreements .info-box .box-title {
  margin-top: 20px;
  margin-bottom: 7px;
}
.billing-agreements .info-box .button {
  float: right;
  margin-top: 7px;
}
@media only screen and (max-width: 479px) {
  .billing-agreements .info-box .button {
    width: 100%;
    float: none;
  }
}
.billing-agreements #payment_method {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
}

.billing-agreement-view-header-wrapper .heading {
  max-width: 80%;
}
@media only screen and (max-width: 479px) {
  .billing-agreement-view-header-wrapper .heading {
    max-width: 100%;
  }
}

.billing-agreement-details td, .billing-agreement-details th {
  padding: 3.5px;
}

@media only screen and (max-width: 979px) {
  .billing-agreements .data-table .created-at,
  .billing-agreements .data-table .updated-at {
    display: none;
  }
}
/* ============================================ *
 * Popular Search Terms Cloud
 * ============================================ */
.catalogsearch-term-popular .tags-list {
  float: left;
  width: 100%;
}

.catalogsearch-term-popular .tags-list > li {
  float: left;
  height: 40px;
  margin-right: 25px;
}

/* ============================================ *
 * Widgets
 * ============================================ */
/* -------------------------------------------- *
 * Add to cart by SKU
 */
.sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
  width: 100%;
}
@media only screen and (min-width: 771px) {
  .sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
    max-width: 100px;
  }
}

.widget {
  clear: both;
}

.widget .pager {
  float: none;
  width: 100%;
}

@media only screen and (min-width: 1199px) {
  .col2-left-layout .col-main .widget,
  .col2-right-layout .col-main .widget,
  .col3-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 770px) {
  .col1-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
body[class*="checkout-multishipping-"] .checkout-progress > li {
  float: left;
  width: 20%;
  text-align: center;
  padding: 8px 1% 6px;
  background: #F4F4F4;
  text-transform: uppercase;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  margin-bottom: 10px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #DDDDDD;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
body[class*="checkout-multishipping-"] .page-title .button {
  float: right;
}
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
}
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

.checkout-multishipping-addresses .btn-remove2 {
  text-indent: -5555px;
  display: block;
  width: 22px;
  height: 22px;
}

.checkout-multishipping-shipping .gift-messages {
  margin-top: 20px;
}
.checkout-multishipping-shipping .gift-messages-form {
  margin-top: 15px;
}
.checkout-multishipping-shipping .gift-messages-form h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}
.checkout-multishipping-shipping .gift-messages-form .form-list {
  margin-top: 10px;
  margin-bottom: 25px;
}
.checkout-multishipping-shipping .gift-messages-form .item {
  margin-top: 15px;
}

.checkout-multishipping-shipping .col-1 .box-title h2, .checkout-multishipping-shipping .col-1 .box-title h3, .checkout-multishipping-shipping .col-1 .box-title h4, .checkout-multishipping-shipping .col-2 .box-title h2, .checkout-multishipping-shipping .col-2 .box-title h3, .checkout-multishipping-shipping .col-2 .box-title h4,
.checkout-multishipping-billing .col-1 .box-title h2,
.checkout-multishipping-billing .col-1 .box-title h3,
.checkout-multishipping-billing .col-1 .box-title h4,
.checkout-multishipping-billing .col-2 .box-title h2,
.checkout-multishipping-billing .col-2 .box-title h3,
.checkout-multishipping-billing .col-2 .box-title h4,
.checkout-multishipping-overview .col-1 .box-title h2,
.checkout-multishipping-overview .col-1 .box-title h3,
.checkout-multishipping-overview .col-1 .box-title h4,
.checkout-multishipping-overview .col-2 .box-title h2,
.checkout-multishipping-overview .col-2 .box-title h3,
.checkout-multishipping-overview .col-2 .box-title h4 {
  font-weight: normal;
  width: 100%;
  background: #F4F4F4;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px;
  font-size: 14px;
}
.checkout-multishipping-shipping .col-1 > h4, .checkout-multishipping-shipping .col-2 > h4,
.checkout-multishipping-billing .col-1 > h4,
.checkout-multishipping-billing .col-2 > h4,
.checkout-multishipping-overview .col-1 > h4,
.checkout-multishipping-overview .col-2 > h4 {
  font-weight: normal;
  width: 100%;
  background: #F4F4F4;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px;
  font-size: 14px;
}
.checkout-multishipping-shipping .col-1 .box-content, .checkout-multishipping-shipping .col-2 .box-content,
.checkout-multishipping-billing .col-1 .box-content,
.checkout-multishipping-billing .col-2 .box-content,
.checkout-multishipping-overview .col-1 .box-content,
.checkout-multishipping-overview .col-2 .box-content {
  margin-bottom: 25px;
  padding-left: 10px;
  margin-top: 10px;
}

.checkout-multishipping-billing .sp-methods dt {
  float: left;
  width: 100%;
}

#multiship-addresses-table > tbody > tr > td.a-center.last > a {
  background-image: none;
}

#review-order-form > div:nth-child(3) > div.divider {
  width: 100%;
  clear: both;
}

@media only screen and (max-width: 979px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 300px;
  }

  #review-order-form .col-1,
  #review-order-form .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 770px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    width: 12px;
  }
  body[class*="checkout-multishipping-"] .checkout-progress li {
    width: 100%;
    margin: 0;
    text-align: left;
    padding-left: 3%;
    border-right: 0px;
  }
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 1px;
    width: 12px;
  }
  body[class*="checkout-multishipping-"] .box-title {
    float: left;
    width: 100%;
  }
  body[class*="checkout-multishipping-"] .page-title .button {
    float: left;
    margin-bottom: 10px;
  }
  body[class*="checkout-multishipping-"] .linearize-table tfoot td {
    text-align: right;
  }
  body[class*="checkout-multishipping-"] .linearize-table select {
    width: 100%;
    min-width: 200px;
  }
  body[class*="checkout-multishipping-"] .col-1.col-narrow, body[class*="checkout-multishipping-"] .col-2.col-wide {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 599px) {
  .checkout-multishipping-addresses .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 10px;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 479px) {
  body[class*="checkout-multishipping-"] .buttons-set .back-link {
    display: block;
  }
}
/* ============================================ *
 * Calendar styles (restore styles from /js/calendar)
 * ============================================ */
div.calendar table {
  border-collapse: separate;
}
div.calendar table td.button {
  display: table-cell;
  background: inherit;
  color: inherit;
  text-transform: none;
}

/* ============================================ *
 * FAQ Page
 * ============================================ */
body.cms-faq .main-container {
  position: relative;
  margin-top: 30px;
  font-family: "Circular Std", sans-serif;
}
body.cms-faq .main-container #faq-header {
  position: relative;
  background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/faq-header-mobile.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 93px;
  color: #222222;
  font-family: "Circular Std", sans-serif;
}
body.cms-faq .main-container #faq-header #header-text-container {
  position: relative;
  margin: 0 auto;
  width: 225px;
  text-align: center;
  top: 18px;
}
body.cms-faq .main-container #faq-header #header-text-container h1 {
  color: inherit;
  font-family: inherit;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 1.2em;
}
body.cms-faq .main-container #faq-header #header-text-container p {
  color: inherit;
  font-family: inherit;
  font-weight: 300;
  font-style: inherit;
  width: 90%;
  font-size: 0.9em;
  line-height: 1.2;
}
@media only screen and (min-width: 401px) {
  body.cms-faq .main-container #faq-header {
    background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/faq-header-pc.jpg);
    height: 135px;
  }
  body.cms-faq .main-container #faq-header #header-text-container {
    top: 42px;
  }
}
@media only screen and (min-width: 771px) {
  body.cms-faq .main-container #faq-header {
    max-width: 2000px;
    /* background image width */
    margin-left: auto;
    margin-right: auto;
    height: 283px;
  }
  body.cms-faq .main-container #faq-header #header-text-container {
    width: 366px;
    top: 127px;
  }
  body.cms-faq .main-container #faq-header #header-text-container h1 {
    font-size: 2em;
  }
  body.cms-faq .main-container #faq-header #header-text-container p {
    width: auto;
    font-size: 1em;
  }
}
body.cms-faq .main-container #faq-content {
  position: relative;
  padding: 10px;
  padding-bottom: 100px;
  margin: 50px auto 0 auto;
  width: 75%;
  color: #222222;
}
body.cms-faq .main-container #faq-content .section-divider {
  width: 50px;
  margin-left: -65px;
}
body.cms-faq .main-container #faq-content img {
  display: none;
}
@media only screen and (min-width: 401px) {
  body.cms-faq .main-container #faq-content img {
    display: block;
    position: relative;
    float: right;
    margin-top: -19px;
    margin-left: -5px;
    left: 23px;
    width: 69px;
    height: 69px;
  }
}
@media only screen and (min-width: 771px) {
  body.cms-faq .main-container #faq-content {
    max-width: 800px;
    margin: 80px auto 0 auto;
  }
  body.cms-faq .main-container #faq-content img {
    width: 89px;
    height: 89px;
  }
  body.cms-faq .main-container #faq-content .section-divider {
    width: 75px;
    margin-left: -125px;
  }
}
body.cms-faq .main-container #faq-content h2 {
  margin-top: 30px;
  margin-bottom: 5px;
  color: inherit;
  font-family: "Circular Std", sans-serif;
  font-style: normal;
  font-size: 1em;
  line-height: 1.3;
}
body.cms-faq .main-container #faq-content h2:first-of-type {
  margin-top: 0;
}
body.cms-faq .main-container #faq-content p {
  font-style: normal;
  font-family: "Circular Std", sans-serif;
  font-size: 1em;
  font-weight: 300;
  color: inherit;
  line-height: 1.3;
}
body.cms-faq .main-container #faq-content table {
  margin-top: 5px;
  font-family: inherit;
  color: inherit;
  font-weight: 300;
  font-size: 1em;
}
body.cms-faq .main-container #faq-content table tr > td {
  padding-right: 25px;
}
body.cms-faq .main-container #faq-content ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 7px;
}
body.cms-faq .main-container #faq-content ul li {
  font-style: normal;
  line-height: 1.2;
  font-size: 1em;
  color: inherit;
  font-family: "Circular Std", sans-serif;
  font-weight: 300;
  padding-top: 5px;
}

/* ============================================ *
 * Test Page
 * ============================================ */
body.parkandfinch-testpage-index-index .main-container {
  position: relative;
  margin-top: 30px;
  font-family: "Circular Std", sans-serif;
  color: #364a5e;
}
body.parkandfinch-testpage-index-index .main-container #locations-header {
  height: 276px;
  color: white;
  text-align: center;
  background-image: url(/skin/frontend/parkandfinch/default/images/media/locations-header-mobile.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
}
body.parkandfinch-testpage-index-index .main-container #locations-header h1 {
  font-size: 1em;
  font-weight: bold;
  text-transform: none;
  color: inherit;
}
body.parkandfinch-testpage-index-index .main-container #locations-header p {
  color: inherit;
  font-family: inherit;
  font-weight: 300;
  max-width: 56%;
  font-size: 0.9em;
  line-height: 1.3;
  margin: 0 auto;
}
@media only screen and (min-width: 771px) {
  body.parkandfinch-testpage-index-index .main-container #locations-header {
    background-image: url(/skin/frontend/parkandfinch/default/images/media/locations-header-pc.jpg);
    height: 460px;
    background-position: center;
    max-width: 2000px;
    /* background image width */
    margin-left: auto;
    margin-right: auto;
    padding-top: 120px;
  }
  body.parkandfinch-testpage-index-index .main-container #locations-header h1 {
    font-size: 2em;
  }
  body.parkandfinch-testpage-index-index .main-container #locations-header p {
    font-weight: 300;
    max-width: 260px;
    font-size: 1.1em;
  }
}
body.parkandfinch-testpage-index-index .main-container #locations-content {
  position: relative;
  padding: 10px;
  padding-bottom: 100px;
  margin: 20px auto 0 auto;
  width: 75%;
  color: #222222;
}
body.parkandfinch-testpage-index-index .main-container #locations-content .section-divider {
  display: none;
}
body.parkandfinch-testpage-index-index .main-container #locations-content .section-divider.mobile {
  display: block;
  border-top: none;
  position: absolute;
  left: -20px;
  top: 26px;
}
body.parkandfinch-testpage-index-index .main-container #locations-content h2 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 45px;
  color: inherit;
  font-family: "Circular Std", sans-serif;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1.3;
}
body.parkandfinch-testpage-index-index .main-container #locations-content .icon-crest {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22crest1-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%2252%22%20viewBox%3D%22196.5%2090.833%2052%2051.667%22%20width%3D%2252%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%20196.5%2090.833%2052%2051.667%22%3E%3Cg%20fill%3D%22%2359C3B8%22%3E%09%3Cpath%20d%3D%22m212.58%20113.69c0-0.099%200.079-0.188%200.188-0.188h2.328c1.219%200%202.219%200.99%202.219%202.189%200%201.229-1%202.229-2.209%202.229h-1.237v2.326c0%200.1-0.089%200.188-0.188%200.188h-0.91c-0.108%200-0.188-0.088-0.188-0.188v-6.56zm2.44%203.02c0.555%200%201.021-0.445%201.021-1.029%200-0.545-0.467-0.961-1.021-0.961h-1.147v1.99h1.15z%22%2F%3E%09%3Cpath%20d%3D%22m221.83%20117.47h-1.485c-0.1%200-0.188-0.088-0.188-0.188v-0.555c0-0.1%200.089-0.188%200.188-0.188h1.485v-1.496c0-0.1%200.089-0.179%200.188-0.179h0.555c0.1%200%200.188%200.079%200.188%200.179v1.496h1.495c0.101%200%200.179%200.088%200.179%200.188v0.555c0%200.1-0.078%200.188-0.179%200.188h-1.495v1.477c0%200.1-0.089%200.178-0.188%200.178h-0.555c-0.1%200-0.188-0.078-0.188-0.178v-1.48z%22%2F%3E%09%3Cpath%20d%3D%22m227.95%20113.69c0-0.099%200.079-0.188%200.188-0.188h4.03c0.108%200%200.188%200.09%200.188%200.188v0.812c0%200.1-0.08%200.188-0.188%200.188h-2.933v1.86h2.447c0.099%200%200.188%200.09%200.188%200.188v0.812c0%200.101-0.089%200.188-0.188%200.188h-2.447v2.506c0%200.101-0.088%200.188-0.188%200.188h-0.91c-0.109%200-0.188-0.09-0.188-0.188v-6.56z%22%2F%3E%09%3Cpath%20d%3D%22m222.5%20138.71c-12.131%200-22-9.871-22-22.002s9.869-22%2022-22%2022%209.869%2022%2022-9.87%2022-22%2022zm0-43.502c-11.855%200-21.5%209.646-21.5%2021.5%200%2011.855%209.645%2021.5%2021.5%2021.5s21.5-9.645%2021.5-21.5c0-11.86-9.64-21.502-21.5-21.502z%22%2F%3E%09%3Cpath%20d%3D%22m204.26%20116.42c-0.04-0.002-0.073-0.037-0.069-0.078l0.069-0.944c0.058-0.771%200.729-1.354%201.497-1.297%200.773%200.058%201.354%200.735%201.296%201.506l-0.071%200.944c-0.002%200.041-0.041%200.07-0.08%200.066l-2.65-0.2zm2.3-0.8c0.039-0.519-0.324-0.928-0.848-0.966-0.52-0.039-0.938%200.312-0.979%200.829l-0.033%200.455%201.824%200.137%200.04-0.46z%22%2F%3E%09%3Cpath%20d%3D%22m204.69%20112.82c-0.039-0.01-0.064-0.05-0.055-0.092l0.42-1.572c0.01-0.043%200.053-0.064%200.092-0.055l0.316%200.085c0.039%200.01%200.064%200.05%200.055%200.093l-0.305%201.143%200.635%200.17%200.252-0.955c0.012-0.037%200.055-0.062%200.094-0.054l0.32%200.085c0.043%200.012%200.064%200.055%200.055%200.094l-0.254%200.955%200.676%200.179%200.305-1.144c0.012-0.043%200.055-0.063%200.094-0.055l0.316%200.084c0.038%200.012%200.064%200.051%200.054%200.094l-0.419%201.572c-0.011%200.042-0.055%200.064-0.093%200.055l-2.58-0.66z%22%2F%3E%09%3Cpath%20d%3D%22m207.62%20111.07l-0.168-0.231c-0.039-0.051-0.012-0.113%200.029-0.135%200.019-0.015%200.365-0.214%200.471-0.451%200.084-0.189%200.021-0.388-0.135-0.457-0.187-0.082-0.383%200.019-0.643%200.271-0.292%200.282-0.662%200.526-1.092%200.337-0.325-0.145-0.595-0.552-0.337-1.131%200.165-0.372%200.479-0.573%200.567-0.622%200.037-0.026%200.104-0.01%200.131%200.032l0.146%200.23c0.031%200.049%200.036%200.115-0.013%200.146-0.031%200.021-0.337%200.219-0.426%200.418-0.092%200.209-0.004%200.383%200.111%200.435%200.172%200.076%200.35-0.007%200.6-0.248%200.3-0.291%200.693-0.605%201.162-0.397%200.377%200.167%200.578%200.645%200.352%201.159-0.204%200.459-0.538%200.634-0.641%200.677-0.05%200.01-0.07%200.02-0.12-0.04z%22%2F%3E%09%3Cpath%20d%3D%22m206.77%20107.53c-0.033-0.021-0.045-0.068-0.024-0.104l0.19-0.317c0.021-0.034%200.07-0.047%200.104-0.026l2.266%201.369c0.033%200.021%200.046%200.07%200.025%200.104l-0.19%200.317c-0.021%200.034-0.07%200.047-0.104%200.025l-2.28-1.37z%22%2F%3E%09%3Cpath%20d%3D%22m208.44%20104.96c0.229-0.277%200.555-0.453%200.903-0.518%200.046-0.005%200.087%200.023%200.091%200.068l0.043%200.354c0.006%200.045-0.019%200.072-0.064%200.08-0.227%200.036-0.422%200.149-0.561%200.319-0.317%200.386-0.238%200.963%200.147%201.279%200.382%200.312%200.957%200.272%201.276-0.115%200.142-0.174%200.197-0.35%200.225-0.432l-0.264-0.215-0.202%200.246c-0.028%200.034-0.073%200.039-0.104%200.014l-0.244-0.199c-0.033-0.027-0.037-0.072-0.01-0.106l0.485-0.593c0.024-0.031%200.073-0.033%200.104-0.008l0.789%200.647c0.025%200.021%200.03%200.045%200.029%200.065%200%200-0.061%200.482-0.427%200.93-0.505%200.614-1.396%200.708-2.015%200.202-0.63-0.5-0.72-1.4-0.22-2.01z%22%2F%3E%09%3Cpath%20d%3D%22m210.08%20103.28c-0.026-0.031-0.019-0.079%200.015-0.104l0.077-0.062%202.407%200.326%200.003-0.002-1.04-1.285c-0.025-0.031-0.023-0.079%200.012-0.105l0.284-0.232c0.031-0.025%200.082-0.021%200.106%200.012l1.697%202.094c0.025%200.03%200.018%200.078-0.014%200.104l-0.074%200.062-2.457-0.375-0.004%200.002%201.083%201.338c0.025%200.03%200.023%200.078-0.011%200.106l-0.283%200.229c-0.031%200.024-0.082%200.02-0.107-0.012l-1.71-2.11z%22%2F%3E%09%3Cpath%20d%3D%22m213.15%20101.06c-0.02-0.036-0.008-0.083%200.031-0.104l1.433-0.771c0.038-0.021%200.084-0.005%200.103%200.03l0.155%200.289c0.021%200.034%200.009%200.082-0.03%200.103l-1.041%200.562%200.311%200.577%200.869-0.469c0.035-0.021%200.084-0.005%200.104%200.03l0.157%200.291c0.021%200.039%200.005%200.084-0.031%200.104l-0.869%200.471%200.332%200.614%201.042-0.562c0.039-0.021%200.085-0.004%200.104%200.031l0.154%200.287c0.021%200.035%200.01%200.082-0.029%200.104l-1.434%200.772c-0.039%200.021-0.084%200.004-0.104-0.031l-1.24-2.32z%22%2F%3E%09%3Cpath%20d%3D%22m215.86%2099.714c-0.012-0.037%200.008-0.082%200.045-0.095l0.902-0.288c0.733-0.236%201.526%200.17%201.762%200.9%200.236%200.736-0.176%201.527-0.909%201.763l-0.901%200.289c-0.039%200.013-0.08-0.013-0.093-0.051l-0.8-2.516zm1.61%201.826c0.495-0.156%200.737-0.646%200.577-1.145-0.157-0.495-0.639-0.752-1.134-0.594l-0.434%200.139%200.556%201.739%200.42-0.14z%22%2F%3E%09%3Cpath%20d%3D%22m220.61%2098.595c-0.004-0.039%200.029-0.078%200.068-0.082l0.37-0.033c0.04-0.003%200.079%200.029%200.082%200.068l0.237%202.636c0.004%200.039-0.029%200.077-0.069%200.082l-0.368%200.032c-0.041%200.004-0.08-0.028-0.084-0.068l-0.24-2.625z%22%2F%3E%09%3Cpath%20d%3D%22m222.46%2098.419c0.003-0.041%200.041-0.069%200.08-0.067l0.1%200.007%201.549%201.87h0.004l0.105-1.647c0.002-0.041%200.036-0.074%200.08-0.072l0.368%200.022c0.04%200.003%200.073%200.041%200.071%200.081l-0.172%202.688c-0.002%200.039-0.039%200.068-0.08%200.066l-0.096-0.006-1.553-1.938h-0.004l-0.109%201.717c-0.002%200.039-0.035%200.074-0.08%200.07l-0.363-0.022c-0.039-0.003-0.072-0.041-0.07-0.081l0.16-2.691z%22%2F%3E%09%3Cpath%20d%3D%22m227.58%2099.134c0.014-0.039%200.059-0.057%200.096-0.043l0.094%200.033%200.963%202.229%200.004%200.001%200.562-1.555c0.016-0.037%200.057-0.061%200.098-0.045l0.347%200.125c0.038%200.014%200.062%200.061%200.047%200.098l-0.916%202.531c-0.015%200.037-0.06%200.056-0.097%200.043l-0.09-0.033-0.947-2.295-0.004-0.002-0.586%201.617c-0.014%200.037-0.055%200.061-0.098%200.045l-0.343-0.123c-0.037-0.014-0.06-0.061-0.046-0.098l0.93-2.526z%22%2F%3E%09%3Cpath%20d%3D%22m231.06%20100.62c0.021-0.033%200.064-0.049%200.104-0.025l1.398%200.828c0.037%200.022%200.047%200.069%200.025%200.104l-0.166%200.28c-0.021%200.035-0.066%200.05-0.104%200.027l-1.019-0.604-0.335%200.563%200.85%200.504c0.035%200.021%200.047%200.068%200.026%200.104l-0.169%200.285c-0.021%200.037-0.068%200.047-0.104%200.025l-0.85-0.502-0.355%200.602%201.018%200.603c0.037%200.022%200.047%200.069%200.025%200.104l-0.166%200.281c-0.021%200.035-0.066%200.051-0.104%200.027l-1.397-0.83c-0.038-0.021-0.047-0.068-0.026-0.104l1.36-2.26z%22%2F%3E%09%3Cpath%20d%3D%22m233.46%20102.1c0.025-0.053%200.076-0.061%200.118-0.021l0.272%200.245c0.021%200.021%200.027%200.064%200.015%200.091l-0.763%201.459%200.013%200.012%201.575-0.793c0.021-0.014%200.051-0.016%200.08%200.012l0.054%200.049c0.028%200.026%200.03%200.057%200.021%200.078l-0.631%201.648%200.012%200.011%201.371-0.907c0.024-0.016%200.067-0.016%200.09%200.007l0.273%200.247c0.041%200.036%200.038%200.088-0.011%200.118l-2.361%201.483c-0.026%200.019-0.067%200.015-0.091-0.008l-0.048-0.043c-0.026-0.023-0.03-0.055-0.021-0.078l0.685-1.819-0.015-0.015-1.738%200.866c-0.024%200.011-0.051%200.015-0.08-0.013l-0.047-0.043c-0.024-0.021-0.032-0.061-0.018-0.09l1.27-2.51z%22%2F%3E%09%3Cpath%20d%3D%22m236.62%20107.54l0.647-1.483c0.025-0.056%200.099-0.062%200.131-0.009l0.218%200.347c0.017%200.026%200.01%200.055%200.004%200.073l-0.438%201.031%201.121%200.053c0.02%200.002%200.047%200.009%200.063%200.035l0.22%200.35c0.034%200.054-0.003%200.115-0.064%200.115l-1.619-0.073-1.082%200.681c-0.033%200.021-0.084%200.01-0.104-0.023l-0.196-0.312c-0.022-0.037-0.01-0.083%200.023-0.104l1.08-0.68z%22%2F%3E%09%3Cpath%20d%3D%22m239.56%20110.01c0.293%200.742-0.071%201.574-0.815%201.867s-1.569-0.068-1.863-0.812c-0.293-0.745%200.066-1.568%200.81-1.862%200.75-0.3%201.58%200.06%201.87%200.8zm-2.19%200.87c0.185%200.469%200.721%200.703%201.188%200.521%200.471-0.185%200.709-0.726%200.523-1.194s-0.727-0.697-1.196-0.515c-0.47%200.17-0.7%200.7-0.51%201.18z%22%2F%3E%09%3Cpath%20d%3D%22m240.27%20112.6c0.039-0.007%200.08%200.019%200.088%200.062l0.199%201.129c0.082%200.473-0.228%200.926-0.697%201.008-0.36%200.064-0.699-0.123-0.898-0.442l-0.906%200.717c-0.047%200.037-0.115%200.021-0.127-0.047l-0.072-0.414c-0.006-0.035%200.011-0.06%200.024-0.069l0.952-0.709-0.077-0.438-1.006%200.178c-0.039%200.008-0.08-0.021-0.088-0.062l-0.063-0.362c-0.008-0.043%200.021-0.081%200.062-0.088l2.63-0.47zm-0.97%201.37c0.037%200.209%200.249%200.358%200.47%200.319%200.209-0.036%200.352-0.249%200.314-0.458l-0.114-0.643-0.782%200.139%200.11%200.64z%22%2F%3E%09%3Cpath%20d%3D%22m240.7%20115.91c0.053%200.002%200.097%200.041%200.096%200.098l-0.005%200.353c0%200.052-0.044%200.095-0.097%200.095l-1.08-0.011%201.127%201.019c0.02%200.018%200.039%200.041%200.039%200.076l-0.004%200.4c0%200.076-0.086%200.115-0.146%200.062l-1.165-1.056-1.352%201.106c-0.053%200.039-0.14%200.007-0.14-0.074l0.005-0.436c0-0.041%200.018-0.063%200.028-0.072l1.299-1.03-1.221-0.013c-0.052%200-0.097-0.045-0.095-0.096l0.002-0.353c0.002-0.058%200.046-0.097%200.098-0.097l2.58%200.02z%22%2F%3E%09%3Cpath%20d%3D%22m222.5%20140.71c-13.232%200-24-10.768-24-24.002%200-13.231%2010.768-24%2024-24s24%2010.769%2024%2024c0%2013.23-10.77%2024-24%2024zm0-47.002c-12.684%200-23%2010.318-23%2023%200%2012.684%2010.316%2023.002%2023%2023.002s23-10.318%2023-23.002c0-12.68-10.32-23.002-23-23.002z%22%2F%3E%09%3Cpath%20d%3D%22m238.02%20121.86l0.307%200.128%201.064%202.002c0.006%200.017%200.01%200.039-0.002%200.064l-0.082%200.2c-0.017%200.035-0.061%200.058-0.102%200.039l-1.572-0.653-0.123%200.296c-0.018%200.04-0.058%200.059-0.096%200.042l-0.229-0.097c-0.037-0.015-0.06-0.059-0.043-0.1l0.125-0.295-0.475-0.193c-0.037-0.016-0.057-0.062-0.042-0.099l0.128-0.308c0.016-0.036%200.062-0.057%200.1-0.04l0.465%200.192%200.477-1.141c0-0.03%200.05-0.04%200.08-0.03zm-0.19%201.36l0.886%200.369-0.579-1.106-0.31%200.74z%22%2F%3E%09%3Cpath%20d%3D%22m237.6%20124.6c0.75%200.453%201.008%201.039%200.676%201.587-0.332%200.547-0.971%200.591-1.719%200.138-0.75-0.454-1.008-1.04-0.677-1.587%200.33-0.56%200.97-0.6%201.72-0.14zm-0.77%201.27c0.506%200.307%200.885%200.329%201.043%200.065%200.159-0.265-0.036-0.588-0.542-0.896-0.512-0.309-0.885-0.33-1.047-0.065-0.16%200.26%200.04%200.58%200.55%200.89z%22%2F%3E%09%3Cpath%20d%3D%22m235.48%20126.49c-0.111%200.144-0.324%200.171-0.469%200.062-0.143-0.11-0.168-0.321-0.059-0.464%200.109-0.145%200.318-0.172%200.461-0.062%200.14%200.11%200.17%200.32%200.07%200.46z%22%2F%3E%09%3Cpath%20d%3D%22m234.69%20126.71l0.894%202.231%200.714-0.776c0.027-0.031%200.078-0.031%200.107-0.006l0.207%200.189c0.028%200.027%200.031%200.076%200.004%200.107l-1.127%201.226c-0.025%200.03-0.076%200.032-0.105%200.005l-0.021-0.02-1.041-2.574c-0.028-0.064-0.034-0.123%200.013-0.174l0.2-0.219c0.033-0.035%200.076-0.064%200.123-0.021l0.04%200.03z%22%2F%3E%09%3Cpath%20d%3D%22m234.36%20129.71l0.216-0.289c0.021-0.03%200.065-0.039%200.094-0.015l0.147%200.13c0.023%200.022%200.035%200.045%200.033%200.068l-0.111%200.745-0.211%200.187c-0.028%200.025-0.076%200.021-0.104-0.011l-1.702-1.927c-0.025-0.03-0.027-0.078%200.004-0.105l0.258-0.228c0.033-0.028%200.082-0.022%200.107%200.007l1.26%201.45z%22%2F%3E%09%3Cpath%20d%3D%22m232.46%20128.97c-0.03%200.416-0.061%201.242-0.072%201.689-0.013%200.196%200.012%200.37%200.092%200.48%200.104%200.146%200.321%200.219%200.558%200.052%200.157-0.11%200.211-0.317%200.229-0.453%200.008-0.044%200.043-0.069%200.088-0.062l0.269%200.046c0.034%200.005%200.067%200.04%200.063%200.082%200%200-0.027%200.502-0.416%200.776-0.468%200.332-0.939%200.221-1.19-0.132-0.15-0.213-0.154-0.411-0.156-0.685-0.003-0.301%200.028-0.782%200.046-1.125l-0.706%200.502c-0.032%200.023-0.083%200.015-0.106-0.018l-0.159-0.228c-0.022-0.032-0.015-0.083%200.019-0.104l1.287-0.916c0.035-0.024%200.083-0.015%200.106%200.019l0.05%200.06z%22%2F%3E%09%3Cpath%20d%3D%22m230.7%20130.13l0.117%202.396%200.928-0.502c0.035-0.02%200.085-0.004%200.104%200.031l0.133%200.246c0.021%200.033%200.006%200.082-0.031%200.102l-1.461%200.791c-0.033%200.02-0.082%200.005-0.102-0.029l-0.015-0.024-0.144-2.771c-0.006-0.068%200.006-0.127%200.065-0.158l0.261-0.141c0.043-0.023%200.094-0.037%200.124%200.02l0.02%200.03z%22%2F%3E%09%3Cpath%20d%3D%22m229.99%20132.96c0.117%200.276-0.012%200.59-0.288%200.707-0.272%200.115-0.591-0.012-0.707-0.287-0.117-0.277%200.015-0.595%200.289-0.709%200.28-0.12%200.59%200.01%200.71%200.29zm-0.68%200.28c0.041%200.097%200.162%200.146%200.258%200.104%200.1-0.041%200.152-0.163%200.111-0.26-0.043-0.101-0.169-0.15-0.268-0.108-0.09%200.05-0.14%200.17-0.1%200.27z%22%2F%3E%09%3Cpath%20d%3D%22m227.53%20134.38c0.01%200.039-0.021%200.076-0.06%200.086l-0.098%200.021-1.992-1.378-0.004%200.002%200.346%201.611c0.009%200.039-0.016%200.08-0.06%200.09l-0.359%200.076c-0.037%200.009-0.08-0.02-0.09-0.059l-0.561-2.627c-0.008-0.039%200.021-0.076%200.059-0.086l0.094-0.021%202.016%201.443%200.002-0.001-0.355-1.679c-0.01-0.038%200.016-0.08%200.057-0.09l0.355-0.075c0.039-0.009%200.083%200.019%200.09%200.06l0.54%202.64z%22%2F%3E%09%3Cpath%20d%3D%22m223.95%20132.82c-0.17%200.016-0.412-0.093-0.446-0.486-0.043-0.488%200.239-0.793%200.379-0.897%200.033-0.026%200.062-0.033%200.101-0.001l0.064%200.059c0.03%200.029%200.03%200.073-0.006%200.109-0.042%200.043-0.298%200.273-0.27%200.607%200.006%200%200.065-0.037%200.147-0.045%200.177-0.016%200.336%200.119%200.353%200.295%200.03%200.18-0.11%200.34-0.31%200.36z%22%2F%3E%09%3Cpath%20d%3D%22m222.33%20132.41l-1.172%202.101%201.055%200.065c0.039%200.002%200.073%200.04%200.07%200.08l-0.018%200.279c-0.004%200.04-0.041%200.073-0.08%200.071l-1.662-0.104c-0.039-0.003-0.072-0.041-0.07-0.081l0.003-0.028%201.344-2.43c0.031-0.062%200.074-0.104%200.144-0.1l0.295%200.019c0.048%200.003%200.101%200.019%200.095%200.082l-0.01%200.04z%22%2F%3E%09%3Cpath%20d%3D%22m220.65%20132.86l-0.061%200.327-1.738%201.461c-0.015%200.009-0.037%200.019-0.063%200.012l-0.214-0.039c-0.038-0.007-0.067-0.045-0.061-0.089l0.312-1.677-0.314-0.06c-0.044-0.008-0.068-0.045-0.062-0.084l0.046-0.244c0.008-0.039%200.046-0.069%200.089-0.062l0.316%200.059%200.088-0.504c0.008-0.039%200.051-0.067%200.09-0.062l0.326%200.062c0.039%200.008%200.067%200.051%200.062%200.088l-0.094%200.496%201.217%200.228c0.01-0.01%200.03%200.03%200.03%200.07zm-1.37%200.09l-0.176%200.944%200.963-0.798-0.78-0.14z%22%2F%3E%09%3Cpath%20d%3D%22m217.92%20132.22c-0.173-0.052-0.275-0.24-0.225-0.412%200.051-0.175%200.238-0.271%200.41-0.222%200.174%200.052%200.272%200.234%200.223%200.408-0.05%200.17-0.23%200.28-0.41%200.22z%22%2F%3E%09%3Cpath%20d%3D%22m217.02%20132.74c-0.33%200.812-0.869%201.157-1.463%200.915-0.592-0.241-0.734-0.864-0.404-1.677%200.332-0.811%200.869-1.156%201.462-0.915%200.59%200.25%200.73%200.87%200.4%201.68zm-1.38-0.56c-0.225%200.549-0.188%200.926%200.098%201.042%200.285%200.115%200.574-0.129%200.798-0.678%200.226-0.551%200.187-0.926-0.099-1.041s-0.58%200.13-0.8%200.68z%22%2F%3E%09%3Cpath%20d%3D%22m214.59%20131.7c-0.45%200.75-1.035%201.011-1.584%200.681-0.547-0.328-0.594-0.967-0.144-1.717%200.451-0.75%201.035-1.011%201.584-0.683%200.54%200.33%200.59%200.97%200.14%201.72zm-1.28-0.77c-0.304%200.507-0.324%200.885-0.062%201.044%200.265%200.158%200.588-0.039%200.892-0.546%200.307-0.511%200.327-0.886%200.062-1.044-0.26-0.15-0.58%200.04-0.89%200.55z%22%2F%3E%09%3Cpath%20d%3D%22m213%20129.61l-0.278%200.024c-0.036%200.002-0.069-0.016-0.077-0.058-0.002-0.021-0.052-0.329-0.259-0.498-0.212-0.171-0.499-0.122-0.657%200.073-0.156%200.191-0.152%200.453%200.094%200.652l0.478%200.389c0.062%200.05%200.048%200.136%200.009%200.186l-0.744%200.916c-0.024%200.03-0.072%200.039-0.106%200.012l-0.979-0.797c-0.033-0.027-0.035-0.075-0.01-0.106l0.172-0.211c0.023-0.031%200.071-0.039%200.105-0.011l0.688%200.559%200.336-0.412-0.268-0.216c-0.439-0.358-0.48-0.858-0.15-1.267%200.314-0.389%200.899-0.447%201.326-0.102%200.332%200.271%200.401%200.6%200.402%200.756%200%200.09-0.02%200.11-0.08%200.12z%22%2F%3E%09%3Cpath%20d%3D%22m211.25%20127.99c-0.173-0.095-0.757-0.323-1.16-0.11%200.074%200.021%200.265%200.117%200.394%200.252%200.273%200.291%200.345%200.797-0.071%201.188-0.365%200.345-0.947%200.328-1.284-0.028-0.43-0.455-0.285-1.037%200.148-1.447%200.85-0.801%201.862-0.4%202.18-0.229%200.05%200.029%200.062%200.073%200.035%200.12l-0.107%200.228c-0.03%200.05-0.08%200.07-0.14%200.03zm-1.69%200.24c-0.197%200.187-0.328%200.508-0.105%200.743%200.174%200.183%200.47%200.183%200.652%200.01%200.186-0.175%200.199-0.468%200.024-0.654-0.18-0.19-0.44-0.16-0.57-0.1z%22%2F%3E%09%3Cpath%20d%3D%22m208.56%20127.92c-0.238%200.183-0.574%200.138-0.756-0.102-0.18-0.234-0.137-0.572%200.102-0.755s0.576-0.134%200.756%200.103c0.18%200.25%200.14%200.58-0.1%200.76zm-0.45-0.58c-0.082%200.063-0.1%200.192-0.036%200.274%200.065%200.086%200.196%200.106%200.278%200.044%200.086-0.064%200.104-0.199%200.039-0.285-0.06-0.07-0.19-0.09-0.28-0.02z%22%2F%3E%09%3Cpath%20d%3D%22m206.7%20126.08c-0.043%200.039-0.094%200.026-0.118-0.023l-0.16-0.331c-0.015-0.028-0.002-0.069%200.021-0.089l1.254-1.067-0.008-0.014-1.757%200.144c-0.024%200.004-0.053-0.006-0.069-0.041l-0.03-0.066c-0.017-0.034-0.009-0.062%200.009-0.079l1.205-1.291-0.007-0.015-1.612%200.326c-0.029%200.006-0.068-0.012-0.082-0.041l-0.16-0.33c-0.023-0.051-0.001-0.098%200.057-0.106l2.744-0.487c0.033-0.007%200.067%200.012%200.082%200.04l0.027%200.058c0.018%200.032%200.01%200.063-0.01%200.082l-1.318%201.43%200.01%200.019%201.936-0.149c0.027%200%200.053%200.007%200.07%200.041l0.027%200.059c0.014%200.029%200.006%200.068-0.021%200.089l-2.09%201.85z%22%2F%3E%09%3Cpath%20d%3D%22m222.5%20140.96c-13.396%200-24.297-10.898-24.297-24.297%200-13.396%2010.898-24.298%2024.297-24.298s24.297%2010.9%2024.297%2024.298c0%2013.4-10.9%2024.3-24.3%2024.3zm0-47.578c-12.839%200-23.285%2010.445-23.285%2023.285s10.446%2023.285%2023.285%2023.285%2023.285-10.445%2023.285-23.285c0-12.85-10.44-23.298-23.28-23.298z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 100%;
  width: 71px;
  height: 71px;
  display: block;
  position: absolute;
  right: -25px;
  top: 0;
}
body.parkandfinch-testpage-index-index .main-container #locations-content .store-container {
  margin: 0 auto;
  max-width: 185px;
}
body.parkandfinch-testpage-index-index .main-container #locations-content .store-container .store-item {
  -webkit-column-break-inside: avoid;
  /* Chrome, Safari, Opera */
  page-break-inside: avoid;
  /* Firefox */
  break-inside: avoid;
  /* IE 10+ */
}
body.parkandfinch-testpage-index-index .main-container #locations-content .store-container .store-item h3 {
  font-family: inherit;
  font-weight: bold;
  color: #222222;
  font-size: 1em;
  text-transform: none;
  margin: 0;
}
body.parkandfinch-testpage-index-index .main-container #locations-content .store-container .store-item p {
  color: #222222;
  font-size: 0.8em;
}
body.parkandfinch-testpage-index-index .main-container #locations-content .store-container .store-item p:last-of-type {
  margin-bottom: 25px;
}
@media only screen and (min-width: 401px) {
  body.parkandfinch-testpage-index-index .main-container #locations-content .icon-crest {
    width: 85px;
    height: 85px;
  }
  body.parkandfinch-testpage-index-index .main-container #locations-content .store-container {
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
    -webkit-column-gap: 75px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 75px;
    /* Firefox */
    column-gap: 75px;
    max-width: 600px;
    padding-left: 35px;
  }
  body.parkandfinch-testpage-index-index .main-container #locations-content h2 {
    font-size: 2em;
  }
  body.parkandfinch-testpage-index-index .main-container #locations-content #locations-content {
    margin: 50px auto 0 auto;
  }
}
@media only screen and (min-width: 771px) {
  body.parkandfinch-testpage-index-index .main-container #locations-content {
    max-width: 800px;
    margin: 80px auto 0 auto;
  }
  body.parkandfinch-testpage-index-index .main-container #locations-content .section-divider {
    display: block;
    width: 75px;
    margin-left: -125px;
  }
  body.parkandfinch-testpage-index-index .main-container #locations-content .section-divider.mobile {
    display: none;
  }
  body.parkandfinch-testpage-index-index .main-container #locations-content .store-container {
    -webkit-column-gap: 190px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 190px;
    /* Firefox */
    column-gap: 190px;
  }
}

body.cms-locations ol.nav-primary li.nav-4 a {
  color: #46C2AC;
}
body.cms-locations .main-container {
  position: relative;
  margin-top: 30px;
  font-family: "Circular Std", sans-serif;
  color: #364a5e;
}
body.cms-locations .main-container #locations-header {
  height: 274px;
  color: black;
  text-align: center;
  background-image: url(/skin/frontend/parkandfinch/default/images/media/locations-header-mobile.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
}
body.cms-locations .main-container #locations-header h1 {
  font-size: 1.3em;
  font-family: inherit;
  font-weight: bold;
  text-transform: none;
  color: inherit;
}
body.cms-locations .main-container #locations-header p {
  color: inherit;
  font-family: inherit;
  font-weight: 300;
  font-style: normal;
  width: 56%;
  max-width: 200px;
  font-size: 1.1em;
  line-height: 1.4;
  margin: 0 auto;
}
@media only screen and (min-width: 401px) {
  body.cms-locations .main-container #locations-header {
    height: 300px;
  }
}
@media only screen and (min-width: 771px) {
  body.cms-locations .main-container #locations-header {
    background-image: url(/skin/frontend/parkandfinch/default/images/media/locations-header-pc.jpg);
    height: 458px;
    background-position: center;
    max-width: 2000px;
    /* background image width */
    margin-left: auto;
    margin-right: auto;
    padding-top: 150px;
  }
  body.cms-locations .main-container #locations-header #location-header-text {
    position: relative;
    left: -15%;
  }
  body.cms-locations .main-container #locations-header #location-header-text h1 {
    font-size: 2em;
  }
  body.cms-locations .main-container #locations-header #location-header-text p {
    font-weight: 300;
    max-width: 260px;
    font-size: 1.1em;
  }
}
body.cms-locations .main-container #locations-content {
  position: relative;
  padding: 10px;
  padding-bottom: 100px;
  margin: 20px auto 0 auto;
  width: 75%;
  color: #222222;
}
body.cms-locations .main-container #locations-content .section-divider {
  display: none;
}
body.cms-locations .main-container #locations-content .section-divider.mobile {
  display: block;
  border-top: none;
  position: absolute;
  left: -20px;
  top: 26px;
}
body.cms-locations .main-container #locations-content h2 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 45px;
  color: inherit;
  font-family: "Circular Std", sans-serif;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1.3;
}
body.cms-locations .main-container #locations-content .icon-crest {
  background-repeat: no-repeat;
  background-image: url(//res.cloudinary.com/park-and-finch/image/upload/v1509247645/montreal-crest.svg);
  background-size: 100%;
  width: 71px;
  height: 71px;
  display: block;
  position: absolute;
  right: -25px;
  top: 0;
}
body.cms-locations .main-container #locations-content .store-container {
  margin: 0 auto;
  max-width: 185px;
}
body.cms-locations .main-container #locations-content .store-container .store-item {
  -webkit-column-break-inside: avoid;
  /* Chrome, Safari, Opera */
  page-break-inside: avoid;
  /* Firefox */
  break-inside: avoid;
  /* IE 10+ */
}
body.cms-locations .main-container #locations-content .store-container .store-item h3 {
  font-family: inherit;
  font-weight: bold;
  color: #222222;
  font-size: 1em;
  text-transform: none;
  margin: 0;
}
body.cms-locations .main-container #locations-content .store-container .store-item p {
  color: #222222;
  font-size: 0.8em;
  font-family: inherit;
  font-style: normal;
}
body.cms-locations .main-container #locations-content .store-container .store-item p:last-of-type {
  margin-bottom: 25px;
}
@media only screen and (min-width: 401px) {
  body.cms-locations .main-container #locations-content .icon-crest {
    width: 85px;
    height: 85px;
  }
  body.cms-locations .main-container #locations-content .store-container {
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
    -webkit-column-gap: 75px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 75px;
    /* Firefox */
    column-gap: 75px;
    max-width: 600px;
    padding-left: 35px;
  }
  body.cms-locations .main-container #locations-content h2 {
    font-size: 2em;
  }
  body.cms-locations .main-container #locations-content #locations-content {
    margin: 50px auto 0 auto;
  }
}
@media only screen and (min-width: 771px) {
  body.cms-locations .main-container #locations-content {
    max-width: 800px;
    margin: 80px auto 0 auto;
  }
  body.cms-locations .main-container #locations-content .section-divider {
    display: block;
    width: 75px;
    margin-left: -125px;
  }
  body.cms-locations .main-container #locations-content .section-divider.mobile {
    display: none;
  }
  body.cms-locations .main-container #locations-content .store-container {
    -webkit-column-gap: 190px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 190px;
    /* Firefox */
    column-gap: 190px;
  }
}

/* ============================================ *
 * Digital Protection Page
 * ============================================ */
body.cms-digital-protection.cms-page-view .std p {
  color: #364a5e;
}
body.cms-digital-protection ol.nav-primary li.nav-5 a {
  color: #46C2AC;
}
body.cms-digital-protection .main-container {
  position: relative;
  margin-top: 30px;
  font-family: "Circular Std", sans-serif;
  color: #364a5e;
}
body.cms-digital-protection .main-container object, body.cms-digital-protection .main-container .svg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
}
body.cms-digital-protection .main-container #section-1-symptoms {
  background-color: #a7e4e2;
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper {
  max-width: 615px;
  color: #364a5e;
  text-align: center;
  padding: 30px 10px;
  margin: 0 auto;
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper h2 {
  font-size: 18px;
  font-weight: bold;
  text-transform: none;
  color: inherit;
  margin-bottom: 10px;
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper p {
  color: inherit;
  font-family: inherit;
  font-weight: 300;
  font-size: 0.9em;
  line-height: 1.3;
  margin: 0 auto;
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container {
  width: 250px;
  margin: 0 auto;
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container p {
  color: #344a5e;
  font-weight: bold;
  font-size: 0.8em;
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container object {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container > div {
  margin-bottom: 20px;
  padding: 0 25px;
  display: inline-block;
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container > div object {
  width: 71px;
  height: 71px;
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container .irritated-eyes object {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22IrritatedEyes-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22172%22%20viewBox%3D%227.696%206.831%20151.114%20172.338%22%20width%3D%22151%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%207.696%206.831%20151.114%20172.338%22%3E%09%09%09%3Cg%20fill%3D%22%23fff%22%3E%09%09%09%09%3Cpath%20d%3D%22m71.366%2042.471c3.859-12.05%207.635-23.845%2011.413-35.64%200.116%200.006%200.232%200.013%200.349%200.02%200.021%200.462%200.061%200.925%200.061%201.388%200.003%208.527%200.022%2017.055-0.021%2025.582-0.006%201.059%200.255%201.376%201.339%201.351%203.188-0.076%206.378-0.027%209.868-0.027-3.859%2012.062-7.65%2023.908-11.442%2035.756-0.122-0.022-0.245-0.044-0.366-0.065v-1.6c0-8.443-0.022-16.884%200.025-25.327%200.006-1.131-0.325-1.485-1.443-1.459-2.812%200.063-5.626%200.021-8.441%200.021h-1.342z%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m122.03%2050.258c2.476%201.184%204.805%202.299%207.341%203.511-6.193%206.493-12.305%2012.899-18.415%2019.305-0.089-0.058-0.179-0.114-0.269-0.17%202.896-5.973%205.795-11.946%208.742-18.021-2.468-1.24-4.832-2.429-7.361-3.7%206.244-6.543%2012.348-12.938%2018.449-19.333%200.088%200.048%200.178%200.096%200.267%200.145-2.9%206.037-5.79%2012.075-8.76%2018.263z%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m54.115%2072.768c-3.136-5.922-6.273-11.845-9.472-17.888-2.396%201.281-4.7%202.513-7.198%203.848-1.619-8.971-3.204-17.75-4.789-26.53%200.082-0.03%200.165-0.06%200.248-0.09%203.152%205.949%206.305%2011.898%209.513%2017.952%202.434-1.295%204.743-2.522%207.178-3.817%201.622%208.907%203.221%2017.685%204.819%2026.464-0.1%200.022-0.199%200.041-0.299%200.061z%22%2F%3E%09%09%09%3C%2Fg%3E%09%09%3Cpath%20d%3D%22m158.67%20137.46c0%202.511-33.43%2041.712-74.667%2041.712-41.238%200-74.665-39.201-74.665-41.712%200-2.514%2033.428-41.714%2074.666-41.714%2041.236-0.003%2074.666%2036.184%2074.666%2041.714z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%09%09%3Cpath%20d%3D%22m121.63%20136.46c0%2020.673-16.758%2037.427-37.428%2037.427-20.673%200-37.43-16.754-37.43-37.427%200-20.675%2016.757-37.432%2037.43-37.432%2020.668-0.005%2037.428%2016.752%2037.428%2037.432z%22%20fill%3D%22%234EBFD9%22%2F%3E%09%09%09%09%09%3Cpath%20d%3D%22m101.26%20136.46c0%209.422-7.643%2017.061-17.065%2017.061-9.423%200-17.059-7.639-17.059-17.061s7.635-17.061%2017.059-17.061c9.422%200%2017.065%207.63%2017.065%2017.06z%22%20fill%3D%22%23364A5E%22%2F%3E%09%09%09%09%09%3Cpath%20d%3D%22m74.739%20113.52c6.434%200%2011.645%205.213%2011.645%2011.647s-5.211%2011.644-11.645%2011.644c-6.436%200-11.645-5.209-11.645-11.644%200-0.319%200.012-0.64%200.045-0.954%201.083%200.605%202.32%200.954%203.654%200.954%204.099%200%207.421-3.323%207.421-7.422%200-1.513-0.445-2.925-1.237-4.082%200.57-0.1%201.158-0.15%201.762-0.15z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3Cpath%20stroke%3D%22%23D23427%22%20stroke-miterlimit%3D%2210%22%20d%3D%22m127.56%20147.28c4.058-1.312%208.111-2.632%2012.176-3.923%200.503-0.161%200.613-0.334%200.436-0.846-0.527-1.506-0.994-3.031-1.529-4.689%206.332-0.018%2013.801-1.287%2020.021-1.305%22%20fill%3D%22none%22%2F%3E%09%09%3Cpolyline%20stroke%3D%22%23D23427%22%20points%3D%22127.8%20122.44%20132.39%20129.11%20141.56%20128.28%20144.9%20132.45%20158.67%20136.62%22%20stroke-miterlimit%3D%2210%22%20fill%3D%22none%22%2F%3E%09%3Cpath%20stroke%3D%22%23D23427%22%20stroke-miterlimit%3D%2210%22%20d%3D%22m31.683%20127.03c-0.835%201.252-4.589%205.007-4.589%205.007l-3.336-2.921-5.005%205.423-9.418%201.919%209.835%204.339%204.589-2.921%203.336%205.423%207.092-2.92%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container .dry-eyes object {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22DryEyes-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22179%22%20viewBox%3D%2224.604%203.961%2094.793%20179.008%22%20width%3D%2295%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%2024.604%203.961%2094.793%20179.008%22%3E%09%09%3Cpath%20d%3D%22m67.312%2019.01l-0.072-7.466c-0.041-4.228-3.496-7.623-7.729-7.582-4.225%200.04-7.619%203.499-7.578%207.727l0.07%207.468c-6.779%204.809-16.689%2029.177-16.635%2035.111l0.238%2024.673c0.061%206.584%205.453%2011.869%2012.035%2011.807l25.386-0.241c6.584-0.062%2011.873-5.449%2011.812-12.034l-0.235-24.674c-0.055-5.933-10.426-30.106-17.292-34.789z%22%20fill%3D%22%23fff%22%2F%3E%09%09%3Cpath%20d%3D%22m97.312%20170.47c0.062%206.58-5.228%2011.973-11.81%2012.033l-48.866%200.467c-6.585%200.061-11.971-5.227-12.033-11.809v-59.932c-0.063-6.583%204.489-28.885%2011.075-28.947l48.867-0.465c6.582-0.062%2012.703%2022.826%2012.767%2029.412v59.24z%22%20fill%3D%22%23D0E1EB%22%2F%3E%09%09%3Cpath%20d%3D%22m84.547%2081.816l-17.68%200.168c6.141%201.963%2011.145%2022.991%2011.205%2029.244v59.238c0.062%206.58-4.652%2011.974-11.234%2012.033h18.666c6.582-0.061%2011.871-5.453%2011.809-12.033v-59.238c-0.063-6.59-6.184-29.476-12.766-29.414z%22%20fill%3D%22%23C0D5E0%22%2F%3E%09%09%3Cpath%20d%3D%22m64.955%2020.475c0.014%201.317-1.051%202.397-2.367%202.411-1.324%200.014-2.395-1.049-2.408-2.366l-0.096-10.125c-0.014-1.32%201.039-2.396%202.361-2.409%201.318-0.014%202.4%201.043%202.414%202.364l0.096%2010.125z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3Cpolygon%20points%3D%2297.111%20149.13%2024.604%20149.13%2024.604%20111.23%2096.75%20111.23%22%20fill%3D%22%23F3F3F3%22%2F%3E%09%09%09%3Cpolygon%20points%3D%2297.111%20149.13%2078.193%20148.62%2077.934%20111.23%2096.756%20111.23%22%20fill%3D%22%23E2E2E2%22%2F%3E%09%09%3Cg%20fill%3D%22%23EAEAEA%22%3E%09%09%09%09%3Crect%20transform%3D%22matrix%28-1%20.0091%20-.0091%20-1%2090.002%20135.13%29%22%20height%3D%2228.282%22%20width%3D%222.25%22%20y%3D%2253.63%22%20x%3D%2243.568%22%2F%3E%09%09%09%09%3Crect%20transform%3D%22matrix%28-1%20.0091%20-.0091%20-1%2074.578%20135.35%29%22%20height%3D%2228.28%22%20width%3D%222.25%22%20y%3D%2253.705%22%20x%3D%2235.856%22%2F%3E%09%09%09%09%3Crect%20transform%3D%22matrix%28-1%20.0087%20-.0087%20-1%20105.4%20134.93%29%22%20height%3D%2228.283%22%20width%3D%222.25%22%20y%3D%2253.554%22%20x%3D%2251.282%22%2F%3E%09%09%09%09%3Crect%20transform%3D%22matrix%28-1%20.0095%20-.0095%20-1%20120.87%20134.68%29%22%20height%3D%2228.283%22%20width%3D%222.25%22%20y%3D%2253.485%22%20x%3D%2258.99%22%2F%3E%09%09%09%09%3Crect%20transform%3D%22matrix%28-1%20.01%20-.01%20-1%20136.34%20134.42%29%22%20height%3D%2228.282%22%20width%3D%222.25%22%20y%3D%2253.407%22%20x%3D%2266.71%22%2F%3E%09%09%09%09%3Crect%20transform%3D%22matrix%28-1%20.0091%20-.0091%20-1%20151.7%20134.26%29%22%20height%3D%2228.279%22%20width%3D%222.25%22%20y%3D%2253.338%22%20x%3D%2274.418%22%2F%3E%09%09%09%3Cpolygon%20points%3D%2284.514%2081.529%2082.266%2081.551%2081.992%2053.272%2084.246%2053.25%22%2F%3E%09%09%3C%2Fg%3E%09%09%3Cpath%20d%3D%22m119.4%20150.77c0.043%2015.924-7.101%2022.209-15.938%2022.231-8.834%200.025-16.017-6.221-16.06-22.145-0.045-15.92%2015.877-43.059%2015.877-43.059s16.07%2027.05%2016.12%2042.97z%22%20fill%3D%22%2314A0C9%22%2F%3E%09%09%3Cpath%20d%3D%22m115.09%20158.02c0.01%203.6-2.896%206.521-6.49%206.531-3.598%200.01-6.52-2.896-6.528-6.494-0.011-3.596%202.896-6.518%206.491-6.527%203.6-0.01%206.52%202.9%206.53%206.49z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E);
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container .headaches object {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22Headaches-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22209%22%20viewBox%3D%229.092%202.273%20128.027%20209.389%22%20width%3D%22128%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%209.092%202.273%20128.027%20209.389%22%3E%09%3Cg%20id%3D%22Headaches-men_1%22%3E%09%09%09%09%09%3Crect%20y%3D%22135.56%22%20x%3D%2258.205%22%20height%3D%2232.68%22%20width%3D%2229.805%22%20fill%3D%22%23D9A88C%22%2F%3E%09%09%09%09%09%3Cpath%20d%3D%22m91.623%20155.03s28.338%204.143%2032.521%208.5c3.646%203.797%2011.223%2040.15%2012.975%2048.131h-64.014v-55.09l18.517-1.54z%22%20fill%3D%22%23E27356%22%2F%3E%09%09%09%09%09%3Cg%20fill%3D%22%23E9C0A7%22%3E%09%09%09%09%09%09%3Cpath%20d%3D%22m73.107%2042.043c14.471%200%2037.354%208.227%2037.354%2046.775%200%2022.257-7.258%2036.838-10.42%2040.872-2.908%203.711-19.265%2011.619-26.937%2011.619%200.004-38.96%200.004-99.267%200.004-99.267z%22%2F%3E%09%09%09%09%09%09%3Cpath%20d%3D%22m117.66%2098.009c0.639-6.158-2.297-11.624-6.553-12.21-4.26-0.583-8.228%203.938-8.867%2010.098-0.639%206.156%202.297%2011.622%206.557%2012.207%204.25%200.59%208.22-3.93%208.86-10.091z%22%2F%3E%09%09%09%09%09%3C%2Fg%3E%09%09%09%09%09%3Cg%20fill%3D%22%23F2D8BC%22%3E%09%09%09%09%09%09%3Cpath%20d%3D%22m73.107%2042.043c-14.474%200-37.355%208.227-37.355%2046.775%200%2022.257%207.254%2036.838%2010.416%2040.872%202.91%203.711%2019.266%2011.619%2026.939%2011.619v-99.267z%22%2F%3E%09%09%09%09%09%09%3Cpath%20d%3D%22m28.553%2098.009c-0.639-6.158%202.297-11.624%206.553-12.21%204.26-0.583%208.227%203.938%208.865%2010.098%200.641%206.156-2.297%2011.622-6.555%2012.207-4.258%200.59-8.227-3.93-8.863-10.091z%22%2F%3E%09%09%09%09%09%3C%2Fg%3E%09%09%09%09%09%3Cpath%20d%3D%22m54.588%20155.03s-28.338%204.143-32.521%208.5c-3.646%203.797-11.221%2040.15-12.975%2048.131h64.014v-55.09l-18.518-1.54z%22%20fill%3D%22%23F5825B%22%2F%3E%09%09%09%09%09%3Cpolygon%20points%3D%2273.105%20156.57%2057.975%20150.49%2054.248%20154.27%2061.775%20170.97%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%09%09%3Cpolygon%20points%3D%2273.105%20156.57%2088.236%20150.49%2091.965%20154.27%2084.434%20170.97%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m111.28%2086.713s12.246-55.832-38.426-55.832c-50.938%200-38.153%2054.293-38.153%2054.293s6.961-3.986%206.961%2013.834h1.277s2.469-11.948%203.217-22.659c17.914%200%2033.758-2.296%2047.079-13.319%207.563%200%208.592%209.421%208.592%2016.629l-3.311%201.283s3.206%206.277%203.436%2018.066h2.297s-0.36-19.658%207.02-12.295z%22%20fill%3D%22%238B603D%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m73.107%20121.79c-6.745%200-12.213%202.229-12.213%204.976h24.426c0-2.75-5.468-4.98-12.213-4.98z%22%20fill%3D%22%23fff%22%2F%3E%09%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%09%3Cpath%20d%3D%22m107.34%2028.08c-1.223-0.615%209.936-25.232%209.936-25.232%200.354-0.701%201.629-0.771%202.851-0.156%201.224%200.615%201.924%201.683%201.571%202.383-0.01-0.001-13.14%2023.619-14.36%2023.005z%22%2F%3E%09%3Cpath%20d%3D%22m99.742%2024.013c-1.346-0.239%201.148-20.54%201.148-20.54%200.104-0.584%201.278-0.863%202.625-0.623%201.346%200.24%202.352%200.908%202.248%201.493-0.01%200-4.68%2019.909-6.028%2019.67z%22%2F%3E%09%3Cpath%20d%3D%22m112.71%2031.908c-0.842-1.076%2014.541-14.553%2014.541-14.553%200.469-0.365%201.531%200.209%202.375%201.285s1.148%202.244%200.682%202.611c0.01%200.001-16.74%2011.733-17.59%2010.657z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
}
body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container .blurred-vision object {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22BlurredVision-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22173%22%20viewBox%3D%229.854%2011.23%20179.118%20173.268%22%20width%3D%22179%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%209.854%2011.23%20179.118%20173.268%22%3E%09%3Cg%20opacity%3D%22.8%22%3E%3Cg%20fill%3D%22none%22%3E%09%09%3Cpolygon%20points%3D%22116.06%2092.915%20116.06%2092.913%20116.06%2092.913%22%2F%3E%09%09%3Cpolygon%20points%3D%2235.374%20127.81%2035.374%20127.81%22%2F%3E%09%09%3Cpolygon%20points%3D%22115.98%20136.54%20115.98%20136.53%20115.98%20136.53%22%2F%3E%09%09%3Cpolygon%20points%3D%2274.546%20167.07%2074.546%20167.06%2074.546%20167.06%22%2F%3E%09%09%3Cpolygon%20points%3D%22113.85%20184.5%20113.85%20184.49%20113.85%20184.49%22%2F%3E%09%09%3Cpolygon%20points%3D%22153.13%2088.552%20153.13%2088.549%20153.13%2088.549%22%2F%3E%09%09%3Cpolygon%20points%3D%2272.376%20136.54%2072.376%20136.53%2072.376%20136.53%22%2F%3E%09%09%3Cpolygon%20points%3D%2274.573%20184.5%2074.573%20184.49%2074.573%20184.49%22%2F%3E%09%09%3Cpolygon%20points%3D%22174.9%2084.171%20174.9%2084.167%20174.9%2084.167%22%2F%3E%09%09%3Cpolygon%20points%3D%2274.573%2023.102%2074.573%2023.095%2074.573%2023.095%22%2F%3E%09%09%3Cpolygon%20points%3D%22113.83%2023.102%20113.83%2023.095%20113.83%2023.095%22%2F%3E%09%09%3Cpolygon%20points%3D%22174.9%20123.43%20174.9%20123.42%20174.9%20123.42%22%2F%3E%09%09%3Cpolygon%20points%3D%2274.64%2049.296%2074.64%2049.29%2074.64%2049.29%22%2F%3E%09%09%3Cpolygon%20points%3D%2213.528%20123.43%2013.528%20123.42%2013.528%20123.42%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%09%09%3Cpath%20d%3D%22m124.08%20129.1c2.076-2.117%203.193-4.9%203.146-7.84-0.102-6.273-5.002-11.188-11.158-11.188-6.285%200.027-11.205%204.945-11.254%2011.195-0.023%202.987%201.119%205.799%203.219%207.916%202.111%202.129%204.935%203.299%207.947%203.299v4.052l0.043-4.052c3.07-0.01%205.93-1.21%208.05-3.38z%22%2F%3E%09%09%3Cpath%20d%3D%22m80.45%20129.11c2.082-2.114%203.203-4.903%203.16-7.853-0.092-6.272-4.998-11.188-11.17-11.188-6.264%200.021-11.184%204.938-11.242%2011.193-0.027%202.983%201.113%205.791%203.211%207.905%202.115%202.138%204.945%203.312%207.967%203.312v4.052l0.029-4.052c3.063%200%205.92-1.19%208.045-3.36z%22%2F%3E%09%09%3Cpath%20d%3D%22m72.415%2066.451h-0.002c-3.072%200-5.854%201.152-7.943%203.245-2.113%202.116-3.275%204.943-3.271%207.962%200.01%206.178%204.977%2011.204%2011.076%2011.204h0.143c6.287-0.08%2011.203-5.003%2011.195-11.207-0.01-6.219-4.928-11.141-11.198-11.204z%22%2F%3E%09%09%3Cpath%20d%3D%22m127.23%2077.671c0.041-2.952-1.082-5.742-3.166-7.857-2.125-2.162-4.982-3.356-8.041-3.362-6.307%200-11.115%204.81-11.205%2011.188-0.043%202.953%201.078%205.743%203.156%207.856%202.123%202.161%204.982%203.356%208.047%203.365l0.035%204.052v-4.052c6.18%200%2011.08-4.915%2011.17-11.19z%22%2F%3E%09%09%3Cpath%20d%3D%22m35.499%20150.98c-0.131%200-0.262%200.002-0.391%200.011-4.15%200.239-7.355%203.631-7.145%207.557%200.227%204.135%203.535%207.35%207.537%207.166%202.057-0.098%204.021-1.035%205.389-2.564%201.277-1.434%201.916-3.223%201.799-5.039-0.263-4-3.419-7.14-7.189-7.14z%22%2F%3E%09%09%3Cpath%20d%3D%22m81.95%20158.34c-0.018-4.043-3.32-7.34-7.357-7.348-4.039%200-7.338%203.291-7.371%207.336-0.016%201.938%200.748%203.784%202.15%205.198s3.238%202.192%205.174%202.192v1.349l0.074-1.349c4.063-0.04%207.35-3.35%207.33-7.38z%22%2F%3E%09%09%3Cpath%20d%3D%22m153.23%20111.74l-0.244-0.006c-3.832%200-7.084%203.235-7.248%207.217-0.076%201.873%200.617%203.688%201.957%205.115%201.383%201.478%203.324%202.351%205.324%202.397h0.17c3.893%200%207.156-3.258%207.277-7.262%200.12-3.97-3.13-7.32-7.24-7.46z%22%2F%3E%09%09%3Cpath%20d%3D%22m40.528%20124.27c1.406-1.414%202.176-3.258%202.164-5.194-0.023-4.049-3.324-7.345-7.361-7.349-4.037%200-7.34%203.293-7.367%207.34-0.031%204.019%203.25%207.332%207.314%207.39l0.096%201.346v-1.346c1.924%200%203.754-0.78%205.154-2.19z%22%2F%3E%09%09%3Cpath%20d%3D%22m113.96%20150.99l-0.237%200.003c-4.109%200.143-7.357%203.491-7.24%207.465%200.117%204.004%203.386%207.266%207.283%207.266l0.157-0.002c2.002-0.045%203.943-0.918%205.33-2.396%201.34-1.428%202.035-3.242%201.957-5.109-0.17-3.99-3.42-7.23-7.25-7.23z%22%2F%3E%09%09%3Cpath%20d%3D%22m153.22%20150.99l-0.231-0.003c-3.839%200-7.095%203.24-7.255%207.226-0.157%203.949%203.07%207.313%207.199%207.506%204.017%200.213%207.412-3.148%207.528-7.264%200.11-3.99-3.14-7.34-7.25-7.48z%22%2F%3E%09%09%3Cpath%20d%3D%22m160.46%2079.879c0.025-1.931-0.729-3.775-2.131-5.192-1.408-1.428-3.258-2.213-5.207-2.213-4.098%200.026-7.391%203.329-7.391%207.362%200%204.034%203.293%207.338%207.344%207.364l0.051%201.349v-1.349c4%200%207.3-3.284%207.34-7.321z%22%2F%3E%09%09%3Cpath%20d%3D%22m35.722%2072.495c-0.197-0.02-0.395-0.027-0.588-0.027-3.645%200-6.783%203.053-7.143%206.952-0.168%201.8%200.404%203.583%201.611%205.023%201.316%201.57%203.279%202.572%205.383%202.747%203.859%200.316%207.326-2.863%207.693-6.992%200.343-3.878-2.779-7.336-6.956-7.703z%22%2F%3E%09%09%3Cpath%20d%3D%22m153%2047.942l0.209%200.003c3.859%200%207.115-3.25%207.258-7.243%200.144-3.963-3.096-7.32-7.217-7.486l-0.276-0.005c-3.804%200-7.048%203.229-7.231%207.198-0.089%201.857%200.594%203.667%201.916%205.096%201.37%201.488%203.32%202.378%205.34%202.437z%22%2F%3E%09%09%3Cpath%20d%3D%22m113.69%2047.942l0.287%200.006c3.793%200%207.035-3.229%207.229-7.199%200.09-1.852-0.59-3.658-1.91-5.086-1.381-1.496-3.332-2.387-5.35-2.448l-0.205-0.003c-3.861%200-7.119%203.248-7.264%207.238-0.14%203.958%203.09%207.319%207.21%207.492z%22%2F%3E%09%09%3Cpath%20d%3D%22m79.776%2045.769c1.41-1.412%202.182-3.26%202.174-5.199-0.012-4.041-3.312-7.34-7.354-7.354-4.041%200-7.336%203.287-7.375%207.328-0.041%204.016%203.24%207.334%207.307%207.399l0.111%201.347v-1.346c1.915%200%203.739-0.773%205.137-2.175z%22%2F%3E%09%09%3Cpath%20d%3D%22m35.249%2047.943l0.156-0.001c2-0.045%203.941-0.916%205.326-2.394%201.342-1.428%202.037-3.244%201.961-5.114-0.164-3.982-3.416-7.222-7.25-7.222l-0.238%200.004c-4.107%200.14-7.355%203.487-7.24%207.462%200.115%204.007%203.383%207.265%207.285%207.265z%22%2F%3E%09%09%3Cpath%20d%3D%22m78.247%20180.17c0-0.982-0.377-1.9-1.068-2.588-0.688-0.689-1.605-1.07-2.584-1.07-2.086%200.033-3.672%201.639-3.672%203.658%200%202.016%201.637%203.655%203.65%203.655v0.669l0.061-0.669c2.027-0.03%203.613-1.64%203.613-3.65z%22%2F%3E%09%09%3Cpath%20d%3D%22m117.5%20180.26c0.029-0.988-0.328-1.922-1.004-2.629-0.68-0.711-1.604-1.109-2.604-1.123-2.041%200-3.641%201.566-3.699%203.562-0.027%200.99%200.328%201.925%201.006%202.632%200.68%200.709%201.604%201.106%202.604%201.12l0.052%200.671v-0.671c1.97%200%203.58-1.56%203.64-3.56z%22%2F%3E%09%09%3Cpath%20d%3D%22m178.58%20119.1c0-0.982-0.379-1.902-1.068-2.592-0.688-0.688-1.608-1.068-2.588-1.068-2.082%200.031-3.668%201.635-3.668%203.652%200%200.984%200.379%201.902%201.066%202.594%200.689%200.688%201.605%201.068%202.582%201.068v0.668l0.059-0.668c2.02-0.03%203.61-1.63%203.62-3.65z%22%2F%3E%09%09%3Cpath%20d%3D%22m16.112%20121.68c0.689-0.691%201.068-1.609%201.066-2.59%200-2.02-1.586-3.625-3.613-3.656-1.035%200-1.953%200.381-2.643%201.068-0.689%200.688-1.068%201.609-1.068%202.588%200.002%202.023%201.59%203.629%203.615%203.658l0.059%200.668v-0.668c0.979%200%201.897-0.38%202.584-1.07z%22%2F%3E%09%09%3Cpath%20d%3D%22m178.57%2079.851c0.006-0.983-0.371-1.906-1.061-2.599s-1.611-1.074-2.596-1.074c-2.062%200.022-3.656%201.623-3.666%203.643-0.006%200.985%200.371%201.908%201.062%202.601%200.688%200.693%201.608%201.074%202.592%201.074v0.672l0.041-0.672c2.04-0.023%203.63-1.625%203.64-3.645z%22%2F%3E%09%09%3Cpath%20d%3D%22m13.517%2083.499c2.02-0.003%203.625-1.588%203.656-3.611%200.018-0.99-0.354-1.921-1.043-2.623-0.691-0.701-1.619-1.09-2.611-1.09s-1.92%200.387-2.611%201.09c-0.691%200.7-1.062%201.632-1.047%202.623%200.031%202.024%201.636%203.611%203.656%203.611z%22%2F%3E%09%09%3Cpath%20d%3D%22m117.51%2018.771c0-0.981-0.379-1.902-1.067-2.592-0.688-0.688-1.606-1.069-2.586-1.069-1.056%200.016-1.979%200.414-2.658%201.125-0.676%200.706-1.03%201.64-1.004%202.63%200.062%201.997%201.658%203.562%203.642%203.562v0.668l0.059-0.669c2.03-0.031%203.61-1.637%203.62-3.655z%22%2F%3E%09%09%3Cpath%20d%3D%22m78.247%2018.772c0.002-0.982-0.377-1.902-1.066-2.592s-1.607-1.07-2.586-1.07c-1.055%200.016-1.98%200.415-2.658%201.126-0.678%200.706-1.033%201.64-1.004%202.628%200.061%201.998%201.66%203.562%203.641%203.562v0.668l0.059-0.669c2.024-0.03%203.612-1.635%203.614-3.653z%22%2F%3E%09%3C%2Fg%3E%3C%2Fg%3E%09%3Cg%20opacity%3D%22.4%22%3E%3Cg%20fill%3D%22none%22%3E%09%09%3Cpolygon%20points%3D%22126.45%2089.033%20126.45%2089.031%20126.45%2089.031%22%2F%3E%09%09%3Cpolygon%20points%3D%2245.771%20123.93%2045.771%20123.92%2045.771%20123.92%22%2F%3E%09%09%3Cpolygon%20points%3D%22126.38%20132.65%20126.38%20132.65%22%2F%3E%09%09%3Cpolygon%20points%3D%2284.942%20163.19%2084.942%20163.18%2084.942%20163.18%22%2F%3E%09%09%3Cpolygon%20points%3D%22124.25%20180.62%20124.25%20180.61%20124.25%20180.61%22%2F%3E%09%09%3Cpolygon%20points%3D%22163.53%2084.671%20163.53%2084.668%20163.53%2084.668%22%2F%3E%09%09%3Cpolygon%20points%3D%2282.772%20132.65%2082.772%20132.65%22%2F%3E%09%09%3Cpolygon%20points%3D%2284.97%20180.62%2084.97%20180.61%2084.97%20180.61%22%2F%3E%09%09%3Cpolygon%20points%3D%22185.3%2080.29%20185.3%2080.286%20185.3%2080.286%22%2F%3E%09%09%3Cpolygon%20points%3D%2284.97%2019.221%2084.97%2019.214%2084.97%2019.214%22%2F%3E%09%09%3Cpolygon%20points%3D%22124.23%2019.221%20124.23%2019.214%20124.23%2019.214%22%2F%3E%09%09%3Cpolygon%20points%3D%22185.3%20119.55%20185.3%20119.54%20185.3%20119.54%22%2F%3E%09%09%3Cpolygon%20points%3D%2285.036%2045.415%2085.036%2045.409%2085.036%2045.409%22%2F%3E%09%09%3Cpolygon%20points%3D%2223.925%20119.55%2023.925%20119.54%2023.925%20119.54%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%09%09%3Cpath%20d%3D%22m134.48%20125.22c2.076-2.117%203.193-4.9%203.145-7.84-0.1-6.273-5-11.188-11.155-11.188-6.285%200.026-11.205%204.944-11.255%2011.194-0.022%202.988%201.119%205.8%203.22%207.916%202.11%202.13%204.935%203.3%207.946%203.3v4.051l0.043-4.051c3.08-0.01%205.94-1.21%208.07-3.38z%22%2F%3E%09%09%3Cpath%20d%3D%22m90.847%20125.23c2.082-2.114%203.203-4.903%203.16-7.853-0.092-6.272-4.998-11.188-11.17-11.188-6.264%200.021-11.186%204.938-11.242%2011.192-0.027%202.984%201.113%205.791%203.211%207.906%202.115%202.137%204.945%203.312%207.967%203.312v4.051l0.029-4.051c3.062-0.01%205.918-1.2%208.045-3.37z%22%2F%3E%09%09%3Cpath%20d%3D%22m82.812%2062.57h-0.002c-3.072%200-5.854%201.151-7.943%203.245-2.113%202.116-3.275%204.943-3.271%207.961%200.008%206.178%204.977%2011.205%2011.074%2011.205h0.145c6.287-0.08%2011.203-5.003%2011.195-11.207-0.011-6.219-4.929-11.141-11.198-11.204z%22%2F%3E%09%09%3Cpath%20d%3D%22m137.62%2073.79c0.043-2.952-1.08-5.742-3.164-7.857-2.127-2.162-4.981-3.356-8.041-3.362-6.307%200-11.114%204.81-11.205%2011.188-0.043%202.953%201.078%205.743%203.156%207.856%202.123%202.161%204.982%203.356%208.047%203.365l0.035%204.051v-4.051c6.17%200%2011.08-4.915%2011.16-11.19z%22%2F%3E%09%09%3Cpath%20d%3D%22m45.896%20147.1c-0.131%200-0.262%200.002-0.393%200.01-4.148%200.242-7.354%203.633-7.143%207.559%200.227%204.136%203.535%207.351%207.537%207.166%202.057-0.098%204.02-1.035%205.389-2.563%201.277-1.435%201.916-3.224%201.797-5.039-0.262-4.01-3.418-7.14-7.187-7.14z%22%2F%3E%09%09%3Cpath%20d%3D%22m92.347%20154.46c-0.018-4.043-3.32-7.34-7.357-7.349-4.039%200-7.34%203.291-7.371%207.336-0.018%201.938%200.748%203.785%202.148%205.199%201.402%201.414%203.24%202.192%205.176%202.192v1.349l0.074-1.349c4.062-0.04%207.349-3.36%207.33-7.38z%22%2F%3E%09%09%3Cpath%20d%3D%22m163.62%20107.85l-0.244-0.006c-3.832%200-7.082%203.235-7.246%207.217-0.075%201.871%200.617%203.688%201.955%205.115%201.386%201.478%203.324%202.351%205.326%202.397h0.168c3.896%200%207.158-3.258%207.279-7.262%200.12-3.98-3.12-7.32-7.24-7.47z%22%2F%3E%09%09%3Cpath%20d%3D%22m50.925%20120.39c1.406-1.414%202.174-3.258%202.162-5.195-0.021-4.049-3.324-7.344-7.359-7.348-4.037%200-7.34%203.293-7.369%207.34-0.029%204.018%203.252%207.332%207.316%207.389l0.096%201.346v-1.346c1.923%200%203.751-0.78%205.154-2.19z%22%2F%3E%09%09%3Cpath%20d%3D%22m124.35%20147.1l-0.238%200.004c-4.109%200.144-7.357%203.49-7.24%207.466%200.117%204.004%203.386%207.266%207.283%207.266l0.158-0.002c2.002-0.045%203.943-0.918%205.33-2.396%201.338-1.428%202.033-3.242%201.957-5.109-0.16-3.99-3.41-7.23-7.25-7.23z%22%2F%3E%09%09%3Cpath%20d%3D%22m163.62%20147.11l-0.231-0.004c-3.841%200-7.095%203.242-7.255%207.228-0.157%203.949%203.07%207.313%207.197%207.506%204.017%200.213%207.414-3.148%207.531-7.264%200.11-3.99-3.14-7.34-7.25-7.48z%22%2F%3E%09%09%3Cpath%20d%3D%22m170.86%2075.998c0.025-1.931-0.73-3.774-2.131-5.193-1.408-1.427-3.258-2.212-5.209-2.212-4.096%200.026-7.389%203.33-7.389%207.362%200%204.034%203.293%207.338%207.344%207.364l0.049%201.349v-1.349c4%200%207.29-3.284%207.34-7.321z%22%2F%3E%09%09%3Cpath%20d%3D%22m46.118%2068.614c-0.197-0.021-0.395-0.027-0.588-0.027-3.645%200-6.783%203.053-7.143%206.952-0.168%201.8%200.404%203.583%201.611%205.023%201.316%201.57%203.279%202.572%205.383%202.747%203.859%200.316%207.326-2.863%207.693-6.992%200.343-3.878-2.778-7.336-6.956-7.703z%22%2F%3E%09%09%3Cpath%20d%3D%22m163.4%2044.062l0.209%200.003c3.858%200%207.115-3.25%207.258-7.243%200.144-3.963-3.096-7.32-7.217-7.486l-0.276-0.005c-3.804%200-7.048%203.229-7.234%207.198-0.086%201.857%200.594%203.667%201.918%205.095%201.37%201.488%203.32%202.377%205.34%202.438z%22%2F%3E%09%09%3Cpath%20d%3D%22m124.09%2044.062l0.287%200.006c3.793%200%207.035-3.229%207.229-7.199%200.09-1.852-0.59-3.658-1.91-5.086-1.383-1.496-3.332-2.388-5.35-2.448l-0.205-0.003c-3.861%200-7.119%203.248-7.265%207.238-0.15%203.956%203.09%207.318%207.21%207.492z%22%2F%3E%09%09%3Cpath%20d%3D%22m90.173%2041.888c1.408-1.412%202.182-3.26%202.174-5.199-0.014-4.041-3.312-7.341-7.354-7.354-4.041%200-7.336%203.287-7.375%207.328-0.041%204.016%203.238%207.334%207.307%207.399l0.111%201.347v-1.346c1.914%200%203.738-0.773%205.137-2.175z%22%2F%3E%09%09%3Cpath%20d%3D%22m45.646%2044.062l0.156-0.001c1.998-0.045%203.941-0.916%205.326-2.394%201.342-1.428%202.037-3.244%201.959-5.114-0.162-3.982-3.414-7.222-7.248-7.222l-0.238%200.004c-4.107%200.14-7.355%203.487-7.24%207.462%200.115%204.007%203.382%207.265%207.285%207.265z%22%2F%3E%09%09%3Cpath%20d%3D%22m88.644%20176.28c0-0.982-0.379-1.9-1.068-2.589-0.688-0.688-1.605-1.069-2.586-1.069-2.084%200.033-3.67%201.639-3.67%203.658%200%202.016%201.637%203.655%203.65%203.655v0.668l0.061-0.668c2.027-0.03%203.613-1.64%203.613-3.66z%22%2F%3E%09%09%3Cpath%20d%3D%22m127.89%20176.38c0.028-0.988-0.328-1.922-1.004-2.629-0.681-0.711-1.604-1.109-2.604-1.123-2.039%200-3.64%201.563-3.697%203.562-0.029%200.989%200.328%201.924%201.006%202.631%200.68%200.709%201.604%201.106%202.604%201.121l0.051%200.67v-0.67c1.98%200%203.58-1.56%203.64-3.56z%22%2F%3E%09%09%3Cpath%20d%3D%22m188.97%20115.22c0-0.982-0.38-1.902-1.068-2.592-0.688-0.688-1.608-1.068-2.59-1.068-2.08%200.031-3.666%201.635-3.666%203.652%200%200.983%200.379%201.901%201.065%202.594%200.689%200.688%201.604%201.068%202.582%201.068v0.668l0.06-0.668c2.04-0.03%203.63-1.63%203.63-3.65z%22%2F%3E%09%09%3Cpath%20d%3D%22m26.509%20117.8c0.689-0.691%201.068-1.609%201.066-2.59%200-2.021-1.586-3.625-3.613-3.656h-0.002c-1.033%200-1.951%200.381-2.641%201.068-0.689%200.688-1.068%201.608-1.068%202.588%200.002%202.022%201.588%203.629%203.615%203.658l0.059%200.668v-0.668c0.978%200%201.896-0.38%202.584-1.07z%22%2F%3E%09%09%3Cpath%20d%3D%22m188.97%2075.97c0.006-0.983-0.371-1.906-1.062-2.6-0.688-0.691-1.611-1.073-2.596-1.073-2.062%200.022-3.656%201.622-3.666%203.643-0.006%200.985%200.371%201.908%201.062%202.601%200.688%200.693%201.606%201.074%202.592%201.074v0.672l0.041-0.672c2.04-0.023%203.63-1.625%203.64-3.645z%22%2F%3E%09%09%3Cpath%20d%3D%22m23.911%2079.618c2.02-0.003%203.627-1.588%203.658-3.612%200.016-0.989-0.354-1.921-1.045-2.622-0.689-0.701-1.617-1.09-2.609-1.09s-1.92%200.387-2.613%201.09c-0.689%200.701-1.061%201.632-1.045%202.622%200.031%202.025%201.637%203.612%203.654%203.612z%22%2F%3E%09%09%3Cpath%20d%3D%22m127.9%2014.891c0-0.981-0.379-1.902-1.068-2.593-0.688-0.688-1.606-1.068-2.586-1.068-1.055%200.016-1.979%200.414-2.658%201.125-0.676%200.706-1.032%201.64-1.004%202.63%200.062%201.997%201.658%203.562%203.642%203.562v0.668l0.058-0.669c2.03-0.032%203.62-1.638%203.62-3.655z%22%2F%3E%09%09%3Cpath%20d%3D%22m88.644%2014.892c0.002-0.982-0.377-1.902-1.066-2.592s-1.607-1.07-2.588-1.07c-1.053%200.016-1.979%200.414-2.658%201.126-0.676%200.706-1.031%201.64-1.002%202.628%200.061%201.998%201.66%203.562%203.641%203.562v0.668l0.059-0.669c2.024-0.031%203.612-1.636%203.614-3.653z%22%2F%3E%09%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E);
}
@media only screen and (min-width: 771px) {
  body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper {
    padding: 30px;
  }
  body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }
  body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container {
    width: auto;
    margin-bottom: 5px;
  }
  body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container p {
    font-size: 0.9em;
  }
  body.cms-digital-protection .main-container #section-1-symptoms #section-1-symptoms-content-wrapper #symptom-container > div object {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
  }
}
body.cms-digital-protection .main-container #section-2-computer-usage {
  background-color: #f1f3f5;
  text-align: center;
  color: white;
  font-weight: 300;
  height: 155px;
  overflow: hidden;
}
body.cms-digital-protection .main-container #section-2-computer-usage div {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22Laptop-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%2299%22%20viewBox%3D%2211.565%2019.205%20773.871%20254.676%22%20width%3D%22300%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%2011.565%2019.205%20773.871%20254.676%22%3E%09%09%3Cpath%20d%3D%22m141.93%2048.848c-1.885-0.129-3.776%200.174-5.518%201.072l-114.2%2059.1c-2.303%201.189-3.94%203.17-4.899%205.514l80.846%2014.352%200.246-0.043-0.145%200.236%207.085%201.26%203.038-6.744-0.271-0.023%200.173-0.164%2033.65-74.572z%22%20fill%3D%22%2353C2BE%22%2F%3E%09%09%3Cpath%20d%3D%22m17.406%20114.73s27.623-82.18%2035.746-86.385c8.128-4.205%2088.874%2020.693%2088.874%2020.693l-124.62%2065.692z%22%20fill%3D%22%2353C2BE%22%2F%3E%09%09%09%09%3Crect%20transform%3D%22matrix%28-.8881%20.4596%20-.4596%20-.8881%20236.84%20169.15%29%22%20height%3D%22105.72%22%20width%3D%2290.615%22%20y%3D%2260.545%22%20x%3D%2252.525%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3Cpolygon%20points%3D%2293.716%20128.27%2091.281%20127.84%2093.703%20128.27%22%20fill%3D%22%2367BAC8%22%2F%3E%09%09%09%3Cpolygon%20points%3D%2268.603%20123.82%2068.603%20123.82%2091.281%20127.84%22%20fill%3D%22%235B9BB1%22%2F%3E%09%09%09%3Cpath%20d%3D%22m93.716%20128.27h-0.013l-2.422-0.432-22.678-4.021-51.197-9.09c-1.389%203.414-1.295%207.621%200.677%2011.432l32.816%2063.412c1.72%203.322%204.499%205.656%207.558%206.764l30.821-52.092%208.975-15.164-4.537-0.81z%22%20fill%3D%22%2350B7B2%22%2F%3E%09%09%09%3Cpath%20d%3D%22m142.02%2049.039l-25.163%2055.768-5.32%2011.793-2.712%206.004-0.454%200.994%2021.467%201.93%2056.682%205.088c1.115-3.283%200.923-7.18-0.924-10.752l-32.814-63.41c-2.32-4.454-6.53-7.126-10.78-7.411z%22%20fill%3D%22%2350B7B2%22%2F%3E%09%09%09%3Cpath%20d%3D%22m129.84%20125.53l-21.467-1.93%200.454-0.994c-0.032%200.055-2.891%204.848-4.979%205.93-2.081%201.076-10.082-0.248-10.134-0.26l4.537%200.809-8.975%2015.164-30.821%2052.092c2.861%201.041%205.981%200.998%208.718-0.42l114.2-59.1c2.526-1.307%204.247-3.561%205.146-6.203l-56.67-5.09z%22%20fill%3D%22%2353C2BE%22%2F%3E%09%09%3Crect%20transform%3D%22matrix%28-.8636%20-.5041%20.5041%20-.8636%201181.9%20630.84%29%22%20height%3D%22191.78%22%20width%3D%22140.84%22%20y%3D%2259.675%22%20x%3D%22605.86%22%20fill%3D%22%234EBFD9%22%2F%3E%09%09%09%09%3Crect%20transform%3D%22matrix%28-.8636%20-.5042%20.5042%20-.8636%201177.1%20635.66%29%22%20height%3D%22162.24%22%20width%3D%22117.67%22%20y%3D%2277.475%22%20x%3D%22615.7%22%20fill%3D%22%23F8FCFF%22%2F%3E%09%3Cpath%20d%3D%22m745.23%2099.918l-54.348-31.729c-1.101-0.641-1.474-2.059-0.831-3.158l5.331-9.133c0.645-1.102%202.061-1.473%203.16-0.83l54.348%2031.727c1.101%200.641%201.475%202.059%200.83%203.16l-5.331%209.131c-0.65%201.104-2.06%201.474-3.16%200.832zm-47.51-43.449c-0.328-0.188-0.75-0.08-0.938%200.248l-5.332%209.133c-0.19%200.326-0.08%200.746%200.247%200.939l54.348%2031.725c0.326%200.193%200.747%200.08%200.939-0.246l5.331-9.131c0.189-0.328%200.081-0.75-0.247-0.941l-54.35-31.727z%22%20fill%3D%22%23AEADAE%22%2F%3E%09%3Cpath%20d%3D%22m698.76%2067.16c0.949%202.174%201.586%204.473%201.892%206.822l34.725%2020.271c2.194-0.891%204.51-1.467%206.869-1.709%202.164%201.205%204.902%200.465%206.155-1.686l2.3-3.938c1.27-2.176%200.535-4.969-1.641-6.238l-43.32-25.289c-2.174-1.268-4.967-0.535-6.236%201.641l-2.299%203.938c-1.25%202.147-0.55%204.895%201.56%206.188z%22%20fill%3D%22%23CACDCC%22%2F%3E%09%09%3Cpath%20d%3D%22m544.9%20227.51c0%2010.535-8.354%2019.078-18.659%2019.078h-334.9c-10.305%200-18.658-8.543-18.658-19.078v-189.23c0-10.537%208.354-19.076%2018.658-19.076h334.9c10.305%200%2018.659%208.539%2018.659%2019.076v189.23z%22%20fill%3D%22%23342F30%22%2F%3E%09%09%3Cpath%20d%3D%22m196.75%20238.52c-8.304%200-15.067-6.851-15.067-15.26v-180.24c0-8.414%206.764-15.266%2015.067-15.266h324.07c8.31%200%2015.066%206.852%2015.066%2015.266v180.25c0%208.41-6.758%2015.26-15.066%2015.26h-324.07v-0.01z%22%20fill%3D%22%23364A5E%22%2F%3E%09%09%3Cpath%20opacity%3D%22.1%22%20enable-background%3D%22new%20%20%20%20%22%20d%3D%22m196.75%2027.75c-8.304%200-15.067%206.852-15.067%2015.266v180.25c0%208.41%206.764%2015.26%2015.067%2015.26h35.643l189.97-210.78h-225.61z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3Cpath%20d%3D%22m362.07%2023.504c0%201.453-1.181%202.633-2.631%202.633-1.456%200-2.632-1.18-2.632-2.633%200-1.455%201.176-2.629%202.632-2.629%201.45%200%202.63%201.174%202.63%202.629z%22%20fill%3D%22%23434040%22%2F%3E%09%09%09%3Cpath%20d%3D%22m361.77%2023.504c0%201.289-1.045%202.328-2.327%202.328-1.286%200-2.328-1.039-2.328-2.328%200-1.285%201.042-2.328%202.328-2.328%201.28%200%202.33%201.043%202.33%202.328z%22%20fill%3D%22%23231F21%22%2F%3E%09%09%09%3Ccircle%20cy%3D%2222.592%22%20cx%3D%22358.67%22%20r%3D%22.642%22%20fill%3D%22%23B7B9BA%22%2F%3E%09%09%09%3Ccircle%20cy%3D%2223.559%22%20cx%3D%22359.31%22%20r%3D%22.327%22%20fill%3D%22%23B7B9BA%22%2F%3E%09%3Cpath%20d%3D%22m563.65%20257.54c0%202.27-1.927%204.109-4.3%204.109h-395.24c-2.375%200-4.301-1.84-4.301-4.109v-6.24c0-2.27%201.926-4.109%204.301-4.109h395.24c2.373%200%204.3%201.84%204.3%204.109v6.24z%22%20fill%3D%22%23E9EBEA%22%2F%3E%09%3Cpath%20d%3D%22m563.65%20254.11c0%202.27-1.927%207.533-4.3%207.533h-395.24c-2.375%200-4.301-5.265-4.301-7.533h403.84z%22%20fill%3D%22%23CACDCC%22%2F%3E%09%09%09%3Cpolygon%20points%3D%22635.12%2066.572%20504.29%2042.859%20609.74%2081.207%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3Cpolyline%20points%3D%22609.74%2081.207%20593.45%20120.47%20504.29%2042.859%22%20fill%3D%22%23F1E7DD%22%2F%3E%09%09%09%3Cpolygon%20points%3D%22593.45%20120.47%20596.1%2088.104%20504.29%2042.859%22%20fill%3D%22%23D2D3C5%22%2F%3E%09%09%09%3Cpolygon%20points%3D%22504.29%2042.859%20554.69%20113.22%20596.1%2088.104%22%20fill%3D%22%23fff%22%2F%3E%09%09%3Cpath%20d%3D%22m682.96%20177.61l6.659%2073.471c0.271%202.982%202.908%205.182%205.892%204.912l83.215-7.543c2.983-0.271%205.184-2.91%204.911-5.891l-6.66-73.474-94.01%208.52z%22%20fill%3D%22%2351657C%22%2F%3E%09%09%3Cpath%20d%3D%22m774.3%20139.6c-0.271-2.982-2.906-5.182-5.892-4.91l-83.213%207.543c-2.983%200.27-5.183%202.908-4.912%205.891l2.673%2029.491%2094.017-8.522-2.68-29.49z%22%20fill%3D%22%232C455E%22%2F%3E%09%3Cpath%20d%3D%22m768.03%20208.17l-2.317-25.564c-0.246-2.715-2.866-4.696-5.851-4.426l-27.866%202.525%202.763%2030.48%2033.28-3.01z%22%20fill%3D%22%23F8FCFF%22%2F%3E%09%3Cpath%20d%3D%22m699.03%20217.15l2.315%2025.562c0.248%202.717%202.866%204.697%205.852%204.429l27.867-2.527-2.765-30.48-33.27%203.02z%22%20fill%3D%22%23F8FCFF%22%2F%3E%09%09%3Cpath%20d%3D%22m689.64%20159.98c-0.304-3.356%201.604-6.271%204.26-6.512l70.658-6.406c1.356-0.123%202.642%200.479%203.62%201.537-0.383-3.252-2.731-5.672-5.335-5.436l-70.66%206.404c-2.655%200.242-4.562%203.153-4.258%206.51l0.604%206.684c0.149%201.643%200.805%203.086%201.744%204.102-0.01-0.067-0.021-0.133-0.027-0.202l-0.59-6.67z%22%20fill%3D%22%23518F9F%22%2F%3E%09%09%3Cpath%20d%3D%22m693.9%20168.4l70.658-6.406c2.655-0.24%204.563-3.156%204.26-6.51l-0.606-6.683c-0.005-0.067-0.017-0.135-0.025-0.203-0.979-1.059-2.264-1.66-3.62-1.536l-70.658%206.405c-2.656%200.24-4.562%203.154-4.26%206.513l0.606%206.68c0.006%200.07%200.019%200.135%200.027%200.203%200.97%201.07%202.26%201.67%203.62%201.55z%22%20fill%3D%22%23B9DAEC%22%2F%3E%09%09%3Cpath%20d%3D%22m729.29%20180.95l-27.866%202.525c-2.982%200.27-5.203%202.69-4.958%205.405l2.318%2025.562%2033.271-3.016-2.76-30.47z%22%20fill%3D%22%23F8FCFF%22%2F%3E%09%09%3Cpath%20d%3D%22m714.96%20187.7l0.731%208.065%207.73-0.7%200.314%203.477-7.73%200.701%200.737%208.137-3.626%200.33-0.737-8.139-7.729%200.701-0.315-3.478%207.731-0.701-0.731-8.063%203.64-0.33z%22%20fill%3D%22%232C455E%22%2F%3E%09%3Cpath%20d%3D%22m756.35%20191.98l0.34%203.733-13.015%201.181-0.34-3.734%2013.01-1.18z%22%20fill%3D%22%232C455E%22%2F%3E%09%3Cpath%20d%3D%22m724.77%20224.46l-5.188%206.219%205.963%204.971-2.231%202.683-5.967-4.972-5.23%206.275-2.797-2.33%205.233-6.277-5.964-4.971%202.236-2.682%205.962%204.973%205.188-6.221%202.8%202.33z%22%20fill%3D%22%232C455E%22%2F%3E%09%09%3Cpath%20d%3D%22m735%20213.89l2.763%2030.48%2027.867-2.527c2.984-0.27%205.204-2.689%204.958-5.406l-2.315-25.562-33.28%203.02z%22%20fill%3D%22%23F8FCFF%22%2F%3E%09%09%09%3Cpath%20d%3D%22m743.33%20226.38l-0.312-3.424%2018.99-1.723%200.311%203.426-18.99%201.71zm0.69%207.62l-0.312-3.422%2018.991-1.723%200.31%203.424-18.99%201.72z%22%20fill%3D%22%232C455E%22%2F%3E%09%3Cpath%20d%3D%22m64.447%20196.91s9.733-10.83%2012.381-14.934%201.709-8.769%201.709-8.769l-3.679-17.072-28.992%204.052-0.014-0.066-0.438%200.129-0.454%200.062%200.015%200.065-28.086%208.254%203.678%2017.07s1.067%204.637%205.17%207.286c4.105%202.646%2017.434%208.507%2017.434%208.507s3.952%201.741%205.719%208.678c1.248%207.047-1.636%2010.263-1.636%2010.263s-9.732%2010.829-12.381%2014.936c-2.647%204.104-1.709%208.766-1.709%208.766l3.68%2017.074%2028.992-4.051%200.014%200.063%200.438-0.129%200.453-0.062-0.014-0.066%2028.085-8.25-3.679-17.072s-1.065-4.637-5.168-7.287c-4.104-2.646-17.433-8.506-17.433-8.506s-3.954-1.742-5.721-8.678c-1.248-7.05%201.636-10.26%201.636-10.26z%22%20fill%3D%22%23EDF7F9%22%2F%3E%09%09%3Cpath%20d%3D%22m12.946%20160.13c-0.945%200.203-1.545%201.135-1.341%202.078l1.602%207.436c0.204%200.945%201.134%201.547%202.079%201.345l31.004-6.685-2.341-10.856-31.003%206.67z%22%20fill%3D%22%23364A5E%22%2F%3E%09%09%3Cpath%20d%3D%22m78.634%20155.54l-1.603-7.436c-0.203-0.943-1.134-1.547-2.079-1.342l-31.004%206.682%202.341%2010.857%2031.002-6.685c0.945-0.2%201.546-1.13%201.343-2.08z%22%20fill%3D%22%232D3C51%22%2F%3E%09%09%3Cpath%20d%3D%22m98.756%20257.21c0.945-0.203%201.545-1.133%201.341-2.078l-1.602-7.434c-0.204-0.945-1.134-1.547-2.079-1.344l-31.004%206.684%202.34%2010.855%2031.001-6.69z%22%20fill%3D%22%232D3C51%22%2F%3E%09%09%3Cpath%20d%3D%22m33.068%20261.8l1.602%207.436c0.203%200.943%201.134%201.545%202.079%201.341l31.003-6.683-2.34-10.854-31.002%206.67c-0.944%200.2-1.546%201.13-1.342%202.08z%22%20fill%3D%22%23364A5E%22%2F%3E%09%09%09%3Cpath%20d%3D%22m24.908%20179.88c0.31%201.143%202.451%208.182%209.302%2011.598%207.63%203.803%2019.756%208.453%2019.756%208.453l-5.419-25.145-23.639%205.1z%22%20fill%3D%22%23F5825B%22%2F%3E%09%09%09%3Cpath%20d%3D%22m72.186%20169.69c0.188%201.168%201.136%208.465-3.7%2014.398-5.385%206.609-14.52%2015.842-14.52%2015.842l-5.419-25.145%2023.639-5.09z%22%20fill%3D%22%23E26D4D%22%2F%3E%09%09%09%3Cpath%20d%3D%22m87.537%20240.91c-0.31-1.143-2.451-8.184-9.303-11.596-7.629-3.808-19.756-8.457-19.756-8.457l5.42%2025.147%2023.639-5.09z%22%20fill%3D%22%23E26D4D%22%2F%3E%09%09%09%3Cpath%20d%3D%22m40.258%20251.1c-0.189-1.17-1.138-8.467%203.7-14.397%205.384-6.609%2014.519-15.845%2014.519-15.845l5.42%2025.148-23.639%205.09z%22%20fill%3D%22%23F5825B%22%2F%3E%09%09%09%3Cpath%20d%3D%22m55.385%20202.92c-0.087-0.402-0.484-0.658-0.885-0.572l0.313%201.457c0.402-0.09%200.659-0.49%200.572-0.89z%22%20fill%3D%22%23C0D5E0%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m53.928%20203.23c0.085%200.401%200.482%200.656%200.885%200.57l-0.313-1.457c-0.404%200.1-0.659%200.49-0.572%200.89z%22%20fill%3D%22%23C0D5E0%22%2F%3E%09%09%09%3Cpath%20d%3D%22m55.317%20209.68c0.087%200.402%200.483%200.658%200.887%200.572l-0.315-1.459c-0.402%200.09-0.658%200.49-0.572%200.89z%22%20fill%3D%22%23C0D5E0%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m56.774%20209.37c-0.087-0.4-0.483-0.656-0.885-0.57l0.315%201.459c0.401-0.09%200.657-0.49%200.57-0.89z%22%20fill%3D%22%23C0D5E0%22%2F%3E%09%09%09%3Cpath%20d%3D%22m58.164%20215.82c-0.086-0.4-0.483-0.656-0.884-0.57l0.313%201.457c0.403-0.09%200.657-0.49%200.571-0.89z%22%20fill%3D%22%23C0D5E0%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m56.707%20216.13c0.087%200.402%200.484%200.656%200.886%200.57l-0.313-1.457c-0.403%200.09-0.659%200.49-0.573%200.89z%22%20fill%3D%22%23C0D5E0%22%2F%3E%3C%2Fsvg%3E);
  height: 125px;
  margin: 0 auto;
  position: relative;
  top: 18px;
  left: 8px;
}
body.cms-digital-protection .main-container #section-2-computer-usage p {
  width: 150px;
  margin: 0 auto;
  position: relative;
  left: -10px;
  top: -92px;
  font-size: 0.8em;
  color: white;
}
body.cms-digital-protection .main-container #section-2-computer-usage p strong {
  font-size: 3.9em;
  line-height: 1;
}
body.cms-digital-protection .main-container #section-2-computer-usage p span {
  display: inline-block;
}
@media only screen and (min-width: 771px) {
  body.cms-digital-protection .main-container #section-2-computer-usage {
    height: 280px;
  }
  body.cms-digital-protection .main-container #section-2-computer-usage div {
    width: 607px;
    height: 200px;
    top: 38px;
    left: 12px;
  }
  body.cms-digital-protection .main-container #section-2-computer-usage p {
    width: 220px;
    left: -15px;
    top: -132px;
    font-size: 1.1em;
  }
}
body.cms-digital-protection .main-container #section-3-two-colors #left-row {
  position: relative;
  background-color: #d4edec;
  height: 160px;
}
body.cms-digital-protection .main-container #section-3-two-colors #left-row div {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22Desktop-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22196%22%20viewBox%3D%226.494%207.848%20318.011%20208.304%22%20width%3D%22300%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%206.494%207.848%20318.011%20208.304%22%3E%09%09%09%3Cpolygon%20points%3D%22166.58%20211.5%20101.82%20211.5%20105.52%20183.63%20163.4%20183.63%22%20fill%3D%22%23B5B5B6%22%2F%3E%09%09%09%3Cpath%20d%3D%22m6.494%20160.3v17.205c0%203.492%202.857%206.353%206.353%206.353h242.7c3.49%200%206.35-2.859%206.35-6.353v-17.205h-255.41z%22%20fill%3D%22%23CACDCC%22%2F%3E%09%09%09%3Cpath%20d%3D%22m261.9%2014.2c0-3.494-2.857-6.352-6.349-6.352h-242.7c-3.495%200-6.353%202.857-6.353%206.352v146.1h255.4v-146.1z%22%20fill%3D%22%23414042%22%2F%3E%09%09%09%3Crect%20y%3D%2216.317%22%20x%3D%2215.492%22%20height%3D%22135.51%22%20width%3D%22237.41%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3Cpolygon%20points%3D%22101.82%20211.5%20166.58%20211.5%20177.97%20214.19%2090.428%20214.25%22%20fill%3D%22%23CACDCC%22%2F%3E%09%09%09%3Cpolygon%20points%3D%22177.37%20215.68%2091.023%20215.68%2090.45%20214.25%20177.97%20214.19%22%20fill%3D%22%237C828B%22%2F%3E%09%09%09%3Cpath%20d%3D%22m138.74%20172.82c0%202.508-2.033%204.541-4.543%204.541-2.512%200-4.544-2.033-4.544-4.541%200-2.513%202.032-4.545%204.544-4.545%202.51%200%204.54%202.03%204.54%204.54z%22%20fill%3D%22%23414042%22%2F%3E%09%09%09%3Cpath%20d%3D%22m209.47%20101.11c-26.316%2026.317-26.318%2068.981-0.002%2095.302l95.299-95.299c-26.32-26.309-68.99-26.309-95.3%200z%22%20fill%3D%22%23F5825B%22%2F%3E%09%09%09%3Cpath%20d%3D%22m304.77%20101.12c-0.002%200-0.002-0.002-0.002-0.002l-95.301%2095.299c0%200.001%200.004%200.001%200.004%200.002%2026.312%2026.312%2068.979%2026.312%2095.297-0.004%2026.31-26.32%2026.31-68.99%200-95.3z%22%20fill%3D%22%23E26D4D%22%2F%3E%09%09%3Cpath%20d%3D%22m313.22%20148.77c0%2030.977-25.113%2056.096-56.1%2056.096-30.979%200-56.092-25.119-56.092-56.096%200-30.982%2025.113-56.097%2056.092-56.097%2030.98-0.002%2056.1%2025.107%2056.1%2056.097z%22%20fill%3D%22%23F3F2F3%22%2F%3E%09%09%3Cpath%20d%3D%22m257.12%20205.68c-31.392%200-56.921-25.537-56.921-56.92%200-31.385%2025.529-56.915%2056.921-56.915%2031.381%200%2056.913%2025.53%2056.913%2056.915%200.01%2031.39-25.53%2056.92-56.91%2056.92zm0-110.23c-29.399%200-53.315%2023.912-53.315%2053.31s23.916%2053.313%2053.315%2053.313c29.396%200%2053.312-23.916%2053.312-53.313%200.01-29.39-23.91-53.306-53.31-53.306z%22%20fill%3D%22%234D596A%22%2F%3E%09%09%09%3Cg%20fill%3D%22%234D596A%22%3E%09%09%09%09%3Crect%20y%3D%2294.283%22%20x%3D%22254.81%22%20height%3D%2213.571%22%20width%3D%224.611%22%2F%3E%09%09%09%09%3Crect%20y%3D%22189.68%22%20x%3D%22254.81%22%20height%3D%2213.575%22%20width%3D%224.611%22%2F%3E%09%09%09%3C%2Fg%3E%09%09%09%09%09%3Crect%20y%3D%22146.46%22%20x%3D%22298.03%22%20height%3D%224.613%22%20width%3D%2213.573%22%20fill%3D%22%234D596A%22%2F%3E%09%09%09%09%09%3Crect%20y%3D%22146.46%22%20x%3D%22202.64%22%20height%3D%224.613%22%20width%3D%2213.573%22%20fill%3D%22%234D596A%22%2F%3E%09%09%3Cpath%20d%3D%22m276.79%20165.64l-14.954-14.425c0.3-1.551-0.151-3.216-1.353-4.415-0.428-0.427-0.92-0.746-1.438-0.982l0.27-31.701c0.063-0.963-0.676-1.796-1.637-1.864-0.966-0.059-2.066%200.673-2.134%201.64v31.7c-0.739%200.231-1.442%200.617-2.026%201.205-1.929%201.926-1.932%205.045-0.006%206.971%201.278%201.279%203.082%201.687%204.715%201.267l14.967%2014.438c1.061%200.992%202.724%200.939%203.717-0.121%200.99-1.06%200.93-2.62-0.12-3.72z%22%20fill%3D%22%234D596A%22%2F%3E%3C%2Fsvg%3E);
  width: 160px;
  height: 100px;
  margin: 0 auto;
  position: relative;
  top: 30px;
  left: -75px;
}
body.cms-digital-protection .main-container #section-3-two-colors #left-row strong {
  margin: 0 auto;
  width: 100px;
  display: block;
  position: relative;
  top: -85px;
  font-size: 3em;
  left: 68px;
}
body.cms-digital-protection .main-container #section-3-two-colors #left-row p {
  width: 150px;
  position: relative;
  margin: 0 auto;
  top: -92px;
  left: 96px;
  font-weight: 300;
}
body.cms-digital-protection .main-container #section-3-two-colors #right-row {
  background-color: #a7e4e2;
  height: 160px;
  position: relative;
}
body.cms-digital-protection .main-container #section-3-two-colors #right-row strong {
  font-size: 1.8em;
}
body.cms-digital-protection .main-container #section-3-two-colors #right-row p {
  width: 150px;
  margin: 0 auto;
  position: relative;
  top: 33px;
  left: -80px;
  font-size: 0.9em;
}
body.cms-digital-protection .main-container #section-3-two-colors #right-row div {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22People-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%2252%22%20viewBox%3D%2210.845%2016.549%20654.982%20112.551%22%20width%3D%22300%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%2010.845%2016.549%20654.982%20112.551%22%3E%3Cg%20fill%3D%22%23364A5E%22%3E%09%3Cpath%20d%3D%22m237.29%2040.771c6.099%200%2011.058-4.959%2011.058-11.055%200-6.098-4.959-11.059-11.058-11.059-6.097%200-11.056%204.961-11.056%2011.059%200%206.096%204.96%2011.055%2011.06%2011.055z%22%2F%3E%09%3Cpath%20d%3D%22m261.58%2075.33c0.062-0.199%200.076-0.414%200.034-0.633l-5.069-26.896c-0.408-2.516-2.547-4.34-5.086-4.34h-28.333c-2.54%200-4.681%201.826-5.079%204.307l-5.077%2026.93c-0.04%200.219-0.028%200.434%200.036%200.633-0.041%200.248-0.06%200.481-0.06%200.721%200%202.849%202.316%205.164%205.164%205.164%202.49%200%204.624-1.778%205.078-4.26l3.198-20-0.041%2063.819c0%202.851%202.316%205.162%205.164%205.162%202.851%200%205.168-2.315%205.168-5.162v-31.59h1.232v31.59c0%202.851%202.316%205.162%205.165%205.162s5.163-2.315%205.163-5.162l-0.039-63.819%203.202%2020.03c0.452%202.449%202.583%204.229%205.073%204.229%202.849%200%205.164-2.315%205.164-5.164%200.02-0.244%200.01-0.482-0.03-0.726z%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23364A5E%22%3E%09%3Cpath%20d%3D%22m169.92%2039.867c6.314%200%2011.45-5.135%2011.45-11.449%200-6.312-5.136-11.447-11.45-11.447-6.312%200-11.447%205.135-11.447%2011.447%200.01%206.314%205.14%2011.449%2011.45%2011.449z%22%2F%3E%09%3Cpath%20d%3D%22m195.07%2075.646c0.062-0.205%200.078-0.429%200.033-0.654l-5.248-27.848c-0.422-2.605-2.635-4.494-5.264-4.494h-29.336c-2.63%200-4.845%201.891-5.259%204.459l-5.255%2027.883c-0.044%200.227-0.03%200.449%200.035%200.654-0.042%200.256-0.06%200.502-0.06%200.748%200%202.946%202.397%205.346%205.346%205.346%202.578%200%204.787-1.842%205.257-4.41l3.311-20.707-0.043%2066.078c0%202.951%202.399%205.346%205.349%205.346s5.35-2.398%205.35-5.346v-32.706h1.276v32.707c0%202.951%202.399%205.346%205.348%205.346s5.345-2.398%205.345-5.346l-0.042-66.078%203.316%2020.738c0.469%202.537%202.676%204.379%205.253%204.379%202.949%200%205.348-2.398%205.348-5.346-0.03-0.245-0.05-0.493-0.09-0.747z%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23364A5E%22%3E%09%3Cpath%20d%3D%22m102.56%2039.445c6.314%200%2011.45-5.135%2011.45-11.449%200-6.312-5.136-11.447-11.45-11.447-6.313%200-11.447%205.135-11.447%2011.447-0.004%206.315%205.131%2011.449%2011.447%2011.449z%22%2F%3E%09%3Cpath%20d%3D%22m127.7%2075.225c0.064-0.205%200.078-0.428%200.035-0.654l-5.249-27.848c-0.422-2.605-2.635-4.494-5.265-4.494h-29.331c-2.63%200-4.845%201.891-5.259%204.459l-5.256%2027.882c-0.042%200.227-0.029%200.45%200.036%200.655-0.041%200.256-0.06%200.502-0.06%200.748%200%202.946%202.398%205.346%205.347%205.346%202.578%200%204.787-1.842%205.257-4.41l3.311-20.707-0.042%2066.078c0%202.951%202.399%205.346%205.347%205.346%202.951%200%205.351-2.398%205.351-5.346v-32.708h1.275v32.707c0%202.951%202.398%205.346%205.348%205.346s5.346-2.398%205.346-5.346l-0.042-66.078%203.316%2020.738c0.468%202.537%202.675%204.379%205.253%204.379%202.95%200%205.347-2.398%205.347-5.346-0.02-0.246-0.04-0.494-0.08-0.748z%22%2F%3E%3C%2Fg%3E%09%09%3Cg%20fill%3D%22%23F5825B%22%3E%09%09%09%3Cpath%20d%3D%22m35.19%2041.193c6.1%200%2011.059-4.961%2011.059-11.059%200-6.096-4.959-11.055-11.059-11.055-6.096%200-11.055%204.959-11.055%2011.055%200.001%206.098%204.959%2011.059%2011.055%2011.059z%22%2F%3E%09%09%09%3Cpath%20d%3D%22m59.479%2075.75c0.062-0.199%200.076-0.414%200.034-0.633l-5.069-26.895c-0.408-2.518-2.545-4.342-5.084-4.342h-28.335c-2.541%200-4.681%201.826-5.081%204.307l-5.075%2026.93c-0.041%200.219-0.029%200.434%200.034%200.633-0.039%200.248-0.058%200.484-0.058%200.721%200%202.848%202.315%205.164%205.165%205.164%202.489%200%204.623-1.779%205.077-4.26l3.199-19.998-0.041%2063.818c0%202.852%202.317%205.164%205.164%205.164%202.85%200%205.167-2.318%205.167-5.164v-31.59h1.233v31.59c0%202.852%202.317%205.164%205.166%205.164%202.85%200%205.163-2.318%205.163-5.164l-0.04-63.818%203.202%2020.024c0.452%202.449%202.584%204.229%205.074%204.229%202.849%200%205.165-2.316%205.165-5.164-0.002-0.237-0.02-0.477-0.06-0.721z%22%2F%3E%09%09%3C%2Fg%3E%3Cg%20fill%3D%22%23364A5E%22%3E%09%3Cpath%20d%3D%22m304.65%2041.404c6.098%200%2011.057-4.959%2011.057-11.055%200-6.098-4.959-11.059-11.057-11.059s-11.057%204.961-11.057%2011.059c0.01%206.096%204.97%2011.055%2011.06%2011.055z%22%2F%3E%09%3Cpath%20d%3D%22m328.94%2075.963c0.062-0.199%200.075-0.414%200.034-0.633l-5.069-26.896c-0.408-2.516-2.547-4.34-5.086-4.34h-28.333c-2.541%200-4.682%201.826-5.08%204.307l-5.076%2026.93c-0.041%200.219-0.029%200.435%200.035%200.633-0.041%200.248-0.059%200.481-0.059%200.722%200%202.848%202.316%205.164%205.164%205.164%202.49%200%204.623-1.779%205.078-4.261l3.197-20-0.041%2063.82c0%202.85%202.316%205.161%205.164%205.161%202.852%200%205.168-2.315%205.168-5.161v-31.592h1.232v31.591c0%202.85%202.316%205.161%205.166%205.161%202.849%200%205.162-2.315%205.162-5.161l-0.039-63.82%203.203%2020.031c0.451%202.448%202.582%204.229%205.072%204.229%202.85%200%205.164-2.316%205.164-5.164%200.02-0.241%200-0.479-0.04-0.723z%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23364A5E%22%3E%09%3Cpath%20d%3D%22m574.12%2041.615c6.099%200%2011.058-4.959%2011.058-11.057s-4.959-11.057-11.058-11.057c-6.098%200-11.057%204.959-11.057%2011.057s4.96%2011.057%2011.06%2011.057z%22%2F%3E%09%3Cpath%20d%3D%22m598.4%2076.174c0.062-0.199%200.075-0.414%200.034-0.633l-5.069-26.896c-0.408-2.516-2.547-4.342-5.086-4.342h-28.333c-2.54%200-4.68%201.826-5.08%204.309l-5.076%2026.93c-0.039%200.219-0.028%200.435%200.035%200.633-0.04%200.246-0.06%200.482-0.06%200.722%200%202.848%202.316%205.164%205.164%205.164%202.49%200%204.623-1.779%205.078-4.263l3.198-19.998-0.041%2063.82c0%202.85%202.316%205.162%205.164%205.162%202.851%200%205.168-2.316%205.168-5.162v-31.59h1.232v31.59c0%202.85%202.315%205.162%205.164%205.162%202.85%200%205.163-2.316%205.163-5.164l-0.02-63.82%203.201%2020.029c0.452%202.45%202.583%204.229%205.073%204.229%202.849%200%205.164-2.315%205.164-5.164%200.01-0.238-0.01-0.476-0.05-0.72z%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23364A5E%22%3E%09%3Cpath%20d%3D%22m506.75%2040.709c6.313%200%2011.45-5.133%2011.45-11.447%200-6.312-5.137-11.447-11.45-11.447-6.312%200-11.447%205.135-11.447%2011.447%200%206.314%205.14%2011.447%2011.45%2011.447z%22%2F%3E%09%3Cpath%20d%3D%22m531.9%2076.49c0.063-0.207%200.078-0.43%200.034-0.656l-5.248-27.846c-0.423-2.607-2.635-4.496-5.265-4.496h-29.337c-2.63%200-4.845%201.891-5.259%204.461l-5.255%2027.881c-0.044%200.227-0.03%200.449%200.033%200.656-0.041%200.256-0.06%200.5-0.06%200.746%200%202.947%202.396%205.348%205.347%205.348%202.578%200%204.786-1.842%205.257-4.41l3.312-20.707-0.043%2066.078c0%202.949%202.398%205.344%205.349%205.344s5.351-2.397%205.351-5.344v-32.704h1.275v32.709c0%202.949%202.398%205.344%205.349%205.344%202.949%200%205.346-2.397%205.346-5.346l-0.042-66.076%203.316%2020.736c0.469%202.539%202.676%204.381%205.253%204.381%202.949%200%205.348-2.4%205.348-5.348%200-0.233-0.02-0.481-0.06-0.733z%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23364A5E%22%3E%09%3Cpath%20d%3D%22m439.38%2040.92c6.313%200%2011.45-5.133%2011.45-11.447%200-6.312-5.137-11.447-11.45-11.447-6.312%200-11.446%205.135-11.446%2011.447%200.01%206.314%205.14%2011.447%2011.45%2011.447z%22%2F%3E%09%3Cpath%20d%3D%22m464.53%2076.701c0.063-0.207%200.078-0.43%200.035-0.656l-5.249-27.846c-0.423-2.607-2.637-4.496-5.266-4.496h-29.337c-2.63%200-4.845%201.891-5.259%204.461l-5.24%2027.881c-0.041%200.227-0.029%200.449%200.035%200.656-0.04%200.256-0.06%200.5-0.06%200.746%200%202.947%202.397%205.348%205.348%205.348%202.576%200%204.785-1.842%205.257-4.41l3.311-20.707-0.042%2066.078c0%202.949%202.399%205.344%205.348%205.344%202.95%200%205.352-2.397%205.352-5.344v-32.713h1.275v32.709c0%202.949%202.397%205.344%205.348%205.344s5.347-2.397%205.347-5.346l-0.042-66.076%203.316%2020.736c0.468%202.539%202.674%204.381%205.253%204.381%202.95%200%205.347-2.4%205.347-5.348-0.03-0.242-0.05-0.49-0.09-0.742z%22%2F%3E%3C%2Fg%3E%09%3Cg%20fill%3D%22%23364A5E%22%3E%09%09%3Cpath%20d%3D%22m372.02%2042.248c6.101%200%2011.061-4.959%2011.061-11.057s-4.96-11.057-11.061-11.057c-6.096%200-11.055%204.959-11.055%2011.057s4.96%2011.057%2011.06%2011.057z%22%2F%3E%09%09%3Cpath%20d%3D%22m396.31%2076.807c0.062-0.199%200.076-0.414%200.033-0.633l-5.067-26.896c-0.408-2.518-2.546-4.342-5.085-4.342h-28.334c-2.54%200-4.682%201.826-5.08%204.309l-5.075%2026.93c-0.041%200.22-0.029%200.435%200.033%200.634-0.039%200.246-0.058%200.481-0.058%200.721%200%202.848%202.314%205.164%205.164%205.164%202.489%200%204.623-1.779%205.076-4.26l3.199-20-0.041%2063.82c0%202.851%202.316%205.162%205.164%205.162%202.85%200%205.167-2.315%205.167-5.162v-31.59h1.232v31.59c0%202.851%202.316%205.162%205.165%205.162%202.851%200%205.163-2.315%205.163-5.162l-0.04-63.82%203.202%2020.029c0.453%202.451%202.584%204.229%205.074%204.229%202.849%200%205.164-2.315%205.164-5.164%200.01-0.235%200-0.473-0.04-0.717z%22%2F%3E%09%3C%2Fg%3E%3Cg%20fill%3D%22%23364A5E%22%3E%09%3Cpath%20d%3D%22m641.48%2042.459c6.098%200%2011.057-4.959%2011.057-11.057s-4.959-11.057-11.057-11.057c-6.099%200-11.058%204.959-11.058%2011.057s4.96%2011.057%2011.06%2011.057z%22%2F%3E%09%3Cpath%20d%3D%22m665.77%2077.018c0.062-0.199%200.076-0.414%200.035-0.633l-5.069-26.896c-0.408-2.516-2.548-4.342-5.086-4.342h-28.332c-2.541%200-4.683%201.826-5.08%204.309l-5.076%2026.93c-0.041%200.22-0.029%200.435%200.035%200.634-0.041%200.246-0.06%200.481-0.06%200.721%200%202.848%202.316%205.164%205.164%205.164%202.49%200%204.623-1.779%205.078-4.262l3.197-19.999-0.041%2063.82c0%202.851%202.315%205.162%205.164%205.162%202.852%200%205.168-2.315%205.168-5.162v-31.59h1.231v31.59c0%202.851%202.316%205.162%205.166%205.162%202.849%200%205.162-2.315%205.162-5.164l-0.039-63.818%203.203%2020.029c0.451%202.451%202.582%204.229%205.072%204.229%202.85%200%205.164-2.315%205.164-5.163%200.02-0.237%200.01-0.475-0.03-0.719z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
  width: 127px;
  height: 53px;
  background-position: unset;
  background-size: 254px;
  margin: 0 auto;
  position: relative;
  top: -59px;
  left: 85px;
}
body.cms-digital-protection .main-container #section-3-two-colors #right-row div:nth-of-type(2) {
  background-position-x: -130px;
}
@media only screen and (min-width: 771px) {
  body.cms-digital-protection .main-container #section-3-two-colors {
    height: 291px;
  }
  body.cms-digital-protection .main-container #section-3-two-colors #left-row {
    display: inline-block;
    width: 50%;
    height: 291px;
  }
  body.cms-digital-protection .main-container #section-3-two-colors #left-row div {
    position: absolute;
    margin: 0;
    width: 265px;
    height: 177px;
    top: 20px;
    right: 115px;
    left: auto;
  }
  body.cms-digital-protection .main-container #section-3-two-colors #left-row strong {
    position: absolute;
    top: auto;
    left: auto;
    right: 277px;
    bottom: 5px;
  }
  body.cms-digital-protection .main-container #section-3-two-colors #left-row p {
    width: 237px;
    position: absolute;
    top: auto;
    left: auto;
    right: 20px;
    bottom: 20px;
    font-size: 1.2em;
    line-height: 1.2;
  }
  body.cms-digital-protection .main-container #section-3-two-colors #right-row {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    text-align: left;
    height: 291px;
  }
  body.cms-digital-protection .main-container #section-3-two-colors #right-row p {
    width: 300px;
    margin: 0;
    left: 40px;
    line-height: 1.2;
    position: absolute;
    top: 165px;
    font-size: 1.1em;
    font-weight: 300;
  }
  body.cms-digital-protection .main-container #section-3-two-colors #right-row strong {
    font-size: 2.2em;
    line-height: 1.2;
  }
  body.cms-digital-protection .main-container #section-3-two-colors #right-row div {
    width: 350px;
    height: 100px;
    margin: 0;
    background-size: 350px;
    top: 75px;
    left: 35px;
  }
  body.cms-digital-protection .main-container #section-3-two-colors #right-row div:nth-of-type(2) {
    display: none;
  }
}
body.cms-digital-protection .main-container #section-4-reasons {
  background-color: #f1f3f5;
}
body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper {
  max-width: 615px;
  color: #364a5e;
  text-align: center;
  padding: 30px 10px;
  margin: 0 auto;
}
body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper h2 {
  font-size: 18px;
  font-weight: bold;
  text-transform: none;
  color: inherit;
  margin-bottom: 20px;
}
body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container {
  width: 250px;
  margin: 0 auto;
}
body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container h3 {
  text-transform: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 10px;
  margin-bottom: 5px;
  font-family: "Circular Std", sans-serif;
  color: inherit;
}
body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container p {
  color: inherit;
  font-weight: 300;
  font-size: 1em;
  margin: 0 auto;
}
body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container > div {
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 0 13px;
  display: inline-block;
  vertical-align: top;
}
body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container .work-better .svg {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22WorkBetter-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22205%22%20viewBox%3D%227.474%208.072%20364.274%20249.179%22%20width%3D%22300%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%207.474%208.072%20364.274%20249.179%22%3E%09%09%3Cpolyline%20stroke%3D%22%233E4851%22%20points%3D%2249.699%20125.39%2049.699%20152.89%2095.305%20152.89%22%20stroke-miterlimit%3D%2210%22%20fill%3D%22none%22%2F%3E%09%09%3Cline%20y2%3D%22190.21%22%20x2%3D%2247.744%22%20stroke%3D%22%233E4851%22%20stroke-miterlimit%3D%2210%22%20y1%3D%22190.21%22%20x1%3D%2295.305%22%20fill%3D%22none%22%2F%3E%09%09%3Ccircle%20cy%3D%22153.07%22%20cx%3D%2293.149%22%20r%3D%223.329%22%20fill%3D%22%233E4851%22%2F%3E%09%09%3Ccircle%20cy%3D%22190.21%22%20cx%3D%2293.149%22%20r%3D%223.329%22%20fill%3D%22%233E4851%22%2F%3E%09%3Cg%20stroke%3D%22%233E4851%22%20stroke-miterlimit%3D%2210%22%20fill%3D%22none%22%3E%09%3Cline%20y2%3D%22113.8%22%20x2%3D%22189.4%22%20y1%3D%2245.947%22%20x1%3D%22189.4%22%2F%3E%09%3Cpolyline%20points%3D%22106.85%2037.211%20106.85%2092.166%20142.85%2092.166%20142.85%20113.8%22%2F%3E%09%3Cpolyline%20points%3D%22269.76%2037.211%20269.76%2092.166%20233.76%2092.166%20233.76%20113.8%22%2F%3E%09%3C%2Fg%3E%09%09%3Cpath%20d%3D%22m189.62%208.072c11.436%200%2020.713%209.271%2020.713%2020.715%200%2011.441-9.277%2020.723-20.713%2020.723-11.441%200-20.723-9.281-20.723-20.723-0.01-11.443%209.27-20.715%2020.72-20.715z%22%20fill%3D%22%2353C2BE%22%2F%3E%09%09%3Cpath%20d%3D%22m280.68%2032.471c9.912%205.727%2013.303%2018.395%207.584%2028.299-5.725%209.914-18.395%2013.312-28.299%207.586-9.912-5.717-13.311-18.387-7.584-28.299%205.72-9.907%2018.4-13.303%2028.3-7.586z%22%20fill%3D%22%23FBCD44%22%2F%3E%09%09%3Cpath%20d%3D%22m98.541%2032.471c9.914-5.717%2022.58-2.32%2028.299%207.586%205.725%209.912%202.328%2022.582-7.576%2028.299-9.914%205.727-22.582%202.328-28.299-7.586-5.723-9.905-2.324-22.573%207.58-28.299z%22%20fill%3D%22%23F5825B%22%2F%3E%09%09%3Cpath%20d%3D%22m371.75%20190.61c0%2011.442-9.271%2020.715-20.715%2020.715s-20.715-9.271-20.715-20.715%209.271-20.724%2020.715-20.724c11.44%200.01%2020.71%209.29%2020.71%2020.73z%22%20fill%3D%22%23F5825B%22%2F%3E%09%09%3Cpath%20d%3D%22m7.474%20190.21c0-11.443%209.271-20.723%2020.715-20.723%2011.442%200%2020.721%209.279%2020.721%2020.723%200%2011.434-9.279%2020.713-20.721%2020.713-11.443%200.01-20.715-9.27-20.715-20.71z%22%20fill%3D%22%23FBCD44%22%2F%3E%09%3Cpath%20d%3D%22m267.91%20125.39h-155.1c-2.223%200.01-4.041%201.826-4.041%204.057v104.32c0%202.229%201.826%204.058%204.064%204.058h59.188l-2.352%2017.66-7.273%201.762%2055.926-0.041-7.281-1.721-2.008-17.66h58.852c2.23%200%204.057-1.828%204.057-4.058v-104.32c-0.01-2.23-1.82-4.05-4.04-4.06zm-1.72%2091.98h-151.67v-86.572h151.67v86.57z%22%20fill%3D%22%23342F30%22%2F%3E%09%09%3Cpath%20d%3D%22m194.73%2031.758c-1.379%200-2.596%200.656-3.395%201.67l-7.4-3.781c0.098-0.359%200.164-0.738%200.164-1.127%200-0.432-0.074-0.836-0.193-1.223l7.354-3.76c0.802%201.051%202.046%201.738%203.472%201.738%202.408%200%204.354-1.939%204.354-4.35%200-2.402-1.946-4.35-4.354-4.35-2.396%200-4.351%201.947-4.351%204.35%200%200.395%200.074%200.77%200.164%201.127l-7.385%203.783c-0.799-1.01-2.016-1.672-3.402-1.672-2.41%200-4.357%201.953-4.357%204.355s1.947%204.35%204.357%204.35c1.418%200%202.67-0.693%203.463-1.752l7.361%203.766c-0.119%200.396-0.201%200.799-0.201%201.23%200%202.402%201.953%204.352%204.351%204.352%202.408%200%204.354-1.949%204.354-4.352%200-2.407-1.94-4.354-4.35-4.354z%22%20fill%3D%22%23fff%22%2F%3E%09%3Cg%20fill%3D%22%233E4851%22%3E%09%3Ccircle%20cy%3D%22113.8%22%20cx%3D%22189.39%22%20r%3D%223.329%22%2F%3E%09%3Ccircle%20cy%3D%22113.8%22%20cx%3D%22233.76%22%20r%3D%223.329%22%2F%3E%09%3Ccircle%20cy%3D%22113.8%22%20cx%3D%22142.85%22%20r%3D%223.33%22%2F%3E%09%3C%2Fg%3E%09%09%3Cpolyline%20stroke%3D%22%233E4851%22%20points%3D%22328.36%20125.39%20328.36%20152.89%20282.76%20152.89%22%20stroke-miterlimit%3D%2210%22%20fill%3D%22none%22%2F%3E%09%09%3Cline%20y2%3D%22190.21%22%20x2%3D%22330.32%22%20stroke%3D%22%233E4851%22%20stroke-miterlimit%3D%2210%22%20y1%3D%22190.21%22%20x1%3D%22282.76%22%20fill%3D%22none%22%2F%3E%09%09%3Ccircle%20cy%3D%22153.07%22%20cx%3D%22284.91%22%20r%3D%223.329%22%20fill%3D%22%233E4851%22%2F%3E%09%09%3Ccircle%20cy%3D%22190.21%22%20cx%3D%22284.91%22%20r%3D%223.329%22%20fill%3D%22%233E4851%22%2F%3E%09%3Crect%20y%3D%22140.17%22%20x%3D%22127.18%22%20height%3D%2225.617%22%20width%3D%2292.244%22%20fill%3D%22%23F5825B%22%2F%3E%09%3Crect%20y%3D%22170.91%22%20x%3D%22127.18%22%20height%3D%2215.512%22%20width%3D%2292.244%22%20fill%3D%22%234EBFD9%22%2F%3E%09%3Crect%20y%3D%22192.66%22%20x%3D%22127.18%22%20height%3D%2215.514%22%20width%3D%2292.244%22%20fill%3D%22%2353C2BE%22%2F%3E%09%3Crect%20y%3D%22140.17%22%20x%3D%22224.67%22%20height%3D%2267.996%22%20width%3D%2230.268%22%20fill%3D%22%23FBCD44%22%2F%3E%09%3Cpath%20id%3D%22WorkBetter-globe-3-icon%22%20d%3D%22m40.482%20190.79c0-7.049-5.717-12.561-12.561-12.561-6.796%200-12.562%205.455-12.562%2012.561%200%207.148%205.801%2012.562%2012.562%2012.562%206.803%200%2012.561-5.46%2012.561-12.56zm-18.504-4.61c-0.24%201.152-0.389%202.379-0.436%203.646h-3.604c0.16-1.687%200.738-3.25%201.629-4.588%200.774%200.39%201.59%200.7%202.411%200.94zm-0.431%205.57c0.055%201.277%200.213%202.514%200.464%203.672-0.841%200.248-1.646%200.553-2.426%200.943-0.9-1.344-1.485-2.918-1.646-4.615h3.608v0.01zm0.969%205.53c0.301%200.902%200.685%201.791%201.177%202.604-1.062-0.495-2.024-1.172-2.846-1.987%200.518-0.23%201.076-0.43%201.669-0.61zm6.368-2.64v-2.889h3.516c-0.052%201.129-0.191%202.215-0.408%203.23-0.993-0.18-2.036-0.3-3.108-0.34zm2.591%202.2c-0.472%201.35-1.335%203.104-2.591%203.785v-4.061c0.894%200.05%201.763%200.14%202.591%200.28zm-2.591-7.01v-2.852c1.083-0.043%202.138-0.16%203.141-0.349%200.206%201.008%200.336%202.086%200.381%203.199h-3.522zm0-4.78v-4.225c1.296%200.703%202.174%202.541%202.644%203.938-0.844%200.15-1.731%200.25-2.644%200.29zm-1.926-4.21v4.205c-0.901-0.039-1.777-0.135-2.611-0.283%200.468-1.39%201.336-3.2%202.611-3.92zm0%206.13v2.854h-3.489c0.045-1.113%200.175-2.191%200.381-3.199%200.992%200.19%202.036%200.31%203.108%200.35zm-3.075%208.01c-0.218-1.017-0.356-2.103-0.409-3.23h3.484v2.891c-1.059%200.05-2.092%200.16-3.075%200.34zm3.075%201.59v4.041c-1.238-0.695-2.09-2.426-2.559-3.769%200.818-0.14%201.677-0.23%202.559-0.27zm6.401%200.71c0.584%200.174%201.136%200.377%201.647%200.607-0.812%200.811-1.763%201.481-2.812%201.977%200.489-0.82%200.866-1.7%201.165-2.59zm0.505-1.86c0.251-1.158%200.409-2.395%200.464-3.672h3.577c-0.162%201.693-0.742%203.262-1.639%204.604-0.782-0.39-1.576-0.68-2.402-0.93zm2.419-10.17c0.887%201.334%201.461%202.895%201.621%204.574h-3.572c-0.047-1.266-0.196-2.492-0.436-3.645%200.818-0.24%201.625-0.54%202.387-0.93zm-1.253-1.53c-0.504%200.229-1.047%200.43-1.622%200.602-0.287-0.889-0.648-1.756-1.108-2.555%201.018%200.5%201.94%201.16%202.73%201.96zm-11.442-1.98c-0.47%200.812-0.832%201.684-1.121%202.576-0.584-0.174-1.135-0.379-1.645-0.613%200.8-0.81%201.734-1.47%202.766-1.97z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m31.816%2099.139c5.725-9.904%2018.395-13.303%2028.297-7.578%209.914%205.719%2013.303%2018.389%207.584%2028.299-5.715%209.906-18.385%2013.303-28.297%207.586-9.912-5.73-13.302-18.4-7.584-28.311z%22%20fill%3D%22%234EBFD9%22%2F%3E%09%09%3Cg%20fill%3D%22%23fff%22%3E%09%09%09%3Cpath%20d%3D%22m41.934%20106.58c0.244%200.172%200.982%200.686%202.215%201.539s2.176%201.512%202.832%201.973c0.072%200.051%200.225%200.16%200.459%200.328%200.234%200.17%200.428%200.307%200.584%200.412%200.154%200.104%200.342%200.221%200.561%200.35%200.221%200.131%200.428%200.229%200.621%200.293%200.195%200.064%200.375%200.098%200.541%200.098h0.022c0.166%200%200.346-0.033%200.541-0.098%200.193-0.064%200.402-0.162%200.621-0.293%200.221-0.129%200.406-0.246%200.562-0.35%200.154-0.105%200.35-0.242%200.582-0.412%200.234-0.168%200.389-0.277%200.461-0.328%200.662-0.461%202.348-1.633%205.057-3.514%200.525-0.367%200.965-0.811%201.318-1.328%200.354-0.52%200.529-1.062%200.529-1.633%200-0.475-0.17-0.881-0.514-1.221-0.342-0.338-0.746-0.508-1.215-0.508h-15.908c-0.555%200-0.98%200.188-1.279%200.562s-0.449%200.842-0.449%201.404c0%200.455%200.199%200.945%200.594%201.475%200.395%200.54%200.817%200.96%201.265%201.26z%22%2F%3E%09%09%09%3Cpath%20d%3D%22m58.359%20107.74c-2.363%201.6-4.158%202.844-5.381%203.729-0.412%200.303-0.744%200.539-1%200.709-0.256%200.168-0.598%200.342-1.021%200.518-0.426%200.178-0.822%200.266-1.189%200.266h-0.022c-0.367%200-0.764-0.088-1.189-0.266-0.424-0.176-0.764-0.35-1.02-0.518-0.256-0.17-0.59-0.406-1-0.709-0.973-0.713-2.764-1.955-5.371-3.729-0.41-0.273-0.775-0.586-1.092-0.939v8.58c0%200.477%200.17%200.883%200.508%201.221%200.34%200.34%200.746%200.51%201.221%200.51h15.908c0.475%200%200.883-0.17%201.221-0.51%200.34-0.338%200.508-0.744%200.508-1.221v-8.58c-0.309%200.34-0.67%200.66-1.081%200.94z%22%2F%3E%09%09%3C%2Fg%3E%09%3Cpath%20d%3D%22m270.32%2040.506c5.842%200%2010.576%203.848%2010.576%208.594%200%204.744-4.734%208.592-10.576%208.592-0.562%200-1.111-0.035-1.648-0.104-2.271%202.271-4.982%202.678-7.605%202.738v-0.556c1.416-0.693%202.646-1.957%202.646-3.4%200-0.201-0.017-0.398-0.045-0.592-2.394-1.576-3.922-3.982-3.922-6.678%200.01-4.746%204.74-8.594%2010.58-8.594z%22%20fill%3D%22%23fff%22%2F%3E%09%3Cpath%20d%3D%22m349.83%20190.6c0-0.666%200.541-1.207%201.207-1.207s1.207%200.541%201.207%201.207-0.541%201.207-1.207%201.207-1.21-0.54-1.21-1.21zm14.37%200c0%207.237-5.924%2013.162-13.162%2013.162-0.201%200-0.4-0.007-0.599-0.017-0.051-0.002-0.102-0.006-0.151-0.008-0.189-0.013-0.377-0.025-0.564-0.043-0.026-0.005-0.053-0.007-0.08-0.011-0.166-0.018-0.33-0.039-0.493-0.062-0.072-0.012-0.146-0.022-0.22-0.035-0.121-0.02-0.239-0.041-0.358-0.063-0.144-0.027-0.283-0.057-0.422-0.088-0.07-0.017-0.14-0.031-0.207-0.049-0.117-0.027-0.232-0.06-0.351-0.091-0.018-0.004-0.033-0.01-0.051-0.014-0.242-0.067-0.482-0.144-0.719-0.224-0.027-0.01-0.056-0.02-0.084-0.028-0.117-0.041-0.234-0.082-0.353-0.127-0.139-0.054-0.276-0.107-0.414-0.164-0.041-0.017-0.08-0.033-0.119-0.052-0.477-0.202-0.942-0.432-1.396-0.684l0.01-0.018c-1.994-1.158-3.658-2.824-4.817-4.818l-0.019%200.01c-0.984-1.672-1.613-3.697-1.731-5.836-0.003-0.047-0.007-0.094-0.007-0.141-0.01-0.201-0.018-0.402-0.018-0.604%200-7.238%205.924-13.162%2013.162-13.162%200.201%200%200.399%200.006%200.6%200.016%200.051%200.002%200.103%200.004%200.152%200.008%200.188%200.01%200.377%200.023%200.562%200.043%200.027%200.004%200.054%200.006%200.082%200.01%200.164%200.019%200.328%200.039%200.492%200.062%200.074%200.012%200.146%200.021%200.219%200.033%200.121%200.021%200.24%200.043%200.359%200.065%200.144%200.027%200.283%200.058%200.424%200.089%200.068%200.016%200.138%200.03%200.205%200.047%200.117%200.028%200.234%200.059%200.351%200.092%200.018%200.004%200.032%200.01%200.049%200.014%200.244%200.066%200.483%200.143%200.723%200.223%200.027%200.01%200.055%200.021%200.082%200.027%200.117%200.041%200.236%200.084%200.354%200.129%200.139%200.053%200.274%200.107%200.411%200.164%200.041%200.016%200.08%200.033%200.121%200.051%200.478%200.203%200.941%200.432%201.396%200.685l-0.01%200.018c1.993%201.158%203.659%202.824%204.817%204.818l0.019-0.011c0.983%201.67%201.612%203.695%201.731%205.836%200.004%200.048%200.006%200.095%200.008%200.142%200.02%200.19%200.03%200.39%200.03%200.59zm-7.41-9.97l-2.736%204.771c0.896%200.529%201.65%201.283%202.181%202.18l4.771-2.736c-1-1.74-2.46-3.2-4.21-4.21zm-10.14%209.97c0%202.412%201.975%204.387%204.387%204.387%202.414%200%204.387-1.975%204.387-4.387%200-2.414-1.973-4.388-4.387-4.388-2.42%200.01-4.39%201.98-4.39%204.39zm-1.37%209.98l2.737-4.771c-0.897-0.529-1.651-1.283-2.182-2.182l-4.771%202.738c1%201.74%202.46%203.2%204.21%204.21z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3Cpath%20d%3D%22m347.35%2099.146c5.726%209.904%202.326%2022.574-7.586%2028.299-9.903%205.717-22.573%202.318-28.299-7.586-5.719-9.91-2.32-22.58%207.586-28.299%209.91-5.715%2022.58-2.317%2028.3%207.595z%22%20fill%3D%22%234EBFD9%22%2F%3E%09%09%3Cg%20fill%3D%22%23fff%22%3E%09%09%09%3Cpath%20d%3D%22m327.62%20107.63c0%200.004%200.002%200.01%200.002%200.012h0.004v-0.01z%22%2F%3E%09%09%09%3Cpath%20d%3D%22m327.62%20107.63c-0.004-0.018-0.008-0.039-0.015-0.055%200.01%200.02%200.01%200.04%200.02%200.05z%22%2F%3E%09%09%09%3Cpolygon%20points%3D%22338.16%20107.64%20338.16%20107.64%22%2F%3E%09%09%09%3Cpath%20d%3D%22m338.16%20107.64v0z%22%2F%3E%09%09%09%3Cpath%20d%3D%22m341.12%2099.586c-2.299-2.76-8.783-4.709-14.258-3.146-5.763%201.643-8.66%205.256-9.039%2011.643-0.029%200.477-0.152%200.945-0.361%201.373l-1.46%202.99c-0.115%200.234-0.121%200.51-0.021%200.752%200.104%200.24%200.306%200.426%200.554%200.51l0.477%200.16c0.414%200.137%200.688%200.527%200.679%200.963-0.13%205.713%200.165%207.17%206.211%207.17%206.442%200%205.616-4.738%2013.403-5.662%205.76-0.68%207.77-12.01%203.82-16.744zm-1.57%207.424c0%200.363-0.291%200.639-0.654%200.639h-0.735c-0.002%200.004-0.002%200.006-0.002%200.008-0.133%200.52-0.338%201.016-0.605%201.465l0.517%200.52c0.26%200.256%200.26%200.676%200%200.934l-0.947%200.949c-0.258%200.256-0.674%200.256-0.932%200l-0.519-0.518c-0.438%200.264-0.92%200.465-1.43%200.596-0.002%200-0.004%200.373-0.01%200.732%200%200.361-0.296%200.652-0.658%200.652h-1.34c-0.179%200-0.343-0.068-0.47-0.193-0.125-0.127-0.192-0.295-0.19-0.469l0.008-0.711c-0.527-0.131-1.021-0.338-1.478-0.607l-0.514%200.518c-0.125%200.123-0.293%200.193-0.467%200.193-0.176%200-0.344-0.07-0.467-0.193l-0.951-0.949c-0.123-0.125-0.191-0.291-0.191-0.467%200-0.174%200.068-0.34%200.191-0.465l0.516-0.516c-0.268-0.449-0.473-0.939-0.602-1.461-0.002-0.004-0.002-0.01-0.004-0.016h-0.713c-0.363%200-0.652-0.277-0.652-0.641v-1.344c0-0.363%200.293-0.658%200.656-0.658h0.719l0.002-0.002c0.129-0.514%200.332-0.998%200.596-1.441l-0.518-0.518c-0.256-0.258-0.256-0.674%200-0.932l0.951-0.951c0.123-0.123%200.291-0.191%200.467-0.191%200.174%200%200.342%200.068%200.467%200.191l0.517%200.516c0.452-0.271%200.948-0.498%201.477-0.609l-0.01-0.721c0-0.176%200.067-0.344%200.194-0.469%200.123-0.123%200.289-0.193%200.468-0.193h1.342c0.36%200%200.656%200.291%200.658%200.654%200.004%200.365%200.006%200.744%200.01%200.744%200.51%200.131%200.988%200.334%201.428%200.598l0.519-0.518c0.125-0.125%200.291-0.193%200.467-0.193s0.342%200.068%200.467%200.191l0.949%200.951c0.256%200.258%200.256%200.674%200%200.932l-0.519%200.518c0.267%200.441%200.47%200.936%200.599%201.449%200.002%200.002%200.002%200.012%200.002%200.012h0.742c0.364%200%200.655%200.277%200.655%200.641v1.344l-0.05%200.01z%22%2F%3E%09%09%09%3Ccircle%20cy%3D%22106.34%22%20cx%3D%22332.89%22%20r%3D%221.854%22%2F%3E%09%09%3C%2Fg%3E%09%3Cg%20fill%3D%22%23fff%22%3E%09%09%3Cpath%20d%3D%22m99.508%2040.662v3.605c8.369%200%2015.18%206.816%2015.18%2015.195h3.615c0-10.362-8.43-18.8-18.792-18.8z%22%2F%3E%09%09%3Cpath%20d%3D%22m99.504%2047.049v3.604c2.346%200%204.553%200.918%206.213%202.58%201.66%201.658%202.576%203.875%202.576%206.23h3.621c-0.01-6.846-5.57-12.414-12.416-12.414z%22%2F%3E%09%09%3Cpath%20d%3D%22m102%2054.447c-1.381%200-2.502%201.125-2.502%202.498%200%201.381%201.121%202.494%202.502%202.494%201.385%200%202.506-1.113%202.506-2.494%200-1.371-1.12-2.498-2.51-2.498z%22%2F%3E%09%3C%2Fg%3E%3C%2Fsvg%3E);
  width: 222px;
  height: 155px;
  background-size: 222px 155px;
  margin: 0 auto;
}
body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container .browse-more .svg {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22BrowseMore-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22223%22%20viewBox%3D%228.269%2012.756%20240.494%20223.492%22%20width%3D%22240%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%208.269%2012.756%20240.494%20223.492%22%3E%09%09%09%09%3Cpath%20d%3D%22m189.33%20223.73c-1.774%204.762-7.078%207.186-11.843%205.41l-109.13-40.68c-4.765-1.775-7.185-7.078-5.409-11.84l58.849-157.87c1.775-4.764%207.076-7.188%2011.84-5.412l109.13%2040.678c4.764%201.775%207.188%207.078%205.41%2011.842l-58.85%20157.87z%22%20fill%3D%22%23E9EBEA%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m68.573%20187.9c-4.446-1.658-6.716-6.625-5.058-11.072l58.849-157.87c1.658-4.447%206.625-6.719%2011.072-5.061l109.12%2040.678c4.447%201.656%206.719%206.627%205.062%2011.072l-58.849%20157.87c-1.658%204.448-6.629%206.717-11.076%205.059l-109.11-40.68z%22%20fill%3D%22%23342F30%22%2F%3E%09%09%09%09%09%3Crect%20transform%3D%22matrix%28-.937%20-.3493%20.3493%20-.937%20258.98%20289.18%29%22%20height%3D%22151.26%22%20width%3D%22108.87%22%20y%3D%2245.607%22%20x%3D%22101.13%22%20fill%3D%22%23CACDCC%22%2F%3E%09%09%09%09%3Cpath%20opacity%3D%22.1%22%20enable-background%3D%22new%20%20%20%20%22%20d%3D%22m242.56%2054.576l-109.12-40.678c-4.445-1.658-9.413%200.613-11.07%205.061l-46.282%20124.14%20168.18-87.652c-0.53-0.346-1.09-0.643-1.71-0.872z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%09%09%3Cpolygon%20points%3D%22131.04%20205.33%20119.08%20200.84%20121.18%20195.2%20133.14%20199.69%22%20fill%3D%22%23342F30%22%2F%3E%09%09%09%09%09%3Cpath%20d%3D%22m119.71%20200.64l1.724-4.645%2010.992%204.127-1.726%204.643-10.98-4.13z%22%20fill%3D%22%234F4D4D%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m79.051%2079.566l-4.843%201.436-62.585%2018.562c-2.531%200.752-3.971%203.412-3.098%206.355l37.339%20125.95c0.436%201.471%201.334%202.646%202.44%203.366-0.177-0.174-0.346-0.362-0.504-0.559%201.26%201.293%203.012%201.893%204.667%201.402l6.614-1.961%2060.473-17.928c2.53-0.75%203.874-3.748%203-6.697l-37.335-125.94c-0.873-2.95-3.635-4.734-6.164-3.984z%22%20fill%3D%22%23342F30%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m88.059%20216.97c-0.075-0.254-0.179-0.486-0.291-0.721-0.021-0.008-0.041-0.016-0.062-0.023-1.024-1.805-3.188-2.742-5.263-2.127-2.08%200.617-3.379%202.586-3.245%204.664-0.009%200.014-0.02%200.027-0.03%200.041%200.03%200.254%200.065%200.508%200.14%200.76%200.011%200.035%200.031%200.064%200.042%200.103%200.01%200.035%200.01%200.071%200.021%200.106%200.074%200.252%200.179%200.484%200.292%200.72%200.021%200.008%200.041%200.016%200.061%200.024%201.025%201.805%203.188%202.74%205.263%202.125%202.083-0.617%203.38-2.586%203.247-4.664%200.009-0.014%200.021-0.026%200.03-0.041-0.028-0.256-0.066-0.506-0.142-0.758-0.01-0.037-0.029-0.066-0.04-0.102-0.011-0.04-0.014-0.08-0.023-0.11z%22%20fill%3D%22%234F4D4D%22%2F%3E%09%09%09%09%3Cpath%20d%3D%22m88.262%20217.94c-0.858%201.179-1.859%202.162-3.861%202.756-2.58%200.767-3.54%200.275-4.739-0.2-0.009-0.007-0.012-0.007-0.019-0.011%200.014%200.025%200.03%200.047%200.043%200.074%200.055%200.101%200.118%200.191%200.181%200.291%200.087%200.146%200.177%200.293%200.284%200.432%200.069%200.091%200.149%200.175%200.223%200.257%200.117%200.129%200.237%200.252%200.364%200.36%200.08%200.072%200.165%200.136%200.249%200.203%200.144%200.105%200.294%200.207%200.446%200.295%200.083%200.056%200.168%200.099%200.255%200.146%200.169%200.088%200.347%200.16%200.524%200.226%200.084%200.026%200.167%200.061%200.25%200.088%200.196%200.055%200.397%200.092%200.607%200.129%200.071%200.008%200.146%200.024%200.22%200.035%200.232%200.021%200.464%200.018%200.701%200.01%200.053-0.002%200.11-0.002%200.165-0.004%200.289-0.027%200.581-0.078%200.871-0.164%200.002-0.002%200.004-0.004%200.007-0.004%200.004-0.002%200.005%200%200.005%200%200.023-0.008%200.034-0.019%200.052-0.023%202.149-0.666%203.491-2.551%203.198-4.703-0.001-0.027%200-0.053-0.006-0.078-0.003-0.039%200.001-0.084-0.008-0.127-0.002-0.03-0.009-0.03-0.012-0.02z%22%20fill%3D%22%234F4D4D%22%2F%3E%09%09%09%09%3Cpath%20opacity%3D%22.1%22%20enable-background%3D%22new%20%20%20%20%22%20d%3D%22m54.999%2093.025l-15.531%204.604c-0.197%200.059-0.405%200.041-0.606-0.033%200.36%200.633%200.914%200.994%201.399%200.852l14.516-4.305c0.487-0.145%200.756-0.75%200.71-1.475-0.128%200.17-0.293%200.299-0.488%200.357z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%09%3Crect%20transform%3D%22matrix%28.9587%20-.2843%20.2843%20.9587%20-41.523%2024.914%29%22%20height%3D%22115.66%22%20width%3D%2267.699%22%20y%3D%2297.656%22%20x%3D%2231.208%22%20fill%3D%22%23F5825B%22%2F%3E%09%09%09%3Cg%20opacity%3D%22.1%22%3E%09%09%09%09%09%09%3Cpolygon%20points%3D%2280.912%2090.455%2016.003%20109.7%2039.085%20187.56%2081.207%2091.451%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3C%2Fg%3E%3C%2Fsvg%3E);
  width: 129px;
  height: 119px;
  background-size: 129px 119px;
  margin: 0 auto;
}
body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container .stay-stylish .svg {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22StayStylish-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22202%22%20viewBox%3D%225.369%2026.385%20260.672%20201.864%22%20width%3D%22261%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%205.369%2026.385%20260.672%20201.864%22%3E%09%09%3Cpath%20d%3D%22m93.088%2037.777c-6.775-1.727-12.924-2.148-13.617-2.152-13.657%200-58.334%202.172-59.831%2030.121-0.84%2015.699%202.545%2027.68%2010.063%2035.605%206.209%206.549%2015.229%2010.387%2026.809%2011.408%2011.703%201.033%2022.918-4.41%2033.312-16.113%208.211-9.24%2015.604-22.129%2021.383-37.273%201.796-4.707%201.553-8.625-0.743-11.979-2.82-4.114-8.83-7.438-17.382-9.618z%22%20fill%3D%22%23FBCD44%22%2F%3E%09%09%3Cpath%20d%3D%22m160.34%2035.625c-0.692%200.004-6.842%200.426-13.616%202.152-8.552%202.18-14.561%205.504-17.376%209.617-2.296%203.354-2.539%207.271-0.743%2011.979%205.779%2015.145%2013.172%2028.033%2021.384%2037.273%2010.396%2011.703%2021.627%2017.148%2033.312%2016.113%2011.578-1.021%2020.6-4.859%2026.809-11.408%207.519-7.926%2010.902-19.906%2010.062-35.605-1.48-27.948-46.16-30.12-59.82-30.12z%22%20fill%3D%22%23FBCD44%22%2F%3E%09%09%3Cpath%20opacity%3D%22.1%22%20enable-background%3D%22new%20%20%20%20%22%20d%3D%22m89.943%2037.055c-5.436-1.123-9.889-1.426-10.473-1.43-13.657%200-58.334%202.172-59.831%2030.121-0.84%2015.699%202.545%2027.68%2010.063%2035.605%200.453%200.479%200.927%200.939%201.41%201.389l59.045-65.516c-0.069-0.056-0.143-0.111-0.214-0.169z%22%2F%3E%09%09%3Cpath%20opacity%3D%22.1%22%20enable-background%3D%22new%20%20%20%20%22%20d%3D%22m160.34%2035.625c-0.692%200.004-6.842%200.426-13.616%202.152-8.552%202.18-14.561%205.504-17.376%209.617-2.296%203.354-2.539%207.271-0.743%2011.979%205.06%2013.262%2011.36%2024.795%2018.362%2033.664l47.666-52.887c-13.01-3.984-27.49-4.525-34.29-4.525z%22%2F%3E%09%09%3Cpath%20d%3D%22m225.64%2060.223c-2.167-9.543-9.613-20.414-30.441-26.422-2.366-0.682-4.862-1.281-7.459-1.809%2018.65-0.201-123.84-16.141-157.15%206.648l-1.887%202.096c-6.841%204.369-12.548%2010.6-14.538%2019.486h-6.105v15.234h5.438c0.819%2012.676%204.735%2022.799%2011.714%2030.154%207.28%207.676%2017.627%2012.154%2030.755%2013.312%201.107%200.098%202.228%200.148%203.33%200.148%2012.529%200%2024.357-6.162%2035.154-18.314%2010.994-12.377%2018.324-28.137%2022.539-39.178%200.486-1.273%200.832-2.484%201.084-3.645%201.426-0.969%203.016-0.859%204.281%202.301%200.143%200.443%200.296%200.889%200.469%201.344%204.214%2011.041%2011.545%2026.801%2022.537%2039.178%2010.798%2012.152%2022.625%2018.314%2035.154%2018.314%201.104%200%202.223-0.051%203.33-0.148%2013.129-1.158%2023.477-5.637%2030.756-13.312%206.979-7.355%2010.896-17.479%2011.715-30.154h4.863v-15.233h-5.54zm-132.55-22.446c8.551%202.18%2014.56%205.504%2017.376%209.617%202.296%203.354%202.539%207.271%200.743%2011.979-5.779%2015.145-13.172%2028.033-21.383%2037.273-10.387%2011.704-21.602%2017.144-33.305%2016.114-11.579-1.021-20.6-4.859-26.809-11.408-7.518-7.924-10.903-19.905-10.063-35.604%201.497-27.949%2046.174-30.121%2059.831-30.121%200.693%200.004%206.841%200.426%2013.617%202.152zm56.902%2058.869c-8.213-9.24-15.604-22.129-21.384-37.273-1.796-4.707-1.553-8.625%200.743-11.979%202.816-4.113%208.825-7.438%2017.375-9.617%206.775-1.727%2012.926-2.148%2013.617-2.152%2013.657%200%2058.332%202.172%2059.831%2030.121%200.841%2015.699-2.545%2027.68-10.063%2035.605-6.209%206.549-15.229%2010.387-26.808%2011.408-11.68%201.04-22.91-4.41-33.31-16.114z%22%20fill%3D%22%23364A5E%22%2F%3E%09%09%3Cpath%20d%3D%22m88.261%20213.48c-13.223%2013.635-44.02%2013.607-56.722%203.988-14.003-10.605-11.496-43.107-8.896-49.791%204.044-10.375%2022.993-9.699%2038.503-8.729%2015.509%200.971%2033.718%203.646%2038.828%2012.07%204.776%207.86-0.137%2030.52-11.713%2042.46z%22%20fill%3D%22%23fff%22%2F%3E%09%09%3Cpath%20d%3D%22m207.69%20217.46c-12.703%209.619-43.5%209.646-56.723-3.988-11.578-11.938-16.485-34.594-11.713-42.461%205.109-8.424%2023.316-11.1%2038.828-12.07%2015.508-0.971%2034.458-1.646%2038.501%208.729%202.59%206.69%205.1%2039.19-8.9%2049.79z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3Cpath%20d%3D%22m88.261%20213.48c-13.223%2013.635-44.02%2013.607-56.722%203.988-14.003-10.605-11.496-43.107-8.896-49.791%204.044-10.375%2022.993-9.699%2038.503-8.729%2015.509%200.971%2033.718%203.646%2038.828%2012.07%204.776%207.86-0.137%2030.52-11.713%2042.46z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3Cpath%20d%3D%22m207.69%20217.46c-12.703%209.619-43.5%209.646-56.723-3.988-11.578-11.938-16.485-34.594-11.713-42.461%205.109-8.424%2023.316-11.1%2038.828-12.07%2015.508-0.971%2034.458-1.646%2038.501%208.729%202.59%206.69%205.1%2039.19-8.9%2049.79z%22%20fill%3D%22%23fff%22%2F%3E%09%09%09%3Cpath%20d%3D%22m59.313%20156.39c-12.768-0.781-32.048-0.393-39.715%204.914-7.668%205.309-4.915%2021.434-3.342%2028.902%201.213%205.764%203.392%2014.455%207.34%2019.93l47.319-51.717c-4.394-0.67-8.557-1.84-11.602-2.02z%22%20fill%3D%22%23EDEDED%22%2F%3E%09%09%09%3Cpath%20d%3D%22m170.67%20156.39c-9.634%200.59-30.475%203.146-34.406%2010.617-3.933%207.471%201.92%2029.287%205.897%2036.766%201.044%201.963%202.248%203.711%203.601%205.277l47.254-51.645c-7.53-0.74-15.79-1.43-22.34-1.03z%22%20fill%3D%22%23EDEDED%22%2F%3E%09%09%09%09%3ClinearGradient%20id%3D%22StayStylish-SVGID_1_%22%20y2%3D%22159.74%22%20gradientUnits%3D%22userSpaceOnUse%22%20x2%3D%22119.62%22%20gradientTransform%3D%22matrix%281%200%200%20-1%200%20351%29%22%20y1%3D%22141.17%22%20x1%3D%22119.62%22%3E%09%09%09%09%3Cstop%20stop-color%3D%22%23D1D3D4%22%20offset%3D%220%22%2F%3E%09%09%09%09%3Cstop%20offset%3D%221%22%2F%3E%09%09%09%3C%2FlinearGradient%3E%09%09%09%3Cpath%20d%3D%22m233.79%20155.22c-0.19-0.758-32.611-5.541-57.536-2.893-24.768%202.629-44.811%208.99-56.637%209.072-11.827-0.082-31.869-6.443-56.637-9.072-24.925-2.648-57.346%202.135-57.536%202.893-0.189%200.756%200.056%2013.246%200.056%2013.246s5.522%201.428%207.075%207.482c2.075%208.088%203.124%2025.965%206.483%2033.459%203.711%208.283%2010.803%2022.99%2051.329%2017.732%2019.43-2.521%2029.218-17.986%2034.308-30.14%205.777-13.795%205.513-19.89%2014.922-19.906%209.408%200.019%209.145%206.111%2014.924%2019.906%205.089%2012.151%2014.877%2027.619%2034.306%2030.14%2040.525%205.258%2047.617-9.449%2051.33-17.732%203.359-7.494%204.407-25.371%206.481-33.459%201.553-6.055%207.141-7.453%207.141-7.453s0.19-12.52%200-13.28zm-145.53%2058.26c-13.223%2013.635-44.02%2013.607-56.722%203.988-14.003-10.605-11.496-43.107-8.896-49.791%204.044-10.375%2022.993-9.699%2038.503-8.729%2015.509%200.971%2033.718%203.646%2038.828%2012.07%204.776%207.86-0.137%2030.52-11.713%2042.46zm119.43%203.98c-12.703%209.619-43.5%209.646-56.723-3.988-11.578-11.938-16.485-34.594-11.713-42.461%205.109-8.424%2023.316-11.1%2038.828-12.07%2015.508-0.971%2034.458-1.646%2038.501%208.729%202.59%206.69%205.1%2039.19-8.9%2049.79z%22%20fill%3D%22url%28%23StayStylish-SVGID_1_%29%22%2F%3E%09%09%09%3Cpath%20d%3D%22m119.61%20161.4c-4.047-0.029-9.057-0.791-14.888-1.89l4.728%2025.177c2.165-5.185%204.264-7.582%2010.16-7.593%205.896%200.011%207.993%202.408%2010.16%207.593l4.728-25.177c-5.83%201.1-10.84%201.86-14.89%201.89z%22%20fill%3D%22%23232323%22%2F%3E%09%09%3Ccircle%20cy%3D%2272.729%22%20cx%3D%22240.04%22%20r%3D%2226%22%20fill%3D%22%23F5825B%22%2F%3E%09%09%3Cpath%20d%3D%22m232%2084.221c-0.953%200.951-2.496%200.951-3.448%200-0.952-0.953-0.952-2.496%200-3.447l19.534-19.535c0.953-0.953%202.496-0.953%203.448%200%200.952%200.951%200.952%202.496%200%203.447l-19.53%2019.535z%22%20fill%3D%22%23fff%22%2F%3E%09%09%3Cpath%20d%3D%22m248.08%2084.221c0.953%200.951%202.496%200.951%203.448%200%200.952-0.953%200.952-2.496%200-3.447l-19.534-19.535c-0.953-0.953-2.496-0.953-3.448%200-0.952%200.951-0.952%202.496%200%203.447l19.53%2019.535z%22%20fill%3D%22%23fff%22%2F%3E%09%09%3Ccircle%20cy%3D%22189.89%22%20cx%3D%22240.04%22%20r%3D%2226%22%20fill%3D%22%2353C2BE%22%2F%3E%09%09%3Cpath%20d%3D%22m256.41%20178.4c-0.952-0.953-2.495-0.953-3.448%200l-17.793%2017.793-8.043-8.043c-0.953-0.953-2.496-0.953-3.448%200-0.952%200.951-0.952%202.496%200%203.447l9.257%209.256c0.059%200.059%200.125%200.102%200.188%200.153%200.088%200.132%200.189%200.259%200.307%200.375%200.952%200.951%202.495%200.951%203.448%200l19.534-19.534c0.94-0.95%200.94-2.5-0.01-3.45z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E);
  width: 163px;
  height: 128px;
  background-size: 163px 128px;
  margin: 0 auto;
}
body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container .sleep-better .svg {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20id%3D%22SleepBetter-Layer_1%22%20xml%3Aspace%3D%22preserve%22%20height%3D%22181%22%20viewBox%3D%2247.989%2033.543%20181.49%20181.488%22%20width%3D%22181%22%20version%3D%221.1%22%20y%3D%220px%22%20x%3D%220px%22%20enable-background%3D%22new%2047.989%2033.543%20181.49%20181.488%22%3E%3Cpath%20d%3D%22m195.33%20161.65c-20.557%200-39.566-6.607-55.036-17.806l10.127-16.366c0.509-0.82%200.665-1.787%200.444-2.724s-0.793-1.729-1.611-2.233c-0.296-0.183-0.626-0.302-0.971-0.349l-30.984-4.275c-0.41-0.158-0.848-0.24-1.291-0.24-0.083%200-0.164%200.01-0.246%200.016-9.113-14.477-14.391-31.611-14.391-49.982%200-12.051%202.294-23.559%206.427-34.145-35%2013.654-59.811%2047.679-59.811%2087.517%200%2051.893%2042.066%2093.959%2093.959%2093.959%2039.842%200%2073.866-24.809%2087.53-59.812-10.59%204.13-22.1%206.43-34.15%206.43z%22%20fill%3D%22%23FFE196%22%2F%3E%3Cpath%20d%3D%22m141.95%20186.53c-47.04%200-86.005-34.566-92.881-79.686-0.705%204.641-1.078%209.389-1.078%2014.225%200%2051.893%2042.066%2093.959%2093.959%2093.959%2039.842%200%2073.866-24.809%2087.53-59.812-7.312%202.855-15.074%204.808-23.144%205.757-16.82%2015.85-39.46%2025.56-64.39%2025.56z%22%20fill%3D%22%23FBCD44%22%2F%3E%3Cpath%20d%3D%22m89.581%20134.16c-3.639%200-7.277-1.385-10.048-4.152-1.172-1.172-1.172-3.072-0.001-4.244%201.172-1.172%203.071-1.17%204.243%200%203.202%203.201%208.412%203.201%2011.612%200s3.201-8.412%200-11.611c-1.172-1.172-1.172-3.07%200-4.242%201.17-1.172%203.07-1.172%204.242%200%205.54%205.539%205.541%2014.553%200.001%2020.096-2.771%202.76-6.409%204.14-10.049%204.14z%22%20fill%3D%22%23364A5E%22%2F%3E%3Cg%20fill%3D%22%234EBFD9%22%3E%3Cpath%20d%3D%22m167.24%2066.305l10.504-18.963v-0.141h-8.812c-0.353%200-0.67-0.318-0.67-0.67v-2.926c0-0.354%200.317-0.67%200.67-0.67h14.733c0.353%200%200.67%200.316%200.67%200.67v0.457l-10.362%2019.211v0.07h8.987c0.388%200%200.67%200.318%200.67%200.67v2.926c0%200.352-0.282%200.67-0.67%200.67h-15.051c-0.353%200-0.67-0.318-0.67-0.67v-0.634z%22%2F%3E%3Cpath%20d%3D%22m137.51%2079.768l5.004-9.234v-0.07h-4.019c-0.353%200-0.634-0.318-0.634-0.67v-2.434c0-0.387%200.281-0.67%200.634-0.67h9.306c0.529%200%200.883%200.494%200.6%200.953l-5.11%209.305v0.104h3.808c0.388%200%200.67%200.283%200.67%200.67v2.396c0%200.354-0.282%200.67-0.67%200.67h-8.918c-0.353%200-0.67-0.316-0.67-0.67v-0.35z%22%2F%3E%3Cpath%20d%3D%22m175.79%20110.43l5.005-9.234v-0.07h-4.02c-0.353%200-0.633-0.316-0.633-0.67v-2.432c0-0.389%200.28-0.67%200.633-0.67h9.307c0.529%200%200.882%200.494%200.6%200.951l-5.111%209.307v0.104h3.808c0.388%200%200.67%200.281%200.67%200.67v2.396c0%200.352-0.282%200.67-0.67%200.67h-8.917c-0.354%200-0.67-0.318-0.67-0.67l-0.01-0.36z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
  width: 161px;
  height: 156px;
  background-size: 161px 156px;
  margin: 0 auto;
}
@media only screen and (min-width: 771px) {
  body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper {
    max-width: 1000px;
    padding: 30px;
  }
  body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper h2 {
    font-size: 25px;
  }
  body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container {
    width: auto;
    margin-bottom: 5px;
  }
  body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container p {
    width: 170px;
  }
  body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container > div {
    width: 25%;
  }
  body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container > div.work-better .svg {
    width: initial;
    background-size: contain;
  }
  body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container > div.work-better .svg, body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container > div.browse-more .svg, body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container > div.stay-stylish .svg, body.cms-digital-protection .main-container #section-4-reasons #section-4-reasons-content-wrapper #reason-container > div.sleep-better .svg {
    height: 155px;
    margin-bottom: 5px;
  }
}
body.cms-digital-protection .main-container #section-5-how-to-get {
  min-height: 200px;
  text-align: center;
  padding: 30px 10px;
}
body.cms-digital-protection .main-container #section-5-how-to-get h2 {
  font-size: 18px;
  font-weight: bold;
  text-transform: none;
  color: inherit;
  margin-bottom: 10px;
}
body.cms-digital-protection .main-container #section-5-how-to-get p {
  font-size: 13px;
  margin: 0 auto;
  max-width: 310px;
}
body.cms-digital-protection .main-container #section-5-how-to-get ol {
  counter-reset: step-counter;
  font-family: "Circular Std", sans-serif;
  color: #364a5e;
  margin-bottom: 35px;
}
body.cms-digital-protection .main-container #section-5-how-to-get ol li {
  margin: 30px auto 0 auto;
  font-family: "Circular Std", sans-serif;
  color: #364a5e;
  max-width: 200px;
}
body.cms-digital-protection .main-container #section-5-how-to-get ol li h3 {
  font-weight: bold;
  font-size: 1.1em;
  text-transform: none;
  margin-bottom: 3px;
  font-family: inherit;
  color: inherit;
}
body.cms-digital-protection .main-container #section-5-how-to-get ol li p {
  font-style: normal;
  font-size: 0.95em;
  line-height: 1.2em;
  font-family: inherit;
  color: inherit;
}
body.cms-digital-protection .main-container #section-5-how-to-get ol li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #46C2AC;
  width: 34px;
  height: 34px;
  -moz-border-radius: 17px;
  -webkit-border-radius: 17px;
  border-radius: 17px;
  display: inline-block;
  color: white;
  font-family: "Circular Std", sans-serif;
  font-style: normal;
  font-size: 1.2em;
  line-height: 34px;
  margin-bottom: 15px;
}
body.cms-digital-protection .main-container #section-5-how-to-get .widget-category-link a {
  color: white;
  width: 185px;
  height: 45px;
  background-color: #222222;
  display: inline-block;
  padding-top: 13px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 10px;
}
@media only screen and (min-width: 771px) {
  body.cms-digital-protection .main-container #section-5-how-to-get {
    padding: 30px;
  }
  body.cms-digital-protection .main-container #section-5-how-to-get h2 {
    font-size: 25px;
  }
  body.cms-digital-protection .main-container #section-5-how-to-get p {
    font-size: 14px;
    max-width: 450px;
  }
  body.cms-digital-protection .main-container #section-5-how-to-get ol {
    max-width: 700px;
    margin: 30px auto 40px auto;
  }
  body.cms-digital-protection .main-container #section-5-how-to-get ol li {
    margin-top: 0;
    float: left;
    width: 33.33333%;
    padding: 0 30px;
    max-width: none;
  }
  body.cms-digital-protection .main-container #section-5-how-to-get ol li:nth-of-type(2) {
    border-left: 2px #f1f3f5 solid;
    border-right: 2px #f1f3f5 solid;
  }
  body.cms-digital-protection .main-container #section-5-how-to-get ol:after {
    content: '';
    display: table;
    clear: both;
  }
}

body.cms-about-us ol.nav-primary li.nav-3 a {
  color: #46C2AC;
}
body.cms-about-us .main-container {
  position: relative;
  margin-top: 30px;
  font-family: "Circular Std", sans-serif;
  color: #222222;
}
body.cms-about-us .main-container h1, body.cms-about-us .main-container h2, body.cms-about-us .main-container h3, body.cms-about-us .main-container h4 {
  color: black;
  font-family: inherit;
  font-weight: bold;
  font-size: 18px;
}
body.cms-about-us .main-container h1 {
  text-transform: capitalize;
  margin-bottom: 0.2em;
}
body.cms-about-us .main-container h2 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 45px;
  font-style: normal;
  line-height: 1.3;
}
body.cms-about-us .main-container h3 {
  text-transform: capitalize;
  font-size: 15px;
}
body.cms-about-us .main-container h4 {
  color: #46C2AC;
  text-transform: capitalize;
  margin: 5px 0 0 0;
  font-size: 15px;
}
@media only screen and (min-width: 771px) {
  body.cms-about-us .main-container h1, body.cms-about-us .main-container h2 {
    font-size: 32px;
    margin-bottom: 0.7em;
  }
  body.cms-about-us .main-container h4 {
    font-size: 18px;
    margin: 20px 0 0 0;
  }
}
body.cms-about-us .main-container #about-us-header {
  color: inherit;
  font-family: inherit;
  position: relative;
  background-image: url("//res.cloudinary.com/park-and-finch/image/upload/q_100/v1510516560/glasses-technical-drawing-background-mobile.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 207px;
  color: #222222;
  font-family: "Circular Std", sans-serif;
}
body.cms-about-us .main-container #about-us-header #header-text-container {
  position: relative;
  margin: 0 auto;
  width: 276px;
  text-align: center;
  top: 65px;
}
body.cms-about-us .main-container #about-us-header #header-text-container p {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-size: 0.85em;
  line-height: 1.2;
}
@media only screen and (min-width: 401px) {
  body.cms-about-us .main-container #about-us-header {
    background-size: cover;
    background-image: url("//res.cloudinary.com/park-and-finch/image/upload/q_100/v1510516356/glasses-technical-drawing-background.jpg");
    height: 285px;
  }
  body.cms-about-us .main-container #about-us-header #header-text-container {
    top: 100px;
  }
}
@media only screen and (min-width: 771px) {
  body.cms-about-us .main-container #about-us-header {
    max-width: 2000px;
    /* background image width */
    margin-left: auto;
    margin-right: auto;
    height: 463px;
  }
  body.cms-about-us .main-container #about-us-header #header-text-container {
    width: 366px;
    top: 180px;
  }
  body.cms-about-us .main-container #about-us-header #header-text-container p {
    width: auto;
    font-size: 1em;
    line-height: 1.3;
  }
}
body.cms-about-us .main-container #our-team-section {
  color: #222222;
  position: relative;
}
body.cms-about-us .main-container #our-team-section #our-team-section-header {
  width: 75%;
  padding: 10px;
  max-width: 800px;
  margin: 20px auto 0 auto;
  position: relative;
}
body.cms-about-us .main-container #our-team-section .section-divider {
  display: none;
}
body.cms-about-us .main-container #our-team-section .section-divider.mobile {
  display: block;
  border-top: none;
  position: absolute;
  left: -20px;
  top: 26px;
}
body.cms-about-us .main-container #our-team-section .icon-crest {
  background-repeat: no-repeat;
  background-image: url("//res.cloudinary.com/park-and-finch/image/upload/v1509247645/montreal-crest.svg");
  background-size: 100%;
  width: 71px;
  height: 71px;
  display: block;
  position: absolute;
  right: -25px;
  top: 0;
}
body.cms-about-us .main-container #our-team-section p {
  margin: 20px auto;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.2;
}
body.cms-about-us .main-container #our-team-section #team-profiles {
  position: relative;
  padding: 10px;
  margin: 25px auto 0 auto;
  color: #222222;
  max-width: 555px;
}
body.cms-about-us .main-container #our-team-section #team-profiles li {
  width: 50%;
  vertical-align: text-top;
  display: inline-block;
}
body.cms-about-us .main-container #our-team-section #team-profiles img {
  margin: 0 auto;
}
body.cms-about-us .main-container #our-team-section #team-profiles p {
  position: relative;
  text-align: center;
  font-family: "Circular Std", sans-serif;
  color: black;
  font-weight: bold;
  font-style: normal;
  font-size: 0.9em;
  margin: 25px auto 35px auto;
}
body.cms-about-us .main-container #our-team-section #team-profiles p span {
  font-style: italic;
  font-weight: 300;
}
@media only screen and (min-width: 771px) {
  body.cms-about-us .main-container #our-team-section p {
    margin: 20px auto;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.2;
    width: 69%;
  }
  body.cms-about-us .main-container #our-team-section #team-profiles {
    max-width: 900px;
  }
  body.cms-about-us .main-container #our-team-section #team-profiles li {
    width: 25%;
  }
  body.cms-about-us .main-container #our-team-section #team-profiles li p {
    width: auto;
  }
}
body.cms-about-us .main-container #product-craftsmanship-container {
  text-align: center;
  background-color: #f8f8f8;
  padding-top: 30px;
}
body.cms-about-us .main-container #product-craftsmanship-container h2 {
  margin-bottom: 30px;
}
body.cms-about-us .main-container #product-craftsmanship-container p {
  padding: 0 30px;
  max-width: 555px;
  font-weight: 300;
  font-size: 0.9em;
  margin: 0 auto;
}
body.cms-about-us .main-container #product-craftsmanship-container img {
  margin: 0 auto;
}
body.cms-about-us .main-container #product-craftsmanship-container #craftsmanship-characteristics-acetate,
body.cms-about-us .main-container #product-craftsmanship-container #craftsmanship-characteristics-hand-assembly,
body.cms-about-us .main-container #product-craftsmanship-container #craftsmanship-characteristics-hinges {
  padding: 39px 10px 30px 10px;
}
body.cms-about-us .main-container #product-craftsmanship-container p.craftsmanship-detail {
  max-width: 240px;
}
@media only screen and (min-width: 771px) {
  body.cms-about-us .main-container #product-craftsmanship-container #craftsmanship-characteristics-acetate,
  body.cms-about-us .main-container #product-craftsmanship-container #craftsmanship-characteristics-hand-assembly,
  body.cms-about-us .main-container #product-craftsmanship-container #craftsmanship-characteristics-hinges {
    display: inline-block;
    vertical-align: top;
  }
}
body.cms-about-us .main-container #policy-wrapper #policy-summaries {
  position: relative;
  padding: 10px;
  margin: 50px auto 25px auto;
  max-width: 555px;
}
body.cms-about-us .main-container #policy-wrapper #policy-summaries li {
  width: 50%;
  vertical-align: text-top;
  display: inline-block;
  text-align: center;
  font-family: "Circular Std", sans-serif;
}
body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-adjustments object, body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-canadian object, body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-delivery object, body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-returns object {
  background: url("//res.cloudinary.com/park-and-finch/image/sprite/v1510555047/policy-vectors.svg") no-repeat;
}
body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-delivery object {
  background-size: 75px;
  background-position: 0px -102px;
  width: 75px;
  height: 50px;
}
body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-adjustments object {
  background-size: 75px;
  width: 55px;
  height: 50px;
}
body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-canadian object {
  background-size: 75px;
  background-position: 0px -51px;
  width: 50px;
  height: 51px;
}
body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-returns object {
  background-size: 75px;
  background-position: 0px -153px;
  width: 38px;
  height: 49px;
}
body.cms-about-us .main-container #policy-wrapper #policy-summaries p {
  position: relative;
  text-align: center;
  font-family: inherit;
  color: black;
  font-weight: 300;
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.2;
  margin: 1px auto 10px auto;
  padding: 0 15px;
}
@media only screen and (min-width: 771px) {
  body.cms-about-us .main-container #policy-wrapper #policy-summaries {
    max-width: 900px;
  }
  body.cms-about-us .main-container #policy-wrapper #policy-summaries li {
    width: 25%;
  }
  body.cms-about-us .main-container #policy-wrapper #policy-summaries p {
    font-size: 1em;
    padding: 0 34px;
    margin: 10px auto;
  }
  body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-delivery object {
    background-size: 89px;
    background-position: 0px -121px;
    width: 89px;
    height: 60px;
  }
  body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-adjustments object {
    background-size: 89px;
    width: 63px;
    height: 60px;
  }
  body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-canadian object {
    background-size: 89px;
    background-position: 0px -61px;
    width: 57px;
    height: 60px;
  }
  body.cms-about-us .main-container #policy-wrapper #policy-summaries #policy-returns object {
    background-size: 89px;
    background-position: 0px -181px;
    width: 45px;
    height: 60px;
  }
}

@font-face {
  font-family: 'Circular Std';
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-medium.eot");
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-medium.eot?#iefix") format("embedded-opentype"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-medium.woff") format("woff"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-medium.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: 'Circular Std';
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-bold.eot");
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-bold.eot?#iefix") format("embedded-opentype"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-bold.woff") format("woff"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Circular Std';
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-book.eot");
  src: url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-book.eot?#iefix") format("embedded-opentype"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-book.woff") format("woff"), url("https://www.parkandfinch.com/skin/frontend/parkandfinch/default/fonts/circular-std-book.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) {
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) {
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) {
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) {
    div { color:#888; }
}

// ----------------------------------------------
*/
/**
 * Wraps any styles in a retina media query.
 */
/**
 * Wraps any styles in a retina media query.
 */
/**
 * Option variable to define the spacing between images in the generated sprite
 */
/**
 * A mixin to create retina sprites with hover & active states
 *
 * You have to register a pair of sprites using `{@link #retina-sprite-add}` and then you can use this mixin:
 *
 *     @include retina-sprite-add(icons, "icons/*.png", "icons-retina/*.png");
 *
 *     .my-icon {
 *       @include retina-sprite(icon-name, icons);
 *     }
 *
 * @param {String} $name
 * @param {String} [$sprite-name]
 * @param {Boolean} [$hover=false]
 * @param {Boolean} [$active=false]
 */
/**
 * @param {String} $name
 * @param {String} $path
 * @param {String} $path2x
 */
/**
 * Wraps any styles in a retina media query.
 */
/**
 * Mixin for retina backgrounds where you can't use a sprite.
 *
 * - Make sure you have a file@2x.png file additional to your file.png.
 * - The mixin prepends $imgPath, which should be set globally at some point. Default is: "img/"
 *
 * Examples:
 *     li {
 *       @include retina-background(arrow, no-repeat 10px 15px)
 *     }
 *
 *     a.external {
 *       @include retina-background(external, no-repeat right)
 *     }
 *
 * @param {String} $file Path to file relative to images folder defined in config.rb and without a file extension
 * @param {Object} [$attr] Additional attributes like position or repetition. E.g. `no-repeat top right`
 * @param {String} [$type] The file type.
 */
/* ============================================ *
 * Homepage
 * ============================================ */
/* -------------------------------------------- *
 * Primary Banner
 */
body.cms-home .main-container {
  padding-top: 20px;
}
body.cms-home #homepage-block-1 {
  height: 207px;
  padding-top: 60px;
  background-image: url(//res.cloudinary.com/park-and-finch/image/upload/v1506925329/homepage-header-1-mobile.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  color: white;
}
@media only screen and (min-width: 401px) {
  body.cms-home #homepage-block-1 {
    background-image: url(//res.cloudinary.com/park-and-finch/image/upload/v1506925369/homepage-header-1-pc.jpg);
  }
}
body.cms-home #homepage-block-1 #homepage-classic-eyewear {
  font-family: "Circular Std", sans-serif;
  font-size: 1.3em;
  line-height: 2.5;
  font-weight: bold;
}
body.cms-home #homepage-block-1 #homepage-perfect-frames {
  font-family: "Circular Std", sans-serif;
  font-size: 0.9em;
  line-height: 1.3;
  max-width: 55%;
  margin: 0 auto;
}
@media only screen and (min-width: 771px) {
  body.cms-home #homepage-block-1 {
    font-size: 1.3em;
    height: 633px;
    padding-top: 219px;
  }
  body.cms-home #homepage-block-1 #homepage-classic-eyewear {
    font-size: 1.8em;
  }
  body.cms-home #homepage-block-1 #homepage-perfect-frames {
    max-width: 250px;
    font-size: 0.8em;
    margin: 0 auto;
  }
}
body.cms-home #homepage-block-2 {
  margin: 50px auto 0 auto;
  background-image: url(//res.cloudinary.com/park-and-finch/image/upload/v1509247645/montreal-crest.svg);
  background-size: 61px 61px;
  background-position: top right;
  background-repeat: no-repeat;
  color: #000000;
  padding-top: 20px;
  max-width: 95%;
}
body.cms-home #homepage-block-2 #homepage-block-2-heading {
  text-align: center;
  font-family: "Circular Std", sans-serif;
  font-weight: bold;
  font-size: 1.3em;
  max-width: 58%;
  margin: 0 auto 40px auto;
}
body.cms-home #homepage-block-2 #homepage-block-2-subheading {
  font-family: "Circular Std", sans-serif;
  font-size: 0.9em;
  font-weight: 300;
  margin: 0 auto;
  max-width: 85%;
}
@media only screen and (min-width: 771px) {
  body.cms-home #homepage-block-2 {
    margin: 80px auto 0 auto;
    width: 1200px;
    height: 300px;
    background-size: 89px 89px;
    padding-top: 25px;
  }
  body.cms-home #homepage-block-2 #homepage-block-2-heading {
    font-size: 2em;
    max-width: 480px;
  }
  body.cms-home #homepage-block-2 #homepage-block-2-subheading {
    max-width: 510px;
    font-size: 1.1em;
    margin: 0 auto;
  }
}
body.cms-home #homepage-block-3 {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 50px;
  color: #000000;
  font-family: "Circular Std", sans-serif;
}
body.cms-home #homepage-block-3 img {
  margin: 0 auto;
  width: 90%;
  max-width: 440px;
  height: auto;
}
body.cms-home #homepage-block-3 a:hover {
  text-decoration: none;
}
body.cms-home #homepage-block-3 #product-enticer-wrapper {
  margin: 0 auto;
}
body.cms-home #homepage-block-3 #homepage-block-3-col-2 {
  margin-top: 50px;
}
body.cms-home #homepage-block-3 .homepage-text-below-product-enticer {
  display: inline-block;
  color: #000000;
  font-weight: bold;
  font-size: 1.4em;
  margin: 0 auto;
}
body.cms-home #homepage-block-3 .homepage-subtext-below-product-enticer {
  font-size: 1.1em;
  font-weight: 300;
  text-decoration: underline;
}
@media only screen and (min-width: 771px) {
  body.cms-home #homepage-block-3 {
    margin-top: 0;
  }
  body.cms-home #homepage-block-3 #product-enticer-wrapper {
    max-width: 1100px;
  }
  body.cms-home #homepage-block-3 #product-enticer-wrapper .homepage-text-below-product-enticer {
    margin-top: 15px;
    margin-bottom: 0;
  }
  body.cms-home #homepage-block-3 #product-enticer-wrapper #homepage-block-3-col-1, body.cms-home #homepage-block-3 #product-enticer-wrapper #homepage-block-3-col-2 {
    width: 50%;
    float: left;
    margin-top: 0;
  }
  body.cms-home #homepage-block-3 #product-enticer-wrapper:after {
    content: '';
    display: table;
    clear: both;
  }
}
body.cms-home #homepage-block-4 {
  margin: 10px auto;
}
body.cms-home #homepage-block-4 #homepage-block-4-col-1, body.cms-home #homepage-block-4 #homepage-block-4-col-2 {
  width: 50%;
  float: left;
  font-family: "Circular Std", sans-serif;
}
body.cms-home #homepage-block-4 #homepage-block-4-col-1 a, body.cms-home #homepage-block-4 #homepage-block-4-col-2 a {
  text-align: center;
  color: white;
  max-width: 491px;
  min-height: 140px;
  width: 98%;
  background: no-repeat center;
  background-size: cover;
  display: inline-block;
  position: relative;
}
body.cms-home #homepage-block-4 #homepage-block-4-col-1 a:hover, body.cms-home #homepage-block-4 #homepage-block-4-col-2 a:hover {
  text-decoration: none;
}
body.cms-home #homepage-block-4 #homepage-block-4-col-1 a .shop-by-gender-heading, body.cms-home #homepage-block-4 #homepage-block-4-col-2 a .shop-by-gender-heading {
  margin-top: 90px;
  font-weight: bold;
  font-size: 1.4em;
  display: block;
}
body.cms-home #homepage-block-4 #homepage-block-4-col-1 a .shop-by-gender-subheading, body.cms-home #homepage-block-4 #homepage-block-4-col-2 a .shop-by-gender-subheading {
  text-decoration: underline;
  font-size: 0.8em;
  font-weight: 300;
  display: block;
}
body.cms-home #homepage-block-4 #homepage-block-4-col-1 a {
  background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/shop-men-background.jpg);
}
body.cms-home #homepage-block-4 #homepage-block-4-col-2 {
  text-align: right;
}
body.cms-home #homepage-block-4 #homepage-block-4-col-2 a {
  background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/shop-women-background.jpg);
}
@media only screen and (min-width: 771px) {
  body.cms-home #homepage-block-4 {
    max-width: 1006px;
  }
  body.cms-home #homepage-block-4 #homepage-block-4-col-1 a, body.cms-home #homepage-block-4 #homepage-block-4-col-2 a {
    background-size: contain;
  }
  body.cms-home #homepage-block-4 #homepage-block-4-col-1 a .shop-by-gender-heading, body.cms-home #homepage-block-4 #homepage-block-4-col-1 a .shop-by-gender-subheading, body.cms-home #homepage-block-4 #homepage-block-4-col-2 a .shop-by-gender-heading, body.cms-home #homepage-block-4 #homepage-block-4-col-2 a .shop-by-gender-subheading {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
  body.cms-home #homepage-block-4 #homepage-block-4-col-1 a .shop-by-gender-heading, body.cms-home #homepage-block-4 #homepage-block-4-col-2 a .shop-by-gender-heading {
    top: 61%;
    font-size: 2em;
  }
  body.cms-home #homepage-block-4 #homepage-block-4-col-1 a .shop-by-gender-subheading, body.cms-home #homepage-block-4 #homepage-block-4-col-2 a .shop-by-gender-subheading {
    top: 80%;
    font-size: 1em;
  }
  body.cms-home #homepage-block-4 #homepage-block-4-col-1 a:after, body.cms-home #homepage-block-4 #homepage-block-4-col-2 a:after {
    padding-top: 50.3%;
    /* (height/width)*100, ref: http://stackoverflow.com/questions/12121090/responsively-change-div-size-keeping-aspect-ratio */
    display: block;
    content: '';
  }
}
body.cms-home #homepage-block-4:after {
  content: '';
  display: table;
  clear: both;
}
body.cms-home .slideshow-container {
  max-width: 371px;
  margin: 20px auto 70px auto;
  border: none;
}
body.cms-home .slideshow-container .slideshow {
  border: none;
}
body.cms-home .slideshow-container .slideshow-pager {
  overflow: visible;
  top: 85%;
}
body.cms-home .slideshow-container .slideshow-pager span:before {
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background-color: #ebebeb;
}
body.cms-home .slideshow-container .slideshow-pager span:hover:before, body.cms-home .slideshow-container .slideshow-pager span.cycle-pager-active:before {
  background-color: #b0b0b0;
}
@media only screen and (min-width: 771px) {
  body.cms-home .slideshow-container {
    max-width: 1006px;
  }
  body.cms-home .slideshow-container .slideshow-pager {
    display: none;
  }
}

.slideshow #first-slide-text {
  position: absolute;
  top: 10%;
  color: white;
  font-family: "Circular Std", sans-serif;
  font-size: 1.5em;
  width: 100%;
}
.slideshow #first-slide-text p {
  display: none;
}
.slideshow #first-slide-text p:first-of-type {
  display: block;
  text-align: center;
}

.slideshow .banner-msg {
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  top: 30%;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.slideshow .banner-msg h2 {
  color: #FFFFFF;
  font-size: 24px;
  text-shadow: 1px 1px 3px #555555;
}

.slideshow .banner-msg h2 strong {
  font-weight: bold;
  display: block;
  font-size: 36px;
}

@media only screen and (min-width: 771px) {
  .slideshow #first-slide-text {
    top: 27%;
    width: 300px;
    right: 70px;
    font-size: 1em;
    line-height: 1.8;
  }
  .slideshow #first-slide-text p {
    display: block;
  }
  .slideshow #first-slide-text p:first-of-type {
    font-size: 1.9em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: inherit;
  }
}
@media only screen and (max-width: 770px) {
  .slideshow .banner-msg h2 {
    font-size: 20px;
  }

  .slideshow .banner-msg h2 strong {
    font-size: 24px;
  }
}
@media only screen and (max-width: 479px) {
  .slideshow .banner-msg {
    top: 20%;
  }

  .slideshow .banner-msg h2 {
    font-size: 14px;
  }

  .slideshow .banner-msg h2 strong {
    font-size: 16px;
  }
}
/* -------------------------------------------- *
 * Promotion Banner Section
 */
.promos {
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
}

.promos:after {
  content: '';
  display: table;
  clear: both;
}

/* Specifying the body only in order to override the .std ul li styling */
body .promos > li {
  margin: 0 0 10px 0;
  list-style: none;
  text-align: center;
  position: relative;
  border: 1px solid #CCCCCC;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.promos > li:last-child {
  margin-bottom: 0;
}

.promos img {
  max-width: 100%;
  width: 100%;
}

.promos a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: block;
}

.promos span {
  color: #FFFFFF;
  text-transform: uppercase;
  position: absolute;
  display: block;
  width: 100%;
  top: 10%;
  font-weight: 500;
  font-size: 20px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-shadow: 1px 1px 3px #555555;
}

.promos strong {
  font-weight: 600;
  font-size: 26px;
  display: block;
}

@media only screen and (min-width: 771px) {
  .promos span {
    font-size: 16px;
  }

  .promos strong {
    font-size: 17px;
  }

  /* Config: Three columns + flexible gutter */
  body .promos > li {
    float: left;
    width: 31.74603%;
    margin-right: 2.38095%;
  }

  .promos > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 880px) {
  .promos span {
    font-size: 18px;
  }

  .promos strong {
    font-size: 24px;
  }
}
/* -------------------------------------------- *
 * New Products Section
 */
/* Hiding the reviews content via CSS because we can't modify the template, */
/* since it may be used in other places where those elements are needed */
.cms-index-index .products-grid .ratings,
.cms-index-index .products-grid .actions,
.cms-index-noroute .products-grid .ratings,
.cms-index-noroute .products-grid .actions {
  display: none;
}

.cms-index-index h2.subtitle {
  padding: 6px 0;
  text-align: center;
  color: #46C2AC;
  font-weight: 600;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
}

.cms-index-noroute h2.subtitle {
  display: none;
}

/* ============================================ *
 * Category Landing Pages
 * ============================================ */
#pf-category-header-container {
  position: relative;
  margin-top: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
}
#pf-category-header-container .category-title {
  position: relative;
  margin: 0 auto;
  left: 75px;
  top: 50px;
  width: 225px;
  padding: 20px;
  color: white;
  font-family: "Circular Std", sans-serif;
  font-weight: bold;
  font-size: 1.3em;
}
#pf-category-header-container .category-title .category-description {
  font-size: 0.65em;
  font-weight: normal;
}
@media only screen and (min-width: 771px) {
  #pf-category-header-container {
    max-width: 2000px;
    /* background image width */
    margin-left: auto;
    margin-right: auto;
  }
}

.categorypath-women #pf-category-header-container,
.categorypath-women-eyeglasses #pf-category-header-container {
  background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/women-optical-header-mobile.jpg);
  height: 283px;
}
@media only screen and (min-width: 401px) {
  .categorypath-women #pf-category-header-container,
  .categorypath-women-eyeglasses #pf-category-header-container {
    background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/women-optical-header-pc.jpg);
    height: 250px;
  }
  .categorypath-women #pf-category-header-container .category-title,
  .categorypath-women-eyeglasses #pf-category-header-container .category-title {
    color: black;
    width: 300px;
    left: -21%;
    top: 70px;
  }
  .categorypath-women #pf-category-header-container .category-title h1,
  .categorypath-women-eyeglasses #pf-category-header-container .category-title h1 {
    color: black;
    font-size: 1.2em;
  }
  .categorypath-women #pf-category-header-container .category-title .category-description,
  .categorypath-women-eyeglasses #pf-category-header-container .category-title .category-description {
    font-size: 0.69em;
  }
}
@media only screen and (min-width: 771px) {
  .categorypath-women #pf-category-header-container,
  .categorypath-women-eyeglasses #pf-category-header-container {
    height: 461px;
  }
  .categorypath-women #pf-category-header-container .category-title,
  .categorypath-women-eyeglasses #pf-category-header-container .category-title {
    width: 352px;
    left: -200px;
    top: 135px;
  }
  .categorypath-women #pf-category-header-container .category-title h1,
  .categorypath-women-eyeglasses #pf-category-header-container .category-title h1 {
    font-size: 1.8em;
  }
  .categorypath-women #pf-category-header-container .category-title .category-description,
  .categorypath-women-eyeglasses #pf-category-header-container .category-title .category-description {
    font-size: 0.9em;
  }
}
@media only screen and (min-width: 1200px) {
  .categorypath-women #pf-category-header-container .category-title,
  .categorypath-women-eyeglasses #pf-category-header-container .category-title {
    left: -278px;
  }
}

.categorypath-women-sunglasses #pf-category-header-container {
  background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/women-sun-header-mobile.jpg);
  height: 283px;
}
.categorypath-women-sunglasses #pf-category-header-container .category-title {
  color: white;
  left: 85px;
  top: 65px;
  width: 235px;
}
.categorypath-women-sunglasses #pf-category-header-container .category-title h1 {
  color: inherit;
}
@media only screen and (min-width: 401px) {
  .categorypath-women-sunglasses #pf-category-header-container {
    background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/women-sun-header-pc.jpg);
    background-position-x: 55%;
    height: 305px;
  }
  .categorypath-women-sunglasses #pf-category-header-container .category-title {
    width: 303px;
    left: 19%;
    top: 90px;
  }
  .categorypath-women-sunglasses #pf-category-header-container .category-title h1 {
    font-size: 1.2em;
  }
  .categorypath-women-sunglasses #pf-category-header-container .category-title .category-description {
    font-size: 0.69em;
  }
}
@media only screen and (min-width: 771px) {
  .categorypath-women-sunglasses #pf-category-header-container {
    background-position-x: 50%;
    background-size: auto;
    height: 458px;
  }
  .categorypath-women-sunglasses #pf-category-header-container .category-title {
    width: 356px;
    left: 25%;
    top: 155px;
  }
  .categorypath-women-sunglasses #pf-category-header-container .category-title h1 {
    font-size: 1.8em;
  }
  .categorypath-women-sunglasses #pf-category-header-container .category-title .category-description {
    font-size: 0.9em;
  }
}
@media only screen and (min-width: 1200px) {
  .categorypath-women-sunglasses #pf-category-header-container .category-title {
    left: 22%;
  }
}

.categorypath-men #pf-category-header-container,
.categorypath-men-eyeglasses #pf-category-header-container {
  background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/men-optical-header-mobile.jpg);
  height: 207px;
}
@media only screen and (min-width: 401px) {
  .categorypath-men #pf-category-header-container,
  .categorypath-men-eyeglasses #pf-category-header-container {
    background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/men-optical-header-pc.jpg);
    height: 258px;
  }
  .categorypath-men #pf-category-header-container .category-title,
  .categorypath-men-eyeglasses #pf-category-header-container .category-title {
    width: 275px;
    left: 17%;
    top: 70px;
  }
  .categorypath-men #pf-category-header-container .category-title h1,
  .categorypath-men-eyeglasses #pf-category-header-container .category-title h1 {
    font-size: 1.5em;
  }
  .categorypath-men #pf-category-header-container .category-title .category-description,
  .categorypath-men-eyeglasses #pf-category-header-container .category-title .category-description {
    font-size: 0.75em;
  }
}
@media only screen and (min-width: 771px) {
  .categorypath-men #pf-category-header-container,
  .categorypath-men-eyeglasses #pf-category-header-container {
    background-position-x: 50%;
    background-size: auto;
    height: 461px;
  }
  .categorypath-men #pf-category-header-container .category-title,
  .categorypath-men-eyeglasses #pf-category-header-container .category-title {
    width: 315px;
    left: 231px;
    top: 155px;
  }
  .categorypath-men #pf-category-header-container .category-title h1,
  .categorypath-men-eyeglasses #pf-category-header-container .category-title h1 {
    font-size: 1.8em;
  }
  .categorypath-men #pf-category-header-container .category-title .category-description,
  .categorypath-men-eyeglasses #pf-category-header-container .category-title .category-description {
    font-size: 0.9em;
  }
}

.categorypath-men-sunglasses #pf-category-header-container {
  background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/men-sun-header-mobile.jpg);
  height: 283px;
}
.categorypath-men-sunglasses #pf-category-header-container .category-title {
  color: white;
  left: 67px;
  width: 235px;
}
.categorypath-men-sunglasses #pf-category-header-container .category-title h1 {
  color: inherit;
}
@media only screen and (min-width: 401px) {
  .categorypath-men-sunglasses #pf-category-header-container {
    background-image: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/media/men-sun-header-pc.jpg);
    height: 310px;
  }
  .categorypath-men-sunglasses #pf-category-header-container .category-title {
    width: 275px;
    left: 17%;
    top: 70px;
  }
  .categorypath-men-sunglasses #pf-category-header-container .category-title h1 {
    font-size: 1.5em;
  }
  .categorypath-men-sunglasses #pf-category-header-container .category-title .category-description {
    font-size: 0.75em;
  }
}
@media only screen and (min-width: 771px) {
  .categorypath-men-sunglasses #pf-category-header-container {
    background-size: auto;
    height: 462px;
  }
  .categorypath-men-sunglasses #pf-category-header-container .category-title {
    width: 315px;
    left: 12%;
    top: 155px;
  }
  .categorypath-men-sunglasses #pf-category-header-container .category-title h1 {
    font-size: 1.8em;
  }
  .categorypath-men-sunglasses #pf-category-header-container .category-title .category-description {
    font-size: 0.9em;
  }
}

.category-products {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 771px) {
  .category-products {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
  }
}
.category-image {
  position: relative;
}

.categorylandingMainblock {
  border: 1px solid #E2E2E2;
  padding: 7px;
}

.catblocks {
  float: left;
  padding: 0 0 20px 0;
  width: 100%;
}

.catblocks li {
  position: relative;
  float: left !important;
  width: 23% !important;
  margin-right: 2.66667% !important;
  margin-bottom: 10px;
  border: 1px solid #CCCCCC;
  padding: 10px;
}

.catblocks li:hover {
  border-color: #46C2AC;
}

@media only screen and (max-width: 770px) {
  .catblocks li {
    width: 49% !important;
    margin-right: 2% !important;
  }

  .catblocks li:nth-child(even) {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 479px) {
  .catblocks li {
    width: 100% !important;
    margin-right: 0 !important;
    float: none;
  }
}
.catblocks li:last-child {
  margin-right: 0 !important;
}

.catblocks li img {
  width: 100%;
  max-width: 100%;
}

.catblocks li a span {
  color: #FFFFFF;
  position: absolute;
  background-color: #7B7C7B;
  font-family: raleway;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 5px 10px;
  margin-right: 10px;
}

.catblocklinks a {
  color: #FFFFFF;
  text-decoration: none;
}

.catlandingbottomPromoblock {
  float: left;
  width: 100%;
  border: 1px solid #E2E2E2;
  margin-bottom: 100px;
}

.catalog-category-view div.categoryland-caption {
  display: block;
  margin: 0;
  position: absolute;
  color: #000000;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  color: #3399CC;
  font-size: 50px;
  font-weight: 800;
  padding: 0 0 0 8px;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  padding: 0 !important;
}

.catalog-category-view div.categoryland-caption span.three-dots {
  background: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/bg_threeDots.png) no-repeat center center;
  display: block;
  height: 20px;
}

.catalog-category-view div.categoryland-caption p.desc {
  font: italic 18px/28px Georgia, "Times New Roman", Times, serif;
  color: #656565;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption a.link:hover,
.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.link:hover {
  text-decoration: underline;
  color: #1189C5;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.blue-big-text,
.catalog-category-view div.categoryland-caption span.blue-big-text {
  color: #3399CC;
  font-size: 50px;
  font-weight: 800;
  padding: 0 0 0 8px;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  padding: 0 !important;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.three-dots,
.catalog-category-view div.categoryland-caption span.three-dots {
  background: url(https://www.parkandfinch.com/skin/frontend/parkandfinch/default/images/bg_threeDots.png) no-repeat center center;
  display: block;
  height: 20px;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption p.desc,
.catalog-category-view div.categoryland-caption p.desc {
  font: italic 18px/28px Georgia, "Times New Roman", Times, serif;
  color: #656565;
}

