/*
// ----------------------------------------------
// 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; }
}

// ----------------------------------------------
*/
/*! 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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  color: #383b3c;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: #ed1f24;
  text-decoration: none;
}

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

a:focus {
  outline-color: #ec1318;
  color: #6a090b;
}

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

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: #383b3c;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* -------------------------------------------- *
 * 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;
  border-top: 1px solid #DDDDDD;
}
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #383b3c;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #AAAAAA;
}

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: #383b3c;
    font-family: soleto, "soleto", Soleto, "Soleto", 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: #DDDDDD;
    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 #ed1f24;
    border-right: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
    background-color: #ededed;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #383b3c;
    font-family: soleto, "soleto", Soleto, "Soleto", 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: #DDDDDD;
    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 #ed1f24;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
    background-color: #ededed;
  }
  .sidebar .block:not(.block-layered-nav) .block-content {
    padding: 10px;
    margin-top: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #DDDDDD;
  }
  .sidebar .block:last-of-type {
    border-bottom: 1px solid #DDDDDD;
  }
}
/* -------------------------------------------- *
 * 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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  margin: 7px 0;
}
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #ed1f24;
}
.block-account li a,
.block-cms-menu li a {
  color: #383b3c;
}
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #ed1f24;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.sidebar .actions .button,
.button.button-secondary {
  background: #ed1f24;
  color: #383b3c;
  padding: 7px 15px;
}
.sidebar .actions .button:hover,
.button.button-secondary:hover {
  background: #ed1f24;
  cursor: pointer;
}
.sidebar .actions .button:active,
.button.button-secondary:active {
  background: #ed1f24;
  color: #383b3c;
}
.sidebar .actions .button:focus,
.button.button-secondary:focus {
  color: #383b3c;
  background: #ed1f24;
  outline: none;
}

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

/* Primary Buttons */
.button,
.cart-table .product-cart-actions .button,
.footer .button {
  background: #ed1f24;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  font-family: soleto, "soleto", Soleto, "Soleto", 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,
.footer .button:hover {
  background-color: #f36669;
  cursor: pointer;
}
.button:active,
.cart-table .product-cart-actions .button:active,
.footer .button:active {
  background-color: #f36669;
  color: #FFFFFF;
}
.button:focus,
.cart-table .product-cart-actions .button:focus,
.footer .button:focus {
  background-color: #f36669;
  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: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #b10e12;
}

@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-nav .icon, .skip-search .icon, #search_mini_form .search-button:before, .skip-account .icon, .skip-cart .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.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/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-nav .icon, .skip-search .icon, #search_mini_form .search-button:before, .skip-account .icon, .skip-cart .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.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}
/* -------------------------------------------- *
 * 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: #ed1f24;
  border-color: #ed1f24;
}

.btn-remove:after {
  content: 'X';
  color: #ed1f24;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-family: Arial, soleto, "soleto", Soleto, "Soleto", 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 #ed1f24;
  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 #DDDDDD;
  background: #F4F4F4;
}

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

/* -------------------------------------------- *
 * Container
 */
.main-container,
.footer-container {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 15px;
}
.main-container:after,
.footer-container:after {
  content: '';
  display: table;
  clear: both;
}

@media only screen and (min-width: 480px) {
  .main-container,
  .footer-container {
    padding: 10px;
  }
}
.footer-container {
  padding-top: 0px;
}

/* -------------------------------------------- *
 * 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%;
  }
}
@media only screen and (max-width: 770px) {
  .col-left,
  .col-right,
  .col-main,
  .col1-layout .col-left,
  .col1-layout .col-right,
  .col1-layout .col-main,
  .col2-left-layout .col-left,
  .col2-left-layout .col-right,
  .col2-left-layout .col-main,
  .col2-right-layout .col-left,
  .col2-right-layout .col-right,
  .col2-right-layout .col-main,
  .col3-layout .col-wrapper .col-left,
  .col3-layout .col-right,
  .col3-layout .col-wrapper .col-main {
    padding: 0;
    margin-bottom: 10px;
    float: none;
    width: auto;
  }

  .col3-layout .col-wrapper {
    float: none;
    width: auto;
  }

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

  .col-main .col-left {
    padding: 0;
    /* On product listing pages, the left column gets moved inside col-main on small viewports */
  }
}
/* 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: #e9e9e9;
  font-size: 11px;
}
.global-site-notice .notice-inner {
  padding-left: 120px;
  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;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #383b3c;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
  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 #DDDDDD;
  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: soleto, "soleto", Soleto, "Soleto", sans-serif;
}

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

.price-notice {
  color: #AAAAAA;
}

.price-box .price {
  color: #383b3c;
  font-size: 16px;
}

.price-box .price,
.price {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}

.price-box .price-label {
  color: #AAAAAA;
  white-space: nowrap;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}

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

/* -------------------------------------------- *
 * 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: #AAAAAA;
  text-decoration: line-through;
}

.price-box .special-price {
  color: #383b3c;
  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-bottom: 15px;
  margin-top: 0;
}
.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: soleto, "soleto", Soleto, "Soleto", 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 #ed1f24;
  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 #ed1f24;
  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;
  border: 1px solid #EDEDED;
}

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

/* -------------------------------------------- *
 * 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;
}

/* -------------------------------------------- *
 * Standard Formatted Text Block
 */
.std p {
  margin: 0 0 1.5em;
}

.std ol {
  list-style: decimal outside;
  margin-bottom: 1.5em;
}

.std ol li {
  margin-left: 2em;
}

.std ul {
  list-style: disc outside;
  margin-bottom: 1.5em;
}

.std ul li {
  margin-left: 2em;
}

.std .note {
  color: #AAAAAA;
  font-size: 13px;
}

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

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #DDDDDD;
  border-top: 1px solid #DDDDDD;
  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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  color: #383b3c;
  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: soleto, "soleto", Soleto, "Soleto", 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: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}

.pages .current,
.pages .current:hover {
  color: #383b3c;
  border: 1px solid #DDDDDD;
  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 #ed1f24;
}

.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 #ed1f24;
  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 #b10e12;
  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 #ed1f24;
  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 #b10e12;
  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 #3399CC;
  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 #b10e12;
  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 #3399CC;
  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 #b10e12;
  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;
}

/* ============================================ *
 * 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: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 12px;
}

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

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

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

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

select[multiple] {
  width: 270px;
  border: 1px solid #DDDDDD;
  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 #DDDDDD;
  background: #FFFFFF;
  font-size: 15px;
}
.input-text:focus {
  border: 1px solid #ed1f24;
}

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

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

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: #AAAAAA;
}

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

/* -------------------------------------------- *
 * 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,
.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,
.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,
.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,
.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,
.product-options ul.options-list label {
  color: #383b3c;
  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,
.product-options ul.options-list label:hover {
  background-color: #ededed;
}
.form-list .control .no-display + label,
.sp-methods dt .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,
.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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  color: #AAAAAA;
}

/* ============================================ *
 * 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: #ed1f24;
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", sans-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 #DDDDDD;
  }
  .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: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
  }
  .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: soleto, "soleto", Soleto, "Soleto", 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%;
}

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

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

/* ============================================ *
 * Header
 * ============================================ */
@media only screen and (min-width: 771px) {
  .page-header {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .page-header-container {
    position: relative;
  }
}
.header-language-container,
.page-header {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  padding: 10px;
  background-color: #ed1f24;
  text-transform: uppercase;
}
.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 .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: #e9e9e9;
}

@media only screen and (max-width: 770px) {
  .header-language-background {
    display: none;
  }
}
/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: block;
  float: left;
  width: 65%;
  min-width: 100px;
  min-height: 44px;
  text-align: center;
  padding: 10px;
}
.logo img {
  max-width: 100%;
}
.logo .small {
  display: block;
}
.logo .large {
  display: none;
}

.logo:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 771px) {
  .logo {
    max-width: 300px;
    min-height: 90px;
  }
  .logo .small {
    display: none;
  }
  .logo .large {
    display: block;
  }
}
/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-links {
  clear: both;
  overflow: hidden;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}

@media only screen and (min-width: 771px) {
  .skip-links {
    border: 0;
  }
}
/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link {
  position: relative;
  float: left;
  width: 20%;
  height: 44px;
  background: #FFFFFF;
  color: #383b3c;
  line-height: 42px;
  text-align: center;
}

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

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

@media only screen and (max-width: 770px) {
  .skip-link {
    border-right: 1px solid #EDEDED;
  }

  .skip-link:last-child {
    border-right: 0;
  }
}
@media only screen and (min-width: 500px) {
  .skip-link {
    width: 25%;
  }
}
/* -------------------------------------------- *
 * Skip Link - Active
 */
@media only screen and (max-width: 770px) {
  .skip-link.skip-active {
    background: #EDEDED;
    color: inherit;
  }

  .skip-link.skip-active span {
    color: inherit;
  }
}
/* -------------------------------------------- *
 * Skip Link - Icon
 */
.skip-link .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  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;
}

.skip-content.skip-active {
  display: block;
  background: #EDEDED;
}

/* ============================================ *
 * 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 #DDDDDD;
    text-align: left;
    color: #383b3c;
    text-transform: uppercase;
    line-height: 30px;
  }

  #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: #F4F4F4;
    text-decoration: none;
  }
}
.account-cart-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
}
@media only screen and (max-width: 770px) {
  .account-cart-wrapper {
    position: static;
  }
}

/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
.skip-nav {
  width: 40%;
}
.skip-nav:not(.skip-active):hover {
  text-decoration: none;
}
.skip-nav:not(.skip-active):hover .icon {
  background-position: -46px 4px;
}

.skip-nav .label {
  display: inline;
}

.skip-nav .icon {
  background-position: 4px 4px;
}

@media only screen and (min-width: 500px) {
  .skip-nav {
    width: 25%;
  }
}
@media only screen and (min-width: 771px) {
  .skip-nav {
    display: none;
  }
}
/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-nav {
    padding: 5px 0;
  }
}
@media only screen and (min-width: 771px) {
  #header-nav {
    display: block;
    /* Force visibility */
    border-bottom: 1px solid #EDEDED;
  }
}
/* ============================================ *
 * 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: #383b3c;
  line-height: 30px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
.nav-primary li {
  position: relative;
}
.nav-primary li.level1 a {
  border-bottom: 1px solid #DDDDDD;
}

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

.nav-primary li.level0 > a {
  text-transform: uppercase;
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
@media only screen and (max-width: 770px) {
  .nav-primary a.level0,
  .nav-primary a {
    line-height: 35px;
  }
  .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.parent > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ccc;
    border-right: none;
    top: 50%;
    left: 10px;
    right: auto;
    margin-top: -5px;
  }
  .nav-primary li.parent.sub-menu-active > a:after,
  .nav-primary li.parent.menu-active > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #ccc;
    border-bottom: none;
    top: 50%;
    left: 10px;
    right: auto;
    margin-top: -5px;
  }
  .nav-primary li.menu-active > a,
  .nav-primary li.sub-menu-active > a {
    color: #ed1f24;
  }
}
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
@media only screen and (min-width: 771px) {
  .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;
  }
  .nav-primary li.level0,
  .nav-primary a.level0 {
    display: inline-block;
  }
  .nav-primary li:last-child > a {
    border-bottom: none;
  }
  .nav-primary a:hover,
  .nav-primary li:hover > a {
    color: #ed1f24;
  }
  .nav-primary .menu-active {
    z-index: 200;
  }
  .nav-primary li.level0 ul {
    background: #FBFBFB;
    border: solid 1px #DDDDDD;
    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.menu-active > ul {
  display: block;
}

/* ============================================ *
 * 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
 * ============================================ */
@media only screen and (min-width: 771px) {
  #header-search {
    display: block;
  }
}
/* ============================================ *
 * 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: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
    display: block;
    position: absolute;
    z-index: 200;
    top: 40px;
    right: 115px;
    width: 200px;
  }

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

  #header-account a:hover {
    color: #ed1f24;
    text-decoration: none;
  }
}
/* -------------------------------------------- *
 * 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: #ed1f24;
  text-decoration: none;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
.skip-cart:not(.skip-active):hover .icon {
  background-position: -50px -95px;
}
.skip-cart .icon {
  background-position: 0px -95px;
}

@media only screen and (min-width: 771px) {
  .skip-cart {
    width: auto;
    padding: 0 10px;
  }

  #header-cart.skip-active {
    -moz-box-shadow: 3px 3px 3px 0px #cecdcb;
    box-shadow: 3px 3px 3px 0px #cecdcb;
    -webkit-box-shadow: 3px 3px 3px 0px #cecdcb;
    background: #FBFBFB;
    border: solid 1px #DDDDDD;
    border: solid 1px #DDDDDD;
    background: #FBFBFB;
    display: block;
    position: absolute;
    top: -20px;
    width: 420px;
    z-index: 200;
  }
}
/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart .count {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  display: inline-block;
  top: -6px;
  position: relative;
  z-index: 5;
  width: 22px;
  height: 22px;
  background: rgba(237, 31, 36, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: #ed1f24;
    text-transform: uppercase;
  }
  .skip-cart:hover {
    text-decoration: none;
  }

  .skip-cart .count,
  .skip-link.skip-active .count {
    color: #ed1f24;
  }
}
.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: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
  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: #AAAAAA;
  font-size: 12px;
}

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

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer,
.footer button {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}

.footer {
  clear: both;
  width: 100%;
  border-top: 1px solid #DDDDDD;
  padding-top: 30px;
  /* -------------------------------------------- *
   * Social icons
   */
}
@media only screen and (max-width: 479px) {
  .footer {
    padding-top: 15px;
  }
}
.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
.footer .block-title strong {
  font-weight: normal;
}
.footer .block-title,
.footer address {
  color: #383b3c;
}
.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: #383b3c;
}
.footer .links a:hover {
  color: #ed1f24;
}
.footer .block-subscribe {
  float: right;
  width: 320px;
  margin-bottom: 30px;
}
.footer .links,
.footer .block-subscribe {
  text-transform: uppercase;
  font-size: 12px;
}
.footer .form-subscribe-header {
  display: none;
}
.footer .links.social-media em {
  background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/social_icons.png);
  background-repeat: no-repeat;
  width: 13px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 7px;
}
@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) {
  .footer .links.social-media em {
    background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/social_icons@2x.png);
    background-size: 50px 125px;
  }
}
.footer .links.social-media em.facebook {
  background-position: 0 -0px;
  height: 13px;
}
.footer .links.social-media a:hover em.facebook {
  background-position: -25px -0px;
}
.footer .links.social-media em.twitter {
  background-position: 0 -24px;
  height: 13px;
}
.footer .links.social-media a:hover em.twitter {
  background-position: -25px -24px;
}
.footer .links.social-media em.youtube {
  background-position: 0 -49px;
  height: 13px;
}
.footer .links.social-media a:hover em.youtube {
  background-position: -25px -49px;
}
.footer .links.social-media em.pinterest {
  background-position: 0 -74px;
  height: 15px;
}
.footer .links.social-media a:hover em.pinterest {
  background-position: -25px -74px;
}
.footer .links.social-media em.rss {
  background-position: 0 -99px;
  height: 13px;
}
.footer .links.social-media a:hover em.rss {
  background-position: -25px -99px;
}
.footer .block-subscribe .input-box {
  float: left;
  width: 65.625%;
  padding-top: 0;
}
.footer .block-subscribe .input-text {
  width: 100%;
  border-right: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.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;
}
.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 #DDDDDD;
  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%;
  }
}

/* ================================================= *
 * 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 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-size: 13px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: normal;
  line-height: 1.4;
  text-transform: none;
}
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #383b3c;
}
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: #ed1f24;
  text-decoration: none;
}

.products-grid .product-name,
.products-list .product-name {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
.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: 95px;
}

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

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

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

.products-grid .price-box {
  color: #AAAAAA;
  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.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/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 #DDDDDD;
  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: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: #DDDDDD;
  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 #ed1f24;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}

.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
.block-layered-nav .block-content > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: #DDDDDD;
  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 #ed1f24;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-content > dl > dt:hover {
  background-color: #ededed;
}
.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #DDDDDD;
}
.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: #AAAAAA;
}

@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: #ed1f24;
  }
  .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 #ed1f24;
    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 #ed1f24;
    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: #ed1f24;
    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: #ffec38;
    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 #DDDDDD;
    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: #383b3c;
    background-color: #F4F4F4;
    padding: 5px 10px;
  }
  .block-layered-nav dl ol > li > a:hover {
    text-decoration: none;
    background: #ededed;
  }
}
.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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 .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-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  color: #ed1f24;
  margin-bottom: 10px;
  border: 0;
}
.product-view .product-shop {
  width: 50%;
  float: right;
}
.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 {
  float: right;
  padding-left: 15px;
  text-align: right;
}
.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 .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  color: #ed1f24;
  font-size: 24px;
}
.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: #383b3c;
}
.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: #383b3c;
}
.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 .add-to-cart-wrapper,
.product-view .block-related {
  width: 50%;
  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 {
    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;
  }
}
.product-img-box {
  width: 50%;
  float: left;
}
.product-img-box .product-name h1 {
  border: 0;
}
.product-img-box .product-image {
  margin-bottom: 10px;
}
.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.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/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 li {
  display: inline-block;
}
.product-image-thumbs li:first-child {
  margin-left: -1px;
}
.product-image-thumbs a {
  display: inline-block;
  border: 1px solid transparent;
}

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

.product-view .product-shop,
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  padding-left: 15px;
}

.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 {
  padding-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #DDDDDD;
}
.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: 40px;
  line-height: 40px;
  font-size: 16px;
  padding: 0px 30px;
  float: left;
  min-width: 160px;
  width: 100%;
  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 #DDDDDD;
}
.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 #DDDDDD;
    background-color: #F4F4F4;
    z-index: 0;
  }
  .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 #DDDDDD;
    border-left: 1px solid #DDDDDD;
  }
  .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: #ed1f24;
  }
  .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 #DDDDDD;
    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: #383b3c;
    font-family: soleto, "soleto", Soleto, "Soleto", 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: #DDDDDD;
    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 #ed1f24;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .product-collateral > dl > dt:hover {
    background-color: #ededed;
  }
  .product-collateral > dl > dd {
    padding: 10px;
    margin: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #DDDDDD;
  }
  .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: #ed1f24;
  }
  .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 #ed1f24;
    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 #ed1f24;
    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 .product-shop .product-name {
    display: block;
  }

  .product-img-box .product-name {
    display: none;
  }
}
@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: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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 {
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 15px 15px;
  border: 1px solid #CCCCCC;
  clear: both;
  position: relative;
}

.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 dd {
  padding: 0 0 10px 0;
  margin: 0 0 5px;
  border-bottom: 1px solid #EDEDED;
}

.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 {
  background-color: #F4F4F4;
  padding: 15px 20px;
  border: 1px solid #CCCCCC;
  border-top: 0;
  margin-bottom: 10px;
}

.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: #383b3c;
}
@media only screen and (max-width: 1199px) {
  .product-options-bottom .product-pricing,
  .product-options-bottom .tier-prices {
    float: none;
    width: 100%;
    text-align: right;
    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: #383b3c;
}

/* "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 {
    text-align: right;
  }
  .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: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
  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,
.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 #DDDDDD;
}

.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 .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: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
.cart-table h2 {
  color: #383b3c;
  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: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}
.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: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", sans-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 #383b3c;
  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 #383b3c;
  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 .product-cart-actions {
  min-width: 60px;
  text-align: center;
}
.cart-table .product-cart-actions .qty {
  height: 30px;
  border-color: #DDDDDD;
  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: 15px;
    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-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
    font-size: 14px;
    font-weight: bold;
    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: 25%;
    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: 75%;
  }
  .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-image .cart-links,
  .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: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
}
.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: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}
.shipping .sp-methods label span {
  font-family: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
  background-color: #ededed;
  min-width: 220px;
}
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: gainsboro;
}

@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: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", 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: #3399CC;
}
.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 .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.allow .step-title .number {
  background-color: #f68f92;
}

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

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

.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 #DDDDDD;
  padding-left: 20px;
}
.block-progress .block-content {
  font-size: 13px;
}
.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 10px;
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: #AAAAAA;
}
.block-progress dt.complete {
  color: #383b3c;
}
.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-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: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-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 .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;
}

#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%;
  }
}
/* ============================================ *
 * Checkout - Success
 * ============================================ */
.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: #383b3c;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 1px solid #DDDDDD;
  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.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/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: #ed1f24;
}
#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: 1px solid #DDDDDD;
  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: #DDDDDD;
  cursor: default;
}

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

.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: #AAAAAA;
}

.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: #383b3c;
  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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  color: #AAAAAA;
}

.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 #DDDDDD;
  padding: 10px;
  position: relative;
}
.remember-me-popup.show {
  display: block;
}
.remember-me-popup p {
  font-family: soleto, "soleto", Soleto, "Soleto", 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 .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: soleto, "soleto", Soleto, "Soleto", 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 ul {
  z-index: 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 #DDDDDD;
  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 #DDDDDD;
  margin-bottom: 45px;
}
.dashboard .box-account p,
.dashboard .box-account address {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-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: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", sans-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: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-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: soleto, "soleto", Soleto, "Soleto", 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) {
  .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: soleto, "soleto", Soleto, "Soleto", sans-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 #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews h2 {
  color: #3399CC;
  font-size: 12px;
  text-transform: uppercase;
}
#customer-reviews h2 span {
  color: #383b3c;
}
#customer-reviews h3 {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews h3 span {
  color: #3399CC;
}
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #DDDDDD;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #DDDDDD;
  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: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  margin: 10px 0;
}
#customer-reviews dl dd .ratings-table {
  font-family: soleto, "soleto", Soleto, "Soleto", 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: #3399CC;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.review-summary-table {
  border-bottom: 1px solid #DDDDDD;
  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: soleto, "soleto", Soleto, "Soleto", 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: #ffec38;
}
.slideshow-pager span.cycle-pager-active:before {
  background-color: #ffec38;
}
.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 #ffec38 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 #ffec38;
}

.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: soleto, "soleto", Soleto, "Soleto", 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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
#wishlist-table .product-name {
  font-size: 16px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  margin-bottom: 0;
  text-transform: capitalize;
}
#wishlist-table .product-name a {
  color: #383b3c;
}
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  margin: 5px 0;
}
#wishlist-table textarea {
  border: 1px solid #DDDDDD;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: soleto, "soleto", Soleto, "Soleto", 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 #ed1f24;
}
#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: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 12px;
}
#wishlist-table .price-box .price {
  color: #383b3c;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #ed1f24;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #ed1f24;
}
#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
 * ============================================ */
.header-minicart {
  display: inline-block;
}
@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;
}
.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.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/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 {
  color: #50A4CF;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  display: block;
  color: #383b3c;
  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: #ed1f24;
}
.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: #383b3c;
  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: #383b3c;
}
.header-minicart .minicart-actions {
  padding: 10px;
  margin-top: 0px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.header-minicart .minicart-actions .cart-link {
  height: 33px;
  line-height: 39px;
  text-transform: uppercase;
  font-size: 13px;
}
.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: inline;
}

@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 .subtotal .label {
    color: #383b3c;
  }
  .header-minicart .minicart-wrapper:before {
    background-color: #EDEDED;
  }
  .header-minicart .quantity-button {
    float: none;
  }
  .header-minicart .header-minicart .block-cart {
    padding: 15px;
  }
  .header-minicart .header-minicart .block-subtitle {
    padding-top: 59px;
  }
  .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 .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%;
  }
}
/* ============================================ *
 * 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 #ed1f24;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.search-autocomplete ul li {
  border-bottom: 1px solid #F4F4F4;
  color: #ed1f24;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left;
}
.search-autocomplete ul li:hover {
  color: #e01217;
}
.search-autocomplete ul li.selected {
  background-color: #ed1f24;
  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 #ed1f24;
  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 #DDDDDD;
  font-size: 16px;
  font-family: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  padding-bottom: 10px;
}
.product-review .ratings-table {
  font-family: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
  font-size: 16px;
  font-weight: 400;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  color: #737373;
  font-family: soleto, "soleto", Soleto, "Soleto", 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 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}
.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #383b3c;
}
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #383b3c;
}
.cms-page-view .std li,
.cms-no-route .std li {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-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 .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: soleto, "soleto", Soleto, "Soleto", sans-serif;
}

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", 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: #DDDDDD;
  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 #ed1f24;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
#accordion > dl > dt:hover {
  background-color: #ededed;
}
#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #DDDDDD;
}
#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: soleto, "soleto", Soleto, "Soleto", 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 #DDDDDD;
  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 #DDDDDD;
  border-right: 1px solid #DDDDDD;
  margin-bottom: 10px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #ed1f24;
}
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 #DDDDDD;
  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 #DDDDDD;
  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;
}

/*# sourceMappingURL=styles.css.map */

@charset "UTF-8";
/*
// ----------------------------------------------
// 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; }
}

// ----------------------------------------------
*/
/*! 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;
}

/* ============================================ *
 * 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;
}

/* ====== MIXINS ====== */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url('https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/ajax-loader.gif?1612312008') center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url('https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/scss/fonts/slick.eot?1612312008');
  src: url('https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/scss/fonts/slick.eot?&1612312008#iefix') format("embedded-opentype"), url('https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/scss/fonts/slick.woff?1612312008') format("woff"), url('https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/scss/fonts/slick.ttf?1612312008') format("truetype"), url('https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/scss/fonts/slick.svg?1612312008#slick') format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background: transparent;
  color: transparent;
  outline: none;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #ed1f24;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* ====== EXTEND CLASSES ====== */
/* ======
EXTEND CLASSES
	- Font Weight Extends
	- Font Style Extends
	- Width Extends
====== */
/*================================================================================
$ WIDTH EXTENDS
================================================================================*/
.fl-100 {
  float: left;
  width: 100%;
}

.fl-75 {
  float: left;
  width: 75%;
}

.fl-50 {
  float: left;
  width: 50%;
}

.fl-33 {
  float: left;
  width: 33.3333%;
}

.fl-25 {
  float: left;
  width: 25%;
}

/*================================================================================
$ FONT WEIGHT EXTENDS
================================================================================*/
.fw-300 {
  font-weight: 300;
}

.fw-600 {
  font-weight: 600;
}

/*================================================================================
$ FONT STYLE EXTENDS
================================================================================*/
.style-italic {
  font-style: italic;
}

.style-normal {
  font-style: normal;
}

/*================================================================================
$ LAYOUT EXTENDS
================================================================================*/
.vert-top {
  display: inline-block;
  vertical-align: top;
}

.vert-middle {
  display: inline-block;
  vertical-align: middle;
}

.vert-bottom {
  display: inline-block;
  vertical-align: bottom;
}

/* ====== SASS BASE ====== */
/* ======
SASS BASE
	- Helpers
	- Objects
====== */
/*================================================================================
$ HELPERS
================================================================================*/
.clearfix, .page-header-container, .header-section__inner, .google-translate-holder .translation-menu > li, .header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form, nav#nav ol.nav-primary, .skip-links, .skip-links #header-account ul, .header-container .header-minicart-collection > a,
.header-container .header-minicart-delivery > a, .form-list, .openaccount-block .openaccount-block__inner, .cmsfaqs-block .cmsfaqs-block__inner, .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__inner, .grouped-items-table-wrapper .grouped-items-table, .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner, .checkout-cart-index .totals-button-container__inner, .order-templates-table, .order-templates-table .order-templates-table__section__row .order-templates-table__section__row__inner, .template-popup-table, .template-popup-table .template-popup-table__section__row .template-popup-table__section__row__inner, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-row__inner,
.cf,
.centered,
.full-width {
  zoom: 1;
}
.clearfix:before, .page-header-container:before, .header-section__inner:before, .google-translate-holder .translation-menu > li:before, .header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form:before, nav#nav ol.nav-primary:before, .skip-links:before, .skip-links #header-account ul:before, .header-container .header-minicart-collection > a:before,
.header-container .header-minicart-delivery > a:before, .form-list:before, .openaccount-block .openaccount-block__inner:before, .cmsfaqs-block .cmsfaqs-block__inner:before, .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__inner:before, .grouped-items-table-wrapper .grouped-items-table:before, .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner:before, .checkout-cart-index .totals-button-container__inner:before, .order-templates-table:before, .order-templates-table .order-templates-table__section__row .order-templates-table__section__row__inner:before, .template-popup-table:before, .template-popup-table .template-popup-table__section__row .template-popup-table__section__row__inner:before, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-row__inner:before, .clearfix:after, .page-header-container:after, .header-section__inner:after, .google-translate-holder .translation-menu > li:after, .header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form:after, nav#nav ol.nav-primary:after, .skip-links:after, .skip-links #header-account ul:after, .header-container .header-minicart-collection > a:after,
.header-container .header-minicart-delivery > a:after, .form-list:after, .openaccount-block .openaccount-block__inner:after, .cmsfaqs-block .cmsfaqs-block__inner:after, .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__inner:after, .grouped-items-table-wrapper .grouped-items-table:after, .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner:after, .checkout-cart-index .totals-button-container__inner:after, .order-templates-table:after, .order-templates-table .order-templates-table__section__row .order-templates-table__section__row__inner:after, .template-popup-table:after, .template-popup-table .template-popup-table__section__row .template-popup-table__section__row__inner:after, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-row__inner:after,
.cf:before,
.centered:before,
.full-width:before,
.cf:after,
.centered:after,
.full-width:after {
  content: "";
  display: table;
}
.clearfix:after, .page-header-container:after, .header-section__inner:after, .google-translate-holder .translation-menu > li:after, .header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form:after, nav#nav ol.nav-primary:after, .skip-links:after, .skip-links #header-account ul:after, .header-container .header-minicart-collection > a:after,
.header-container .header-minicart-delivery > a:after, .form-list:after, .openaccount-block .openaccount-block__inner:after, .cmsfaqs-block .cmsfaqs-block__inner:after, .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__inner:after, .grouped-items-table-wrapper .grouped-items-table:after, .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner:after, .checkout-cart-index .totals-button-container__inner:after, .order-templates-table:after, .order-templates-table .order-templates-table__section__row .order-templates-table__section__row__inner:after, .template-popup-table:after, .template-popup-table .template-popup-table__section__row .template-popup-table__section__row__inner:after, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-row__inner:after,
.cf:after,
.centered:after,
.full-width:after {
  clear: both;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.visible {
  display: block !important;
  visibility: visible;
}

.is-closed {
  border: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  padding: 0 !important;
}

.is-open {
  height: auto;
  overflow: visible;
}

.palm {
  display: none !important;
}

.lap {
  display: none !important;
}

.not-desk {
  display: none !important;
}

.palm-link {
  display: none !important;
}

@media screen and (min-width: 0px) {
  .desk {
    display: none !important;
  }

  .not-desk {
    display: inherit !important;
  }

  .lap {
    display: none !important;
  }

  .not-lap {
    display: inherit !important;
  }

  .palm {
    display: inherit !important;
  }

  .not-palm {
    display: none !important;
  }
}
@media screen and (min-width: 0) and (max-width: 599px) {
  .not-palm-link {
    display: none !important;
  }

  .palm-link {
    display: inline-block !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .desk {
    display: none !important;
  }

  .not-desk {
    display: inherit !important;
  }

  .lap {
    display: inherit !important;
  }

  .not-lap {
    display: none !important;
  }

  .palm {
    display: none !important;
  }

  .not-palm {
    display: inherit !important;
  }
}
@media screen and (min-width: 0) and (max-width: 769px) {
  .palm {
    display: inherit !important;
  }

  .not-palm {
    display: none !important;
  }
}
@media screen and (min-width: 900px) {
  .desk {
    display: inherit !important;
  }

  .not-desk {
    display: none !important;
  }

  .lap {
    display: none !important;
  }

  .not-lap {
    display: inherit !important;
  }

  .palm {
    display: none !important;
  }

  .not-palm {
    display: inherit !important;
  }
}
.float--right, .fr {
  float: right !important;
}

.float--left, .fl {
  float: left !important;
}

.text--left {
  text-align: left  !important;
}

.text--center {
  text-align: center !important;
}

.text--right {
  text-align: right !important;
}

.flush {
  margin: 0 !important;
}

.flush--top {
  margin-top: 0 !important;
}

.flush--right {
  margin-right: 0 !important;
}

.flush--bottom {
  margin-bottom: 0 !important;
}

.flush--left {
  margin-left: 0 !important;
}

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.clear--both, .cb {
  clear: both !important;
}

/*================================================================================
$ OBJECTS
================================================================================*/
@media screen and (max-width: 599px) {
  .palm-1-1 {
    width: 100%;
  }

  .palm-2-1 {
    width: 50%;
  }

  .palm-2-2 {
    width: 100%;
  }

  .palm-3-1 {
    width: 33.33333%;
  }

  .palm-3-2 {
    width: 66.66667%;
  }

  .palm-3-3 {
    width: 100%;
  }

  .palm-4-1 {
    width: 25%;
  }

  .palm-4-2 {
    width: 50%;
  }

  .palm-4-3 {
    width: 75%;
  }

  .palm-4-4 {
    width: 100%;
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .lap-1-1 {
    width: 100%;
  }

  .lap-2-1 {
    width: 50%;
  }

  .lap-2-2 {
    width: 100%;
  }

  .lap-3-1 {
    width: 33.33333%;
  }

  .lap-3-2 {
    width: 66.66667%;
  }

  .lap-3-3 {
    width: 100%;
  }

  .lap-4-1 {
    width: 25%;
  }

  .lap-4-2 {
    width: 50%;
  }

  .lap-4-3 {
    width: 75%;
  }

  .lap-4-4 {
    width: 100%;
  }

  .lap-5-1 {
    width: 20%;
  }

  .lap-5-2 {
    width: 40%;
  }

  .lap-5-3 {
    width: 60%;
  }

  .lap-5-4 {
    width: 80%;
  }

  .lap-5-5 {
    width: 100%;
  }

  .lap-6-1 {
    width: 16.66667%;
  }

  .lap-6-2 {
    width: 33.33333%;
  }

  .lap-6-3 {
    width: 50%;
  }

  .lap-6-4 {
    width: 66.66667%;
  }

  .lap-6-5 {
    width: 83.33333%;
  }

  .lap-6-6 {
    width: 100%;
  }

  .lap-7-1 {
    width: 14.28571%;
  }

  .lap-7-2 {
    width: 28.57143%;
  }

  .lap-7-3 {
    width: 42.85714%;
  }

  .lap-7-4 {
    width: 57.14286%;
  }

  .lap-7-5 {
    width: 71.42857%;
  }

  .lap-7-6 {
    width: 85.71429%;
  }

  .lap-7-7 {
    width: 100%;
  }

  .lap-8-1 {
    width: 12.5%;
  }

  .lap-8-2 {
    width: 25%;
  }

  .lap-8-3 {
    width: 37.5%;
  }

  .lap-8-4 {
    width: 50%;
  }

  .lap-8-5 {
    width: 62.5%;
  }

  .lap-8-6 {
    width: 75%;
  }

  .lap-8-7 {
    width: 87.5%;
  }

  .lap-8-8 {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .desk-1-1 {
    width: 100%;
  }

  .desk-2-1 {
    width: 50%;
  }

  .desk-2-2 {
    width: 100%;
  }

  .desk-3-1 {
    width: 33.33333%;
  }

  .desk-3-2 {
    width: 66.66667%;
  }

  .desk-3-3 {
    width: 100%;
  }

  .desk-4-1 {
    width: 25%;
  }

  .desk-4-2 {
    width: 50%;
  }

  .desk-4-3 {
    width: 75%;
  }

  .desk-4-4 {
    width: 100%;
  }

  .desk-6-1 {
    width: 16.66667%;
  }

  .desk-6-2 {
    width: 33.33333%;
  }

  .desk-6-3 {
    width: 50%;
  }

  .desk-6-4 {
    width: 66.66667%;
  }

  .desk-6-5 {
    width: 83.33333%;
  }

  .desk-6-6 {
    width: 100%;
  }

  .desk-7-1 {
    width: 14.28571%;
  }

  .desk-7-2 {
    width: 28.57143%;
  }

  .desk-7-3 {
    width: 42.85714%;
  }

  .desk-7-4 {
    width: 57.14286%;
  }

  .desk-7-5 {
    width: 71.42857%;
  }

  .desk-7-6 {
    width: 85.71429%;
  }

  .desk-7-7 {
    width: 100%;
  }

  .desk-8-1 {
    width: 12.5%;
  }

  .desk-8-2 {
    width: 25%;
  }

  .desk-8-3 {
    width: 37.5%;
  }

  .desk-8-4 {
    width: 50%;
  }

  .desk-8-5 {
    width: 62.5%;
  }

  .desk-8-6 {
    width: 75%;
  }

  .desk-8-7 {
    width: 87.5%;
  }

  .desk-8-8 {
    width: 100%;
  }
}
/* ====== BASE ====== */
/* ======
BASE
	- Fonts
	- Classes 
	- Elements
	- Special Element Classes
	- Global Sections
	- General Layout
====== */
/*================================================================================
$ FONTS
================================================================================*/
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: normal;
  font-weight: 100;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-UltraLight.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-UltraLight.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-UltraLight.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: italic;
  font-weight: 100;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-UltraLightItalic.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-UltraLightItalic.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-UltraLightItalic.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: normal;
  font-weight: 300;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Regular.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Regular.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Regular.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: italic;
  font-weight: 300;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Italic.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Italic.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Italic.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: normal;
  font-weight: 400;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Medium.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Medium.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Medium.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: italic;
  font-weight: 400;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-MediumItalic.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-MediumItalic.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-MediumItalic.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: normal;
  font-weight: 600;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-DemiBold.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-DemiBold.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-DemiBold.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: italic;
  font-weight: 600;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-DemiBoldItalic.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-DemiBoldItalic.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-DemiBoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: normal;
  font-weight: 700;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Bold.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Bold.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: italic;
  font-weight: 700;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-BoldItalic.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-BoldItalic.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: normal;
  font-weight: 900;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Heavy.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Heavy.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-Heavy.ttf") format("truetype");
}
@font-face {
  font-family: 'AvenirNextCondensed';
  font-style: italic;
  font-weight: 900;
  src: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-HeavyItalic.woff2") format("woff2"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-HeavyItalic.woff") format("woff"), url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/fonts/AvenirNextCondensed-HeavyItalic.ttf") format("truetype");
}
/*================================================================================
$ CLASSES
================================================================================*/
*, *:before, *:after {
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-font-smoothing: subpixel-antialiased;
  -ms-font-smoothing: subpixel-antialiased;
  -o-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: auto;
  -ms-text-size-adjust: auto;
}

body {
  color: #383b3c;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  min-width: 320px;
  position: relative;
}

/*================================================================================
$ ELEMENTS
================================================================================*/
h1, h2, h3, h4, h5, h6, hgroup {
  line-height: 1.1;
  margin-bottom: 10px;
}

p, blockquote, address, ul, ol, dl, table, fieldset, figure, figcaption, details, pre {
  margin-bottom: 0;
}

p {
  font-size: 16px;
  margin: 10px 0 0;
}
p:first-child {
  margin-top: 0;
}
p.no-margin {
  margin: 0;
}

a {
  color: #ffec38;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #ffec38;
  cursor: pointer;
  outline: none;
  text-decoration: underline;
}

ul {
  list-style: none;
  margin-left: 0;
}

li {
  line-height: 1.25;
  margin-top: 5px;
}
li:first-child {
  margin-top: 0;
}

input, textarea {
  -webkit-appearance: none;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  color: #383b3c;
  cursor: text;
  font-weight: 300;
  padding: 5px;
  width: 100%;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #383b3c;
  opacity: 1;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #383b3c;
  opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #383b3c;
  opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #383b3c;
  opacity: 1;
}

input:focus, textarea:focus {
  background-color: #FFFFFF;
  color: #383b3c;
}

input.input-text:focus, textarea:focus {
  background-color: #FFFFFF;
  border: 1px solid #ffec38;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  color: #000000;
}

input[type="submit"], input[type="text"] {
  line-height: normal !important;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

input[type="radio"] {
  -webkit-appearance: radio;
}

label {
  cursor: text;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  margin: 0;
}

table {
  margin: 10px 0;
}

tr {
  border-bottom: 1px solid #F2F2F2;
}
tr:first-child {
  border-top: 1px solid #F2F2F2;
}

th, td {
  padding: 5px;
  text-align: left;
  vertical-align: middle;
}

th {
  background-color: #EEEEEE;
  border-left: 1px solid #FFFFFF;
  color: #383b3c;
}
th:first-child {
  border-left: none;
}

td {
  border-right: 1px solid #F2F2F2;
  color: #000000;
}
td:first-child {
  border-left: 1px solid #F2F2F2;
}

iframe {
  border: none;
}

.primary {
  color: #ffec38;
}

.secondary {
  color: #ed1f24;
}

.primary-bg {
  background-color: #ffec38;
}

.secondary-bg {
  background-color: #ed1f24;
}

.all-break {
  zoom: 1;
}
.all-break:before, .all-break:after {
  content: "";
  display: table;
}
.all-break:after {
  clear: both;
}

/*================================================================================
$ SPECIAL ELEMENT CLASSES
================================================================================*/
.no-display {
  display: none !important;
}

.hide-element {
  visibility: hidden;
}

.centered {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 10px;
  width: 100%;
}

.full-width {
  margin: 0 auto;
  width: 100%;
}

/*================================================================================
$ GLOBAL SECTIONS
================================================================================*/
.bg-section {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media screen and (min-width: 0) and (max-width: 899px) {
  .bg-section {
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .bg-section {
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
}

.right-col, .left-col {
  display: inline-block;
  float: left;
  width: 50%;
}
@media screen and (min-width: 0) and (max-width: 769px) {
  .right-col, .left-col {
    width: 100%;
  }
}

.central-col {
  display: inline-block;
  float: left;
  width: 100%;
}

.page-width {
  margin: 0 auto;
  max-width: 1120px;
}

iframe[name="google_conversion_frame"] {
  display: none;
}

@media screen and (max-width: 599px) {
  .not-mobile {
    display: none !important;
  }
}
/*================================================================================
$ GENERAL LAYOUT
================================================================================*/
.breadcrumbs {
  margin: 10px 0;
}
.breadcrumbs > p, .breadcrumbs > ul {
  display: inline-block;
  vertical-align: top;
  z-index: 0;
}
.breadcrumbs p, .breadcrumbs li, .breadcrumbs span, .breadcrumbs strong, .breadcrumbs a {
  color: #383b3c;
  font-size: 12px;
  font-weight: normal;
}
.breadcrumbs strong {
  color: #ffec38;
  font-weight: bold;
  vertical-align: top;
  font-size: 11px;
}
.breadcrumbs a:hover, .breadcrumbs a:focus, .breadcrumbs a:active {
  color: #ffec38;
}

.product-page-text {
  display: none !important;
}

.zoomContainer * {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

body.catalog-product-view .breadcrumbs {
  margin: 10px 0 20px;
  max-width: 100% !important;
}
body.catalog-product-view .product-page-text {
  display: inline-block !important;
  font-size: 11px;
}

/* ====== BUTTONS ====== */
/* ======
BUTTONS
	- General Buttons
	- Extra Buttons
====== */
/*================================================================================
$ GENERAL BUTTONS
================================================================================*/
button, input[type="submit"], .btn, .primary-btn, .primary-ghost-btn, .secondary-btn, .close-window-btn, .secondary-ghost-btn, .tertiary-btn, .tertiary-ghost-btn, .quaternary-btn, .quaternary-ghost-btn, .contact-btn, .view-btn, .search-btn, .update-total-btn, .grey-btn, .btn-update, .btn-add,
.btn-cart,
#header-cart .minicart-wrapper .minicart-actions .grey-btn,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--collection,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, .download-btn, .download-pdf-btn {
  background-color: #ffec38;
  border: 2px solid #ffec38;
  color: #FFFFFF;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  padding: 8px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
  -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
  -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
  -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
  transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
  vertical-align: middle;
  width: auto;
}
button:hover, button:active, button:focus, input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus, .btn:hover, .primary-btn:hover, .primary-ghost-btn:hover, .secondary-btn:hover, .close-window-btn:hover, .secondary-ghost-btn:hover, .tertiary-btn:hover, .tertiary-ghost-btn:hover, .quaternary-btn:hover, .quaternary-ghost-btn:hover, .contact-btn:hover, .view-btn:hover, .search-btn:hover, .update-total-btn:hover, .grey-btn:hover, .btn-update:hover, .btn-add:hover,
.btn-cart:hover,
#header-cart .minicart-wrapper .minicart-actions .grey-btn:hover,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:hover,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:hover, .download-btn:hover, .download-pdf-btn:hover, .btn:active, .primary-btn:active, .primary-ghost-btn:active, .secondary-btn:active, .close-window-btn:active, .secondary-ghost-btn:active, .tertiary-btn:active, .tertiary-ghost-btn:active, .quaternary-btn:active, .quaternary-ghost-btn:active, .contact-btn:active, .view-btn:active, .search-btn:active, .update-total-btn:active, .grey-btn:active, .btn-update:active, .btn-add:active,
.btn-cart:active,
#header-cart .minicart-wrapper .minicart-actions .grey-btn:active,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:active,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:active, .download-btn:active, .download-pdf-btn:active, .btn:focus, .primary-btn:focus, .primary-ghost-btn:focus, .secondary-btn:focus, .close-window-btn:focus, .secondary-ghost-btn:focus, .tertiary-btn:focus, .tertiary-ghost-btn:focus, .quaternary-btn:focus, .quaternary-ghost-btn:focus, .contact-btn:focus, .view-btn:focus, .search-btn:focus, .update-total-btn:focus, .grey-btn:focus, .btn-update:focus, .btn-add:focus,
.btn-cart:focus,
#header-cart .minicart-wrapper .minicart-actions .grey-btn:focus,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:focus,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:focus, .download-btn:focus, .download-pdf-btn:focus {
  background-color: #fff385;
  border-color: #fff385;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
  -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
  -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
  -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
  transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
}

.primary-ghost-btn {
  background-color: transparent;
  color: #ffec38;
}
.primary-ghost-btn:hover, .primary-ghost-btn:active, .primary-ghost-btn:focus {
  background-color: #ffec38;
  color: #FFFFFF;
}

.secondary-btn, .close-window-btn {
  background-color: #ed1f24;
  border-color: #ed1f24;
  color: #FFFFFF;
}
.secondary-btn:hover, .close-window-btn:hover, .secondary-btn:active, .close-window-btn:active, .secondary-btn:focus, .close-window-btn:focus {
  background-color: #f36669;
  border-color: #f36669;
  color: #FFFFFF;
}

.secondary-ghost-btn {
  background-color: transparent;
  border-color: #ed1f24;
  color: #ed1f24;
}
.secondary-ghost-btn:hover, .secondary-ghost-btn:active, .secondary-ghost-btn:focus {
  background-color: #ed1f24;
  color: #FFFFFF;
}

.tertiary-btn {
  background-color: #383b3c;
  border-color: #383b3c;
  color: #FFFFFF;
}
.tertiary-btn:hover, .tertiary-btn:active, .tertiary-btn:focus {
  background-color: #5d6264;
  border-color: #5d6264;
  color: #FFFFFF;
}

.tertiary-ghost-btn {
  background-color: transparent;
  border-color: #383b3c;
  color: #383b3c;
}
.tertiary-ghost-btn:hover, .tertiary-ghost-btn:active, .tertiary-ghost-btn:focus {
  background-color: #383b3c;
  color: #FFFFFF;
}

.quaternary-btn {
  background-color: #cecdcd;
  border-color: #cecdcd;
  color: #FFFFFF;
}
.quaternary-btn:hover, .quaternary-btn:active, .quaternary-btn:focus {
  background-color: #e7e7e7;
  border-color: #e7e7e7;
  color: #cecdcd;
}

.quaternary-ghost-btn {
  background-color: transparent;
  border-color: #cecdcd;
  color: #cecdcd;
}
.quaternary-ghost-btn:hover, .quaternary-ghost-btn:active, .quaternary-ghost-btn:focus {
  background-color: #cecdcd;
  color: #FFFFFF;
}

/*================================================================================
$ EXTRA BUTTONS
================================================================================*/
.contact-btn {
  background-color: #ffec38;
  border: none;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 17px;
  font-weight: 600;
  max-width: 198px;
  width: 100%;
}
.contact-btn:hover, .contact-btn:active, .contact-btn:focus {
  background-color: #ffec38;
  border: none;
  box-shadow: none;
  color: #383b3c;
}

.view-btn {
  background-color: #ffec38;
  border: none;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 17px;
  font-weight: 600;
  width: 100%;
}
.view-btn:hover, .view-btn:active, .view-btn:focus {
  background-color: #ffec38;
  border: none;
  box-shadow: none;
  color: #383b3c;
}

.method-save, .method-approval {
  text-align: center;
  margin: 0 !important;
}
.method-save button, .method-approval button {
  max-width: 212px;
}

.method-save {
  margin: 0 0 15px !important;
}

.search-btn, .update-total-btn {
  background-color: #ffec38;
  border: none;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 17px;
  font-weight: 600;
  max-width: 198px;
  width: 100%;
}
.search-btn:hover, .update-total-btn:hover, .search-btn:active, .update-total-btn:active, .search-btn:focus, .update-total-btn:focus {
  background-color: #ffec38;
  border: none;
  box-shadow: none;
  color: #FFFFFF;
}

.grey-btn {
  background-color: #CECECE;
  border: none;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  max-width: 198px;
  padding: 8px 20px;
  width: 100%;
}
.grey-btn:hover, .grey-btn:active, .grey-btn:focus {
  background-color: #CECECE;
  border: none;
  box-shadow: none;
  color: #383b3c;
}

.btn-update {
  background-color: #ffec38;
  border: none;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 17px;
  font-weight: 600;
  max-width: 198px;
  width: 100%;
}
.btn-update:hover, .btn-update:active, .btn-update:focus {
  background-color: #ffec38;
  border: none;
  box-shadow: none;
  color: #FFFFFF;
}

.btn-add,
.btn-cart,
#header-cart .minicart-wrapper .minicart-actions .grey-btn,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--collection,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery {
  background-color: #ed1f24;
  border: 1px solid #ed1f24;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  max-width: 198px;
  padding: 8px 20px;
  width: 100%;
}
.btn-add:hover, .btn-add:active, .btn-add:focus,
.btn-cart:hover,
#header-cart .minicart-wrapper .minicart-actions .grey-btn:hover,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:hover,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:hover,
.btn-cart:active,
#header-cart .minicart-wrapper .minicart-actions .grey-btn:active,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:active,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:active,
.btn-cart:focus,
#header-cart .minicart-wrapper .minicart-actions .grey-btn:focus,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:focus,
#header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:focus {
  background-color: #FFFFFF;
  border: 1px solid #ed1f24;
  box-shadow: none;
  color: #ed1f24;
}

.download-btn {
  background-color: #ed1f24;
  border: none;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 17px;
  font-weight: 600;
  max-width: 198px;
  width: 100%;
}
.download-btn:hover, .download-btn:active, .download-btn:focus {
  background-color: #ed1f24;
  border: none;
  box-shadow: none;
  color: #383b3c;
}

.download-pdf-btn {
  background-color: #EDEDED;
  border: none;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
}
.download-pdf-btn:hover, .download-pdf-btn:active, .download-pdf-btn:focus {
  background-color: #EDEDED;
  border: none;
  box-shadow: none;
  color: #FFFFFF;
}

.update-total-btn {
  margin-top: 10px;
  max-width: none;
  width: 100%;
}

.sidebar-btn {
  color: #383b3c;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
  padding: 5px;
  text-transform: none;
  width: 49%;
}

.template-add-btn {
  margin-left: 2%;
}

.close-window-btn {
  background-color: #ed1f24 !important;
  border: 1px solid #ed1f24 !important;
  color: #FFFFFF !important;
}
.close-window-btn:hover, .close-window-btn:active, .close-window-btn:focus {
  background-color: #f36669 !important;
  border-color: #f36669 !important;
  color: #FFFFFF !important;
}

/* ====== GENERAL ====== */
/* ======
GENERAL
    - General
    - Breadcrumbs
    - Messages
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.customer-account .col-left.sidebar .block.block-wishlist {
  display: none;
}

.customer-account-index .box-account.box-info.box-creditbalance {
  padding-bottom: 32px;
}
.customer-account-index .box-account.box-info.box-creditbalance .box-creditbalance__content {
  padding-top: 30px;
}

.page-header,
.main-container,
.footer-container {
  max-width: 1140px;
}
.page-header address.copyright,
.main-container address.copyright,
.footer-container address.copyright {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}

.col1-layout .col-main {
  width: 100%;
}

.main-container {
  border: 0;
  background-color: #FFFFFF;
}
body.cms-index-index .main-container {
  max-width: none;
  padding: 0;
}

.wrapper {
  background: none !important;
}

@media screen and (min-width: 0) and (max-width: 1139px) {
  .hide {
    display: none;
  }
}

.std {
  float: left;
  width: 100%;
}

@media screen and (max-width: 770px) {
  .desktop-only {
    display: none !important;
  }
}

.mobile-only {
  display: none !important;
}
@media screen and (max-width: 770px) {
  .mobile-only {
    display: block !important;
  }
}

.supplier-only {
  display: none;
}
body.loggedOut .supplier-only, body.supplier-customer .supplier-only {
  display: block;
}

/*================================================================================
$ BREADCRUMBS
================================================================================*/
.breadcrumbs {
  margin: 0;
  max-width: 70%;
}
@media screen and (max-width: 989px) {
  .breadcrumbs {
    max-width: 50% !important;
  }
}
@media screen and (max-width: 479px) {
  .breadcrumbs {
    max-width: none !important;
  }
}
.breadcrumbs ul {
  width: 100%;
}
.breadcrumbs ul li {
  display: inline-block;
  font-size: 15px;
  margin-top: 0;
  width: auto;
}
.breadcrumbs ul li a, .breadcrumbs ul li strong {
  color: #AAAAAA;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 15px;
  font-weight: normal;
}
.breadcrumbs ul li span {
  color: #AAAAAA;
}
@media screen and (max-width: 989px) {
  .breadcrumbs {
    display: inline-block !important;
  }
}

@media only screen and (max-width: 770px) {
  .breadcrumbs {
    display: none;
  }
}
/*================================================================================
$ MESSAGES
================================================================================*/
.messages {
  margin: 0 auto;
  max-width: none;
  z-index: 0;
}
.messages li span {
  font-size: 16px;
}

.success-msg ul {
  z-index: 0;
}
.success-msg ul li:before {
  border-width: 0;
}
.success-msg ul li span {
  color: #383b3c;
}

.cms-page-view.cms-subscriptions .subscriptions-table {
  border: 1px solid #DDDDDD;
  width: 100%;
}
.cms-page-view.cms-subscriptions .subscriptions-table th {
  background-color: #FFFFFF;
  border-right: 1px solid #DDDDDD;
  font-weight: bold;
  padding: 20px;
}
.cms-page-view.cms-subscriptions .subscriptions-table td {
  text-align: center;
}

/*================================================================================
$ EMAIL FRIEND
================================================================================*/
.sendfriend-product-send .send-friend {
  margin-top: 50px;
}
.sendfriend-product-send .send-friend h1 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 600;
  text-transform: capitalize;
}
.sendfriend-product-send .send-friend form h2 {
  color: #383b3c;
  text-transform: capitalize;
}
.sendfriend-product-send .send-friend form .input-box {
  max-width: none;
}
.sendfriend-product-send .send-friend form input {
  border: 1px solid #000000 !important;
  height: 44px;
  margin-bottom: 10px;
  width: 100%;
}
.sendfriend-product-send .send-friend form input::-webkit-input-placeholder {
  color: #D8D8D8;
  font-size: 13px;
}
.sendfriend-product-send .send-friend form input:-moz-placeholder {
  color: #D8D8D8;
  font-size: 13px;
}
.sendfriend-product-send .send-friend form input::-moz-placeholder {
  color: #D8D8D8;
  font-size: 13px;
}
.sendfriend-product-send .send-friend form input:-ms-input-placeholder {
  color: #D8D8D8;
  font-size: 13px;
}
.sendfriend-product-send .send-friend form textarea {
  max-width: none;
  width: 100%;
}
.sendfriend-product-send .send-friend form textarea::-webkit-input-placeholder {
  color: #D8D8D8;
  font-size: 13px;
}
.sendfriend-product-send .send-friend form textarea:-moz-placeholder {
  color: #D8D8D8;
  font-size: 13px;
}
.sendfriend-product-send .send-friend form textarea::-moz-placeholder {
  color: #D8D8D8;
  font-size: 13px;
}
.sendfriend-product-send .send-friend form textarea:-ms-input-placeholder {
  color: #D8D8D8;
  font-size: 13px;
}
.sendfriend-product-send .send-friend form .buttons-set {
  max-width: none !important;
}
.sendfriend-product-send .send-friend form .buttons-set .back-link {
  font-size: 14px;
}
.sendfriend-product-send .send-friend form .buttons-set .back-link > a {
  color: #ed1f24;
}
.sendfriend-product-send .send-friend form .buttons-set button.button {
  margin-left: 12px;
}
@media screen and (max-width: 479px) {
  .sendfriend-product-send .send-friend form .buttons-set button.button {
    margin-top: 10px;
  }
}
.sendfriend-product-send .send-friend form .buttons-set button.button span span {
  text-transform: capitalize;
}
.sendfriend-product-send .col-right.sidebar {
  margin-top: 50px;
}
.sendfriend-product-send .col-right.sidebar .block.block-reorder {
  display: none;
}
.sendfriend-product-send .col-right.sidebar .block-title strong span {
  text-transform: capitalize;
}
.sendfriend-product-send .col-right.sidebar .block-content li.item {
  display: inline-block;
  margin: 0;
  width: 49%;
}
.sendfriend-product-send .col-right.sidebar .block-reorder #cart-sidebar-reorder li {
  width: 100%;
}
.sendfriend-product-send .col-right.sidebar .block-reorder #cart-sidebar-reorder li input {
  width: auto;
}
.sendfriend-product-send .col-right.sidebar .actions > a {
  font-size: 14px;
}
.sendfriend-product-send .col-right.sidebar .actions .btn-cart span span, .sendfriend-product-send .col-right.sidebar .actions #header-cart .minicart-wrapper .minicart-actions .grey-btn span span, #header-cart .minicart-wrapper .minicart-actions .sendfriend-product-send .col-right.sidebar .actions .grey-btn span span, .sendfriend-product-send .col-right.sidebar .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection span span, #header-cart .minicart-wrapper .minicart-actions .sendfriend-product-send .col-right.sidebar .actions .checkout-button--collection span span, .sendfriend-product-send .col-right.sidebar .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery span span, #header-cart .minicart-wrapper .minicart-actions .sendfriend-product-send .col-right.sidebar .actions .checkout-button--delivery span span {
  color: #FFFFFF;
}

/* ====== HEADER ====== */
/* ======
HEADER
    - General
    - Logo
    - Search
    - Account / Cart Icons
    - Language Switcher
    - Additional Links
    - Navigation
====== */
/* ====== MINICART ====== */
/* ======
MINICART
    - P2 Design - General
====== */
/*================================================================================
$ P2 DESIGN - GENERAL
================================================================================*/
#header-cart .minicart-wrapper {
  background: #EAEAEB;
}
#header-cart .minicart-wrapper .block-subtitle {
  border-bottom: 1px dotted #D4D4D7;
  padding-bottom: 8px;
  padding-left: 0;
  padding-top: 10px;
  width: 95%;
}
#header-cart .minicart-wrapper #cart-sidebar {
  padding: 0;
}
#header-cart .minicart-wrapper #cart-sidebar li {
  border-bottom: 0;
  padding-top: 0;
}
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper {
  padding: 10px;
}
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .product-code {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
}
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .collection-block,
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block {
  display: inline-block;
}
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .collection-block .collection-title,
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .collection-block .delivery-title,
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block .collection-title,
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block .delivery-title {
  font-size: 11px;
  margin-bottom: 2px;
}
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .collection-block .VAT,
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block .VAT {
  font-size: 10px;
  font-weight: 700;
}
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .collection-block p,
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block p {
  font-size: 12px;
  margin: 0;
}
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .collection-block p span.price,
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block p span.price {
  color: #383b3c;
  font-weight: 700;
}
@media screen and (max-width: 1099px) {
  #header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .collection-block {
    width: 25%;
  }
}
@media screen and (max-width: 399px) {
  #header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .collection-block {
    width: 26%;
  }
}
#header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block {
  margin-left: 8px;
}
@media screen and (max-width: 1099px) {
  #header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block {
    margin: 0;
    width: 25%;
  }
}
@media screen and (max-width: 669px) {
  #header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block {
    width: 23%;
  }
}
@media screen and (max-width: 419px) {
  #header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block {
    width: 21%;
  }
}
@media screen and (max-width: 399px) {
  #header-cart .minicart-wrapper #cart-sidebar li .info-wrapper .delivery-block {
    width: 22.5%;
  }
}
#header-cart .minicart-wrapper #cart-sidebar li .quantity {
  background: #FFFFFF;
  clear: left;
  padding: 10px;
  width: 100%;
}
#header-cart .minicart-wrapper #cart-sidebar li .quantity .qty-wrapper {
  float: right;
}
#header-cart .minicart-wrapper #cart-sidebar li .quantity .qty-wrapper .quantity-icons {
  background: #CCCCCC;
  border-radius: 2px;
  max-width: 118px;
  padding: 2px 0;
}
#header-cart .minicart-wrapper #cart-sidebar li .quantity .qty-wrapper .quantity-icons a.remove-qty > img {
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle;
  width: 20%;
}
#header-cart .minicart-wrapper #cart-sidebar li .quantity .qty-wrapper .quantity-icons .fake-qty {
  display: inline-block;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  width: 3em;
}
#header-cart .minicart-wrapper #cart-sidebar li .quantity .qty-wrapper .quantity-icons .cart-item-quantity {
  max-width: 40%;
  text-align: center;
}
#header-cart .minicart-wrapper #cart-sidebar li .quantity .qty-wrapper .quantity-icons a.add-qty > img {
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle;
  width: 14%;
}
#header-cart .minicart-wrapper #cart-sidebar li .quantity .quantity-button {
  background: #383b3c;
  float: right;
  margin-right: 10px;
  padding: 8px 10px;
}
#header-cart .minicart-wrapper #cart-sidebar li .quantity .product-buttons {
  float: left;
}
#header-cart .minicart-wrapper .minicart-actions {
  padding-top: 30px;
}
#header-cart .minicart-wrapper .minicart-actions .grey-btn {
  background-color: #373A3B;
  border-color: #373A3B;
  border-radius: 2px;
  max-width: none;
}
#header-cart .minicart-wrapper .minicart-actions .grey-btn:hover, #header-cart .minicart-wrapper .minicart-actions .grey-btn:active, #header-cart .minicart-wrapper .minicart-actions .grey-btn:focus {
  background-color: #FFFFFF;
  border-color: #373A3B;
  color: #373A3B;
}
#header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery {
  border-radius: 2px;
  max-width: none;
}

/*================================================================================
$ GENERAL
================================================================================*/
.page-header {
  background-color: #FFFFFF;
  padding: 0;
  max-width: 100%;
  width: 100%;
}
.page-header .delivery-message {
  float: left;
  font-size: 13px;
  margin-top: 8px;
  padding-left: 30px;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .page-header .delivery-message {
    display: none;
  }
}
.page-header .delivery-message strong {
  color: #000000;
}
.page-header .delivery-message a {
  color: #ed1f24;
  text-decoration: underline;
}
.page-header .cart-message {
  max-width: 440px;
  position: absolute;
  right: 0;
  top: 28%;
}
@media screen and (max-width: 1919px) {
  .page-header .cart-message {
    right: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .page-header .cart-message {
    right: 1%;
  }
}
@media screen and (max-width: 1149px) {
  .page-header .cart-message {
    right: 0;
  }
}
@media screen and (max-width: 770px) {
  .page-header .cart-message {
    background-color: #EDEDED;
    display: block;
    padding: 20px 0px;
    position: relative;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .page-header .cart-message {
    padding: 0;
  }
}
.page-header .cart-message p {
  color: #FFFFFF;
  display: inline;
  font-size: 12px;
}
.page-header .cart-message p a {
  color: #FFFFFF;
}
.page-header .skip-links {
  position: static;
}

.header-section {
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .header-section {
    position: relative;
  }
}
.header-section--top {
  background-color: #FFFFFF;
}
.header-section--middle {
  background-color: #373A3B;
}
.header-section--bottom {
  background-color: #ed1f24;
  padding-left: 0;
  padding-right: 0;
}

.header-section__inner {
  display: block;
  margin: 0 auto;
  max-width: 1140px;
}

.header-section--top__inner {
  padding-bottom: 15px;
  padding-top: 15px;
}
@media screen and (max-width: 770px) {
  .header-section--top__inner {
    padding-bottom: 5px;
    padding-top: 5px;
  }
}

.header-section--top__block {
  float: left;
}
.header-section--top__block--left {
  width: 22%;
}
@media screen and (max-width: 770px) {
  .header-section--top__block--left {
    text-align: center;
    width: 100%;
  }
}
.header-section--top__block--middle {
  padding-left: 40px;
  width: 33%;
}
@media screen and (max-width: 770px) {
  .header-section--top__block--middle {
    display: none;
  }
}
.header-section--top__block--right {
  padding-left: 30px;
  width: 45%;
}
@media screen and (max-width: 770px) {
  .header-section--top__block--right {
    display: none;
  }
}

.header-section--middle__inner {
  padding-bottom: 10px;
  padding-top: 10px;
}

.header-section--middle__block {
  float: left;
}
.header-section--middle__block--left {
  width: 50%;
}
@media screen and (max-width: 770px) {
  .header-section--middle__block--left {
    width: 100%;
  }
}
.header-section--middle__block--right {
  width: 50%;
}
@media screen and (max-width: 770px) {
  .header-section--middle__block--right {
    display: none;
  }
}

@media screen and (min-width: 771px) {
  .header-section--bottom__inner {
    position: relative;
  }
}
.nav-primary {
  background-color: #ed1f24;
  position: relative;
  z-index: 12;
}

#overlay {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}

/*================================================================================
$ LOGO
================================================================================*/
.header-section--top__block .logo {
  float: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .header-section--top__block .logo {
    margin: 0 auto;
    max-width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .header-section--top__block .logo {
    max-width: 60%;
  }
}
.header-section--top__block .logo img {
  width: 100%;
}

/*================================================================================
$ SEARCH
================================================================================*/
.header-section--top__block #search_mini_form {
  margin-top: 40px;
}
@media screen and (max-width: 899px) {
  .header-section--top__block #search_mini_form {
    margin-top: 25px;
  }
}
@media screen and (max-width: 770px) {
  .header-section--top__block #search_mini_form {
    margin-top: 0;
    width: 100%;
  }
}
.header-section--top__block #search_mini_form #search {
  background-color: #EEEEEE;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 45px;
}
@media screen and (max-width: 479px) {
  .header-section--top__block #search_mini_form #search {
    padding-left: 6px;
    padding-right: 0;
    width: 100%;
    -webkit-appearance: none;
  }
}
.header-section--top__block #search_mini_form .search-button {
  background-color: #ed1f24;
  color: #FFFFFF;
}
.header-section--top__block #search_mini_form .search-button:before {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/search-icon.png");
  background-position: center center;
  background-size: 20px;
}
.header-section--top__block #search_mini_form #search_autocomplete ul {
  max-height: 350px;
  overflow-y: auto;
}
.header-section--top__block #search_mini_form #search_autocomplete ul > li .variants {
  margin-top: 7px;
  overflow: hidden;
  text-align: right;
  white-space: nowrap;
}
.header-section--top__block #search_mini_form #search_autocomplete ul > li .variants img {
  border: none;
  display: inline-block;
  max-width: 125px;
}
.header-section--top__block #search_mini_form .search-autocomplete:before {
  display: none;
}

@media screen and (max-width: 770px) {
  #header-search {
    background-color: #373A3B;
    left: 0;
    padding: 10px;
    position: absolute;
    top: calc(100% + 128px);
    width: 100%;
    z-index: 2;
  }
}
@media screen and (max-width: 479px) {
  #header-search.skip-active {
    display: inline-block;
  }
}
/*================================================================================
$ ACCOUNT / CART ICONS
================================================================================*/
.header-section--top__block .header-section__cart-pricing {
  margin-top: 5px;
}
.guest-header .header-section--top__block .header-section__cart-pricing {
  margin-top: 30px;
}
@media screen and (max-width: 899px) {
  .header-section--top__block .header-section__cart-pricing {
    margin-top: 15px;
  }
}
.header-section--top__block .header-section__cart-pricing .header-icon-block--account.header-icon-block--logout .icon {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/logout-icon.png");
}
.header-section--top__block .header-section__cart-pricing .header-icon-block--account .icon {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/account-icon.png");
}
.header-section--top__block .header-section__cart-pricing .header-icon-block--collection .icon {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/collection-icon.png");
}
.header-section--top__block .header-section__cart-pricing .header-icon-block--delivery .icon {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/delivery-icon.png");
}
.header-section--top__block .header-section__cart-pricing .header-icon-block .icon {
  background-position: center center;
  background-size: contain;
}
.header-section--top__block .header-section__cart-pricing > a {
  border-left: 1px dashed #DDDDDD;
  color: #383b3c;
  display: block;
  float: left;
  height: auto;
  line-height: 1.25;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  width: 33.3333%;
}
@media screen and (max-width: 899px) {
  .header-section--top__block .header-section__cart-pricing > a {
    padding: 0 10px;
  }
}
.header-section--top__block .header-section__cart-pricing > a:first-child {
  border-left: none;
}
.header-section--top__block .header-section__cart-pricing .icon,
.header-section--top__block .header-section__cart-pricing .label,
.header-section--top__block .header-section__cart-pricing .label-subtext {
  display: block;
}
.header-section--top__block .header-section__cart-pricing .icon {
  margin: 0 auto !important;
  max-width: 50px;
  width: 100%;
}
.header-section--top__block .header-section__cart-pricing .count {
  background-color: #ed1f24;
  color: #FFFFFF;
  font-weight: bold;
  position: absolute;
  left: 55%;
}
.header-section--top__block .header-section__cart-pricing .count:before, .header-section--top__block .header-section__cart-pricing .count:after {
  display: none !important;
}
.header-section--top__block .header-section__cart-pricing .label {
  color: #ed1f24;
  font-size: 15px;
  font-weight: bold;
  margin-top: 2px;
  text-transform: uppercase;
}
@media screen and (max-width: 899px) {
  .header-section--top__block .header-section__cart-pricing .label {
    font-size: 14px;
  }
}
.header-section--top__block .header-section__cart-pricing .label-subtext {
  color: #383b3c;
  font-size: 12px;
  font-weight: lighter;
  text-transform: none;
}

@media screen and (max-width: 770px) {
  #header-mobile .count {
    background-color: #373A3B;
    border-radius: 50%;
    color: #FFFFFF;
    display: block;
    font-weight: 600;
    height: 22px;
    left: 64%;
    line-height: 22px;
    position: absolute;
    top: 8px;
    width: 22px;
  }
}

@media screen and (min-width: 771px) {
  .header-section #header-account.skip-active {
    background-color: #F7F7F7;
    right: 26.5%;
    top: -85px;
  }
}
/*================================================================================
$ LANGUAGE SWITCHER
================================================================================*/
.header-section__languageblock {
  float: left;
  text-align: left;
}
@media screen and (max-width: 770px) {
  .header-section__languageblock {
    text-align: center;
    width: 100%;
  }
}

#google_translate_element {
  display: none !important;
}

.google-translate-holder {
  position: relative;
}
.google-translate-holder.opened .google-translated-list {
  display: block;
}
.google-translate-holder .google-translated-lang {
  cursor: pointer;
}
.google-translate-holder .selected-flag,
.google-translate-holder .google-translated-list__title,
.google-translate-holder .selected-arrow {
  color: #FFFFFF;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  vertical-align: middle;
}
.google-translate-holder .selected-arrow {
  margin-left: 5px;
  max-width: 20px;
}
.google-translate-holder .flag-arrow {
  margin-left: 5px;
}
.google-translate-holder .google-translated-list {
  background-color: #FFFFFF;
  cursor: pointer;
  display: none;
  left: 0;
  padding: 10px;
  position: absolute;
  top: 25px;
  width: 100%;
  z-index: 99;
}
@media screen and (max-width: 599px) {
  .google-translate-holder .google-translated-list {
    left: auto;
    right: 0;
  }
}
.google-translate-holder .google-translated-list__title {
  margin-left: 5px;
  margin-top: 0;
}
.google-translate-holder .translation-menu {
  max-height: 150px;
  overflow-y: auto;
  width: 100%;
}
.google-translate-holder .translation-menu > li {
  margin-top: 5px;
}
.google-translate-holder .translation-menu > li:first-child {
  margin-top: 0;
}
.google-translate-holder .translation-menu > li a {
  color: #383b3c;
  display: block;
}
.google-translate-holder .translation-menu > li img {
  float: left;
  width: 20px;
}
.google-translate-holder .translation-menu > li span {
  color: #383b3c;
  float: left;
  font-size: 12px;
  font-weight: 600;
  margin-top: 3px;
  padding-left: 5px;
  text-transform: uppercase;
}

/*================================================================================
$ QUICK ORDER
================================================================================*/
.header-section__quickorder {
  float: left;
  margin-left: 25px;
  position: relative;
}
@media screen and (max-width: 770px) {
  .header-section__quickorder {
    display: none;
  }
}
.header-section__quickorder.opened .quickorder__content {
  display: block;
}
.header-section__quickorder .quickorder__title {
  cursor: pointer;
}
.header-section__quickorder .quickorder__title > p,
.header-section__quickorder .quickorder__title > img {
  color: #FFFFFF;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  vertical-align: middle;
}
.header-section__quickorder .quickorder__title > img {
  margin-left: 5px;
  max-width: 20px;
}
.header-section__quickorder .quickorder__content {
  display: none;
  left: 0;
  position: absolute;
  top: 31px;
  width: 375px;
  z-index: 99;
}
.header-section__quickorder .floating-sidebar__content {
  background-color: #FFFFFF;
  float: left;
  padding: 0;
  width: 100%;
}
.header-section__quickorder .floating-sidebar__content.loading:before, .header-section__quickorder .floating-sidebar__content.loading:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.header-section__quickorder .floating-sidebar__content.loading:before {
  background-color: white;
  opacity: 0.75;
  z-index: 2;
}
.header-section__quickorder .floating-sidebar__content.loading:after {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-section__quickorder .floating-sidebar__content.loading.loading {
  position: relative;
}
.header-section__quickorder .floating-sidebar__content.loading.loading:before, .header-section__quickorder .floating-sidebar__content.loading.loading:after {
  display: block;
}
.header-section__quickorder .floating-sidebar__content .actions {
  float: left;
  width: 100%;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .floating-sidebar__quickshop__table-holder {
  float: left;
  width: 100%;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop__table__inner {
  float: left;
  width: 100%;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop__row {
  background-color: #F7F7F7;
  float: left;
  padding: 7px 0;
  width: 100%;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop__row:first-child {
  margin-top: 0;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop__row.quickshop__row--head {
  background-color: #ed1f24;
  color: #FFFFFF;
  text-align: left;
  text-transform: uppercase;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop__row.quickshop__row--head .quickshop-input-box--actions {
  padding-top: 0;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop__row .allowed-prod {
  max-width: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop__row .mage-error {
  font-size: 12px;
  margin-top: 2px;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop__row p {
  margin: 0;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop__additional {
  background-color: #F7F7F7;
  float: left;
  padding: 10px 7px;
  text-align: left;
  width: 100%;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop__additional > a {
  color: #383b3c;
  display: block;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop-input-box--code {
  float: left;
  padding: 0 5px;
  position: relative;
  width: 60%;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop-input-box--code .quickshop-code-input {
  border: none;
  height: 38px;
  padding-right: 30px;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop-input-box--qty {
  float: left;
  padding: 0 5px;
  width: 15%;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop-input-box--qty .quickshop-qty-input {
  border: none;
  height: 38px;
  text-align: center;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop-input-box--actions {
  float: left;
  padding: 8px 5px 0;
  width: 25%;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop-input-box--actions > a {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop-input-box--actions .quickshop__plus {
  margin-right: 10px;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop-sidebar__actions {
  padding: 0 5px 7px;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop-sidebar__actions .button {
  float: left;
  line-height: 1.25;
  padding: 5px;
  text-transform: uppercase;
  width: 49%;
}
.header-section__quickorder .homepage__floating-sidebar__quickshop .floating-sidebar__quickshop-form .quickshop-sidebar__actions .template-add-btn {
  color: #FFFFFF;
}

/*================================================================================
$ ADDITIONAL LINKS
================================================================================*/
.header__section__additionalinks__list {
  text-align: right;
}
.header__section__additionalinks__list > li {
  color: #FFFFFF;
  display: inline-block;
  font-size: 14px;
  margin-left: 8px;
  margin-top: 0;
  padding: 0;
  vertical-align: middle;
}
.header__section__additionalinks__list > li:first-child {
  margin-left: 0;
}
.header__section__additionalinks__list > li > a,
.header__section__additionalinks__list > li > span {
  color: #FFFFFF;
  font-size: 14px;
  text-transform: uppercase;
}

/*================================================================================
$ NAVIGATION
================================================================================*/
nav#nav ol.nav-primary {
  margin: 0;
  position: relative;
  z-index: 12;
}
nav#nav ol.nav-primary:hover > li {
  border: none;
}
nav#nav ol.nav-primary li.menu-active, nav#nav ol.nav-primary li.active, nav#nav ol.nav-primary li:hover, nav#nav ol.nav-primary li:active, nav#nav ol.nav-primary li:focus {
  background-color: #FFFFFF;
  background-image: none;
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary li.menu-active, nav#nav ol.nav-primary li.active, nav#nav ol.nav-primary li:hover, nav#nav ol.nav-primary li:active, nav#nav ol.nav-primary li:focus {
    background-color: #ED1F24 !important;
  }
}
nav#nav ol.nav-primary li.menu-active > a, nav#nav ol.nav-primary li.active > a, nav#nav ol.nav-primary li:hover > a, nav#nav ol.nav-primary li:active > a, nav#nav ol.nav-primary li:focus > a {
  color: #ED1F24;
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary li.menu-active > a, nav#nav ol.nav-primary li.active > a, nav#nav ol.nav-primary li:hover > a, nav#nav ol.nav-primary li:active > a, nav#nav ol.nav-primary li:focus > a {
    color: #ffec38 !important;
  }
}
nav#nav ol.nav-primary li > a {
  color: #FFFFFF;
  display: block;
  font-size: 13px;
  line-height: 1.25;
  padding: 10px;
  position: relative;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  nav#nav ol.nav-primary li > a:after {
    display: none;
  }
}
nav#nav ol.nav-primary li > a > span {
  display: block;
  line-height: 1.25;
}
nav#nav ol.nav-primary li > ul {
  background-color: #FFFFFF;
  border: none;
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary li > ul {
    background-color: #ed1f24;
  }
}
nav#nav ol.nav-primary li.level0 {
  border-left: 1px dashed #FFFFFF;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-height: 90px;
  padding: 0 8px;
  position: static;
  text-align: center;
  vertical-align: middle;
  width: 9.05%;
}
@media screen and (max-width: 899px) {
  nav#nav ol.nav-primary li.level0 {
    min-height: 110px;
    padding: 0 2px;
  }
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary li.level0 {
    background-color: #ED1F24;
    background-image: none;
    border-left: none;
    display: block;
    float: left;
    min-height: 0;
    padding: 0;
    width: 100%;
  }
}
nav#nav ol.nav-primary li.level0:first-child {
  border: none;
}
nav#nav ol.nav-primary li.level0 > a {
  padding: 10px 0;
  position: static;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary li.level0 > a {
    border: none;
    display: block;
    font-size: 20px;
    padding: 10px 45px;
    text-align: left;
  }
  nav#nav ol.nav-primary li.level0 > a:after {
    display: none !important;
  }
}
nav#nav ol.nav-primary ul.level0 {
  left: 0;
  padding: 10px 10px 100px;
  position: absolute;
  top: 100%;
  width: 100%;
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary ul.level0 {
    float: left;
    padding: 7px 45px;
    padding-left: 65px;
    position: static;
  }
}
nav#nav ol.nav-primary li.level1 {
  border: none;
  float: left;
  margin-bottom: 25px;
  margin-left: 2%;
  margin-top: 0;
  padding: 0;
  position: relative;
  width: 18.4%;
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary li.level1 {
    background-color: #ED1F24;
    margin-bottom: 10px;
    margin-left: 0;
    width: 100%;
  }
}
nav#nav ol.nav-primary li.level1.view-all {
  font-weight: bold;
  width: 100%;
}
@media screen and (min-width: 770px) {
  nav#nav ol.nav-primary li.level1.view-all {
    display: none !important;
  }
}
nav#nav ol.nav-primary li.level1:nth-child(2), nav#nav ol.nav-primary li.level1:nth-child(5n+7) {
  clear: left;
  margin-left: 0;
}
nav#nav ol.nav-primary li.level1 > a {
  border-bottom: 1px solid #DDDDDD;
  color: #ED1F24;
  padding: 10px 0;
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary li.level1 > a {
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    padding: 3px 0;
  }
  nav#nav ol.nav-primary li.level1 > a:after {
    display: none;
  }
}
nav#nav ol.nav-primary ul.level1 {
  float: left;
  padding: 10px 0 0;
  position: static;
  width: 100%;
}
@media screen and (min-width: 770px) {
  nav#nav ol.nav-primary ul.level1 {
    display: block;
  }
}
nav#nav ol.nav-primary li.level2 {
  border: none;
}
@media screen and (min-width: 770px) {
  nav#nav ol.nav-primary li.level2.menu-active > a, nav#nav ol.nav-primary li.level2.active > a, nav#nav ol.nav-primary li.level2:hover > a, nav#nav ol.nav-primary li.level2:active > a, nav#nav ol.nav-primary li.level2:focus > a {
    color: #ED1F24;
  }
}
nav#nav ol.nav-primary li.level2 > a {
  border: none;
  color: #606060;
  font-size: 13px;
  font-weight: normal;
  padding: 0 0 2px;
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary li.level2 > a {
    border: none;
    color: #FFFFFF;
    font-size: 14px;
  }
  nav#nav ol.nav-primary li.level2 > a:after {
    display: none;
  }
}
nav#nav ol.nav-primary ul.level2 {
  border-top: 1px solid #ED1F24;
  box-shadow: 0px 2px 10px 3px rgba(0, 0, 0, 0.15);
  left: 0;
  margin-top: 4px;
  padding: 10px 10px 5px;
  top: calc(100% - 4px);
  width: 100%;
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary ul.level2 {
    border-top: none;
    box-shadow: none;
    float: left;
    margin-top: 10px;
    padding: 0;
    position: static;
  }
}
nav#nav ol.nav-primary li.level3 {
  border: none;
}
@media screen and (min-width: 770px) {
  nav#nav ol.nav-primary li.level3.menu-active > a, nav#nav ol.nav-primary li.level3.active > a, nav#nav ol.nav-primary li.level3:hover > a, nav#nav ol.nav-primary li.level3:active > a, nav#nav ol.nav-primary li.level3:focus > a {
    color: #ED1F24;
  }
}
nav#nav ol.nav-primary li.level3 > a {
  border: none;
  color: #606060;
  font-size: 12px;
  font-weight: normal;
  padding: 0 0 2px;
}
@media screen and (max-width: 770px) {
  nav#nav ol.nav-primary li.level3 > a {
    border: none;
    color: #FFFFFF;
  }
  nav#nav ol.nav-primary li.level3 > a:after {
    display: none;
  }
}

.skip-link-inner-container #header-nav-desktop {
  border-bottom: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .skip-link-inner-container #header-nav-desktop {
    display: none;
  }
}

#header-nav-mobile ol li {
  display: inline-block;
  width: 100%;
}
#header-nav-mobile ol li.menu-active > a {
  color: #ed1f24;
}
#header-nav-mobile ol li a {
  text-transform: capitalize;
}

.skip-links {
  overflow: visible;
}
@media screen and (max-width: 770px) {
  .skip-links {
    overflow: hidden;
  }
}
@media screen and (max-width: 599px) {
  .skip-links {
    overflow: visible;
  }
}
.skip-links .account-cart-wrapper {
  display: none;
}
@media screen and (max-width: 770px) {
  .skip-links .account-cart-wrapper {
    display: block;
  }
}
@media screen and (max-width: 770px) {
  .skip-links #header-account {
    padding: 0;
  }
}
@media screen and (max-width: 770px) {
  .skip-links #header-account li {
    float: left;
    width: 100%;
  }
}
.skip-links #header-account li a {
  text-transform: none;
}
@media screen and (max-width: 770px) {
  .skip-links #header-account li a {
    border: none;
    color: #FFFFFF;
    display: block;
    font-size: 20px;
    line-height: 1.25;
    padding: 10px 5px;
  }
}
.skip-links #header-cart {
  margin-bottom: 0;
}
.skip-links #header-cart .cart-message p {
  color: #383b3c;
  font-size: 16px;
  margin: 0 auto;
  padding: 15px;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .skip-links #header-cart .cart-message p {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 479px) {
  .skip-links #header-cart .cart-message p {
    padding: 0 10px;
  }
}
.skip-links #header-cart .block-subtitle {
  font-size: 20px;
}
.skip-links #header-cart .product-image {
  min-width: 150px;
}
.skip-links #header-cart .product-image img {
  height: 150px;
  width: 150px;
}

.skip-content.skip-active {
  background-color: #EDEDED;
  display: table;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .skip-content.skip-active {
    background-color: #ed1f24;
  }
}

.skip-content.skip-disabled {
  display: none;
}

@media screen and (max-width: 770px) {
  .skip-link {
    background-color: #ed1f24;
    border: none;
    color: #FFFFFF;
    height: auto;
    padding: 15px 5px;
    position: relative;
    text-decoration: none;
    width: 25%;
  }
  .skip-link--nav .icon {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/mobile/mobile-menu-icon.png");
  }
  .skip-link--search .icon {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/mobile/mobile-search-icon.png");
  }
  .skip-link--account.skip-link--logout .icon {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/mobile/mobile-account-icon.png");
  }
  .skip-link--account .icon {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/mobile/mobile-account-icon.png");
  }
  .skip-link--cart .icon {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/mobile/mobile-cart-icon.png");
  }
  .skip-link--register .icon {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/mobile/mobile-account-icon.png");
  }
  .skip-link.skip-nav:before {
    border-left: none;
  }
  .skip-link.skip-active {
    background-color: #383b3c;
    color: #FFFFFF;
    height: auto;
    text-decoration: none;
  }
  .skip-link:before {
    border-left: 1px dashed #FFFFFF;
    content: " ";
    height: 40px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
  }
  .skip-link .icon,
  .skip-link .label {
    color: #FFFFFF;
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }
  .skip-link .icon {
    background-position: center center;
    background-size: contain;
    height: 32px;
    margin: 0 auto !important;
    width: 32px;
  }
  .skip-link .label {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.25;
    margin-top: 4px;
  }
}
/*================================================================================
$ HEADER CART PRICING
================================================================================*/
.header-container {
  float: left;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .header-container {
    display: none;
  }
}
.header-container .header-minicart-collection,
.header-container .header-minicart-delivery {
  float: left;
  width: 50%;
}
.header-container .header-minicart-collection > a,
.header-container .header-minicart-delivery > a {
  background: transparent;
  display: block;
  padding: 0;
  width: 100%;
}
.header-container .header-minicart-collection span,
.header-container .header-minicart-delivery span {
  color: #FFFFFF;
  line-height: 1.2;
}
.header-container .header-minicart-collection .header-minicart__quantity,
.header-container .header-minicart-delivery .header-minicart__quantity {
  float: left;
  position: relative;
  text-align: center;
  width: 35%;
}
.header-container .header-minicart-collection .header-minicart__quantity .count,
.header-container .header-minicart-delivery .header-minicart__quantity .count {
  color: #ed1f24;
  font-weight: bold;
  left: 46%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}
.header-container .header-minicart-collection .header-minicart__quantity .count:before, .header-container .header-minicart-collection .header-minicart__quantity .count:after,
.header-container .header-minicart-delivery .header-minicart__quantity .count:before,
.header-container .header-minicart-delivery .header-minicart__quantity .count:after {
  display: none;
}
@media screen and (max-width: 1099px) {
  .header-container .header-minicart-collection .header-minicart__quantity .count,
  .header-container .header-minicart-delivery .header-minicart__quantity .count {
    top: -4px;
  }
}
.header-container .header-minicart-collection .header-minicart__quantity img,
.header-container .header-minicart-delivery .header-minicart__quantity img {
  display: inline-block;
  margin-top: 5px;
  max-height: 30px;
}
.header-container .header-minicart-collection .header-minicart__details,
.header-container .header-minicart-delivery .header-minicart__details {
  float: right;
  margin-top: 10px;
  padding-left: 10px;
  width: 65%;
}
.header-container .header-minicart-collection .header-minicart__details.vat-enabled .price-total__excl,
.header-container .header-minicart-delivery .header-minicart__details.vat-enabled .price-total__excl {
  display: none;
}
.header-container .header-minicart-collection .header-minicart__details.vat-enabled .price-total__incl,
.header-container .header-minicart-delivery .header-minicart__details.vat-enabled .price-total__incl {
  display: block;
}
.header-container .header-minicart-collection .header-minicart__details.vat-enabled .vat-switcher__block,
.header-container .header-minicart-delivery .header-minicart__details.vat-enabled .vat-switcher__block {
  left: 15px;
  -webkit-transition: left 0.1s ease-in-out 0s;
  -moz-transition: left 0.1s ease-in-out 0s;
  -ms-transition: left 0.1s ease-in-out 0s;
  -o-transition: left 0.1s ease-in-out 0s;
  transition: left 0.1s ease-in-out 0s;
}
.header-container .header-minicart-collection .header-minicart__details .label, .header-container .header-minicart-collection .header-minicart__details .price-total,
.header-container .header-minicart-delivery .header-minicart__details .label,
.header-container .header-minicart-delivery .header-minicart__details .price-total {
  float: left;
  font-size: 12px;
  width: auto;
  text-transform: none;
}
.header-container .header-minicart-collection .header-minicart__details .label,
.header-container .header-minicart-delivery .header-minicart__details .label {
  padding-right: 3px;
}
.header-container .header-minicart-collection .header-minicart__details .price-total,
.header-container .header-minicart-delivery .header-minicart__details .price-total {
  font-weight: bold;
}
.header-container .header-minicart-collection .header-minicart__details .price-total__incl,
.header-container .header-minicart-delivery .header-minicart__details .price-total__incl {
  display: none;
}
.header-container .header-minicart-collection .header-minicart__details--top, .header-container .header-minicart-collection .header-minicart__details--bottom,
.header-container .header-minicart-delivery .header-minicart__details--top,
.header-container .header-minicart-delivery .header-minicart__details--bottom {
  float: left;
  width: 100%;
}
.header-container .header-minicart-collection .header-minicart__details--bottom,
.header-container .header-minicart-delivery .header-minicart__details--bottom {
  max-width: 125px;
  position: relative;
}
.header-container .header-minicart-collection .header-minicart__details--bottom .vat__label,
.header-container .header-minicart-delivery .header-minicart__details--bottom .vat__label {
  font-size: 11px;
  width: auto;
}
.header-container .header-minicart-collection .header-minicart__details--bottom .vat__label.excl-vat__label,
.header-container .header-minicart-delivery .header-minicart__details--bottom .vat__label.excl-vat__label {
  float: left;
  font-weight: 600;
}
.header-container .header-minicart-collection .header-minicart__details--bottom .vat__label.incl-vat__label,
.header-container .header-minicart-delivery .header-minicart__details--bottom .vat__label.incl-vat__label {
  float: right;
}
.header-container .header-minicart-collection .header-minicart__details--bottom .vat-switcher,
.header-container .header-minicart-delivery .header-minicart__details--bottom .vat-switcher {
  background-color: #FFFFFF;
  height: 14px;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  z-index: 2;
}
.header-container .header-minicart-collection .header-minicart__details--bottom .vat-switcher__block,
.header-container .header-minicart-delivery .header-minicart__details--bottom .vat-switcher__block {
  background-color: #383b3c;
  left: 2px;
  height: 10px;
  position: absolute;
  top: 2px;
  -webkit-transition: left 0.1s ease-in-out 0s;
  -moz-transition: left 0.1s ease-in-out 0s;
  -ms-transition: left 0.1s ease-in-out 0s;
  -o-transition: left 0.1s ease-in-out 0s;
  transition: left 0.1s ease-in-out 0s;
  width: 12px;
}
.header-container .header-minicart-delivery {
  border-left: 1px solid #FFFFFF;
  padding-left: 15px;
}
.header-container .header-minicart-delivery .header-minicart__quantity .count {
  color: #ffec38;
  left: 60%;
}
.header-container .header-minicart-collection {
  padding-right: 15px;
}
.header-container .header-minicart-desktop {
  display: inline;
}
@media screen and (max-width: 770px) {
  .header-container .header-minicart-desktop {
    display: none;
  }
}

/*================================================================================
$ ACCOUNT CART WRAPPER
================================================================================*/
.account-cart-wrapper-desktop {
  right: 0;
  top: 40%;
}
@media screen and (max-width: 770px) {
  .account-cart-wrapper-desktop {
    display: none;
  }
}
.account-cart-wrapper-desktop span.count::before, .account-cart-wrapper-desktop span.count::after {
  display: none;
}

/*================================================================================
$ HEADER CART PRICING
================================================================================*/
@media screen and (max-width: 770px) {
  .header-minicart {
    display: block;
  }
}
.header-minicart .skip-link.skip-cart {
  display: none;
}
@media screen and (max-width: 770px) {
  .header-minicart .skip-link.skip-cart {
    display: block;
  }
}

#header-cart-desktop {
  -moz-box-shadow: 3px 3px 3px 0px #cecdcb;
  box-shadow: 3px 3px 3px 0px #cecdcb;
  -webkit-box-shadow: 3px 3px 3px 0px #cecdcb;
  background: #FFFFFF;
  border: solid 1px #DDDDDD;
  display: none;
  margin: 0;
  position: absolute;
  top: 55%;
  width: 420px;
  z-index: 200;
}

.minicart-wrapper .block-subtitle {
  border-bottom: 1px solid #DDDDDD;
  color: #383b3c;
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto;
  padding: 5px 8px;
  text-align: left;
  text-transform: none;
  width: 100%;
}
.minicart-wrapper .block-subtitle .close {
  color: #383b3c;
  float: right;
  font-size: 30px;
  font-weight: normal;
  position: relative;
  right: 20px;
  text-decoration: none;
  top: -12px;
  width: 0;
}
@media screen and (max-width: 1099px) {
  .minicart-wrapper .block-subtitle .close {
    top: -6px;
    width: 10px;
  }
}
.minicart-wrapper div #cart-sidebar {
  padding: 0px;
}
.minicart-wrapper div #cart-sidebar .item {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 10px;
}
@media screen and (max-width: 479px) {
  .minicart-wrapper div #cart-sidebar .item {
    padding-top: 10px;
  }
}
.minicart-wrapper div #cart-sidebar .item:last-child {
  padding-bottom: 0;
}
.minicart-wrapper div #cart-sidebar .item a.product-image {
  margin-bottom: 7px;
  margin-right: 10px;
}
@media screen and (max-width: 399px) {
  .minicart-wrapper div #cart-sidebar .item a.product-image {
    margin-right: 10px;
  }
}
.minicart-wrapper div #cart-sidebar .item .product-details {
  margin-left: 0px;
  width: 100%;
}
.minicart-wrapper div #cart-sidebar .item .product-details .product-name {
  margin-bottom: 3px;
}
.minicart-wrapper div #cart-sidebar .item .product-details .product-name a {
  color: #383b3c;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper {
  margin-bottom: 0;
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .product-code {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .collection-block,
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block {
  display: inline-block;
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .collection-block .collection-title,
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .collection-block .delivery-title,
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block .collection-title,
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block .delivery-title {
  font-size: 11px;
  margin-bottom: 2px;
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .collection-block .VAT,
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block .VAT {
  font-size: 10px;
  font-weight: 700;
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .collection-block p,
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block p {
  font-size: 12px;
  margin: 0;
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .collection-block p span.price,
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block p span.price {
  color: #383b3c;
  font-weight: 700;
}
@media screen and (max-width: 1099px) {
  .minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .collection-block {
    width: 25%;
  }
}
@media screen and (max-width: 399px) {
  .minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .collection-block {
    width: 26%;
  }
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block {
  margin-left: 8px;
}
@media screen and (max-width: 1099px) {
  .minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block {
    margin: 0;
    width: 25%;
  }
}
@media screen and (max-width: 669px) {
  .minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block {
    width: 23%;
  }
}
@media screen and (max-width: 419px) {
  .minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block {
    width: 21%;
  }
}
@media screen and (max-width: 399px) {
  .minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .delivery-block {
    width: 22.5%;
  }
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .quantity {
  float: left;
  margin-top: 3px;
}
@media screen and (max-width: 479px) {
  .minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .quantity {
    clear: left;
    float: left;
    margin-left: 0;
    width: 100% !important;
  }
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .quantity p {
  display: inline;
  font-size: 12px;
  font-weight: 600;
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .quantity button {
  display: inline !important;
  padding: 3px 10px;
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .quantity button:hover, .minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .quantity button:focus, .minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .quantity button:active {
  color: #383b3c;
}
@media screen and (max-width: 1099px) {
  .minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .quantity {
    display: inline;
    margin-top: 0;
    width: 20%;
  }
}
.minicart-wrapper div #cart-sidebar .item .product-details .info-wrapper .product-information .edit-buttons {
  text-align: center;
}
.minicart-wrapper div #cart-sidebar .item .product-buttons {
  float: right;
  margin-top: 5px;
}
.minicart-wrapper div #cart-sidebar .item .product-buttons .btn-edit {
  color: #EB340A;
  display: inline-block;
  font-size: 13px;
  text-align: left;
}
.minicart-wrapper div #cart-sidebar .item .product-buttons .break {
  display: inline-block;
}
.minicart-wrapper div #cart-sidebar .item .product-buttons .remove {
  display: inline-block;
  color: #EB340A;
  font-size: 14px;
  text-align: left;
}
.minicart-wrapper div #cart-sidebar .item .product-buttons .remove .rubbish_bin_icon {
  display: inline-block;
  position: relative;
  top: 1.5px;
}
@media screen and (max-width: 1099px) {
  .minicart-wrapper div #cart-sidebar .item .product-buttons {
    float: none;
    margin-top: 0;
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .minicart-wrapper div #cart-sidebar .item .product-buttons {
    display: inline;
    float: right;
  }
}

#header-cart {
  margin-bottom: 0;
  -moz-box-shadow: 3px 3px 3px 0px #cecdcb;
  box-shadow: 3px 3px 3px 0px #cecdcb;
  -webkit-box-shadow: 3px 3px 3px 0px #cecdcb;
  background: #FFFFFF;
  border: solid 1px #DDDDDD;
  display: none;
  margin: 0;
  padding: 0px 15px 0px 0px;
  padding-right: 0;
  position: absolute;
  top: -20px;
  width: 420px;
  z-index: 200;
}
@media screen and (max-width: 1099px) {
  #header-cart {
    background-color: #EDEDED;
    border: none;
    position: relative;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  #header-cart .minicart-wrapper .empty {
    text-align: center;
  }
}
#header-cart .minicart-wrapper .mini-products-list {
  max-height: 455px;
  overflow-y: scroll;
  padding: 0 8px;
  width: 100%;
}
#header-cart .minicart-wrapper .mini-products-list li {
  margin: 0;
  padding: 5px 0;
}
#header-cart .minicart-wrapper .mini-products-list li.last {
  border-bottom: 1px solid #DDDDDD;
}
#header-cart .minicart-wrapper .minicart-actions_old {
  padding-top: 0;
}
#header-cart .minicart-wrapper .minicart-actions_old .grey-btn, #header-cart .minicart-wrapper .minicart-actions_old .checkout-button {
  font-size: 14px;
  line-height: 1.2;
}
#header-cart .minicart-wrapper .minicart-actions_old .checkout-types {
  display: inline-block;
}
#header-cart .minicart-wrapper .minicart-actions_old .checkout-types li {
  margin: 0 auto;
}
#header-cart .minicart-wrapper .minicart-actions_old .checkout-types li .view-product-btn {
  text-transform: none;
}
#header-cart .minicart-wrapper .minicart-actions_old .checkout-types .checkout-button {
  display: inline-block;
  font-size: 17px;
  line-height: 19px;
  max-width: 180px;
}
#header-cart .minicart-wrapper .minicart-actions_old .checkout-types .checkout-button a {
  text-transform: none;
}
#header-cart .minicart-wrapper .minicart-actions_old .view-product-btn {
  font-size: 17px;
  line-height: 17px;
  margin-right: 15px;
  min-width: 120px;
  text-transform: none;
}

.minicart-actions {
  padding: 10px;
  padding-right: 0;
  text-align: center;
}
.minicart-actions .checkout-button {
  color: #383b3c;
  display: block;
  font-size: 17px;
  font-weight: 600;
  line-height: normal;
  margin: 10px 0 0;
  max-width: none;
  min-width: 175px;
  padding: 8px 20px;
  text-decoration: none;
  text-transform: none;
  width: 100%;
}
.minicart-actions .grey-btn {
  box-shadow: none;
  display: block;
  font-size: 17px;
  max-width: none;
  padding: 8px 20px;
  text-transform: none;
  width: 100%;
}

/* ====== FOOTER ====== */
/* ======
FOOTER
	- Logo Block
	- Navigation Block
	- Company Contact Block
	- Signup Block
	- Copyright
====== */
/*================================================================================
$ PT DESIGN GENERAL 
================================================================================*/
.subscribe_outer__wrapper {
  background: #F7F7F7;
  padding: 8px;
}
@media screen and (max-width: 989px) {
  .subscribe_outer__wrapper {
    border-top: 10px solid #ed1f24;
    margin-top: 50px;
  }
}
.subscribe_outer__wrapper .subscribe_wrapper {
  margin: 0 auto;
  max-width: 1140px;
  position: relative;
  width: 100%;
}
.subscribe_outer__wrapper .subscribe_wrapper .logo-wrapper {
  bottom: -18px;
  left: 0;
  max-width: 280px;
  position: absolute;
  width: 25%;
}
@media screen and (max-width: 989px) {
  .subscribe_outer__wrapper .subscribe_wrapper .logo-wrapper {
    bottom: auto;
    left: 50%;
    top: -102px;
    transform: translateX(-50%);
    width: 40%;
  }
}
@media screen and (max-width: 479px) {
  .subscribe_outer__wrapper .subscribe_wrapper .logo-wrapper {
    bottom: auto;
    left: 50%;
    top: -96px;
    transform: translateX(-50%);
    width: 75%;
  }
}
.subscribe_outer__wrapper .subscribe_wrapper .logo-wrapper .saimaxx-logo img {
  width: 100%;
}
.subscribe_outer__wrapper .subscribe_wrapper .block-subscribe {
  clear: both;
  float: right;
  margin-bottom: 0;
  padding-left: 280px;
  width: 100%;
}
@media screen and (max-width: 989px) {
  .subscribe_outer__wrapper .subscribe_wrapper .block-subscribe {
    float: none;
    padding-left: 0;
  }
}
.subscribe_outer__wrapper .subscribe_wrapper .block-subscribe .inner-signup input {
  font-weight: 400;
  height: 47px;
  width: 77%;
}
.subscribe_outer__wrapper .subscribe_wrapper .block-subscribe .inner-signup input:placeholder {
  color: #000000;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .subscribe_outer__wrapper .subscribe_wrapper .block-subscribe .inner-signup input {
    width: 73%;
  }
}
@media screen and (max-width: 989px) {
  .subscribe_outer__wrapper .subscribe_wrapper .block-subscribe .inner-signup input {
    width: 100%;
  }
}
.subscribe_outer__wrapper .subscribe_wrapper .block-subscribe .inner-signup .signup-submit {
  background: #ed1f24;
  border: 2px solid #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
  height: 47px;
  left: -4px;
  position: relative;
  text-transform: uppercase;
  top: -2px;
}
@media screen and (max-width: 989px) {
  .subscribe_outer__wrapper .subscribe_wrapper .block-subscribe .inner-signup .signup-submit {
    margin-top: 10px;
    position: unset;
    width: 100%;
  }
}

.p2_footer-container {
  background-color: #373A3B;
  border-top: 10px solid #ed1f24;
  float: left;
  padding-top: 50px;
  width: 100%;
}
@media screen and (max-width: 989px) {
  .p2_footer-container {
    border-top: 0;
    padding-top: 10px;
  }
}
.p2_footer-container .footer {
  border-top: 0;
  margin: 0 auto;
  max-width: 1140px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p2_footer-container .footer {
    width: 98%;
  }
}
@media screen and (max-width: 989px) {
  .p2_footer-container .footer {
    width: 100%;
  }
}
.p2_footer-container .footer .footer_links .block {
  display: inline-block;
  margin-left: 2%;
  vertical-align: top;
  width: 23%;
}
@media screen and (max-width: 989px) {
  .p2_footer-container .footer .footer_links .block {
    display: none;
  }
}
.p2_footer-container .footer .footer_links .block.left {
  margin-left: 0;
}
@media screen and (max-width: 989px) {
  .p2_footer-container .footer .footer_links .block.left {
    display: block;
    margin: 0 auto !important;
    margin-right: 0;
    width: 90%;
  }
}
.p2_footer-container .footer .footer_links .block ul li {
  border-top: 1px solid #F7F7F7;
  margin-right: 2%;
  padding: 10px 0;
}
.p2_footer-container .footer .footer_links .block ul li:last-child {
  border-bottom: 1px solid #F7F7F7;
}
.p2_footer-container .footer .footer_links .block ul li.my-account {
  border-bottom: 1px solid #F7F7F7;
}
@media screen and (max-width: 989px) {
  .p2_footer-container .footer .footer_links .block ul li.my-account {
    border-bottom: none;
  }
}
.p2_footer-container .footer .footer_links .block ul li.faq-mobile {
  display: none;
}
@media screen and (max-width: 989px) {
  .p2_footer-container .footer .footer_links .block ul li.faq-mobile {
    display: block;
  }
}
.p2_footer-container .footer .footer_links .block ul li a {
  color: #F7F7F7;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  text-decoration: none;
}
.p2_footer-container .footer .block.additional {
  margin: 0 auto;
  padding-bottom: 70px;
  padding-top: 20px;
  text-align: center;
}
.p2_footer-container .footer .block.additional.desktop {
  display: block;
}
@media screen and (max-width: 989px) {
  .p2_footer-container .footer .block.additional.desktop {
    display: none;
  }
}
.p2_footer-container .footer .block.additional.mobile {
  display: none;
}
@media screen and (max-width: 989px) {
  .p2_footer-container .footer .block.additional.mobile {
    display: block;
    margin: 0 auto !important;
    margin-right: 0;
    padding-bottom: 20px;
    text-align: left;
    width: 90%;
  }
  .p2_footer-container .footer .block.additional.mobile ul li {
    padding-bottom: 10px;
  }
}
.p2_footer-container .footer .block.additional ul li {
  color: #FFFFFF;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  margin-right: 2%;
  width: auto;
}
.p2_footer-container .footer .block.additional ul li a {
  color: #FFFFFF;
  text-decoration: none;
}
.p2_footer-container .footer .block.additional ul li a.extra {
  color: #F7F7F7;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 100;
  text-decoration: none;
}

/*================================================================================
$ FOOTER GENERAL 
================================================================================*/
.footer-container {
  background-color: #cecdcd;
  margin: 0 auto;
  min-height: 185px;
  max-width: none;
  width: 100%;
}
.footer-container .footer {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  /*================================================================================
  $ FOOTER - LOGO BLOCK
  ================================================================================*/
  /*================================================================================
  $ FOOTER - NAVIGATION LINKS
  ================================================================================*/
  /*================================================================================
  $ FOOTER - COMPANY CONTACT BLOCK
  ================================================================================*/
  /*================================================================================
  $ FOOTER - SIGNUP BLOCK
  ================================================================================*/
}
.footer-container .footer .logo-wrapper {
  float: left;
  margin-left: -30px;
  padding-left: 8px;
  width: 20%;
}
.footer-container .footer .logo-wrapper .saimaxx-logo img {
  max-width: 180px;
}
@media screen and (max-width: 1024px) {
  .footer-container .footer .logo-wrapper {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-container .footer .logo-wrapper {
    margin-left: 0;
    width: 18%;
  }
  .footer-container .footer .logo-wrapper img {
    width: 100%;
  }
}
@media screen and (max-width: 669px) {
  .footer-container .footer .logo-wrapper {
    margin-bottom: 20px;
    width: 100%;
  }
  .footer-container .footer .logo-wrapper .saimaxx-logo img {
    margin-left: auto;
    margin-right: auto;
    width: 35%;
  }
}
@media screen and (max-width: 479px) {
  .footer-container .footer .logo-wrapper {
    margin-bottom: 20px;
    width: 100%;
  }
  .footer-container .footer .logo-wrapper .saimaxx-logo img {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
}
.footer-container .footer .nav-wrapper {
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 12px;
  font-weight: bold;
  width: 23%;
}
@media screen and (max-width: 955px) {
  .footer-container .footer .nav-wrapper {
    margin-left: 50px;
    width: 17%;
  }
}
@media screen and (max-width: 768px) {
  .footer-container .footer .nav-wrapper {
    margin-left: 27px;
    margin-right: 12px;
    width: 17%;
  }
}
@media screen and (max-width: 669px) {
  .footer-container .footer .nav-wrapper {
    margin-left: 0;
    width: 100%;
  }
}
.footer-container .footer .nav-wrapper .nav-links .left-content, .footer-container .footer .nav-wrapper .nav-links .right-content {
  float: left;
}
.footer-container .footer .nav-wrapper .nav-links .left-content ul li a, .footer-container .footer .nav-wrapper .nav-links .right-content ul li a {
  color: #383b3c;
}
@media screen and (max-width: 669px) {
  .footer-container .footer .nav-wrapper .nav-links .left-content, .footer-container .footer .nav-wrapper .nav-links .right-content {
    float: none;
    text-align: center;
    width: 100%;
  }
}
.footer-container .footer .nav-wrapper .nav-links .right-content {
  margin-left: 32px;
}
@media screen and (max-width: 1024px) {
  .footer-container .footer .nav-wrapper .nav-links .right-content {
    margin-left: 39px;
  }
}
@media screen and (max-width: 955px) {
  .footer-container .footer .nav-wrapper .nav-links .right-content {
    clear: left;
    margin-left: 0px;
    margin-top: 4px;
  }
}
.footer-container .footer .company-contact-wrapper {
  border-right: 1px solid #383b3c;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 12px;
  width: 27%;
}
@media screen and (max-width: 1024px) {
  .footer-container .footer .company-contact-wrapper {
    width: 26%;
  }
}
@media screen and (max-width: 955px) {
  .footer-container .footer .company-contact-wrapper {
    width: 27%;
  }
}
@media screen and (max-width: 669px) {
  .footer-container .footer .company-contact-wrapper {
    border-right: 0;
    border-top: 1px solid #383b3c;
    margin-top: 25px;
    text-align: center;
    width: 100%;
  }
}
.footer-container .footer .company-contact-wrapper .inner-contact ul.business-address li:first-child {
  font-weight: bold;
}
@media screen and (max-width: 669px) {
  .footer-container .footer .company-contact-wrapper .inner-contact ul.business-address {
    margin-top: 25px;
  }
}
.footer-container .footer .company-contact-wrapper .inner-contact ul.business-info {
  padding-top: 14px;
}
.footer-container .footer .company-contact-wrapper .inner-contact ul.business-info li a {
  color: #383b3c;
  font-weight: bold;
}
.footer-container .footer .company-contact-wrapper .inner-contact ul.business-info li a:hover {
  color: #383b3c;
  text-decoration: underline;
}
.footer-container .footer .company-contact-wrapper .inner-contact ul.business-info li span {
  font-weight: bold;
}
.footer-container .footer .signup-wrapper {
  float: left;
  margin-left: 30px;
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .footer-container .footer .signup-wrapper {
    margin-left: 9px;
  }
}
@media screen and (min-width: 770px) and (max-width: 959px) {
  .footer-container .footer .signup-wrapper {
    width: 28%;
  }
}
@media screen and (max-width: 768px) {
  .footer-container .footer .signup-wrapper {
    margin-left: 10px;
    width: 30%;
  }
}
@media screen and (max-width: 669px) {
  .footer-container .footer .signup-wrapper {
    margin-left: 0;
    margin-bottom: 25px;
    margin-top: 25px;
    width: 100%;
  }
}
@media screen and (max-width: 1099px) {
  .footer-container .footer .signup-wrapper .block-subscribe {
    width: 275px;
  }
}
@media screen and (max-width: 769px) {
  .footer-container .footer .signup-wrapper .block-subscribe {
    width: 230px;
  }
}
@media screen and (max-width: 667px) {
  .footer-container .footer .signup-wrapper .block-subscribe {
    width: 350px;
  }
}
@media screen and (max-width: 360px) {
  .footer-container .footer .signup-wrapper .block-subscribe {
    width: 290px;
  }
}
.footer-container .footer .signup-wrapper .inner-signup .full-name, .footer-container .footer .signup-wrapper .inner-signup .email {
  height: 32px;
  margin-top: 15px;
  width: 100%;
  color: #4b4a49;
  font-weight: bold;
  font-size: 13px;
}
.footer-container .footer .signup-wrapper .inner-signup .full-name::-webkit-input-placeholder, .footer-container .footer .signup-wrapper .inner-signup .email::-webkit-input-placeholder {
  color: #D8D8D8;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: bold;
}
.footer-container .footer .signup-wrapper .inner-signup .full-name:-moz-placeholder, .footer-container .footer .signup-wrapper .inner-signup .email:-moz-placeholder {
  color: #D8D8D8;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: bold;
}
.footer-container .footer .signup-wrapper .inner-signup .full-name::-moz-placeholder, .footer-container .footer .signup-wrapper .inner-signup .email::-moz-placeholder {
  color: #D8D8D8;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: bold;
}
.footer-container .footer .signup-wrapper .inner-signup .full-name:-ms-input-placeholder, .footer-container .footer .signup-wrapper .inner-signup .email:-ms-input-placeholder {
  color: #D8D8D8;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: bold;
}
.footer-container .footer .signup-wrapper .inner-signup .full-name:first-child, .footer-container .footer .signup-wrapper .inner-signup .email:first-child {
  margin-top: 0;
}
.footer-container .footer .signup-wrapper .inner-signup .validator {
  height: auto !important;
  width: 100% !important;
}
.footer-container .footer .signup-wrapper .inner-signup .validation-advice {
  text-transform: none;
}
.footer-container .footer .signup-wrapper .inner-signup button.signup-submit {
  background-color: #B1B1B1;
  border-color: #B1B1B1;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
  font-weight: 600;
  height: 40px;
  margin-top: 15px;
  text-transform: none;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .footer-container .footer .signup-wrapper .inner-signup button.signup-submit {
    margin-top: 5px;
  }
}
@media screen and (min-width: 770px) and (max-width: 949px) {
  .footer-container .footer .signup-wrapper .inner-signup button.signup-submit {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .footer-container .footer .signup-wrapper .inner-signup button.signup-submit {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .footer-container .footer .signup-wrapper .inner-signup button.signup-submit {
    margin-top: 0;
  }
}

/*================================================================================
$ FOOTER - COPYRIGHT
================================================================================*/
.copyright {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 12px;
  font-weight: bold;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: center;
}

/* ====== FORMS ====== */
/* ======
FORMS
    - General
    - Buttons Set
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.form-list {
  list-style: none;
}
.form-list li,
.form-list .fields,
.form-list .control,
.form-list .wide {
  float: left;
  list-style: none;
  margin: 10px 0 0;
  width: 100%;
}
.form-list li:first-child,
.form-list .fields:first-child,
.form-list .control:first-child,
.form-list .wide:first-child {
  margin-top: 0;
}
.form-list li.control .input-box, .form-list li.control label {
  background-color: transparent;
  display: inline-block;
  float: none;
  vertical-align: middle;
  width: auto;
}
.form-list li.control .input-box:hover, .form-list li.control .input-box:active, .form-list li.control .input-box:focus, .form-list li.control label:hover, .form-list li.control label:active, .form-list li.control label:focus {
  background: transparent;
}
.form-list li.control .input-box {
  margin-right: 20px;
  margin-top: 0;
}
.form-list li .field {
  float: left;
  margin: 10px 0 0;
  width: 100%;
}
.form-list li .field:first-child {
  margin-top: 0;
}
.form-list li.checkbox-control {
  margin: 15px 0 0 !important;
}
.form-list li.checkbox-control input,
.form-list li.checkbox-control label {
  cursor: pointer;
  display: inline-block;
  float: none;
  vertical-align: middle;
  width: auto;
}
.form-list li.checkbox-control input {
  background-color: #FFFFFF;
  border: none;
  float: none !important;
  margin: 0 !important;
  height: 25px;
  width: 25px;
}
.form-list li.checkbox-control label {
  min-width: 0;
  padding: 0;
}
.form-list label {
  color: #383b3c;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  margin-right: 10px;
  vertical-align: middle;
}
.form-list label.required em {
  float: none;
  margin-left: 3px;
  position: static;
}
.form-list .input-box {
  clear: left;
  float: left;
  padding-bottom: 8px;
  width: 100%;
}
.form-list .input-box .input-text {
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 100;
  height: 40px;
  max-width: none;
  padding: 10px;
  width: 100%;
}
.form-list .input-box .input-text::-webkit-input-placeholder {
  color: #3C3C3B;
  font-weight: 100;
}
.form-list .input-box .input-text:-moz-placeholder {
  color: #3C3C3B;
  font-weight: 100;
}
.form-list .input-box .input-text::-moz-placeholder {
  color: #3C3C3B;
  font-weight: 100;
}
.form-list .input-box .input-text:-ms-input-placeholder {
  color: #3C3C3B;
  font-weight: 100;
}
.form-list .input-box select {
  width: 100%;
}
.form-list textarea {
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 100;
  max-width: none;
  padding: 10px;
  width: 100%;
}
.form-list textarea::-webkit-input-placeholder {
  color: #3C3C3B;
  font-weight: 100;
}
.form-list textarea:-moz-placeholder {
  color: #3C3C3B;
  font-weight: 100;
}
.form-list textarea::-moz-placeholder {
  color: #3C3C3B;
  font-weight: 100;
}
.form-list textarea:-ms-input-placeholder {
  color: #3C3C3B;
  font-weight: 100;
}
.form-list hr {
  max-width: 400px;
}

.fieldset,
fieldset {
  border: none;
  margin: 0 0 10px;
  margin-left: 0 !important;
  padding: 0;
}
.fieldset p,
fieldset p {
  clear: both !important;
}
.fieldset .legend,
fieldset .legend {
  background-image: none !important;
  border: none;
  color: #383b3c;
  float: none;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  padding: 0;
  width: 100%;
}

.terms {
  font-weight: 500;
}

/*================================================================================
$ BUTTONS SET
================================================================================*/
.buttons-set {
  border-top: none;
  margin-left: 0;
  margin-top: 10px;
  padding: 0;
  padding-bottom: 20px;
  width: 100%;
}
.buttons-set button + button,
.buttons-set button button.button,
.buttons-set button .button,
.buttons-set button.button + button,
.buttons-set button.button button.button,
.buttons-set button.button .button,
.buttons-set .button + button,
.buttons-set .button button.button,
.buttons-set .button .button {
  margin-right: 5px;
}

.back-link {
  color: #ffec38;
}

p.required {
  float: left !important;
  font-weight: 600;
}

/* ====== TABLES ====== */
/* ======
TABLES
    - General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.data-table th {
  background-color: #ed1f24;
  color: #FFFFFF;
  text-transform: uppercase;
}
.data-table thead tr {
  border: none;
}
.data-table thead th {
  border: none;
}
.data-table tbody {
  border: none;
}
.data-table tbody tr {
  background-color: #F7F7F7;
  border: none;
}
.data-table tbody td {
  border: none;
}
.data-table tfoot tr {
  background-color: #F7F7F7;
  border: none;
}

.notice-cookie .notice-inner {
  background-image: none;
  padding-left: 0;
  padding-bottom: 0;
}
.notice-cookie .notice-inner:after {
  zoom: 1;
}
.notice-cookie .notice-inner:after:before, .notice-cookie .notice-inner:after:after {
  content: "";
  display: table;
}
.notice-cookie .notice-inner:after:after {
  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 {
    zoom: 1;
  }
  .notice-cookie .notice-inner:after:before, .notice-cookie .notice-inner:after:after {
    content: "";
    display: table;
  }
  .notice-cookie .notice-inner:after:after {
    clear: both;
  }
  .notice-cookie .notice-text {
    float: none;
    max-width: 100%;
    padding-top: 0;
  }
  .notice-cookie .actions {
    text-align: left;
  }
}
/* ====== CMS - GENERAL ====== */
/* ======
CMS - GENERAL
    - General
    - Banner
    - Column Blocks
    - Block Titles
    - Top Ranges
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.cms-page-view .homepage__floating-sidebar-block .homepage__floating-sidebar__wrapper {
  max-width: 200px;
}
.cms-page-view .breadcrumbs ul li:nth-child(2) a .arrow {
  padding-right: 6px;
}
@media screen and (max-width: 479px) {
  .cms-page-view .cms-banner-container p > img {
    display: none;
  }
}

.global-site-notice {
  float: left;
  width: 100%;
}
.global-site-notice .notice-text a {
  color: #FFFFFF;
  text-decoration: underline;
}

.dotted-border {
  border-top: 2px dotted #383b3c;
  display: block;
  height: 1px;
  margin: 15px 0;
  width: 100%;
}

.add-square-block, .cms-banner-container .inner_banner .inner_content h1, .openaccount-block .openaccount-block__right > h2, .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left > h2, .catalog-category-view .category-description-top .page-title > h1, .catalogsearch-result-index .category-description-top .page-title > h1, .catalog-category-view .col-main .page-title > h1, .catalogsearch-result-index .col-main .page-title > h1, .catalog-product-view .product-shop .product-name > span, .catalog-product-view .block.block-related .block-title h2, .checkout-cart-index .page-title > h1, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content .supplierSubTitle > h2, .supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2, .stardigital-supplierportal-uploads-view .supplierPortal .supplierSubTitle > h2, .stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2, .my-account .account-section-title > h1,
.my-account .account-section-title > h2, .customer-account-index .col-main .my-account .dashboard .box-account .box-head > h2, .customer-account-create .account-register h2, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-title, .checkout-onepage-success .page-title h1 {
  position: relative;
}
@media screen and (max-width: 989px) {
  .add-square-block, .cms-banner-container .inner_banner .inner_content h1, .openaccount-block .openaccount-block__right > h2, .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left > h2, .catalog-category-view .category-description-top .page-title > h1, .catalogsearch-result-index .category-description-top .page-title > h1, .catalog-category-view .col-main .page-title > h1, .catalogsearch-result-index .col-main .page-title > h1, .catalog-product-view .product-shop .product-name > span, .catalog-product-view .block.block-related .block-title h2, .checkout-cart-index .page-title > h1, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content .supplierSubTitle > h2, .supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2, .stardigital-supplierportal-uploads-view .supplierPortal .supplierSubTitle > h2, .stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2, .my-account .account-section-title > h1,
  .my-account .account-section-title > h2, .customer-account-index .col-main .my-account .dashboard .box-account .box-head > h2, .customer-account-create .account-register h2, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-title, .checkout-onepage-success .page-title h1 {
    padding-left: 20px;
  }
}
.add-square-block:before, .cms-banner-container .inner_banner .inner_content h1:before, .openaccount-block .openaccount-block__right > h2:before, .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left > h2:before, .catalog-category-view .category-description-top .page-title > h1:before, .catalogsearch-result-index .category-description-top .page-title > h1:before, .catalog-category-view .col-main .page-title > h1:before, .catalogsearch-result-index .col-main .page-title > h1:before, .catalog-product-view .product-shop .product-name > span:before, .catalog-product-view .block.block-related .block-title h2:before, .checkout-cart-index .page-title > h1:before, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content .supplierSubTitle > h2:before, .supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2:before, .stardigital-supplierportal-uploads-view .supplierPortal .supplierSubTitle > h2:before, .stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2:before, .my-account .account-section-title > h1:before,
.my-account .account-section-title > h2:before, .customer-account-index .col-main .my-account .dashboard .box-account .box-head > h2:before, .customer-account-create .account-register h2:before, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-title:before, .checkout-onepage-success .page-title h1:before {
  border-left: 10px solid #ed1f24;
  content: " ";
  display: block;
  height: 32px;
  left: -25px;
  position: absolute;
  top: 0;
  width: 20px;
}
@media screen and (max-width: 989px) {
  .add-square-block:before, .cms-banner-container .inner_banner .inner_content h1:before, .openaccount-block .openaccount-block__right > h2:before, .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left > h2:before, .catalog-category-view .category-description-top .page-title > h1:before, .catalogsearch-result-index .category-description-top .page-title > h1:before, .catalog-category-view .col-main .page-title > h1:before, .catalogsearch-result-index .col-main .page-title > h1:before, .catalog-product-view .product-shop .product-name > span:before, .catalog-product-view .block.block-related .block-title h2:before, .checkout-cart-index .page-title > h1:before, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content .supplierSubTitle > h2:before, .supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2:before, .stardigital-supplierportal-uploads-view .supplierPortal .supplierSubTitle > h2:before, .stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2:before, .my-account .account-section-title > h1:before,
  .my-account .account-section-title > h2:before, .customer-account-index .col-main .my-account .dashboard .box-account .box-head > h2:before, .customer-account-create .account-register h2:before, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-title:before, .checkout-onepage-success .page-title h1:before {
    left: 0;
  }
}

/*================================================================================
$ BANNER
================================================================================*/
.cms-banner-container .inner_banner {
  position: relative;
}
.cms-banner-container .inner_banner > img {
  height: 350px;
}
@media screen and (max-width: 989px) {
  .cms-banner-container .inner_banner > img {
    height: 250px;
  }
}
@media screen and (max-width: 669px) {
  .cms-banner-container .inner_banner > img {
    height: 100%;
    min-height: 267px;
  }
}
.cms-banner-container .inner_banner .inner_content {
  bottom: 0;
  background: white;
  border-left: 4px solid #ed1f24;
  padding: 30px 65px;
  position: absolute;
  right: 75px;
}
@media screen and (max-width: 479px) {
  .cms-banner-container .inner_banner .inner_content {
    border: 1px solid #F7F7F7;
    border-left: 1px solid #F7F7F7;
    bottom: -60px;
    padding: 22px 58px;
    right: 2%;
    width: 96%;
  }
}
.cms-banner-container .inner_banner .inner_content h1 {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 44px;
  font-weight: 100;
  margin-bottom: 0;
}
@media screen and (max-width: 479px) {
  .cms-banner-container .inner_banner .inner_content h1 {
    font-size: 38px;
  }
}
.cms-banner-container .inner_banner .inner_content h1:before {
  height: 35px;
  top: 6px;
}

/*================================================================================
$ COLUMN BLOCKS
================================================================================*/
.cms-block-section--threecol {
  margin-bottom: 40px;
  margin-top: 80px;
}
@media screen and (max-width: 770px) {
  .cms-block-section--threecol {
    margin-bottom: 0;
    margin-top: 30px;
    padding: 0 15px;
  }
}
.cms-block-section--threecol.cms-block-section--reasonstoshop .cms-block-section__col--one .cms-block-section__col__top__inner span {
  max-width: 135px;
}
.cms-block-section--threecol.cms-block-section--reasonstoshop .cms-block-section__col--three .cms-block-section__col__top__inner span {
  max-width: 170px;
}
.cms-block-section--threecol .cms-block-section__col {
  float: left;
  margin-left: 2%;
  width: 32%;
}
@media screen and (max-width: 770px) {
  .cms-block-section--threecol .cms-block-section__col {
    margin-left: 0;
    width: 100%;
  }
}
.cms-block-section--threecol .cms-block-section__col:first-child {
  margin-left: 0;
}
.cms-block-section--threecol .cms-block-section__col__top,
.cms-block-section--threecol .cms-block-section__col__middle,
.cms-block-section--threecol .cms-block-section__col__bottom {
  float: left;
  text-align: center;
  width: 100%;
}
.cms-block-section--threecol .cms-block-section__col__top {
  background-color: #ed1f24;
  padding: 30px;
  position: relative;
}
.cms-block-section--threecol .cms-block-section__col__top:before, .cms-block-section--threecol .cms-block-section__col__top:after {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: " ";
  display: block;
  height: 32px;
  position: absolute;
  width: 32px;
}
.cms-block-section--threecol .cms-block-section__col__top:before {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/line-top-corner.png");
  left: 6px;
  top: 6px;
}
.cms-block-section--threecol .cms-block-section__col__top:after {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/line-bottom-corner.png");
  bottom: 6px;
  right: 6px;
}
.cms-block-section--threecol .cms-block-section__col__top__inner {
  float: left;
  text-align: center;
  width: 100%;
}
.cms-block-section--threecol .cms-block-section__col__top__inner img,
.cms-block-section--threecol .cms-block-section__col__top__inner span {
  display: inline-block;
  vertical-align: top;
}
.cms-block-section--threecol .cms-block-section__col__top__inner span {
  color: #FFFFFF;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 27px;
  font-weight: bold;
  line-height: 1.1;
  max-width: 200px;
  padding-left: 10px;
  text-align: left;
  text-transform: uppercase;
  width: 80%;
}
.cms-block-section--threecol .cms-block-section__col__middle img {
  display: block;
  width: 100%;
}
.cms-block-section--threecol .cms-block-section__col__bottom {
  background-color: #F7F7F7;
  position: relative;
}
.cms-block-section--threecol .cms-block-section__col__bottom .cms-block-section__col__bottom__inner {
  min-height: 160px;
  padding: 30px 40px;
}
@media screen and (max-width: 770px) {
  .cms-block-section--threecol .cms-block-section__col__bottom .cms-block-section__col__bottom__inner {
    min-height: 0;
  }
}
.cms-block-section--threecol .cms-block-section__col__bottom .cms-block-section__col__bottom__inner p {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: center;
}

/*================================================================================
$ BLOCK TITLES
================================================================================*/
.dotted-block-title {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 35px;
  font-weight: 100;
  margin: 0 auto 40px;
  max-width: 1140px;
  position: relative;
  text-align: center;
  text-transform: none;
}
@media screen and (max-width: 479px) {
  .dotted-block-title {
    font-size: 33px;
    max-width: 230px;
  }
}
.cms-block-section--reasonstoshop .dotted-block-title:before, .cms-block-section--reasonstoshop .dotted-block-title:after {
  max-width: 21%;
}
.dotted-block-title:before, .dotted-block-title:after {
  border-top: 2px dotted #ed1f24;
  content: " ";
  height: 1px;
  max-width: 25%;
  position: absolute;
  top: 20px;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .dotted-block-title:before, .dotted-block-title:after {
    content: none;
  }
}
.dotted-block-title:before {
  left: 10px;
}
.dotted-block-title:after {
  right: 10px;
}
@media screen and (max-width: 479px) {
  .dotted-block-title:after {
    bottom: -12px;
    left: 0;
    margin: 0 auto;
    max-width: 150px;
    right: 0;
    top: auto;
  }
}

/*================================================================================
$ TOP RANGES
================================================================================*/
.explore-product_range .product_wrapper {
  background: #ed1f24;
  float: left;
  position: relative;
  width: 100%;
}
.explore-product_range .product_wrapper:before {
  border-bottom: 20px solid #ed1f24;
  border-left: 20px solid #FFFFFF;
  border-top: 20px solid #ed1f24;
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  position: absolute;
  right: 0;
  top: -5px;
  transform: rotate(90deg);
  width: 30px;
}
.explore-product_range .product_wrapper .inner_product--wrapper {
  margin: 0 auto;
  max-width: 1140px;
}
.explore-product_range .product_wrapper .inner_product--wrapper .block {
  float: left;
  margin-right: 2%;
  width: 32%;
}
@media screen and (max-width: 479px) {
  .explore-product_range .product_wrapper .inner_product--wrapper .block {
    width: 100%;
  }
}
.explore-product_range .product_wrapper .inner_product--wrapper .block:last-child {
  margin-right: 0;
}
.explore-product_range .product_wrapper .inner_product--wrapper .block .inner_content {
  margin: 0 auto;
  max-width: 190px;
  padding-top: 40px;
}
.explore-product_range .product_wrapper .inner_product--wrapper .block .inner_content a:hover, .explore-product_range .product_wrapper .inner_product--wrapper .block .inner_content a:active, .explore-product_range .product_wrapper .inner_product--wrapper .block .inner_content a:focus {
  text-decoration: none;
}
.explore-product_range .product_wrapper .inner_product--wrapper .block .inner_content a span {
  color: #FFFFFF;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 32px;
  font-weight: 100;
  text-transform: uppercase;
}
.explore-product_range .product_wrapper .inner_product--wrapper .block .inner_content a img {
  padding-top: 10px;
  max-width: 100%;
  width: 40px;
}
.explore-product_range .product_wrapper .inner_product--wrapper .block .product_img a > img {
  border-right: 1px dotted #FFFFFF;
  max-width: 100%;
}
.explore-product_range .product_wrapper .inner_product--wrapper .block.right .product_img a > img {
  border-right: none;
  max-width: 100%;
}

/* ====== HOMEPAGE ====== */
/* ======
HOMEPAGE
    - General
    - Open An Account
    - FAQs
    - FAQs Popup
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.homepage-section {
  float: left;
  margin-bottom: 60px;
  width: 100%;
}
.homepage-section--reasonstoshop {
  margin-bottom: 30px;
}
.homepage-section--openaccount {
  margin-bottom: 70px;
}
.homepage-section--topranges .homepage-section__inner--wide .browse-ranges {
  margin-top: 40px;
  text-align: center;
  width: 100%;
}
.homepage-section .homepage-section__inner {
  display: block;
  margin: 0 auto;
  max-width: 1140px;
  width: 100%;
}
.homepage-section .homepage-section__inner--wide {
  max-width: none;
}

/*================================================================================
$ OPEN AN ACCOUNT
================================================================================*/
.openaccount-block {
  background-color: #F7F7F7;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/backgrounds/metal-bg.jpg");
  background-position: top left;
  background-repeat: repeat-y;
  background-size: 100% 100%;
  position: relative;
}
.openaccount-block .openaccount-block__inner {
  padding: 50px 70px;
}
@media screen and (max-width: 770px) {
  .openaccount-block .openaccount-block__inner {
    padding: 25px;
    padding-bottom: 0;
  }
}
.openaccount-block .openaccount-block__left {
  bottom: 0;
  left: 0;
  max-width: 425px;
  position: absolute;
  width: 40%;
}
@media screen and (max-width: 770px) {
  .openaccount-block .openaccount-block__left {
    float: left;
    max-width: none;
    position: static;
    width: 100%;
  }
}
.openaccount-block .openaccount-block__left img {
  width: 100%;
}
.openaccount-block .openaccount-block__right {
  float: right;
  padding-left: 40px;
  text-align: left;
  width: 60%;
}
@media screen and (max-width: 770px) {
  .openaccount-block .openaccount-block__right {
    margin-bottom: 20px;
    padding-left: 0;
    width: 100%;
  }
}
.openaccount-block .openaccount-block__right > h2 {
  font-size: 32px;
  font-weight: bold;
}
.openaccount-block .openaccount-block__right p {
  font-weight: lighter;
}
.openaccount-block .openaccount-block__right .buttons-set {
  display: block;
  max-width: none !important;
  padding-bottom: 0;
}
.openaccount-block .openaccount-block__right .buttons-set .button {
  font-weight: bold;
  float: left;
  padding-left: 25px;
  padding-right: 25px;
  text-transform: uppercase;
}

/*================================================================================
$ FAQS
================================================================================*/
.cmsfaqs-block {
  background-color: #F7F7F7;
  position: relative;
  text-align: center;
}
.cmsfaqs-block .cmsfaqs-block__inner {
  padding: 50px 70px;
}
@media screen and (max-width: 989px) {
  .cmsfaqs-block .cmsfaqs-block__inner {
    padding: 0;
  }
}
.cmsfaqs-block .cmsfaqs-block__left {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 40%;
}
@media screen and (max-width: 770px) {
  .cmsfaqs-block .cmsfaqs-block__left {
    float: left;
    max-width: none;
    position: static;
    width: 100%;
  }
}
.cmsfaqs-block .cmsfaqs-block__left img {
  width: 100%;
}
.cmsfaqs-block .cmsfaqs-block__right {
  float: right;
  padding-left: 40px;
  width: 60%;
}
@media screen and (max-width: 989px) {
  .cmsfaqs-block .cmsfaqs-block__right {
    padding: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 669px) {
  .cmsfaqs-block .cmsfaqs-block__right {
    padding: 25px 10px;
  }
}
.cmsfaqs-block .cmsfaqs-block__right > h2 {
  font-size: 35px;
  font-weight: 300;
  position: relative;
  text-transform: none;
}
.cmsfaqs-block .cmsfaqs-block__right > h2.desktop {
  display: block;
}
@media screen and (max-width: 479px) {
  .cmsfaqs-block .cmsfaqs-block__right > h2.desktop {
    display: none;
  }
}
.cmsfaqs-block .cmsfaqs-block__right > h2.mobile {
  display: none;
}
@media screen and (max-width: 479px) {
  .cmsfaqs-block .cmsfaqs-block__right > h2.mobile {
    display: block;
    font-size: 31px;
  }
}
.cmsfaqs-block .cmsfaqs-block__right .faq-selector {
  margin: 16px 0;
}
@media screen and (max-width: 479px) {
  .cmsfaqs-block .cmsfaqs-block__right .faq-selector {
    margin-bottom: 0;
  }
}
.cmsfaqs-block .cmsfaqs-block__right select {
  -webkit--webkit-appearance: none;
  -moz--webkit-appearance: none;
  -ms--webkit-appearance: none;
  -o--webkit-appearance: none;
  -webkit-appearance: none;
  background-color: #FFFFFF;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/downward-faq-arrow.png");
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  display: block;
  margin: 0 auto;
  padding: 12px 25px;
  width: 90%;
}
@media screen and (max-width: 989px) {
  .cmsfaqs-block .cmsfaqs-block__right select {
    width: 96%;
  }
}
.cmsfaqs-block .cmsfaqs-block__right p {
  font-weight: lighter;
  font-size: 18px;
  margin: 15px 0;
}
@media screen and (max-width: 479px) {
  .cmsfaqs-block .cmsfaqs-block__right p {
    font-size: 20px;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 310px;
    padding: 20px 0;
  }
  .cmsfaqs-block .cmsfaqs-block__right p a {
    color: #ed1f24;
  }
}
.cmsfaqs-block .cmsfaqs-block__right .dotted-border {
  margin: 0 auto;
  width: 75%;
}
.cmsfaqs-block .cmsfaqs-block__right a {
  color: #383b3c;
  font-weight: bold;
}

/*================================================================================
$ FAQS POPUP 
================================================================================*/
.faqs-overlay-holder .overlay {
  max-width: 650px !important;
  padding: 25px 20px !important;
}
.faqs-overlay-holder .overlay .faq-overlay-content .faq-overlay-content p {
  margin-bottom: 0;
}

/* ====== OVERLAYS ====== */
/* ======
OVERLAYS
	- General
	- Product Video Overlay
	- Product Page
		- Product Code Overlay
		- Stock Tooltip Overlay
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.show {
  display: inline !important;
}

.overlay-holder {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.75);
  height: 100%;
  left: 0;
  min-width: 320px;
  -ms-overflow-y: auto;
  overflow-y: auto;
  position: fixed;
  text-align: left;
  top: 0;
  width: 100%;
  z-index: 19;
}
.overlay-holder .overlay {
  background-color: #FFFFFF;
  border: 5px solid #ed1f24;
  border-radius: 10px;
  margin: 0 auto;
  max-width: 450px;
  padding: 10px;
  position: relative;
  top: 10%;
  width: 100%;
}
@media screen and (max-width: 899px) {
  .overlay-holder .overlay {
    top: 5%;
  }
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay {
    border-radius: 0 0 10px 10px;
    max-width: none;
    top: 0;
  }
}
.overlay-holder .overlay__inner {
  max-height: 500px;
  -ms-overflow-y: auto;
  overflow-y: auto;
}
@media screen and (max-width: 899px) {
  .overlay-holder .overlay__inner {
    max-height: 450px;
  }
}
@media screen and (max-width: 799px) {
  .overlay-holder .overlay__inner {
    max-height: 400px;
  }
}
@media screen and (max-width: 699px) {
  .overlay-holder .overlay__inner {
    max-height: 350px;
  }
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay__inner {
    max-height: 500px;
  }
}
.overlay-holder .close-btn {
  background-color: #FFFFFF;
  border: 2px solid #ed1f24;
  border-radius: 50%;
  padding: 8px;
  position: absolute;
  right: -25px;
  top: -25px;
}
@media screen and (max-width: 599px) {
  .overlay-holder .close-btn {
    padding: 5px;
    right: 2px;
    top: 2px;
  }
}
@media screen and (max-width: 599px) {
  .overlay-holder .close-btn img {
    width: 18px;
  }
}

/*================================================================================
$ PRODUCT VIDEO OVERLAY
================================================================================*/
.product-video-overlay-holder .overlay {
  max-width: 700px;
}
.product-video-overlay-holder .overlay .overlay__inner {
  max-height: none;
  overflow-y: visible;
}
.product-video-overlay-holder .overlay .overlay__inner iframe {
  width: 100% !important;
}

/*================================================================================
$ PRODUCT PAGE
================================================================================*/
.product-view .product-overlay-holder {
  display: none;
  height: 100%;
  left: 0;
  min-width: 320px;
  -ms-overflow-y: auto;
  overflow-y: auto;
  position: absolute;
  text-align: left;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 669px) {
  .product-view .product-overlay-holder {
    position: fixed;
  }
}
.product-view .product-overlay-holder .product-overlay__inner {
  margin-top: -45px;
  max-height: 500px;
  -ms-overflow-y: auto;
  overflow-y: auto;
  padding: 15px;
}
.product-view .product-overlay-holder .product-overlay__inner p {
  font-size: 10px;
}
@media screen and (max-width: 899px) {
  .product-view .product-overlay-holder .product-overlay__inner {
    max-height: 450px;
  }
}
@media screen and (max-width: 799px) {
  .product-view .product-overlay-holder .product-overlay__inner {
    max-height: 400px;
  }
}
@media screen and (max-width: 699px) {
  .product-view .product-overlay-holder .product-overlay__inner {
    max-height: 350px;
  }
}
@media screen and (max-width: 667px) {
  .product-view .product-overlay-holder .product-overlay__inner {
    max-height: 500px;
    padding: 70px 25px 25px;
  }
}
.product-view .product-overlay-holder .close-btn {
  background-color: #FFFFFF;
  color: #383b3c;
  font-size: 12px;
  position: absolute;
  right: 5px;
  top: 5px;
}
@media screen and (max-width: 669px) {
  .product-view .product-overlay-holder .close-btn {
    top: 10px;
    right: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 499px) {
  .product-view .product-overlay-holder .close-btn {
    font-size: 12px;
    padding: 10px;
    right: 10px;
    top: 10px;
  }
}
@media screen and (max-width: 499px) {
  .product-view .product-overlay-holder .close-btn img {
    width: 18px;
  }
}

/* ====== P2 DESIGNS BANNERS ====== */
/* ======
P2 DESIGNS BANNERS
    - General
    - CMS Banners
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.banner-wrapper {
  display: block;
  margin: 0 auto;
  max-width: 1140px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 989px) {
  .banner-wrapper .flex-viewport {
    overflow-y: visible !important;
  }
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li {
  margin-top: 0;
  position: relative;
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper {
  background-color: #FFFFFF;
  border-left: 4px solid #ed1f24;
  bottom: 0;
  position: absolute;
  right: 5%;
}
@media screen and (max-width: 989px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper {
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper {
    border-bottom: 4px solid #ed1f24;
    border-left: none;
    right: 0;
    width: 100%;
  }
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details {
  max-width: 400px;
  padding-bottom: 0;
  padding-left: 35px;
  padding-right: 15px;
  padding-top: 15px;
  width: 100%;
}
@media screen and (max-width: 989px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details {
    box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.75);
    padding-left: 15px;
  }
}
@media screen and (max-width: 599px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details {
    box-shadow: none;
    max-width: none;
  }
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details h3 {
  color: #383b3c;
  display: block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 34px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 0;
  padding-left: 0;
  position: relative;
}
@media screen and (max-width: 989px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details h3 {
    font-size: 24px;
  }
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details h3:before {
  border-left: 10px solid #ed1f24;
  content: " ";
  display: block;
  height: 44px;
  left: -20px;
  position: absolute;
  top: 0;
  width: 0;
}
@media screen and (max-width: 989px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details h3:before {
    display: none;
  }
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details h3:first-line {
  font-weight: 600;
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details a {
  color: #ed1f24;
  display: block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  margin-top: 12px;
  padding-left: 0;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 989px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details a {
    font-size: 14px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 669px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__details__wrapper .banner__details a {
    font-size: 13px;
  }
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__img {
  width: 100%;
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__img.desktop {
  display: block;
}
@media screen and (max-width: 669px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__img.desktop {
    display: none;
  }
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__img.mobile {
  display: none;
}
@media screen and (max-width: 669px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__img.mobile {
    display: block;
  }
}
.banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__img > img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 989px) {
  .banner-wrapper .flex-viewport .banner-wrapper_ul li .banner__img > img {
    height: 100%;
    max-height: 350px;
  }
}
.banner-wrapper .flex-control-nav {
  bottom: 20px;
  left: 20px;
  position: absolute;
  width: auto;
}
@media screen and (max-width: 599px) {
  .banner-wrapper .flex-control-nav {
    bottom: auto;
    left: auto;
    right: 15px;
    top: 15px;
    width: auto;
  }
}
.banner-wrapper .flex-control-nav li {
  display: inline-block;
  margin-right: 10px;
}
.banner-wrapper .flex-control-nav li a {
  background: #FFFFFF;
  border-radius: 2px;
  color: #FFFFFF;
  padding: 7px 7px;
  font-size: 0;
}
.banner-wrapper .flex-control-nav li a.flex-active {
  border: 5px solid #ed1f24;
}

.cms-banner-container.additional.desktop .inner_banner {
  display: block;
}
@media screen and (max-width: 669px) {
  .cms-banner-container.additional.desktop .inner_banner {
    display: none;
  }
}
.cms-banner-container.additional.mobile .inner_banner {
  display: none;
}
@media screen and (max-width: 669px) {
  .cms-banner-container.additional.mobile .inner_banner {
    display: block;
  }
}

.cms-banner-container img {
  width: 100%;
}

/* ====== CATALOG SEARCH ====== */
/*================================================================================
$ SEARCH RESULTS
================================================================================*/
.catalogsearch-result-index.loggedIn_old .product-info .variants {
  min-height: 88px !important;
}

.catalogsearch-result-index .col-main .page-title h1 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
  text-transform: none;
}
.catalogsearch-result-index .col-main .category-products .toolbar {
  background: 0;
}
.catalogsearch-result-index .col-main .category-products .toolbar .sorter p.view-mode label {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}
.catalogsearch-result-index .col-main .category-products .toolbar .sorter .sort-by label {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}
.catalogsearch-result-index .col-main .category-products .toolbar .pager .count-container p.amount {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}
.catalogsearch-result-index .col-main .category-products .toolbar .pager .count-container .limiter label {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

/* ====== ADVANCED SEARCH ====== */
/* ======
ADVANCED SEARCH
	- Advanced Search
	- Advanced Results
====== */
/*================================================================================
$ ADVANCED SEARCH
================================================================================*/
.catalogsearch-advanced-index .main-container .breadcrumbs {
  max-width: none;
}
.catalogsearch-advanced-index .main-container .page-title h1 {
  border-bottom: 0;
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .catalogsearch-advanced-index .main-container .page-title h1 {
    margin-top: 50px;
  }
}
.catalogsearch-advanced-index .main-container #form-validate {
  float: left;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .catalogsearch-advanced-index .main-container #form-validate {
    margin-right: 29px;
    width: 46%;
  }
}
@media screen and (max-width: 669px) {
  .catalogsearch-advanced-index .main-container #form-validate {
    margin-right: 22px;
  }
}
@media screen and (max-width: 479px) {
  .catalogsearch-advanced-index .main-container #form-validate {
    width: 100%;
  }
}
.catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search {
  background: 0;
}
.catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search h2 {
  display: none;
}
.catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search ul li label {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 6px;
}
.catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search ul li #price.input-text, .catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search ul li #price_to.input-text {
  width: 175px;
}
@media screen and (max-width: 768px) {
  .catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search ul li #price.input-text, .catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search ul li #price_to.input-text {
    width: 146px;
  }
}
@media screen and (max-width: 669px) {
  .catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search ul li #price.input-text, .catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search ul li #price_to.input-text {
    width: 123px;
  }
}
@media screen and (max-width: 479px) {
  .catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search ul li #price.input-text, .catalogsearch-advanced-index .main-container #form-validate .fieldset.advanced-search ul li #price_to.input-text {
    width: 128px;
  }
}
.catalogsearch-advanced-index .main-container #form-validate .search-btn, .catalogsearch-advanced-index .main-container #form-validate .update-total-btn {
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 479px) {
  .catalogsearch-advanced-index .main-container #form-validate .search-btn, .catalogsearch-advanced-index .main-container #form-validate .update-total-btn {
    max-width: none;
  }
}
.catalogsearch-advanced-index .main-container .saimaxx-download {
  float: left;
  width: 50%;
}
@media screen and (max-width: 479px) {
  .catalogsearch-advanced-index .main-container .saimaxx-download {
    width: 100%;
  }
}
.catalogsearch-advanced-index .main-container .saimaxx-download .saimaxx-download-brochure-image {
  float: left;
  margin-left: -7px;
  margin-top: -10px;
  width: 10%;
}
.catalogsearch-advanced-index .main-container .saimaxx-download .saimaxx-download-brochure {
  margin-bottom: 38px;
}
.catalogsearch-advanced-index .main-container .saimaxx-download .saimaxx-download-brochure h4 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  margin-left: 66px;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .catalogsearch-advanced-index .main-container .saimaxx-download .saimaxx-download-brochure h4 {
    font-size: 19px;
  }
}
@media screen and (max-width: 479px) {
  .catalogsearch-advanced-index .main-container .saimaxx-download .saimaxx-download-brochure h4 {
    font-size: 17px;
  }
}
.catalogsearch-advanced-index .main-container .saimaxx-download .saimaxx-download-brochure h4 a {
  color: #383b3c;
  text-decoration: none;
}
.catalogsearch-advanced-index .main-container .saimaxx-download .saimaxx-download-brochure h4 a:hover {
  text-decoration: underline;
}
.catalogsearch-advanced-index .main-container .saimaxx-download .saimaxx-download-info {
  clear: both;
}
.catalogsearch-advanced-index .main-container .saimaxx-download .saimaxx-download-info p {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media screen and (max-width: 479px) {
  .catalogsearch-advanced-index .main-container .saimaxx-download .download-here-btn {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 479px) {
  .catalogsearch-advanced-index .main-container .saimaxx-download .download-here-btn a.download-btn {
    max-width: none;
  }
}

/*================================================================================
$ ADVANCED RESULTS
================================================================================*/
.catalogsearch-advanced-result .main .breadcrumbs {
  max-width: none;
}
.catalogsearch-advanced-result .main .breadcrumbs ul li.search {
  display: none;
}
.catalogsearch-advanced-result .main .col-main {
  width: 100%;
}
.catalogsearch-advanced-result .main .page-title h1 {
  border: 0;
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
  text-transform: none;
}
.catalogsearch-advanced-result .main p.error-msg {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
}
.catalogsearch-advanced-result .main p.error-msg a {
  margin-left: 20px;
}
.catalogsearch-advanced-result .main .advanced-search-summary ul li {
  margin-bottom: 14px;
  margin-top: 0;
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
}
.catalogsearch-advanced-result .main .advanced-search-summary ul li strong {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
}

/* ====== ABOUT ====== */
/* ======
ABOUT
    - P2 Design - General
====== */
/*================================================================================
$ P2 DESIGN - GENERAL
================================================================================*/
@media screen and (max-width: 479px) {
  .cms-about .cms-banner-container .inner_banner .inner_content {
    padding: 22px 40px;
  }
}
@media screen and (max-width: 479px) {
  .cms-about .main-container {
    margin-top: 60px;
    padding: 0;
  }
  .cms-about .main-container .breadcrumbs {
    display: none !important;
  }
}
.cms-about .main-content {
  padding-bottom: 30px;
  padding-top: 30px;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content {
    padding-top: 0;
  }
}
.cms-about .main-content .opening-block .inner-content h4 {
  border-bottom: 1px dotted black;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 36px;
  font-weight: 100;
  padding-bottom: 28px;
  text-align: center;
  text-transform: none;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .opening-block .inner-content h4 {
    background: #edeceb;
    border-bottom: none;
    font-size: 27px;
    line-height: 1.4;
    padding: 15px;
  }
}
.cms-about .main-content .opening-block .inner-content h4 span {
  font-weight: 400;
}
.cms-about .main-content .opening-block .inner-content p {
  font-size: 16px;
  font-style: unset;
  font-weight: 100;
  padding-top: 20px;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .opening-block .inner-content p {
    font-size: 18px;
    line-height: 1.4;
    padding: 15px;
  }
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .block {
    margin-bottom: 0;
  }
}
.cms-about .main-content .block .left {
  background: #ed1f24;
  float: left;
  font-style: unset;
  font-weight: 100;
  height: 331px;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 989px) {
  .cms-about .main-content .block .left {
    width: 100%;
  }
}
.cms-about .main-content .block .left .inner_content {
  left: 50%;
  margin: 0 auto;
  max-width: 400px;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .block .left .inner_content {
    width: 85%;
  }
}
.cms-about .main-content .block .left .inner_content img {
  float: left;
  width: 42px;
}
.cms-about .main-content .block .left .inner_content span {
  color: #FFFFFF;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  margin-left: 10px;
  margin-top: -4px;
  max-width: 160px;
  text-align: left;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .block .left .inner_content span {
    max-width: 170px;
  }
}
.cms-about .main-content .block .left .inner_content p {
  color: #FFFFFF;
  float: left;
  font-style: unset;
  font-weight: 100;
  text-align: left;
}
.cms-about .main-content .block .right {
  float: left;
  width: 50%;
}
@media screen and (max-width: 989px) {
  .cms-about .main-content .block .right {
    width: 100%;
  }
  .cms-about .main-content .block .right img {
    height: 331px;
    width: 100%;
  }
}
.cms-about .main-content .block.top .left:before, .cms-about .main-content .block.bottom .left:before, .cms-about .main-content .block.mobile .left:before {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/line-top-corner.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: " ";
  display: block;
  height: 32px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 32px;
}
.cms-about .main-content .block.top .left:after, .cms-about .main-content .block.bottom .left:after, .cms-about .main-content .block.mobile .left:after {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/line-bottom-corner.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 6px;
  content: " ";
  display: block;
  height: 32px;
  position: absolute;
  right: 6px;
  width: 32px;
}
.cms-about .main-content .block.middle {
  display: block;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .block.middle {
    display: none;
  }
}
.cms-about .main-content .block.middle .left {
  float: left;
  width: 50%;
}
@media screen and (max-width: 989px) {
  .cms-about .main-content .block.middle .left {
    width: 100%;
  }
  .cms-about .main-content .block.middle .left img {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .block.middle .left img {
    height: 331px;
    width: 100%;
  }
}
.cms-about .main-content .block.middle .right {
  background: #ed1f24;
  float: left;
  font-style: unset;
  font-weight: 100;
  height: 331px;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 989px) {
  .cms-about .main-content .block.middle .right {
    width: 100%;
  }
}
.cms-about .main-content .block.middle .right:before {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/line-top-corner.png");
  background-repeat: no-repeat;
  content: " ";
  display: block;
  height: 32px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 32px;
}
.cms-about .main-content .block.middle .right:after {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/line-bottom-corner.png");
  background-repeat: no-repeat;
  bottom: 6px;
  content: " ";
  display: block;
  height: 32px;
  position: absolute;
  right: 6px;
  width: 32px;
}
.cms-about .main-content .block.middle .right .inner_content {
  left: 50%;
  margin: 0 auto;
  max-width: 400px;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .block.middle .right .inner_content {
    width: 85%;
  }
}
.cms-about .main-content .block.middle .right .inner_content img {
  float: left;
  width: 42px;
}
@media screen and (max-width: 989px) {
  .cms-about .main-content .block.middle .right .inner_content img {
    height: unset;
    width: auto;
  }
}
.cms-about .main-content .block.middle .right .inner_content span {
  color: #FFFFFF;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  margin-left: 10px;
  margin-top: -4px;
  max-width: 160px;
  text-align: left;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .block.middle .right .inner_content span {
    max-width: 190px;
  }
}
.cms-about .main-content .block.middle .right .inner_content p {
  color: #FFFFFF;
  float: left;
  font-style: unset;
  font-weight: 100;
  text-align: left;
}
.cms-about .main-content .block.mobile {
  display: none;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .block.mobile {
    display: block;
  }
}
.cms-about .main-content .button-submit {
  display: block;
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .button-submit .inner-content {
    margin-left: 1%;
    width: 98%;
  }
}
.cms-about .main-content .button-submit .inner-content .download-btn {
  font-size: 20px;
  font-weight: 500;
  max-width: 350px;
}
@media screen and (max-width: 479px) {
  .cms-about .main-content .button-submit .inner-content .download-btn {
    max-width: none;
  }
}

.cms-about_old .col-main {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 1059px;
  width: 100%;
}
.cms-about_old .main-content p {
  font-style: normal;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 300;
}
.cms-about_old .main-content .page-title h1 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
}
.cms-about_old .main-content .page-title h1 span {
  text-transform: capitalize;
}
.cms-about_old .main-content .page-title-inner h4 {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 28px;
  margin-top: 30px;
}
.cms-about_old .main-content .page-title-inner span {
  text-transform: capitalize;
}
.cms-about_old .main-content .bottom-wrapper {
  border-top: 1px solid #cecdcd;
  margin-top: 30px;
  padding-top: 30px;
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-info {
  width: 100%;
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-info .saimaxx-address {
  float: left;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .cms-about_old .main-content .bottom-wrapper .saimaxx-info .saimaxx-address {
    margin-right: 30px;
    width: 42%;
  }
}
@media screen and (max-width: 479px) {
  .cms-about_old .main-content .bottom-wrapper .saimaxx-info .saimaxx-address {
    width: 100%;
  }
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-info .saimaxx-address h4 {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-info .saimaxx-address p {
  margin-bottom: 0;
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-info .saimaxx-address .contact-us-btn {
  margin-bottom: 60px;
  margin-top: 20px;
}
@media screen and (max-width: 479px) {
  .cms-about_old .main-content .bottom-wrapper .saimaxx-info .saimaxx-address .contact-us-btn a.contact-btn {
    max-width: none;
  }
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-info .saimaxx-contact {
  margin-top: 20px;
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-info .saimaxx-contact p {
  margin-bottom: 0;
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-download {
  float: left;
  width: 50%;
}
@media screen and (max-width: 479px) {
  .cms-about_old .main-content .bottom-wrapper .saimaxx-download {
    width: 100%;
  }
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-download .saimaxx-download-brochure-image {
  float: left;
  margin-left: -7px;
  margin-top: -10px;
  width: 10%;
}
@media screen and (max-width: 768px) {
  .cms-about_old .main-content .bottom-wrapper .saimaxx-download .saimaxx-download-brochure-image {
    margin-top: -8px;
  }
}
@media screen and (max-width: 479px) {
  .cms-about_old .main-content .bottom-wrapper .saimaxx-download .saimaxx-download-brochure-image {
    margin-top: -6px;
  }
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-download .saimaxx-download-brochure {
  margin-bottom: 38px;
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-download .saimaxx-download-brochure h4 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  margin-left: 66px;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .cms-about_old .main-content .bottom-wrapper .saimaxx-download .saimaxx-download-brochure h4 {
    font-size: 19px;
    margin-left: 46px;
  }
}
@media screen and (max-width: 479px) {
  .cms-about_old .main-content .bottom-wrapper .saimaxx-download .saimaxx-download-brochure h4 {
    font-size: 18px;
    margin-left: 40px;
  }
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-download .saimaxx-download-brochure h4 a {
  color: #383b3c;
  text-decoration: none;
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-download .saimaxx-download-brochure h4 a:hover {
  text-decoration: underline;
}
.cms-about_old .main-content .bottom-wrapper .saimaxx-download .saimaxx-download-info {
  clear: both;
}
@media screen and (max-width: 479px) {
  .cms-about_old .main-content .bottom-wrapper .saimaxx-download .download-here-btn a.download-btn {
    max-width: none;
  }
}

/* ====== ORDER & RETURNS ====== */
/* ======
ORDER & RETURNS
    - P2 Design - General
====== */
/*================================================================================
$ P2 DESIGN - GENERAL
================================================================================*/
.cms-orders-returns .cms-banner-container .inner_banner {
  position: relative;
}
@media screen and (max-width: 479px) {
  .cms-orders-returns .cms-banner-container .inner_banner > img {
    height: 267px;
    margin-bottom: 80px;
  }
}
.cms-orders-returns .cms-banner-container .inner_banner .inner_content {
  bottom: 0;
  background: white;
  border-left: 4px solid #ed1f24;
  padding: 22px 50px;
  position: absolute;
  right: 75px;
}
@media screen and (max-width: 479px) {
  .cms-orders-returns .cms-banner-container .inner_banner .inner_content {
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.75);
    -ms-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.75);
    -o-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.75);
    border: 1px solid #F7F7F7;
    border-left: 1px solid #F7F7F7;
    bottom: -60px;
    padding: 22px 58px;
    right: 2%;
    width: 96%;
  }
}
.cms-orders-returns .cms-banner-container .inner_banner .inner_content h1 {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 44px;
  font-weight: 100;
  margin-bottom: 0;
}
@media screen and (max-width: 479px) {
  .cms-orders-returns .cms-banner-container .inner_banner .inner_content h1 {
    font-size: 38px;
  }
}
.cms-orders-returns .cms-banner-container .inner_banner .inner_content h1:before {
  border-left: 10px solid #ed1f24;
  content: " ";
  display: block;
  height: 32px;
  position: absolute;
  width: 20px;
}
.cms-orders-returns .main-container.col1-layout {
  max-width: none;
  padding: 0;
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content {
  margin: 0 auto;
  max-width: 1140px;
  padding: 10px;
}
@media screen and (max-width: 989px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content {
    padding: 0;
  }
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper {
  margin-top: 30px;
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab {
  list-style: none;
  margin-bottom: 6px;
}
@media screen and (max-width: 989px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab {
    margin-bottom: 0;
  }
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li {
  float: left;
  margin-left: 0;
  margin-right: 0.5%;
  margin-top: 0;
  width: 33%;
}
@media screen and (max-width: 479px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li {
    width: 33.3%;
    margin-right: 0;
  }
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li:last-child {
  margin-right: 0;
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a {
  background: #4d4d4d;
  display: block;
  opacity: 0.2;
  padding: 29px 10px;
  text-align: center;
}
@media screen and (max-width: 989px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a {
    padding: 30px 10px;
  }
}
@media screen and (max-width: 479px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a {
    padding: 41px 10px;
  }
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a img {
  display: none;
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a span {
  color: #FFFFFF;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: middle;
}
@media screen and (max-width: 989px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a span {
    font-size: 24px;
  }
}
@media screen and (max-width: 479px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a span {
    font-size: 14px;
  }
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a.active {
  background: #ed1f24;
  opacity: 1;
  padding: 20px 10px;
  position: relative;
  text-decoration: none;
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a.active:before {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/line-top-corner.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: " ";
  display: block;
  height: 32px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 32px;
}
@media screen and (max-width: 479px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a.active:before {
    background-image: none;
  }
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a.active:after {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/line-bottom-corner.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 6px;
  content: " ";
  display: block;
  height: 32px;
  position: absolute;
  right: 6px;
  width: 32px;
}
@media screen and (max-width: 479px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a.active:after {
    background-image: none;
  }
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a.active img {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 479px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a.active img {
    display: block;
    margin: 0 auto;
  }
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a.active span {
  margin-left: 10px;
}
@media screen and (max-width: 479px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .tab_wrapper .tab li a.active span {
    display: block;
    margin: 0 auto;
    margin-left: 0 !important;
    margin-top: 6px;
  }
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .text_content {
  background: #F7F7F7;
  margin-bottom: 30px;
  padding: 60px;
}
@media screen and (max-width: 989px) {
  .cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .text_content {
    padding: 20px;
  }
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .text_content ol {
  counter-reset: foo;
  display: table;
  list-style: none;
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .text_content ol li {
  counter-increment: foo;
  display: table-row;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 3;
  list-style: none;
  margin-left: 0;
  padding: 10px 0;
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .text_content ol li:before {
  content: counter(foo) ".";
  display: table-cell;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding-right: .3em;
  text-align: right;
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .text_content ol li span {
  font-weight: 600;
  margin-right: 20px;
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .text_content#returns {
  display: none;
}
.cms-orders-returns .main-container.col1-layout .main-content .main_inner__content .text_content#cancellation {
  display: none;
}

.cms-orders-returns__old .breadcrumbs ul li:nth-child(2) {
  display: inline;
}
.cms-orders-returns__old .col-main {
  width: 100%;
}
.cms-orders-returns__old .col-main .page-title h1 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 50px;
  text-transform: none;
}
.cms-orders-returns__old .col-main .inner-page-title h1 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 25px;
  text-transform: none;
}
.cms-orders-returns__old .col-main .top-main-content {
  border-bottom: 1px solid #DDDDDD;
}
.cms-orders-returns__old .col-main .top-main-content h3 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
  text-transform: none;
}
.cms-orders-returns__old .col-main .top-main-content p {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
}
.cms-orders-returns__old .col-main .bottom-main-content {
  border-bottom: 1px solid #DDDDDD;
  padding-top: 20px;
}
.cms-orders-returns__old .col-main .bottom-main-content h1 {
  margin-top: 0;
}
.cms-orders-returns__old .col-main .bottom-main-content h3 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
  text-transform: none;
}
.cms-orders-returns__old .col-main .bottom-main-content p {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
}
.cms-orders-returns__old .col-main .bottom-main-content p:last-child {
  margin-bottom: 40px;
}
.cms-orders-returns__old .col-main .not-looking-for h1 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 30px;
  margin-top: 40px;
  text-transform: none;
}
.cms-orders-returns__old .col-main .not-looking-for a.contact-btn {
  margin-bottom: 30px;
}

/* ====== CONTACT ====== */
/* ======
CONTACT
    - P2 Design - General
====== */
/*================================================================================
$ P2 DESIGN - GENERAL
================================================================================*/
.cms-page-view .breadcrumbs {
  display: none;
}

.cms-contact .cms-banner-container {
  display: none;
}
.cms-contact .main-container.col1-layout {
  max-width: none;
  padding: 0;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper {
  position: relative;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content {
  background: #FFFFFF;
  border-left: 4px solid #ed1f24;
  bottom: 0;
  max-width: 670px;
  position: absolute;
  right: 200px;
  width: 100%;
}
@media screen and (max-width: 989px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content {
    max-width: none;
    right: 0;
  }
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content {
    border-left: 0;
    max-width: 96%;
    right: 2%;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content {
  max-width: 670px;
  padding-bottom: 0;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content {
    padding-bottom: 90px;
    padding-left: 27px;
    padding-right: 27px;
    padding-top: 27px;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content h1.desktop {
  display: block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 44px;
  font-weight: 100;
  line-height: 1.2;
  padding-left: 14px;
  position: relative;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content h1.desktop {
    display: none;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content h1.desktop span {
  font-weight: 600;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content h1.desktop:before {
  border-left: 10px solid #ed1f24;
  content: " ";
  display: block;
  height: 44px;
  left: -10px;
  position: absolute;
  top: 10px;
  width: 20px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content h1.mobile {
  display: none;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 38px;
  font-weight: 100;
  line-height: 1.2;
  max-width: 390px;
  padding-left: 14px;
  position: relative;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content h1.mobile {
    font-weight: normal;
    display: block;
  }
}
@media screen and (max-width: 329px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content h1.mobile {
    font-size: 34px;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content h1.mobile span {
  font-weight: normal;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content h1.mobile:before {
  border-left: 8px solid #ed1f24;
  content: " ";
  display: block;
  height: 38px;
  left: -10px;
  position: absolute;
  top: 4px;
  width: 20px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content a {
  bottom: 0;
  color: #ed1f24;
  display: block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 18px;
  margin-top: 35px;
  padding-left: 14px;
  text-decoration: none;
  text-transform: uppercase;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn {
  padding-bottom: 4px;
  padding-left: 14px;
  width: 100%;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .btn-cart, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .grey-btn, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .grey-btn, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .checkout-button--collection, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .checkout-button--delivery {
  color: #FFFFFF;
  margin-top: 24px;
  max-width: 250px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .btn-cart:hover, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .grey-btn:hover, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .grey-btn:hover, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:hover, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .checkout-button--collection:hover, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:hover, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .checkout-button--delivery:hover, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .btn-cart:active, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .grey-btn:active, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .grey-btn:active, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:active, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .checkout-button--collection:active, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:active, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .checkout-button--delivery:active, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .btn-cart:focus, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .grey-btn:focus, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .grey-btn:focus, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:focus, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .checkout-button--collection:focus, .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:focus, #header-cart .minicart-wrapper .minicart-actions .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .download-map-btn .checkout-button--delivery:focus {
  color: #ed1f24;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content a.desktop {
  display: block;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content a.desktop {
    display: none;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content a.mobile {
  display: none;
  margin-top: 18px;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content a.mobile {
    display: block;
  }
}
@media screen and (max-width: 329px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content a.mobile {
    font-size: 15px;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .mobile-arrow {
  display: none;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .mobile-arrow {
    background-color: #ed1f24;
    border-radius: 2px;
    bottom: 0;
    display: block;
    left: 40px;
    padding: 20px 16px;
    position: absolute;
  }
  .cms-contact .main-container.col1-layout .contact-saimaxx .map_wrapper .map_content .inner_content .mobile-arrow > img {
    width: 24px;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper {
  margin: 0 auto;
  max-width: 1140px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper {
  background-color: #F7F7F7;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/backgrounds/metal-bg.jpg");
  background-position: top left;
  background-repeat: repeat-y;
  background-size: 100% 100%;
  margin-bottom: 70px;
  padding: 50px;
}
@media screen and (max-width: 669px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper {
    margin-top: 10px;
    padding: 18px 8px;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper .desktop {
  display: block;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper .desktop {
    display: none;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper .mobile {
  display: none;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper .mobile {
    display: block;
    font-weight: normal;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper h2 {
  border-bottom: 2px dotted black;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper h2 {
    font-size: 31px;
  }
}
@media screen and (max-width: 329px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper h2 {
    font-size: 26px;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm {
  padding-left: 0;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list {
  margin-top: 40px;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list {
    margin-top: 24px;
  }
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields {
    margin-top: 0;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field {
  float: left;
  margin-top: 0;
  width: 49%;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field {
    float: none;
    width: 100%;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field .input-box {
  max-width: none;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field .input-box input {
  height: 46px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field .input-box input::-webkit-input-placeholder {
  font-weight: 100;
  padding-left: 10px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field .input-box input:-moz-placeholder {
  font-weight: 100;
  padding-left: 10px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field .input-box input::-moz-placeholder {
  font-weight: 100;
  padding-left: 10px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field .input-box input:-ms-input-placeholder {
  font-weight: 100;
  padding-left: 10px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field.first {
  margin-right: 2%;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field.wide {
  width: 100%;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field.wide textarea::-webkit-input-placeholder {
  font-weight: 100;
  padding-left: 10px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field.wide textarea:-moz-placeholder {
  font-weight: 100;
  padding-left: 10px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field.wide textarea::-moz-placeholder {
  font-weight: 100;
  padding-left: 10px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .form-list .fields .field.wide textarea:-ms-input-placeholder {
  font-weight: 100;
  padding-left: 10px;
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .button-submit {
  text-align: center;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .button-submit {
    padding-bottom: 25px;
  }
}
.cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .button-submit .download-btn {
  max-width: 300px;
}
@media screen and (max-width: 479px) {
  .cms-contact .main-container.col1-layout .contact-saimaxx .contact_page_wrapper .form_wrapper #contactForm .button-submit .download-btn {
    max-width: none;
  }
}

/* ====== FAQS ====== */
/* ======
FAQS
    - General
    - Blocks
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.faqs-index-index .breadcrumbs {
  display: none;
}
@media screen and (max-width: 479px) {
  .faqs-index-index .main-container {
    padding: 0;
  }
}

.faq-page-container {
  margin-bottom: 120px;
  margin-top: 40px;
}
@media screen and (max-width: 989px) {
  .faq-page-container {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 479px) {
  .faq-page-container {
    padding: 15px;
  }
}

.faq-page-container__inner {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
  column-gap: 75px;
}
@media screen and (max-width: 770px) {
  .faq-page-container__inner {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    -ms-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
    column-gap: 0;
  }
}
.faq-page-container__inner .faq-page__tab-block__title h2 {
  border-bottom: 2px dotted #000000;
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 10px;
}
@media screen and (max-width: 989px) {
  .faq-page-container__inner .faq-page__tab-block__title h2 {
    padding-left: 20px;
  }
  .faq-page-container__inner .faq-page__tab-block__title h2:before {
    left: 0;
  }
}
.faq-page-container__inner .faq-page-tab-block__list {
  display: inline-block;
  width: 100%;
}
.faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item {
  display: inline-block;
  width: 100%;
}
.faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item a {
  text-decoration: none;
}
.faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item .faq-page-tab-block__list__item__question {
  background: #F7F7F7;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/plus-icon-new.png");
  background-position: 97% 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 10px;
}
.faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item .faq-page-tab-block__list__item__question h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media screen and (max-width: 669px) {
  .faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item .faq-page-tab-block__list__item__question h4 {
    font-size: 14px;
  }
}
.faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item .faq-page-tab-block__list__item__answer {
  padding: 10px;
}
.faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item .faq-page-tab-block__list__item__answer p {
  border-bottom: 2px dotted #ed1f24;
  color: #383b3c;
  font-size: 17px;
  font-weight: 200;
  padding-bottom: 90px;
}
@media screen and (max-width: 989px) {
  .faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item .faq-page-tab-block__list__item__answer p {
    padding-bottom: 40px;
  }
}
.faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item .faq-page-tab-block__list__item__answer p a {
  color: #ed1f24;
}
.faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item.active .faq-page-tab-block__list__item__question {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/minus-icon-new.png");
}
.faq-page-container__inner .faq-page-tab-block__list .faq-page-tab-block__list__item.active .faq-page-tab-block__list__item__answer {
  display: block !important;
  padding-bottom: 40px;
}

/*================================================================================
$ BLOCKS
================================================================================*/
.faq-page__tab-block {
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
}
@media screen and (max-width: 989px) {
  .faq-page__tab-block {
    width: 100%;
  }
}

/*================================================================================
$ OPEN AN ACCOUNT
================================================================================*/
.faq-section--openaccount {
  float: left;
  margin-bottom: 70px;
  width: 100%;
}
.faq-section--openaccount .faq_openaccount-block {
  background-color: #F7F7F7;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/backgrounds/metal-bg.jpg");
  background-position: top left;
  background-repeat: repeat-y;
  background-size: 100% 100%;
  position: relative;
}
.faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__inner {
  padding: 50px 70px;
}
@media screen and (max-width: 770px) {
  .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__inner {
    padding: 25px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 479px) {
  .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__inner {
    padding: 0;
    padding-top: 40px;
  }
}
.faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left {
  float: left;
  padding-left: 20px;
  text-align: left;
  width: 48%;
}
@media screen and (max-width: 770px) {
  .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left {
    margin-bottom: 20px;
    padding-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left {
    padding: 15px;
  }
}
.faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left > h2 {
  font-size: 32px;
  font-weight: bold;
}
.faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left p {
  font-weight: 400;
}
.faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left .buttons-set {
  display: block;
  max-width: none !important;
  padding-bottom: 0;
}
.faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__left .buttons-set .button {
  font-weight: bold;
  float: left;
  padding-left: 25px;
  padding-right: 25px;
  text-transform: uppercase;
}
.faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__right {
  bottom: 0;
  right: 0;
  max-width: 530px;
  position: absolute;
  width: 60%;
}
@media screen and (max-width: 770px) {
  .faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__right {
    float: right;
    max-width: none;
    position: static;
    width: 100%;
  }
}
.faq-section--openaccount .faq_openaccount-block .faq_openaccount-block__right img {
  width: 100%;
}

.cms-buyers-guide .col-main {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 1059px;
  width: 100%;
}
.cms-buyers-guide .col-main hr.top-line {
  margin-bottom: 20px;
  margin-top: 5px;
}
.cms-buyers-guide .page-title h1 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
  margin-top: 50px;
  text-transform: none;
}
.cms-buyers-guide .main-content p {
  font-color: #383b3c;
  font-style: normal;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 300;
}
.cms-buyers-guide .not-looking-for {
  border-top: 1px solid #cecdcd;
  margin-top: 40px;
  padding-top: 30px;
}
.cms-buyers-guide .not-looking-for h1 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: none;
}
.cms-buyers-guide .not-looking-for a.contact-btn {
  margin-bottom: 30px;
}

.cms-no-route .breadcrumbs_old {
  margin: 30px auto 30px auto;
}
.cms-no-route .breadcrumbs_old ul .home {
  margin-left: 0;
  background-position: 24px 9px;
  padding: 5px;
  padding-left: 0;
}
.cms-no-route .breadcrumbs_old ul .home a {
  font-style: normal;
  text-transform: none;
  padding-left: 0;
  margin-left: 0;
}
.cms-no-route .breadcrumbs_old ul .home a span {
  padding: 0 15px;
}
.cms-no-route .main-content .page-title h1 {
  border-bottom: 1px solid #DDDDDD;
  font-size: 36px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: none;
}
.cms-no-route .main-content h3 {
  font-size: 23px;
  padding-bottom: 15px;
  text-transform: none;
}
.cms-no-route .main-content p {
  font-style: normal;
  font-weight: bold;
}
.cms-no-route .main-content ul li {
  font-style: normal;
  line-height: 20px;
  list-style: none;
  margin-left: 0;
}
.cms-no-route .main-content ul li a {
  color: #ed1f24;
  font-weight: 600;
}
.cms-no-route .main-content ul li:before {
  content: '-';
  padding-right: 10px;
}
.cms-no-route .main-content .buttons {
  padding: 10px 0 55px 0;
}
.cms-no-route .main-content .buttons .home-btn {
  background-color: #ed1f24;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  display: inline;
  padding: 10px;
  width: 100%;
}
.cms-no-route .main-content .buttons .home-btn:hover, .cms-no-route .main-content .buttons .home-btn:active, .cms-no-route .main-content .buttons .home-btn:focus {
  box-shadow: none;
}
.cms-no-route .main-content .buttons .home-btn a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  padding: 20px 35px;
}
.cms-no-route .main-content .buttons .home-btn a:hover, .cms-no-route .main-content .buttons .home-btn a:active, .cms-no-route .main-content .buttons .home-btn a:focus {
  text-decoration: none;
}
@media screen and (max-width: 399px) {
  .cms-no-route .main-content .buttons .home-btn {
    display: inline-block;
    width: 40%;
  }
}
@media screen and (max-width: 360px) {
  .cms-no-route .main-content .buttons .home-btn {
    display: block;
    width: 100%;
    margin: 20px auto;
    text-align: center;
  }
}
.cms-no-route .main-content .buttons .my-account-btn {
  background-color: #ffec38;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  display: inline;
  margin-left: 18px;
  padding: 10px;
  width: 100%;
}
.cms-no-route .main-content .buttons .my-account-btn:hover, .cms-no-route .main-content .buttons .my-account-btn:active, .cms-no-route .main-content .buttons .my-account-btn:focus {
  box-shadow: none;
}
.cms-no-route .main-content .buttons .my-account-btn a {
  color: #000000;
  font-size: 17px;
  font-weight: 600;
  padding: 20px;
}
.cms-no-route .main-content .buttons .my-account-btn a:hover, .cms-no-route .main-content .buttons .my-account-btn a:active, .cms-no-route .main-content .buttons .my-account-btn a:focus {
  text-decoration: none;
}
@media screen and (max-width: 399px) {
  .cms-no-route .main-content .buttons .my-account-btn {
    display: inline-block;
    margin-left: 4%;
    width: 46%;
  }
}
@media screen and (max-width: 360px) {
  .cms-no-route .main-content .buttons .my-account-btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

/* ====== P2 DESIGNS PRIVACY POLICY ====== */
/* ======
P2 DESIGNS PRIVACY POLICY
    - General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
@media screen and (max-width: 479px) {
  .cms-privacy .main-container {
    margin-top: 60px;
  }
}
.cms-privacy .col-main .std {
  margin-top: 40px;
}
@media screen and (max-width: 989px) {
  .cms-privacy .col-main .std {
    margin-top: 0;
  }
}
.cms-privacy .col-main .std .block-section {
  border-bottom: 1px solid #CECECE;
  margin-bottom: 24px;
}
.cms-privacy .col-main .std .block-section h3 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  text-transform: none;
}
.cms-privacy .col-main .std .block-section p {
  color: #383b3c;
  font-style: normal;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 300;
}
.cms-privacy .col-main .std .block-section:last-child {
  border-bottom: none;
  margin-bottom: 50px;
}

/* ====== P2 DESIGNS TERMS ====== */
/* ======
P2 DESIGNS TERMS
    - General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
@media screen and (max-width: 479px) {
  .cms-terms-conditions .main-container {
    margin-top: 60px;
  }
}
.cms-terms-conditions .main-container p.before:before {
  color: #ed1f24;
  content: '>>';
  margin-right: 10px;
}
.cms-terms-conditions .main-container h3 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0;
  text-transform: none;
}
.cms-terms-conditions .main-container p {
  color: #383b3c !important;
  font-style: normal !important;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
}

.cms-terms-conditions_old .col-main {
  float: none;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 1129px) {
  .cms-terms-conditions_old .col-main {
    margin-top: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .cms-terms-conditions_old .col-main {
    margin-top: 24%;
  }
}
@media screen and (max-width: 768px) {
  .cms-terms-conditions_old .col-main {
    margin-top: 20%;
  }
}
@media screen and (max-width: 480px) {
  .cms-terms-conditions_old .col-main {
    margin-top: 22%;
  }
}
.cms-terms-conditions_old .main {
  margin-bottom: 70px;
}
.cms-terms-conditions_old .main p {
  font-style: normal;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
}
.cms-terms-conditions_old .main .page-title h1 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
  text-transform: none;
}
.cms-terms-conditions_old .main .std h3 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 20px;
  text-transform: none;
}
.cms-terms-conditions_old .main .std .header-image {
  margin-top: -26%;
  position: absolute;
}
@media screen and (max-width: 1129px) {
  .cms-terms-conditions_old .main .std .header-image {
    margin-top: -30%;
  }
}
@media screen and (max-width: 1024px) {
  .cms-terms-conditions_old .main .std .header-image {
    margin-top: -26%;
  }
}
@media screen and (max-width: 767px) {
  .cms-terms-conditions_old .main .std .header-image {
    margin-top: -31%;
  }
}
@media screen and (max-width: 667px) {
  .cms-terms-conditions_old .main .std .header-image {
    margin-top: -26%;
  }
}
.cms-terms-conditions_old .main .std .header-image img {
  max-width: none;
}
@media screen and (max-width: 1024px) {
  .cms-terms-conditions_old .main .std .header-image img {
    max-width: 100%;
  }
}

/* ====== CATEGORY PAGE ====== */
/* ======
CATEGORY
	- P2 Design Category
====== */
/*================================================================================
$ P2 DESIGN CATEGORY
================================================================================*/
.category-products:before, .category-products:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.category-products:before {
  background-color: white;
  opacity: 0.75;
  z-index: 2;
}
.category-products:after {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.category-products.loading {
  position: relative;
}
.category-products.loading:before, .category-products.loading:after {
  display: block;
}

.catalog-category-view .block-layered-nav, .catalogsearch-result-index .block-layered-nav {
  display: none;
}
@media screen and (max-width: 479px) {
  .catalog-category-view .main-container, .catalogsearch-result-index .main-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .catalog-category-view .main-container .main .breadcrumbs, .catalogsearch-result-index .main-container .main .breadcrumbs {
    padding-left: 30px;
  }
}
.catalog-category-view .category-description-top, .catalogsearch-result-index .category-description-top {
  margin-top: 40px;
  position: relative;
}
.catalog-category-view .category-description-top .page-title, .catalogsearch-result-index .category-description-top .page-title {
  width: 100%;
}
.catalog-category-view .category-description-top .page-title > h1, .catalogsearch-result-index .category-description-top .page-title > h1 {
  border-bottom: 2px dotted #000000;
  color: #373A3B !important;
  display: inline-block;
  font-size: 32px;
  padding-bottom: 12px;
  padding-left: 30px;
  text-transform: uppercase;
  width: 68%;
}
.catalog-category-view .category-description-top .page-title > h1:before, .catalogsearch-result-index .category-description-top .page-title > h1:before {
  left: 0;
}
@media screen and (max-width: 1024px) {
  .catalog-category-view .category-description-top .page-title > h1, .catalogsearch-result-index .category-description-top .page-title > h1 {
    width: 63%;
  }
}
@media screen and (max-width: 989px) {
  .catalog-category-view .category-description-top .page-title > h1, .catalogsearch-result-index .category-description-top .page-title > h1 {
    width: 100%;
  }
}
.catalog-category-view .col-left.sidebar, .catalogsearch-result-index .col-left.sidebar {
  display: none;
}
.catalog-category-view .col-main, .catalogsearch-result-index .col-main {
  padding-left: 0;
  width: 100%;
}
.catalog-category-view .col-main .page-title, .catalogsearch-result-index .col-main .page-title {
  width: 100%;
}
.catalog-category-view .col-main .page-title > h1, .catalogsearch-result-index .col-main .page-title > h1 {
  border-bottom: 2px dotted #000000;
  color: #373A3B !important;
  display: inline-block;
  font-size: 32px;
  padding-bottom: 12px;
  padding-left: 30px;
  text-transform: uppercase;
  width: 68%;
}
.catalog-category-view .col-main .page-title > h1:before, .catalogsearch-result-index .col-main .page-title > h1:before {
  left: 0;
}
@media screen and (max-width: 1024px) {
  .catalog-category-view .col-main .page-title > h1, .catalogsearch-result-index .col-main .page-title > h1 {
    width: 63%;
  }
}
@media screen and (max-width: 989px) {
  .catalog-category-view .col-main .page-title > h1, .catalogsearch-result-index .col-main .page-title > h1 {
    width: 100%;
  }
}
.catalog-category-view .col-main .category-products, .catalogsearch-result-index .col-main .category-products {
  position: relative;
}
.catalog-category-view .col-main .toolbar-top, .catalogsearch-result-index .col-main .toolbar-top {
  background-color: transparent;
  border: 0;
}
.catalog-category-view .col-main .toolbar-top .sorter, .catalogsearch-result-index .col-main .toolbar-top .sorter {
  position: absolute;
  right: 0;
  top: -85px;
  width: auto;
}
@media screen and (max-width: 989px) {
  .catalog-category-view .col-main .toolbar-top .sorter, .catalogsearch-result-index .col-main .toolbar-top .sorter {
    top: -75px;
  }
}
@media screen and (max-width: 329px) {
  .catalog-category-view .col-main .toolbar-top .sorter, .catalogsearch-result-index .col-main .toolbar-top .sorter {
    width: 100% !important;
  }
}
.catalog-category-view .col-main .toolbar-top .sorter .view-mode, .catalogsearch-result-index .col-main .toolbar-top .sorter .view-mode {
  display: none;
}
.catalog-category-view .col-main .toolbar-top .sorter .sort-by, .catalogsearch-result-index .col-main .toolbar-top .sorter .sort-by {
  border: 2px solid #F7F7F7;
  border-radius: 2px;
  float: none;
  height: auto;
  margin-right: 0;
  padding: 4px 10px;
}
.catalog-category-view .col-main .toolbar-top .sorter .sort-by label, .catalogsearch-result-index .col-main .toolbar-top .sorter .sort-by label {
  font-weight: 600;
}
.catalog-category-view .col-main .toolbar-top .sorter .sort-by label:after, .catalogsearch-result-index .col-main .toolbar-top .sorter .sort-by label:after {
  content: none;
}
.catalog-category-view .col-main .toolbar-top .sorter .sort-by select, .catalogsearch-result-index .col-main .toolbar-top .sorter .sort-by select {
  -webkit--webkit-appearance: none;
  -moz--webkit-appearance: none;
  -ms--webkit-appearance: none;
  -o--webkit-appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
}
.catalog-category-view .col-main .toolbar-top .pager, .catalogsearch-result-index .col-main .toolbar-top .pager {
  display: none;
}
@media screen and (max-width: 479px) {
  .catalog-category-view .col-main .toolbar-top, .catalogsearch-result-index .col-main .toolbar-top {
    float: right;
    margin-top: 0;
    padding: 0;
    width: 51%;
  }
  .catalog-category-view .col-main .toolbar-top .sorter, .catalogsearch-result-index .col-main .toolbar-top .sorter {
    float: right;
    position: static;
    width: 94%;
  }
  .catalog-category-view .col-main .toolbar-top .sorter .sort-by, .catalogsearch-result-index .col-main .toolbar-top .sorter .sort-by {
    padding: 5px 4px;
  }
}
@media screen and (max-width: 329px) {
  .catalog-category-view .col-main .toolbar-top, .catalogsearch-result-index .col-main .toolbar-top {
    float: none;
    width: 100%;
  }
}
.catalog-category-view .col-main .toolbar-bottom, .catalogsearch-result-index .col-main .toolbar-bottom {
  margin-bottom: 50px;
  position: relative;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar {
  background: transparent;
  border: 0;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .sorter, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .sorter {
  display: none;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .count-container, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .count-container {
  display: inline-block;
  padding-top: 44px;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .count-container .amount--has-pages, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .count-container .amount--has-pages {
  display: none;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .count-container .limiter label, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .count-container .limiter label {
  padding-right: 0;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .count-container .limiter label:after, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .count-container .limiter label:after {
  content: none;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .count-container .limiter select, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .count-container .limiter select {
  -webkit-appearance: inherit;
  padding: 4px;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .count-container .limiter .per-page, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .count-container .limiter .per-page {
  display: inline;
  font-size: 14px;
  text-transform: none;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .pages, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .pages {
  left: 50%;
  padding-top: 30px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .pages ol li, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .pages ol li {
  margin-right: 6px;
  margin-top: 0;
  width: 32px;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .pages ol li a, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .pages ol li a {
  background: #F7F7F7;
  color: #c6c4c2;
  width: 32px;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .pages ol li a.i-next:before, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .pages ol li a.i-next:before {
  border-left: 4px solid #ed1f24;
}
.catalog-category-view .col-main .toolbar-bottom .toolbar .pager .pages ol li.current, .catalogsearch-result-index .col-main .toolbar-bottom .toolbar .pager .pages ol li.current {
  background-color: #ed1f24;
  color: #FFFFFF;
}
.catalog-category-view .col-main .add_all_to__cart, .catalogsearch-result-index .col-main .add_all_to__cart {
  border-radius: 2px;
  display: inline-block;
  margin-left: 10px;
  position: absolute;
  right: 186px;
  top: 96px;
}
@media screen and (max-width: 989px) {
  .catalog-category-view .col-main .add_all_to__cart, .catalogsearch-result-index .col-main .add_all_to__cart {
    top: 105px;
  }
}
@media screen and (max-width: 479px) {
  .catalog-category-view .col-main .add_all_to__cart, .catalogsearch-result-index .col-main .add_all_to__cart {
    margin-left: 0;
    position: static;
  }
}
@media screen and (max-width: 329px) {
  .catalog-category-view .col-main .add_all_to__cart, .catalogsearch-result-index .col-main .add_all_to__cart {
    width: 100%;
  }
}
.catalog-category-view .col-main .add_all_to__cart > a, .catalogsearch-result-index .col-main .add_all_to__cart > a {
  border-radius: 2px;
  font-size: 14px;
  padding: 11px 20px;
}
@media screen and (max-width: 329px) {
  .catalog-category-view .col-main .add_all_to__cart > a, .catalogsearch-result-index .col-main .add_all_to__cart > a {
    max-width: none;
  }
}
.catalog-category-view .col-main ul.products-grid li.item, .catalogsearch-result-index .col-main ul.products-grid li.item {
  border: 2px dotted #F7F7F7;
  padding-bottom: 7px;
  position: relative;
}
.catalog-category-view .col-main ul.products-grid li.item a.product-image > img, .catalogsearch-result-index .col-main ul.products-grid li.item a.product-image > img {
  margin: 0 auto;
  max-width: 225px;
}
.catalog-category-view .col-main ul.products-grid li.item .product-info, .catalogsearch-result-index .col-main ul.products-grid li.item .product-info {
  min-height: 0 !important;
  padding-bottom: 0 !important;
}
.catalog-category-view .col-main ul.products-grid li.item .product-info .product-name, .catalogsearch-result-index .col-main ul.products-grid li.item .product-info .product-name {
  margin: 0 auto;
  min-height: 85px;
  padding: 0 5px 5px;
  text-align: center;
  text-transform: none;
  width: 100%;
}
.catalog-category-view .col-main ul.products-grid li.item .product-info .product-name a, .catalogsearch-result-index .col-main ul.products-grid li.item .product-info .product-name a {
  color: #373A3B;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .catalog-category-view .col-main ul.products-grid li.item .product-info .product-name, .catalogsearch-result-index .col-main ul.products-grid li.item .product-info .product-name {
    min-height: 80px;
  }
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box {
  float: left;
  margin: 0 auto;
  min-height: 104px;
  width: 100%;
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price,
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price,
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price {
  float: left;
  width: 50%;
}
@media screen and (max-width: 989px) {
  .catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price,
  .catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price,
  .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price {
    width: 100%;
  }
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price h4,
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price h4, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price h4,
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price h4 {
  background: #CCCCCC;
  color: #000000;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  padding: 5px 8px;
  text-align: center;
  text-transform: none;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price h4,
  .catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price h4, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price h4,
  .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price h4 {
    padding: 8px 6px;
  }
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price h4 span,
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price h4 span, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price h4 span,
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price h4 span {
  color: #000000;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  margin-left: 4px;
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price h4 span > p,
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price h4 span > p, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price h4 span > p,
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price h4 span > p {
  font-size: 13px;
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices,
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices,
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices {
  background: transparent;
  border: 1px solid #F7F7F7;
  margin-bottom: 5px;
  padding: 0;
  width: 100%;
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li,
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li,
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li {
  border-bottom: 1px solid #F7F7F7;
  margin-bottom: 0;
  margin-top: 0;
  padding: 5px 8px;
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li:nth-child(odd),
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li:nth-child(odd), .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li:nth-child(odd),
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li:nth-child(odd) {
  background-color: #F7F7F7;
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li span,
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li span, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li span,
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li span {
  font-weight: 400;
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li:first-child,
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li:first-child, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li:first-child,
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li:first-child {
  font-weight: 700;
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li:first-child span,
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li:first-child span, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li:first-child span,
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li:first-child span {
  font-weight: 700;
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li:last-child,
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li:last-child, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .collection-price .tier-prices li:last-child,
.catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .delivery-price .tier-prices li:last-child {
  border-bottom: none;
}
.catalog-category-view .col-main ul.products-grid li.item .price-info-box .guest-price-block, .catalogsearch-result-index .col-main ul.products-grid li.item .price-info-box .guest-price-block {
  text-align: center;
  width: 100% !important;
}
.catalog-category-view .col-main ul.products-grid li.item .variants, .catalogsearch-result-index .col-main ul.products-grid li.item .variants {
  min-height: 34px;
}
.catalog-category-view .col-main ul.products-grid li.item .variants h4, .catalogsearch-result-index .col-main ul.products-grid li.item .variants h4 {
  background: #CCCCCC;
  color: #000000;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  padding: 5px 8px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.catalog-category-view .col-main ul.products-grid li.item .variants img, .catalogsearch-result-index .col-main ul.products-grid li.item .variants img {
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  width: auto;
}
.catalog-category-view .col-main ul.products-grid li.item .unit-of-sale-container, .catalogsearch-result-index .col-main ul.products-grid li.item .unit-of-sale-container {
  background-color: #F7F7F7;
  float: left;
  margin-bottom: 7px;
  padding: 0 10px;
  width: 100%;
}
.catalog-category-view .col-main ul.products-grid li.item .unit-of-sale-container label, .catalogsearch-result-index .col-main ul.products-grid li.item .unit-of-sale-container label {
  color: #373A3B;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 13px;
  font-weight: 400;
  margin-top: 10px;
  max-width: 150px;
}
.catalog-category-view .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select, .catalogsearch-result-index .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select {
  -webkit--webkit-appearance: none;
  -moz--webkit-appearance: none;
  -ms--webkit-appearance: none;
  -o--webkit-appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/related-dropdown.png");
  background-position: 96% 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  border: none;
  float: right;
  font-size: 13px;
  height: 35px;
  max-width: 150px;
  width: 100%;
}
@media screen and (max-width: 989px) {
  .catalog-category-view .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select, .catalogsearch-result-index .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select {
    max-width: 96px;
  }
}
@media screen and (max-width: 479px) {
  .catalog-category-view .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select, .catalogsearch-result-index .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select {
    max-width: 150px;
  }
}
.catalog-category-view .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select:active, .catalog-category-view .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select:focus, .catalog-category-view .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select:hover, .catalogsearch-result-index .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select:active, .catalogsearch-result-index .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select:focus, .catalogsearch-result-index .col-main ul.products-grid li.item .unit-of-sale-container .unit-of-sale-select:hover {
  outline: none;
}
.catalog-category-view .col-main ul.products-grid li.item .actions, .catalogsearch-result-index .col-main ul.products-grid li.item .actions {
  float: left;
  min-height: 0;
  padding: 0 5px;
  position: relative;
  width: 100%;
}
.catalog-category-view .col-main ul.products-grid li.item .actions > a, .catalogsearch-result-index .col-main ul.products-grid li.item .actions > a {
  border-radius: 2px;
  float: left;
  font-size: 15px;
  font-weight: 400;
  max-width: 152px;
  padding: 13px 20px;
}
@media screen and (max-width: 989px) {
  .catalog-category-view .col-main ul.products-grid li.item .actions > a, .catalogsearch-result-index .col-main ul.products-grid li.item .actions > a {
    margin-bottom: 10px;
    max-width: none;
  }
}
.catalog-category-view .col-main ul.products-grid li.item .actions > a.variants, .catalog-category-view .col-main ul.products-grid li.item .actions > a.upload-marketing-btn, .catalogsearch-result-index .col-main ul.products-grid li.item .actions > a.variants, .catalogsearch-result-index .col-main ul.products-grid li.item .actions > a.upload-marketing-btn {
  max-width: none !important;
  width: 100%;
}
.catalog-category-view .col-main ul.products-grid li.item .add-to-cart, .catalogsearch-result-index .col-main ul.products-grid li.item .add-to-cart {
  float: right;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .catalog-category-view .col-main ul.products-grid li.item .add-to-cart, .catalogsearch-result-index .col-main ul.products-grid li.item .add-to-cart {
    margin-right: 2%;
    width: 44%;
  }
}
@media screen and (max-width: 989px) {
  .catalog-category-view .col-main ul.products-grid li.item .add-to-cart, .catalogsearch-result-index .col-main ul.products-grid li.item .add-to-cart {
    margin-bottom: 10px;
    width: 96%;
  }
}
.catalog-category-view .col-main ul.products-grid li.item .add-to-cart .qty-wrapper, .catalogsearch-result-index .col-main ul.products-grid li.item .add-to-cart .qty-wrapper {
  width: 100%;
}
.catalog-category-view .col-main ul.products-grid li.item .add-to-cart .qty-wrapper .quantity-icons, .catalogsearch-result-index .col-main ul.products-grid li.item .add-to-cart .qty-wrapper .quantity-icons {
  background: #CCCCCC;
  border-radius: 2px;
  max-width: 162px;
  padding: 2px 0;
}
@media screen and (max-width: 989px) {
  .catalog-category-view .col-main ul.products-grid li.item .add-to-cart .qty-wrapper .quantity-icons, .catalogsearch-result-index .col-main ul.products-grid li.item .add-to-cart .qty-wrapper .quantity-icons {
    max-width: none;
  }
}
.catalog-category-view .col-main ul.products-grid li.item .add-to-cart .qty-wrapper .quantity-icons a.remove-qty img.remove, .catalogsearch-result-index .col-main ul.products-grid li.item .add-to-cart .qty-wrapper .quantity-icons a.remove-qty img.remove {
  display: inline-block;
  margin-right: 9px;
  vertical-align: middle;
  width: 13%;
}
.catalog-category-view .col-main ul.products-grid li.item .add-to-cart .qty-wrapper .quantity-icons .fake-qty, .catalogsearch-result-index .col-main ul.products-grid li.item .add-to-cart .qty-wrapper .quantity-icons .fake-qty {
  display: inline-block;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  width: 4em;
}
.catalog-category-view .col-main ul.products-grid li.item .add-to-cart .qty-wrapper .quantity-icons a.add-qty img.add, .catalogsearch-result-index .col-main ul.products-grid li.item .add-to-cart .qty-wrapper .quantity-icons a.add-qty img.add {
  display: inline-block;
  margin-left: 16px;
  vertical-align: middle;
  width: 8%;
}
.catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper {
  background-color: #F7F7F7;
  border-top: 2px dotted #F7F7F7;
  float: left;
  padding: 6px 10px;
  width: 100%;
}
.catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .product_sku,
.catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .product_qty, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .product_sku,
.catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .product_qty {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}
@media screen and (max-width: 669px) {
  .catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .product_sku, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .product_sku {
    padding-bottom: 0;
    text-align: center;
  }
}
.catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .product_sku p, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .product_sku p {
  color: #373A3B;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}
.catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .product_sku span, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .product_sku span {
  color: #373A3B;
  font-size: 14px;
  font-weight: 600;
}
.catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .product_qty, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .product_qty {
  cursor: pointer;
  margin-left: 25px;
  position: relative;
}
@media screen and (max-width: 669px) {
  .catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .product_qty, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .product_qty {
    margin-left: 50px;
    padding-bottom: 0;
    text-align: center;
  }
}
.catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .product_qty:hover .stock-tooltip-message, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .product_qty:hover .stock-tooltip-message {
  display: block;
}
.catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .product_qty p, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .product_qty p {
  color: #38B72A;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .stock-tooltip-message, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .stock-tooltip-message {
  background-color: #FFFFFF;
  border: 2px solid #ed1f24;
  display: none;
  left: 50%;
  padding: 5px;
  position: absolute;
  top: 105%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 150px;
}
.catalog-category-view .col-main ul.products-grid li.item .product_stock-wrapper .stock-tooltip-message p, .catalogsearch-result-index .col-main ul.products-grid li.item .product_stock-wrapper .stock-tooltip-message p {
  color: #383b3c;
  font-size: 10px;
  text-transform: none;
}
.catalog-category-view .col-main ul.products-grid li.item.GroupedProduct .variants .grouped-info, .catalogsearch-result-index .col-main ul.products-grid li.item.GroupedProduct .variants .grouped-info {
  background-color: #F7F7F7;
  margin-top: 0;
  padding: 10px 20px;
}
.catalog-category-view .col-main ul.products-grid li.item.GroupedProduct .variants > img, .catalogsearch-result-index .col-main ul.products-grid li.item.GroupedProduct .variants > img {
  margin-top: 0;
  max-width: 25px;
}
.catalog-category-view .col-main ul.products-grid li.item.GroupedProduct .price-info-box, .catalogsearch-result-index .col-main ul.products-grid li.item.GroupedProduct .price-info-box {
  min-height: 45px;
}
.catalog-category-view .col-main ul.products-grid.loggedInCategory .nonGroupedProduct .price-info-box, .catalogsearch-result-index .col-main ul.products-grid.loggedInCategory .nonGroupedProduct .price-info-box {
  min-height: 140px;
}
.catalog-category-view .col-main ul.products-grid.loggedInCategory .GroupedProduct .product-info .price-info-box, .catalogsearch-result-index .col-main ul.products-grid.loggedInCategory .GroupedProduct .product-info .price-info-box {
  min-height: 5px;
}
.catalog-category-view .col-main ul.products-grid.loggedInCategory .GroupedProduct .product-info .grouped-info, .catalogsearch-result-index .col-main ul.products-grid.loggedInCategory .GroupedProduct .product-info .grouped-info {
  background-color: #F7F7F7;
  margin-top: 0;
  padding: 25px 20px !important;
}
.catalog-category-view .col-main ul.products-grid.loggedInCategory .GroupedProduct .product-info .variants > img, .catalogsearch-result-index .col-main ul.products-grid.loggedInCategory .GroupedProduct .product-info .variants > img {
  margin-top: 10px;
  max-width: none;
}

/*================================================================================
$ GENERAL
================================================================================*/
.product-image-chip-holder {
  position: absolute;
  right: 0;
  top: 0;
}
.grouped-items-table-wrapper .product-image-chip-holder {
  position: static;
}

.product-image-chip {
  background-color: #CA2622;
  color: #FFFFFF;
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 0;
  padding: 5px 10px;
  right: 0;
  text-transform: uppercase;
  width: auto;
}
.grouped-items-table-wrapper .product-image-chip {
  display: inline-block;
}
.product-image-chip:first-child {
  margin-top: 0;
}

@media screen and (max-width: 479px) {
  .catalogsearch-result-index .toolbar .sorter .view-mode {
    display: none;
  }
  .catalogsearch-result-index .toolbar .pager {
    display: none;
  }
  .catalogsearch-result-index .product-info_old {
    padding-bottom: 64px !important;
    min-height: 200px !important;
  }
}

.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav .block-content ol li .btn-remove::after {
  color: #ED1F24;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav .block-content .actions > a {
  display: none;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list dd.odd {
  display: block !important;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav.logged-out dt.last {
  display: none;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav.logged-out dd.last {
  display: none;
}

.catalog-category-view,
.catalogsearch-result-index {
  /*================================================================================
  $ WISHLIST
  ================================================================================*/
  /*================================================================================
  $ CATEGORY FILTER
  ================================================================================*/
  /*================================================================================
  $ CATEGORY PRODUCTS 
  ================================================================================*/
}
.catalog-category-view .col-main,
.catalogsearch-result-index .col-main {
  margin-top: 40px;
}
.catalog-category-view .col-main .banner-wrapper,
.catalogsearch-result-index .col-main .banner-wrapper {
  display: none !important;
}
.catalog-category-view .breadcrumbs ul,
.catalogsearch-result-index .breadcrumbs ul {
  z-index: 0;
}
.catalog-category-view .category-description-top_old h1,
.catalogsearch-result-index .category-description-top_old h1 {
  margin: 0;
  padding: 0;
  text-transform: none;
}
.catalog-category-view .category-description.std,
.catalogsearch-result-index .category-description.std {
  display: none;
}
.catalog-category-view .my-wishlist,
.catalogsearch-result-index .my-wishlist {
  line-height: 2;
}
.catalog-category-view .my-wishlist .title,
.catalogsearch-result-index .my-wishlist .title {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 900;
}
.catalog-category-view .my-wishlist .wishlist-text,
.catalogsearch-result-index .my-wishlist .wishlist-text {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.catalog-category-view .col-left.sidebar,
.catalogsearch-result-index .col-left.sidebar {
  background-color: transparent !important;
  margin-top: 20px;
}
.catalog-category-view .col-left.sidebar .block-wishlist .block-title span,
.catalogsearch-result-index .col-left.sidebar .block-wishlist .block-title span {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-transform: none;
}
.catalog-category-view .col-left.sidebar .block-wishlist a.link-cart,
.catalogsearch-result-index .col-left.sidebar .block-wishlist a.link-cart {
  color: #383b3c;
}
.catalog-category-view .col-left.sidebar .block-wishlist .actions_old,
.catalogsearch-result-index .col-left.sidebar .block-wishlist .actions_old {
  float: right;
}
.catalog-category-view .col-left.sidebar .block-wishlist .actions_old a,
.catalogsearch-result-index .col-left.sidebar .block-wishlist .actions_old a {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px !important;
  font-weight: 900 !important;
}
.catalog-category-view .col-left.sidebar .download-pdf-holder,
.catalogsearch-result-index .col-left.sidebar .download-pdf-holder {
  margin-top: 75px;
}
.catalog-category-view .col-left.sidebar.col-left-first,
.catalogsearch-result-index .col-left.sidebar.col-left-first {
  background-color: white !important;
  margin-top: 40px;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-title,
.catalogsearch-result-index .col-left.sidebar.col-left-first .block-title {
  margin-bottom: 30px;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-title span,
.catalogsearch-result-index .col-left.sidebar.col-left-first .block-title span {
  font-size: 14px;
  font-weight: bolder;
  text-transform: none;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list dt,
.catalogsearch-result-index .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list dt {
  background-color: transparent;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/plus.png");
  background-position: center right;
  background-repeat: no-repeat;
  border-left: 0;
  border-right: 0;
  font-color: #383b3c;
  font-size: 13px;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list dt.odd,
.catalogsearch-result-index .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list dt.odd {
  background-image: none !important;
  border-bottom: 0;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list dd,
.catalogsearch-result-index .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list dd {
  border: 0;
  display: none;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list dd li a,
.catalogsearch-result-index .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list dd li a {
  color: #383b3c;
  font-size: 13px;
}
.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list .active-title,
.catalogsearch-result-index .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list .active-title {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/minus.png");
}
.catalog-category-view .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list .active,
.catalogsearch-result-index .col-left.sidebar.col-left-first .block-layered-nav #narrow-by-list .active {
  display: block;
}
.catalog-category-view .col-left.sidebar.col-left-first .download-pdf-holder,
.catalogsearch-result-index .col-left.sidebar.col-left-first .download-pdf-holder {
  margin-top: 20px;
}
.catalog-category-view .col-left.sidebar.col-left-first .download-pdf-holder .download-pdf-btn,
.catalogsearch-result-index .col-left.sidebar.col-left-first .download-pdf-holder .download-pdf-btn {
  color: #383b3c;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
}
.catalog-category-view ul.products-grid, .catalog-category-view .products-list,
.catalogsearch-result-index ul.products-grid,
.catalogsearch-result-index .products-list {
  z-index: 0;
}
.catalog-category-view ul.products-grid li.item, .catalog-category-view .products-list li.item,
.catalogsearch-result-index ul.products-grid li.item,
.catalogsearch-result-index .products-list li.item {
  margin-top: 0;
}
@media screen and (max-width: 479px) {
  .catalog-category-view ul.products-grid li.item, .catalog-category-view .products-list li.item,
  .catalogsearch-result-index ul.products-grid li.item,
  .catalogsearch-result-index .products-list li.item {
    width: 100%;
  }
}
.catalog-category-view ul.products-grid li.item a.product-image, .catalog-category-view .products-list li.item a.product-image,
.catalogsearch-result-index ul.products-grid li.item a.product-image,
.catalogsearch-result-index .products-list li.item a.product-image {
  border: none;
  position: relative;
}
.catalog-category-view ul.products-grid li.item a img, .catalog-category-view .products-list li.item a img,
.catalogsearch-result-index ul.products-grid li.item a img,
.catalogsearch-result-index .products-list li.item a img {
  width: 100%;
}
@media screen and (max-width: 479px) {
  .catalog-category-view ul.products-grid li.item a.product-image.list-view, .catalog-category-view .products-list li.item a.product-image.list-view,
  .catalogsearch-result-index ul.products-grid li.item a.product-image.list-view,
  .catalogsearch-result-index .products-list li.item a.product-image.list-view {
    margin-bottom: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .catalog-category-view ul.products-grid li.item .product-shop, .catalog-category-view .products-list li.item .product-shop,
  .catalogsearch-result-index ul.products-grid li.item .product-shop,
  .catalogsearch-result-index .products-list li.item .product-shop {
    padding: 0;
    width: 100%;
  }
}
@media screen and (min-width: 480px) {
  .catalog-category-view ol.products-list li.item .product-image,
  .catalogsearch-result-index ol.products-list li.item .product-image {
    border: none;
    width: 25%;
  }
  .catalog-category-view ol.products-list li.item .product-shop,
  .catalogsearch-result-index ol.products-list li.item .product-shop {
    padding-left: 30px;
    width: 75%;
  }
  .catalog-category-view ol.products-list li.item .product-info_old,
  .catalogsearch-result-index ol.products-list li.item .product-info_old {
    min-height: 0 !important;
    padding-bottom: 0;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .product-name,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .product-name {
    margin-bottom: 25px;
    min-height: 0;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .product-name .product_sku,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .product-name .product_sku {
    margin-top: 6px;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .product-name .product_sku p,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .product-name .product_sku p {
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .product-name .product_sku p span,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .product-name .product_sku p span {
    color: #4b4a49;
    font-size: 13px;
    font-weight: 400;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .product-price-box,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .product-price-box {
    float: left;
    padding-right: 10px;
    width: 60%;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .product-price-box .collection-price,
  .catalog-category-view ol.products-list li.item .product-info_old .product-price-box .delivery-price,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .product-price-box .collection-price,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .product-price-box .delivery-price {
    float: left;
    min-height: 0;
    width: 100%;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .product-price-box .collection-price > h4,
  .catalog-category-view ol.products-list li.item .product-info_old .product-price-box .delivery-price > h4,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .product-price-box .collection-price > h4,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .product-price-box .delivery-price > h4 {
    margin-bottom: 0;
    min-width: 120px;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .availabilty-wrapper,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .availabilty-wrapper {
    float: right;
    margin-bottom: 0;
    width: 40%;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .availabilty-wrapper > p,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .availabilty-wrapper > p {
    float: left;
    margin: 20px 0 0;
    width: 100%;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .actions.list-view,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .actions.list-view {
    float: left;
    margin-top: 10px;
    width: 100%;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .actions.list-view .icon-wrapper,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .actions.list-view .icon-wrapper {
    float: left;
    width: 60%;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .actions.list-view .icon-wrapper .list-view,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .actions.list-view .icon-wrapper .list-view {
    float: left;
    margin-left: 10px;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .actions.list-view .icon-wrapper .list-view:first-child,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .actions.list-view .icon-wrapper .list-view:first-child {
    margin-left: 0;
  }
  .catalog-category-view ol.products-list li.item .product-info_old .actions.list-view .view-btn,
  .catalogsearch-result-index ol.products-list li.item .product-info_old .actions.list-view .view-btn {
    float: left;
    padding: 8px 5px;
    width: 40%;
  }
}

/* ====== PRODUCT PAGE ====== */
/* ======
PRODUCT PAGE
	- P2 General
	- P2 Related
	- P2 Grouped
	- Product Image
	- Product Shop
	- Product Grouped Table
	- Product Measurement Calculator
	- Product Other
====== */
/*================================================================================
$ P2 DESIGN - GENERAL
================================================================================*/
.stock-tooltip-message {
  background-color: #FFFFFF;
  border: 2px solid #ed1f24;
  display: none;
  left: 50%;
  padding: 5px;
  position: absolute;
  top: 105%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 150px;
}
.stock-tooltip-message p {
  color: #383b3c !important;
  font-size: 10px !important;
  text-transform: none !important;
}

.catalog-product-view {
  /*================================================================================
  $ P2 DESIGN - RELATED
  ================================================================================*/
}
@media screen and (max-width: 989px) {
  .catalog-product-view .product-img-box .product-name {
    display: none;
  }
}
.catalog-product-view .product-img-box .product-image.product-image-zoom {
  background: #F7F7F7;
  padding: 70px 0;
}
@media screen and (max-width: 989px) {
  .catalog-product-view .product-img-box .product-image.product-image-zoom .product-image-gallery img {
    max-width: 600px;
  }
}
@media screen and (max-width: 669px) {
  .catalog-product-view .product-img-box .product-image.product-image-zoom .product-image-gallery img {
    max-width: 300px;
  }
}
.catalog-product-view .product-shop {
  padding-left: 55px;
}
@media screen and (max-width: 989px) {
  .catalog-product-view .product-shop {
    padding-left: 0;
  }
}
.catalog-product-view .product-shop .product-name {
  border-bottom: 2px dotted #000000;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 989px) {
  .catalog-product-view .product-shop .product-name {
    border-bottom: 2px dotted #000000;
    margin: 25px 0px !important;
    padding-bottom: 8px;
    padding-left: 14px;
  }
  .catalog-product-view .product-shop .product-name span {
    font-size: 26px !important;
  }
  .catalog-product-view .product-shop .product-name span:before {
    left: -15px;
  }
}
.catalog-product-view .product-shop .product-name > span {
  color: #373A3B !important;
  font-size: 32px;
}
.catalog-product-view .product-shop .product_sku {
  display: inline-block;
}
@media screen and (max-width: 669px) {
  .catalog-product-view .product-shop .product_sku {
    padding-bottom: 10px;
    text-align: center;
    width: 100%;
  }
}
.catalog-product-view .product-shop .product_sku p {
  color: #373A3B;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.catalog-product-view .product-shop .product_sku span {
  color: #373A3B;
  font-size: 14px;
  font-weight: 600;
}
.catalog-product-view .product-shop .product_qty {
  cursor: pointer;
  display: inline-block;
  margin-left: 20px;
  position: relative;
}
@media screen and (max-width: 669px) {
  .catalog-product-view .product-shop .product_qty {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
}
.catalog-product-view .product-shop .product_qty:hover .stock-tooltip-message {
  display: block;
}
.catalog-product-view .product-shop .product_qty p {
  color: #38B72A;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.catalog-product-view .product-shop .price-info-box {
  float: left;
  margin-top: 20px;
  width: 100%;
}
.catalog-product-view .product-shop .price-info-box .collection-price {
  margin-right: 1%;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices {
  background: transparent;
  border: 1px solid #F7F7F7;
  padding: 0;
  width: 100%;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices li {
  border-bottom: 1px solid #F7F7F7;
  width: 100%;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices li:last-child {
  border-bottom: none;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices li span {
  display: inline-block;
  padding-top: 6px;
  padding-bottom: 6px;
  width: 49%;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices li .quantity {
  border-right: 1px solid #F7F7F7;
}
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices {
  background: transparent;
  border: 1px solid #F7F7F7;
  padding: 0;
  width: 100%;
}
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices li {
  border-bottom: 1px solid #F7F7F7;
  width: 100%;
}
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices li:last-child {
  border-bottom: none;
}
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices li span {
  display: inline-block;
  padding-top: 6px;
  padding-bottom: 6px;
  width: 49%;
}
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices li .quantity {
  border-right: 1px solid #F7F7F7;
}
.catalog-product-view .product-shop .price-info-box .collection-price,
.catalog-product-view .product-shop .price-info-box .delivery-price {
  float: left;
  width: 49%;
}
@media screen and (max-width: 989px) {
  .catalog-product-view .product-shop .price-info-box .collection-price,
  .catalog-product-view .product-shop .price-info-box .delivery-price {
    width: 100%;
  }
}
.catalog-product-view .product-shop .price-info-box .collection-price h4,
.catalog-product-view .product-shop .price-info-box .delivery-price h4 {
  background: grey;
  color: #FFFFFF;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  padding: 10px;
  text-align: center;
  text-transform: none;
  width: 100%;
}
.catalog-product-view .product-shop .price-info-box .collection-price h4 span,
.catalog-product-view .product-shop .price-info-box .delivery-price h4 span {
  color: #FFFFFF;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  margin-left: 4px;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices,
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices {
  background: transparent;
  border: 1px solid #F7F7F7;
  padding: 0;
  width: 100%;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices li,
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices li {
  border-bottom: 1px solid #F7F7F7;
  width: 100%;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices li:last-child,
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices li:last-child {
  border-bottom: none;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices li span,
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices li span {
  display: inline-block;
  width: 49%;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices li span.qunatity_price,
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices li span.qunatity_price {
  font-weight: 600;
  padding-left: 6px;
  text-align: center;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices li span.qunatity_price .price,
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices li span.qunatity_price .price {
  text-align: left;
}
.catalog-product-view .product-shop .price-info-box .collection-price .tier-prices li span.quantity,
.catalog-product-view .product-shop .price-info-box .delivery-price .tier-prices li span.quantity {
  padding-left: 6px;
  text-align: center;
}
.catalog-product-view .product-shop .price-info-box .guest-price-block {
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  width: 100% !important;
}
.catalog-product-view .bulky-item-notice {
  clear: right;
  cursor: pointer;
  float: right;
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 55px;
  text-align: center;
  width: 50%;
}
@media screen and (max-width: 770px) {
  .catalog-product-view .bulky-item-notice {
    margin-bottom: 10px;
    padding-left: 0;
    width: 100%;
  }
}
.catalog-product-view .bulky-item-notice.hover-active .tooltip-info {
  display: block;
}
.catalog-product-view .bulky-item-notice .bulky-item-notice__inner {
  float: left;
  max-width: 90px;
  position: relative;
  width: 100%;
}
.catalog-product-view .bulky-item-notice a {
  display: block;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .catalog-product-view .bulky-item-notice a {
    margin: 0 auto;
    max-width: 90px;
  }
}
.catalog-product-view .bulky-item-notice a > img {
  width: 100%;
}
.catalog-product-view .bulky-item-notice p {
  font-size: 12px;
}
.catalog-product-view .bulky-item-notice .tooltip-info {
  background-color: #FFFFFF;
  border: 2px dotted #ed1f24;
  display: none;
  font-style: italic;
  font-weight: bold;
  left: 100%;
  padding: 5px;
  position: absolute;
  text-align: left;
  top: 0;
  width: 200px;
}
.catalog-product-view .add-to-cart-wrapper {
  background: #F7F7F7;
  margin-bottom: 25px;
  margin-left: 55px;
  padding: 40px 100px 22px 42px;
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .catalog-product-view .add-to-cart-wrapper {
    margin-left: 28px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 989px) {
  .catalog-product-view .add-to-cart-wrapper {
    margin-left: 0;
    margin-right: initial;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .catalog-product-view .add-to-cart-wrapper {
    padding: 40px 20px 22px 20px;
  }
}
.catalog-product-view .add-to-cart-wrapper .unit-of-sale-container {
  background-color: #FFFFFF;
  border-radius: 5px;
  float: left;
  margin-bottom: 14px;
  padding: 0 10px;
  width: 100%;
}
.catalog-product-view .add-to-cart-wrapper .unit-of-sale-container label {
  color: #373A3B;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 15px;
  font-weight: 400;
  margin-top: 12px;
  max-width: 150px;
}
.catalog-product-view .add-to-cart-wrapper .unit-of-sale-container .unit-of-sale-select {
  -webkit--webkit-appearance: none;
  -moz--webkit-appearance: none;
  -ms--webkit-appearance: none;
  -o--webkit-appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/select-box-arrow.png");
  background-position: 96% 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  border: none;
  float: right;
  height: 41px;
  max-width: 150px;
  width: 100%;
}
.catalog-product-view .add-to-cart-wrapper .unit-of-sale-container .unit-of-sale-select:active, .catalog-product-view .add-to-cart-wrapper .unit-of-sale-container .unit-of-sale-select:focus, .catalog-product-view .add-to-cart-wrapper .unit-of-sale-container .unit-of-sale-select:hover {
  outline: none;
}
.catalog-product-view .add-to-cart-wrapper .unit-of-sale-notice {
  color: #373A3B;
  font-size: 13px;
  font-style: normal;
  margin-bottom: 10px;
  margin-top: 0;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart {
  border-bottom: none;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper {
  width: 100%;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper .quantity-icons {
  background: #CCCCCC;
  border-radius: 2px;
  max-width: 140px;
  padding: 2px 0;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper .quantity-icons a.remove-qty img.remove {
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle;
  width: 20%;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper .quantity-icons .fake-qty {
  display: inline-block;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  width: 4em;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper .quantity-icons a.add-qty img.add {
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle;
  width: 14%;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons {
  clear: left;
  width: 100%;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons .btn-cart, .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .grey-btn, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons .grey-btn, .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons .checkout-button--collection, .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons .checkout-button--delivery {
  border-radius: 2px;
  max-width: none;
  padding: 4px 30px;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons .btn-cart span span, .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .grey-btn span span, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons .grey-btn span span, .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection span span, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons .checkout-button--collection span span, .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery span span, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons .checkout-button--delivery span span {
  font-size: 18px;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-links {
  margin-top: 15px;
  z-index: 0;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-links li {
  margin-top: 0;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-links li img {
  width: 20px;
}
.catalog-product-view .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-links li a {
  color: #373A3B;
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
}
.catalog-product-view .product-collateral .collateral-tabs {
  margin-bottom: 20px;
}
.catalog-product-view .product-collateral .collateral-tabs > dt {
  background: #ed1f24;
  display: block;
  padding: 14px 50px;
}
.catalog-product-view .product-collateral .collateral-tabs > dt:after {
  content: none !important;
}
@media screen and (max-width: 989px) {
  .catalog-product-view .product-collateral .collateral-tabs > dt {
    display: block !important;
  }
}
.catalog-product-view .product-collateral .collateral-tabs > dt a {
  text-decoration: none;
}
.catalog-product-view .product-collateral .collateral-tabs > dt a span {
  color: #FFFFFF !important;
  font-size: 17px;
  text-transform: uppercase;
}
.catalog-product-view .product-collateral .collateral-tabs dd {
  padding: 50px !important;
}
.catalog-product-view .product-collateral .collateral-tabs dd .tab-content .std p {
  font-weight: 300;
  line-height: 1.4;
}
.catalog-product-view .product-collateral .collateral-tabs dd .tab-content .std p strong {
  font-size: 17px;
  font-weight: 600;
}
.catalog-product-view .product-collateral .collateral-tabs dd .tab-content .std p.tab-content-heading {
  border-bottom: 2px dotted #000000;
  padding-bottom: 8px;
}
.catalog-product-view .product-collateral .collateral-tabs dd .tab-content .std ul {
  list-style: disc inside;
}
.catalog-product-view .product-collateral .collateral-tabs dd .tab-content .std ul li {
  border-bottom: none;
  margin-top: 8px;
  padding: 0;
  width: 70%;
}
@media screen and (max-width: 989px) {
  .catalog-product-view .product-collateral .collateral-tabs dd .tab-content .std ul li {
    width: 100%;
  }
}
.catalog-product-view .product-collateral .collateral-tabs dd .tab-content .std ul li:before {
  display: none !important;
}
.catalog-product-view .block.block-related {
  margin-bottom: 45px;
  padding-left: 0;
  width: 100%;
}
.catalog-product-view .block.block-related .block-title {
  border-bottom: 1px dotted #000000;
  border-top: 0;
  padding-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .catalog-product-view .block.block-related .block-title {
    padding-bottom: 10px;
  }
}
.catalog-product-view .block.block-related .block-title h2 {
  color: #373A3B;
  font-size: 34px;
  margin-left: 15px;
  padding-left: 15px;
  text-transform: uppercase;
}
.catalog-product-view .block.block-related .block-title h2:before {
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .catalog-product-view .block.block-related .block-title h2:before {
    left: 1px;
  }
}
@media screen and (max-width: 599px) {
  .catalog-product-view .block.block-related .block-title h2 {
    font-size: 28px;
    margin-left: 0;
    padding-left: 25px;
  }
}
.catalog-product-view .block.block-related .block-content {
  margin-top: 45px;
}
.catalog-product-view .block.block-related .block-content .slick-slider .slick-prev {
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .catalog-product-view .block.block-related .block-content .slick-slider .slick-prev {
    left: -15px;
  }
}
.catalog-product-view .block.block-related .block-content .slick-slider .slick-prev:before {
  background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/downward-faq-arrow.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 30px;
  content: "";
  display: block;
  height: 40px;
  left: -20px;
  position: absolute;
  top: -60px;
  transform: rotate(90deg);
  width: 40px;
}
@media screen and (max-width: 1024px) {
  .catalog-product-view .block.block-related .block-content .slick-slider .slick-prev:before {
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  .catalog-product-view .block.block-related .block-content .slick-slider .slick-prev:before {
    background-color: #ed1f24;
    background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/white-arrow-png-41963.png);
    background-position: center;
    left: 0;
    padding: 22px;
    transform: rotate(180deg);
  }
}
.catalog-product-view .block.block-related .block-content .slick-slider .slick-next {
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .catalog-product-view .block.block-related .block-content .slick-slider .slick-next {
    right: -15px;
  }
}
.catalog-product-view .block.block-related .block-content .slick-slider .slick-next:before {
  background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/downward-faq-arrow.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 30px;
  content: "";
  display: block;
  height: 40px;
  position: absolute;
  right: -20px;
  top: -60px;
  transform: rotate(-90deg);
  width: 40px;
}
@media screen and (max-width: 1024px) {
  .catalog-product-view .block.block-related .block-content .slick-slider .slick-next:before {
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  .catalog-product-view .block.block-related .block-content .slick-slider .slick-next:before {
    background-color: #ed1f24;
    background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/white-arrow-png-41963.png);
    background-position: center;
    padding: 22px;
    right: 0;
    transform: rotate(0deg);
  }
}
.catalog-product-view .block.block-related .block-content .item {
  border: 2px dotted #F7F7F7;
  margin: 0 4px;
  padding-bottom: 70px;
  position: relative;
}
.catalog-product-view .block.block-related .block-content .item.grouped-item {
  padding-bottom: 0 !important;
}
@media screen and (max-width: 479px) {
  .catalog-product-view .block.block-related .block-content .item {
    margin: 0;
  }
}
.catalog-product-view .block.block-related .block-content .item .product {
  margin-left: 0;
  padding: 0 9px;
}
@media screen and (max-width: 599px) {
  .catalog-product-view .block.block-related .block-content .item .product {
    padding: 0 15px;
  }
}
.catalog-product-view .block.block-related .block-content .item .product .product-image {
  border: none;
  float: none;
  margin: 0 auto;
  max-width: 250px;
  max-height: 250px;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-image {
    max-height: none;
    max-width: none;
  }
}
.catalog-product-view .block.block-related .block-content .item .product .product-image img {
  width: 100%;
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box {
  float: none;
  margin: 0 auto;
  min-height: 125px;
  width: 96%;
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .collection-price,
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .delivery-price {
  float: left;
  width: 50%;
}
@media screen and (max-width: 989px) {
  .catalog-product-view .block.block-related .block-content .item .product .price-info-box .collection-price,
  .catalog-product-view .block.block-related .block-content .item .product .price-info-box .delivery-price {
    width: 100%;
  }
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .collection-price h4,
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .delivery-price h4 {
  background: grey;
  color: #FFFFFF;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  padding: 10px;
  text-align: center;
  text-transform: none;
  width: 100%;
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .collection-price h4 span,
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .delivery-price h4 span {
  color: #FFFFFF;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  margin-left: 4px;
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .collection-price h4 span > p,
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .delivery-price h4 span > p {
  font-size: 14px;
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .collection-price .tier-prices,
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .delivery-price .tier-prices {
  background: transparent;
  border: 1px solid #F7F7F7;
  padding: 0;
  width: 100%;
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .collection-price .tier-prices li,
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .delivery-price .tier-prices li {
  border-bottom: 1px solid #F7F7F7;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px;
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .collection-price .tier-prices li:nth-child(odd),
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .delivery-price .tier-prices li:nth-child(odd) {
  background-color: #F7F7F7;
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .collection-price .tier-prices li:first-child,
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .delivery-price .tier-prices li:first-child {
  font-weight: 700;
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .collection-price .tier-prices li:last-child,
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .delivery-price .tier-prices li:last-child {
  border-bottom: none;
}
.catalog-product-view .block.block-related .block-content .item .product .price-info-box .guest-price-block {
  text-align: center;
  width: 100% !important;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details {
  margin-left: 0;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .product-name {
  margin: 0 auto;
  max-width: 280px;
  min-height: 90px;
  padding-bottom: 10px;
  text-align: center;
  width: 100%;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .product-name a {
  color: #373A3B;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper {
  text-align: left;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper .collection {
  color: #383b3c;
  display: inline-block;
  font-size: 14px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  text-transform: none;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper .collection {
    font-size: 12px;
  }
}
@media screen and (max-width: 669px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper .collection {
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper .collection {
    font-size: 14px;
  }
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper .price-box {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper .price-box .price-label {
  display: none;
  padding: 0;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper .price-box span.price {
  font-size: 14px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 669px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper .price-box span.price {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper .price-box span.price {
    font-size: 14px;
  }
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper .VAT {
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .collection-wrapper p {
  margin: 0;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper {
  text-align: left;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper .delivery {
  color: #383b3c;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: none;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper .delivery {
    font-size: 12px;
  }
}
@media screen and (max-width: 669px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper .delivery {
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper .delivery {
    font-size: 14px;
  }
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper .price-box {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper .price-box .price-label {
  display: none;
  padding: 0;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper .price-box span.price {
  font-size: 14px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 669px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper .price-box span.price {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper .price-box span.price {
    font-size: 14px;
  }
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper .VAT {
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .delivery-wrapper p {
  margin: 0;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .unit-of-sale-container {
  background-color: #F7F7F7;
  border-radius: 5px;
  float: left;
  margin-left: 2%;
  margin-bottom: 12px;
  padding: 0 10px;
  width: 96%;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .unit-of-sale-container label {
  color: #373A3B;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 13px;
  font-weight: 400;
  margin-top: 12px;
  max-width: 150px;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .unit-of-sale-container .unit-of-sale-select {
  -webkit--webkit-appearance: none;
  -moz--webkit-appearance: none;
  -ms--webkit-appearance: none;
  -o--webkit-appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/related-dropdown.png");
  background-position: 96% 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  border: none;
  float: right;
  font-size: 13px;
  height: 41px;
  max-width: 150px;
  width: 100%;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .unit-of-sale-container .unit-of-sale-select:active, .catalog-product-view .block.block-related .block-content .item .product .product-details .unit-of-sale-container .unit-of-sale-select:focus, .catalog-product-view .block.block-related .block-content .item .product .product-details .unit-of-sale-container .unit-of-sale-select:hover {
  outline: none;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .product-button {
  float: left;
  text-align: center;
  width: 100%;
}
.catalog-product-view .block.block-related .block-content .item .product .product-details .product-button .view-product-btn {
  border-radius: 2px;
  max-width: none;
}
@media screen and (max-width: 479px) {
  .catalog-product-view .block.block-related .block-content .item .product .product-details .product-button .view-product-btn {
    margin-bottom: 50px;
    max-width: none;
  }
}
.catalog-product-view .block.block-related .block-content .item .product_stock-wrapper {
  background-color: #F7F7F7;
  border-top: 2px dotted #F7F7F7;
  bottom: 0;
  float: left;
  margin-top: 10px;
  padding: 10px;
  position: absolute;
  width: 100%;
}
.catalog-product-view .block.block-related .block-content .item .product_stock-wrapper .product_sku {
  display: inline-block;
}
@media screen and (max-width: 669px) {
  .catalog-product-view .block.block-related .block-content .item .product_stock-wrapper .product_sku {
    padding-bottom: 10px;
    text-align: center;
    width: 100%;
  }
}
.catalog-product-view .block.block-related .block-content .item .product_stock-wrapper .product_sku p {
  color: #373A3B;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.catalog-product-view .block.block-related .block-content .item .product_stock-wrapper .product_sku span {
  color: #373A3B;
  font-size: 14px;
  font-weight: 600;
}
.catalog-product-view .block.block-related .block-content .item .product_stock-wrapper .product_qty {
  cursor: pointer;
  display: inline-block;
  margin-left: 20px;
  position: relative;
}
@media screen and (max-width: 669px) {
  .catalog-product-view .block.block-related .block-content .item .product_stock-wrapper .product_qty {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
}
.catalog-product-view .block.block-related .block-content .item .product_stock-wrapper .product_qty:hover .stock-tooltip-message {
  display: block;
}
.catalog-product-view .block.block-related .block-content .item .product_stock-wrapper .product_qty p {
  color: #38B72A;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.catalog-product-view .block-viewed,
.catalog-product-view .box-up-sell {
  display: none;
}

/*================================================================================
$ P2 DESIGN - GROUPED
================================================================================*/
.catalog-product-view .grouped__product .product_desc {
  float: left;
}
.catalog-product-view .grouped__product .product_desc p {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 300;
}
.catalog-product-view .grouped__product .product_desc p a {
  color: #ed1f24;
  font-weight: 500;
  text-decoration: none;
}
.catalog-product-view .grouped__product .product_desc .tab-content .std p {
  font-weight: 300;
  line-height: 1.4;
}
.catalog-product-view .grouped__product .product_desc .tab-content .std p strong {
  font-size: 17px;
  font-weight: 600;
}
.catalog-product-view .grouped__product .product_desc .tab-content .std p.tab-content-heading {
  border-bottom: 2px dotted #000000;
  padding-bottom: 8px;
}
.catalog-product-view .grouped__product .product_desc .tab-content .std ul {
  list-style: none;
}
.catalog-product-view .grouped__product .product_desc .tab-content .std ul li {
  border-bottom: 2px dotted #000000;
  margin-left: 0;
  padding: 8px 0;
  width: 70%;
}
@media screen and (max-width: 989px) {
  .catalog-product-view .grouped__product .product_desc .tab-content .std ul li {
    width: 100%;
  }
}
.catalog-product-view .grouped__product .product_desc .tab-content .std ul li:before {
  color: #ed1f24;
  content: '>>';
  margin-right: 10px;
}
.catalog-product-view .grouped__product .add-to-cart-wrapper {
  background: none;
  padding: 0;
}
.catalog-product-view .grouped__product .grouped-items-table-wrapper {
  border: none;
  padding: 0;
}
.catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons {
  margin: 40px 0;
  width: 100%;
}
.catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .btn-cart, .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .grey-btn, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .grey-btn, .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .checkout-button--collection, .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .checkout-button--delivery {
  border-radius: 2px;
  float: right;
  max-width: 350px;
  padding: 4px 30px;
}
@media screen and (max-width: 479px) {
  .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .btn-cart, .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .grey-btn, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .grey-btn, .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .checkout-button--collection, .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .checkout-button--delivery {
    max-width: none;
    width: 100%;
  }
}
.catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .btn-cart span span, .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .grey-btn span span, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .grey-btn span span, .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection span span, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .checkout-button--collection span span, .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery span span, #header-cart .minicart-wrapper .minicart-actions .catalog-product-view .grouped__product .grouped-items-table-wrapper .add-to-cart-buttons .checkout-button--delivery span span {
  font-size: 18px;
}

/*================================================================================
$ GENERAL
================================================================================*/
.email_friend.product-video-overlay-holder.active {
  display: block !important;
}
.email_friend.product-video-overlay-holder.active form .email_friend_wrapper {
  background: white;
  border-radius: 5px;
  left: 50%;
  max-width: 420px;
  padding: 20px;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}
@media screen and (max-width: 599px) {
  .email_friend.product-video-overlay-holder.active form .email_friend_wrapper {
    left: 2.5%;
    max-width: 95%;
    top: 2%;
    transform: none;
  }
}
.email_friend.product-video-overlay-holder.active form .email_friend_wrapper h1 {
  color: #4b4a49;
  font-size: 21px;
  text-transform: capitalize;
}
.email_friend.product-video-overlay-holder.active form .email_friend_wrapper .email_close_icon {
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 35px;
}
.email_friend.product-video-overlay-holder.active form .email_friend_wrapper #recipients_options .input-box > input {
  border: 1px solid #000000;
}
.email_friend.product-video-overlay-holder.active form .buttons-set {
  padding-bottom: 0px;
}
.email_friend.product-video-overlay-holder.active form .buttons-set button {
  max-width: none;
}

/*================================================================================
$ PRODUCT IMAGE
================================================================================*/
.product-view .product-img-box .product-name h1 {
  color: #383b3c;
  font-size: 21px;
  text-transform: none;
}
.product-view .product-img-box .product-image {
  border: none;
}
.product-view .product-img-box .product-image img {
  max-height: 400px;
  max-width: 100%;
}
.product-view .product-img-box .more-views .product-image-thumbs {
  text-align: center;
  z-index: 0;
}
.product-view .product-img-box .more-views .product-image-thumbs li {
  border: 1px solid #EDEDED;
  margin: 3px;
}
.product-view .product-img-box .more-views .product-image-thumbs li a, .product-view .product-img-box .more-views .product-image-thumbs li img {
  display: block;
  border: none !important;
}

/*================================================================================
$ PRODUCT SHOP
================================================================================*/
.product-view .product-shop {
  margin-bottom: 20px;
}
.product-view .product-shop .product-name_old .h1 {
  color: #383b3c;
  font-size: 21px;
  text-transform: none;
}
.product-view .product-shop .price-info .price {
  display: none;
}
.product-view .product-shop .product_sku_old {
  clear: left;
  float: left;
  font-weight: 600;
  padding-bottom: 4px;
  text-align: left;
  text-transform: none;
}
.product-view .product-shop .product_sku_old p {
  font-size: 14px;
}
.product-view .product-shop .product_sku_old span {
  color: #4b4a49;
  font-size: 14px;
  font-weight: 400;
}
.product-view .product-shop .product_qty_old {
  clear: left;
  color: #008c3c;
  float: left;
  font-weight: 600;
  text-align: left;
  text-transform: none;
}
.product-view .product-shop .product_qty_old p {
  font-size: 14px;
  font-weight: bold;
}
.product-view .product-shop .extra-info .availability.in-stock {
  display: none;
}
.product-view .product-shop .short-description .std {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  min-height: 40px;
}
.product-view .product-shop .short-description p {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.product-view .product-shop .short-description p a {
  color: #383b3c;
  text-decoration: underline;
}
.product-view .product-shop .tier-prices > li .price {
  display: inline-block;
}
.product-view .product-shop .tier-prices > li .benefit,
.product-view .product-shop .tier-prices > li .msrp-price-hide-message {
  display: none !important;
}

/*================================================================================
$ PRODUCT GROUPED TABLE
================================================================================*/
.unit-of-sale-notice {
  float: left;
  font-size: 12px;
  font-style: italic;
  width: 100%;
}

.product-downloads-holder {
  margin-bottom: 20px;
  margin-top: 20px;
}
.product-downloads-holder > h4 {
  display: block;
  text-decoration: underline;
  text-transform: none;
}
.product-downloads-holder ul > li > a {
  color: #ed1f24;
  margin-top: 5px;
}

.grouped-items-table-wrapper {
  float: left;
  width: 100%;
}
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section {
  float: left;
  width: 100%;
}
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section p,
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section span:not(.price),
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section strong {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row {
  float: left;
  margin-top: 20px;
  position: relative;
  width: 100%;
}
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row.mobile-only {
  background-color: #ed1f24;
  margin-top: 0;
  padding: 0 10px;
}
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row.mobile-only .table-head {
  width: 100%;
}
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row:first-child {
  background-color: #ed1f24;
  margin-top: 0;
  padding: 0 20px;
}
@media screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row:first-child {
    display: none !important;
    padding: 0 10px;
  }
}
@media screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row {
    margin-top: 7px;
  }
  .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row.active .table-body {
    display: block;
  }
  .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row.active .table-body-name {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/minus-icon-new.png");
  }
}
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner {
  background-color: #F7F7F7;
  padding: 0 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner {
    padding: 0 10px;
  }
}
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner .lead_time.desktop {
  bottom: 6px;
  position: absolute;
}
@media screen and (max-width: 479px) {
  .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner .lead_time.desktop {
    display: none;
  }
}
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner .lead_time.desktop p {
  font-size: 14px;
}
.grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner .lead_time.mobile {
  display: none;
}
@media screen and (max-width: 479px) {
  .grouped-items-table-wrapper .grouped-items-table .grouped-items-table__section__row .grouped-items-table__section__row__inner .lead_time.mobile {
    display: inline-block;
    padding-top: 18px;
  }
}
.grouped-items-table-wrapper .grouped-items-table .table-head,
.grouped-items-table-wrapper .grouped-items-table .table-body {
  float: left;
  text-align: left;
  width: 20%;
}
@media screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .table-head,
  .grouped-items-table-wrapper .grouped-items-table .table-body {
    width: 100%;
  }
}
.grouped-items-table-wrapper .grouped-items-table .table-head--prodcode,
.grouped-items-table-wrapper .grouped-items-table .table-body--prodcode {
  width: 14%;
}
.grouped-items-table-wrapper .grouped-items-table .table-head--proddesc,
.grouped-items-table-wrapper .grouped-items-table .table-body--proddesc {
  width: 19%;
}
.grouped-items-table-wrapper .grouped-items-table .table-head--prodstock,
.grouped-items-table-wrapper .grouped-items-table .table-body--prodstock {
  width: 10%;
}
.grouped-items-table-wrapper .grouped-items-table .table-head--prodstock p,
.grouped-items-table-wrapper .grouped-items-table .table-body--prodstock p {
  color: #5EB45D;
}
.grouped-items-table-wrapper .grouped-items-table .table-head--produos,
.grouped-items-table-wrapper .grouped-items-table .table-body--produos {
  width: 15%;
}
.grouped-items-table-wrapper .grouped-items-table .table-head--prodprice,
.grouped-items-table-wrapper .grouped-items-table .table-body--prodprice {
  width: 26%;
}
.grouped-items-table-wrapper .grouped-items-table .table-head--prodqty,
.grouped-items-table-wrapper .grouped-items-table .table-body--prodqty {
  width: 16%;
}
.grouped-items-table-wrapper .grouped-items-table .table-head {
  padding: 15px 7px;
}
@media screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .table-head {
    font-weight: bold;
    padding: 20px 25px;
  }
}
.grouped-items-table-wrapper .grouped-items-table .table-head p {
  color: #FFFFFF;
  text-transform: uppercase;
}
.grouped-items-table-wrapper .grouped-items-table .table-body {
  padding: 22px 7px;
}
@media screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .table-body {
    border-bottom: 2px dotted #909090;
    display: none;
    padding: 20px 10px;
    width: 100%;
  }
  .grouped-items-table-wrapper .grouped-items-table .table-body .label,
  .grouped-items-table-wrapper .grouped-items-table .table-body .value {
    display: inline-block;
    vertical-align: middle;
    width: auto;
  }
  .grouped-items-table-wrapper .grouped-items-table .table-body .label {
    color: #383b3c;
    font-weight: bold;
    max-width: 175px;
    padding-right: 10px;
    text-transform: uppercase;
    width: 100%;
  }
  .grouped-items-table-wrapper .grouped-items-table .table-body.table-body--prodcode {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/plus-icon-new.png");
    background-position: 97% 50%;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    cursor: pointer;
    display: block;
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .grouped-items-table-wrapper .grouped-items-table .table-body .label {
    max-width: 150px;
  }
}
.grouped-items-table-wrapper .grouped-items-table .price-info-box .collection-price,
.grouped-items-table-wrapper .grouped-items-table .price-info-box .delivery-price {
  float: left;
  width: 50%;
}
@media screen and (max-width: 979px) {
  .grouped-items-table-wrapper .grouped-items-table .price-info-box .collection-price,
  .grouped-items-table-wrapper .grouped-items-table .price-info-box .delivery-price {
    width: 100%;
  }
}
@media screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .price-info-box .collection-price,
  .grouped-items-table-wrapper .grouped-items-table .price-info-box .delivery-price {
    width: 50%;
  }
}
.grouped-items-table-wrapper .grouped-items-table .price-info-box .collection-price h4,
.grouped-items-table-wrapper .grouped-items-table .price-info-box .delivery-price h4 {
  background: #CCCCCC;
  color: #000000;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 0;
  padding: 7px 5px;
  text-align: center;
  text-transform: none;
  width: 100%;
}
.grouped-items-table-wrapper .grouped-items-table .price-info-box .collection-price h4 span,
.grouped-items-table-wrapper .grouped-items-table .price-info-box .delivery-price h4 span {
  color: #000000;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  margin-left: 4px;
}
.grouped-items-table-wrapper .grouped-items-table .price-info-box .collection-price h4 span > p,
.grouped-items-table-wrapper .grouped-items-table .price-info-box .delivery-price h4 span > p {
  font-size: 13px;
}
.grouped-items-table-wrapper .grouped-items-table .price-info-box .collection-price .tier-prices,
.grouped-items-table-wrapper .grouped-items-table .price-info-box .delivery-price .tier-prices {
  background: #FFFFFF;
  border: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.grouped-items-table-wrapper .grouped-items-table .price-info-box .collection-price .tier-prices li,
.grouped-items-table-wrapper .grouped-items-table .price-info-box .delivery-price .tier-prices li {
  margin-bottom: 0;
  margin-top: 0;
  padding: 8px 5px;
  text-align: center;
}
.grouped-items-table-wrapper .grouped-items-table .price-info-box .collection-price .tier-prices li:nth-child(2),
.grouped-items-table-wrapper .grouped-items-table .price-info-box .delivery-price .tier-prices li:nth-child(2) {
  border-top: 2px dotted #909090;
}
.grouped-items-table-wrapper .grouped-items-table .price-info-box .guest-price-block {
  text-align: center;
  width: 100% !important;
}
.grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container {
  background-color: #F7F7F7;
  border-radius: 5px;
  float: left;
  margin-left: 2%;
  margin-bottom: 12px;
  padding: 0 10px;
  width: 96%;
}
@media screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container {
    display: inline-block;
    float: none;
    margin: 0;
    max-width: 150px;
    padding: 0;
    vertical-align: middle;
    width: auto;
  }
}
.grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container label {
  color: #373A3B;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif !important;
  font-size: 13px;
  font-weight: 400;
  margin-top: 12px;
  max-width: 150px;
}
.grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container .unit-of-sale-select {
  -webkit--webkit-appearance: none;
  -moz--webkit-appearance: none;
  -ms--webkit-appearance: none;
  -o--webkit-appearance: none;
  -webkit-appearance: none;
  background-color: #FFFFFF;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/related-dropdown.png");
  background-position: 96% 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  border: none;
  color: #909090;
  float: right;
  font-size: 13px;
  height: 41px;
  max-width: 150px;
  padding: 0 15px;
  width: 100%;
}
@media screen and (max-width: 989px) {
  .grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container .unit-of-sale-select {
    max-width: 96px;
  }
}
@media screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container .unit-of-sale-select {
    float: left;
  }
}
@media screen and (max-width: 479px) {
  .grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container .unit-of-sale-select {
    max-width: 150px;
  }
}
.grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container .unit-of-sale-select:active, .grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container .unit-of-sale-select:focus, .grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container .unit-of-sale-select:hover {
  outline: none;
}
.grouped-items-table-wrapper .grouped-items-table .unit-of-sale-container .unit-of-sale-notice {
  font-size: 12px;
  margin-top: 10px;
}
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper {
  padding-top: 0;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .qty-wrapper {
    max-width: 125px;
  }
}
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons {
  background: #CCCCCC;
  border-radius: 2px;
  padding: 2px 0;
  text-align: center;
  width: 100%;
}
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons a.remove-qty,
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons .fake-qty,
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons .qty,
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons a.add-qty {
  border: none;
  display: inline-block;
  max-width: 25%;
  vertical-align: middle;
  width: 100%;
}
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons a.remove-qty,
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons a.add-qty {
  padding: 5px;
}
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons a.remove-qty > img,
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons a.add-qty > img {
  display: block;
  margin: 0 auto;
  max-width: 12px;
  width: 100%;
}
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons .fake-qty,
.grouped-items-table-wrapper .grouped-items-table .qty-wrapper .quantity-icons .qty {
  font-size: 16px;
  font-weight: bold;
  max-width: 40%;
  text-align: center;
}

/*================================================================================
$ PRODUCT MEASUREMENT CALCULATOR
================================================================================*/
.calculator-holder .calculator__title {
  float: left;
  margin-bottom: 20px;
  width: 100%;
}
.calculator-holder .calculator__title > h3 {
  font-weight: 600;
  text-transform: none;
}
.calculator-holder .calculator__block {
  float: left;
  width: 45%;
}
@media screen and (max-width: 770px) {
  .calculator-holder .calculator__block {
    width: 100%;
  }
}
.calculator-holder .calculator__block__left {
  border-right: 1px solid #DDDDDD;
  padding-right: 35px;
}
@media screen and (max-width: 770px) {
  .calculator-holder .calculator__block__left {
    border: none;
    padding: 0;
  }
}
.calculator-holder .calculator__block__left p {
  margin-top: 15px;
}
.calculator-holder .calculator__block__left p:first-child {
  margin-top: 0;
}
.calculator-holder .calculator__block__left .measurement-select {
  margin-top: 15px;
  max-width: 80%;
  width: 100%;
}
.calculator-holder .calculator__block__left .measurement-input-box {
  margin-top: 15px;
}
.calculator-holder .calculator__block__left .measurement-input-box > label {
  float: left;
  font-size: 16px;
  margin-top: 3px;
  max-width: 100px;
  width: 100%;
}
.calculator-holder .calculator__block__left .measurement-input-box > input {
  float: left;
  margin-left: 15px;
  max-width: 175px;
  width: 100%;
}
.calculator-holder .calculator__block__left .buttons-set {
  float: left;
  margin-top: 25px;
  max-width: none !important;
  padding-bottom: 0;
  width: 100%;
}
.calculator-holder .calculator__block__left .buttons-set > a {
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 2%;
  max-width: none;
  padding: 10px 5px;
  width: 49%;
}
@media screen and (max-width: 399px) {
  .calculator-holder .calculator__block__left .buttons-set > a {
    margin-bottom: 10px;
    margin-left: 0 !important;
    width: 100%;
  }
}
.calculator-holder .calculator__block__left .buttons-set > a:first-child {
  margin-left: 0;
}
.calculator-holder .calculator__block__right {
  padding-left: 25px;
  width: 55%;
}
@media screen and (max-width: 770px) {
  .calculator-holder .calculator__block__right {
    margin-top: 20px;
    padding: 0;
  }
}
.calculator-holder .calculator__block__right .amount-title {
  margin-top: 30px;
}
.calculator-holder .calculator__block__right .amount-title:first-child {
  margin-top: 0;
}
.calculator-holder .calculator__block__right .amount-tag {
  font-size: 18px;
}
.calculator-holder .calculator__block__right .calculator-advisory {
  display: block;
  margin-top: 50px;
}
.calculator-holder .calculator__block__right .calculator-advisory > p {
  font-size: 10px;
}

/*================================================================================
$ PRODUCT OTHER
================================================================================*/
.main .col-main .product-view .product-essential .add-to-cart-buttons .btn-cart_old {
  min-width: 200px !important;
  text-transform: none;
}
.main .col-main .product-view .product-essential .add-to-links_old {
  clear: none;
  margin-top: 15px;
  float: right;
  z-index: 0;
}
.main .col-main .product-view .product-essential .add-to-links_old li {
  display: inline;
  float: none;
  margin-top: 0;
}
.main .col-main .product-view .product-essential .add-to-links_old li img {
  vertical-align: middle;
  display: inline-block;
}
.main .col-main .product-view .product-essential .add-to-links_old li a {
  color: #878787;
  font-size: 14px;
  vertical-align: middle;
}
.main .col-main .product-view .product-collateral.toggle-content {
  background-color: transparent;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs {
  border: none;
  border-bottom: 1px solid #dddddd;
  background-color: #FFFFFF;
  display: none;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li {
  background-color: #F4F4F4;
  border: 1px solid #DDDDDD;
  border-bottom: none;
  margin: 0;
  padding: 15px 25px;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li a {
  text-transform: none;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li a:hover {
  text-decoration: none;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li a span {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li.current {
  background-color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: -1px;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li.current a {
  text-transform: none;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li.current a:hover {
  text-decoration: none;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li.current a span {
  color: #383b3c;
  text-transform: none;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li.last.current {
  background-color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li.last.current a {
  color: #383b3c;
  text-transform: none;
}
.main .col-main .product-view .product-collateral.toggle-content .toggle-tabs li.last.current a:hover {
  text-decoration: none;
}
@media screen and (max-width: 770px) {
  .main .col-main .product-view .product-collateral.toggle-content .collateral-tabs_old dt.tab {
    display: none !important;
  }
}
.main .col-main .product-view .product-collateral.toggle-content .collateral-tabs_old dt.tab:after {
  border-left: 4px solid #383b3c;
}
.main .col-main .product-view .product-collateral.toggle-content .collateral-tabs_old dt.tab:after .current:active {
  border-top: 4px solid #383b3c;
}
.main .col-main .product-view .product-collateral.toggle-content .collateral-tabs_old dt.tab a#tab {
  color: #383b3c;
}
.main .col-main .product-view .product-collateral.toggle-content .collateral-tabs_old dt.tab a#tab span {
  color: #383b3c;
}
.main .col-main .product-view .product-collateral.toggle-content .tab-container {
  border-top: 1px solid #DDDDDD;
  padding: 30px 20px;
}
@media screen and (max-width: 770px) {
  .main .col-main .product-view .product-collateral.toggle-content .tab-container {
    display: block !important;
  }
}
.main .col-main .product-view .product-collateral.toggle-content .tab-container .tab-content #customer-reviews {
  margin-bottom: 0;
}
.main .col-main .product-view .product-collateral.toggle-content .tab-container .tab-content .std {
  color: #383b3c;
  float: none;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
}
.main .col-main .product-view .product-collateral.accordion-open dt.tab:after {
  border-left: 4px solid transparent !important;
  border-top: 4px solid #383b3c;
}
.main .col-main .product-view .block.block-related_old {
  width: 100%;
}
.main .col-main .product-view .block.block-related_old .block-title {
  border-bottom: 1px solid #F6F6F6;
  border-top: none;
}
.main .col-main .product-view .block.block-related_old .block-title h2 {
  padding-bottom: 15px;
  text-transform: none;
}
.main .col-main .product-view .block.block-related_old .block-content {
  margin-top: 15px;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item {
  display: inline-block;
  margin: 0 0 0 10px;
  min-height: 150px;
  vertical-align: middle;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product {
  margin-left: 0;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-image,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-image {
  float: none;
  max-width: 250px;
  max-height: 250px;
}
@media screen and (max-width: 479px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-image,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-image {
    max-height: none;
    max-width: none;
  }
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-image img,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-image img {
  width: 100%;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old {
  margin-left: 0;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .product-name,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .product-name {
  font-size: 13px;
  min-height: 70px;
  text-align: left;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .product-name,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .product-name {
    min-height: 80px;
  }
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper {
  text-align: left;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper .collection,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper .collection {
  color: #383b3c;
  display: inline-block;
  font-size: 14px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  text-transform: none;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper .collection,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper .collection {
    font-size: 12px;
  }
}
@media screen and (max-width: 669px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper .collection,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper .collection {
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper .collection,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper .collection {
    font-size: 14px;
  }
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper .price-box,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper .price-box {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper .price-box .price-label,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper .price-box .price-label {
  display: none;
  padding: 0;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper .price-box span.price,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper .price-box span.price {
  font-size: 14px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 669px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper .price-box span.price,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper .price-box span.price {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper .price-box span.price,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper .price-box span.price {
    font-size: 14px;
  }
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper .VAT,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper .VAT {
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .collection-wrapper p,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .collection-wrapper p {
  margin: 0;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper {
  text-align: left;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper .delivery,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper .delivery {
  color: #383b3c;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: none;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper .delivery,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper .delivery {
    font-size: 12px;
  }
}
@media screen and (max-width: 669px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper .delivery,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper .delivery {
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper .delivery,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper .delivery {
    font-size: 14px;
  }
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper .price-box,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper .price-box {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper .price-box .price-label,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper .price-box .price-label {
  display: none;
  padding: 0;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper .price-box span.price,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper .price-box span.price {
  font-size: 14px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 669px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper .price-box span.price,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper .price-box span.price {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper .price-box span.price,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper .price-box span.price {
    font-size: 14px;
  }
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper .VAT,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper .VAT {
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .delivery-wrapper p,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .delivery-wrapper p {
  margin: 0;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .product-button,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .product-button {
  padding-top: 10px;
  text-align: left;
}
.main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .product-button .view-product-btn,
.main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .product-button .view-product-btn {
  max-width: 240px;
}
@media screen and (max-width: 479px) {
  .main .col-main .product-view .block.block-related_old .block-content .mini-products-list .item .product .product-details_old .product-button .view-product-btn,
  .main .col-main .product-view .block.block-related_old .block-content #upsell-product-table .item .product .product-details_old .product-button .view-product-btn {
    margin-bottom: 50px;
    max-width: none;
  }
}
.main .col-main .product-view .block-viewed_old {
  display: inline-block;
  margin: 0;
  margin-top: 50px;
  width: 100%;
}
.main .col-main .product-view .block-viewed_old .block-title {
  background-color: #F6F6F6;
  border: 1px solid #D3D3D3;
  border-bottom: none;
  margin: 0;
  padding: 10px 12px;
  width: 100%;
}
.main .col-main .product-view .block-viewed_old .block-title span {
  font-size: 24px;
  font-weight: 500;
  text-transform: none;
}
.main .col-main .product-view .block-viewed_old .block-content {
  border: 1px solid #D3D3D3;
  margin-top: 0;
}
.main .col-main .product-view .block-viewed_old .block-content li.item {
  display: inline-block;
  margin: 10px 10px 10px 0px;
}
.main .col-main .product-view .block-viewed_old .block-content li.item:first-child {
  margin: 10px;
}
@media screen and (max-width: 667px) {
  .main .col-main .product-view .block-viewed_old .block-content li.item:first-child {
    margin: 10px 0 10px 3px;
  }
}
@media screen and (max-width: 419px) {
  .main .col-main .product-view .block-viewed_old .block-content li.item:first-child {
    margin: 20px 23px;
  }
}
@media screen and (max-width: 769px) {
  .main .col-main .product-view .block-viewed_old .block-content li.item {
    margin: 10px 0px 10px 0px;
  }
}
@media screen and (max-width: 667px) {
  .main .col-main .product-view .block-viewed_old .block-content li.item {
    margin: 10px 0 10px 3px;
  }
}
@media screen and (max-width: 419px) {
  .main .col-main .product-view .block-viewed_old .block-content li.item {
    margin: 20px 23px;
  }
}
.main .col-main .product-view .block-viewed_old .block-content li.item .product-image {
  border: 0;
}

/*================================================================================
$ MOBILE VIEW
================================================================================*/
.catalog-product-view .add-to-cart-wrapper .add-to-cart .quantity-icons_old {
  margin-left: 27px;
  margin-top: 50px;
}
.catalog-product-view .add-to-cart-wrapper .add-to-cart .quantity-icons_old a.add-qty {
  display: inline-block;
}
.catalog-product-view .add-to-cart-wrapper .add-to-cart .quantity-icons_old a.add-qty img.add {
  float: left;
  margin-left: 7px;
  padding-right: 10px;
  padding-top: 5px;
  width: 70%;
}
.catalog-product-view .add-to-cart-wrapper .add-to-cart .quantity-icons_old a.remove-qty {
  display: inline-block;
}
.catalog-product-view .add-to-cart-wrapper .add-to-cart .quantity-icons_old a.remove-qty img.remove {
  float: left;
  margin-left: 3px;
  padding-top: 5px;
  width: 68%;
}

/* ====== SHOPPING CART ====== */
/* ======
SHOPPING CART
	- General
	- Cart Table
	- Cart Totals
	- Cross-Sells
	- Empty Cart
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.checkout-cart-index .page-title {
  border: none;
  margin: 30px 0 20px;
}
.checkout-cart-index .page-title > h1 {
  border-bottom: 2px dotted #909090;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  padding-bottom: 15px;
  padding-left: 25px;
  width: 100%;
}
.checkout-cart-index .page-title > h1:before {
  left: 0;
}
.checkout-cart-index .cart-page-form,
.checkout-cart-index .cart-totals-wrapper {
  float: left;
  width: 100%;
}
.checkout-cart-index .cart-forms {
  display: none !important;
}
.checkout-cart-index .item-msg {
  color: #ed1f24 !important;
  float: left;
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
  width: 100%;
}
.checkout-cart-index .delete-btn {
  background-color: transparent;
  border: none;
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  outline: none !important;
  padding: 0;
  text-align: center;
  text-decoration: none;
  text-transform: none;
}
.checkout-cart-index .delete-btn img,
.checkout-cart-index .delete-btn span {
  display: block;
  font-size: 12px;
  margin: 0 auto;
}
@media screen and (max-width: 770px) {
  .checkout-cart-index .delete-btn img,
  .checkout-cart-index .delete-btn span {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
  }
}
.checkout-cart-index .delete-btn span {
  margin-top: 3px;
}
@media screen and (max-width: 770px) {
  .checkout-cart-index .delete-btn span {
    margin-left: 5px;
    margin-top: 0;
  }
}

/*================================================================================
$ CART TABLE
================================================================================*/
.checkout-cart-index #shopping-cart-table {
  width: 100%;
}
.checkout-cart-index #shopping-cart-table thead > tr {
  background-color: #ed1f24;
  border: none;
}
.checkout-cart-index #shopping-cart-table thead > tr > th {
  color: #FFFFFF;
  font-size: 16px;
  padding: 7px 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 899px) {
  .checkout-cart-index #shopping-cart-table thead > tr > th {
    font-size: 14px;
    padding: 5px;
  }
}
@media screen and (max-width: 770px) {
  .checkout-cart-index #shopping-cart-table thead > tr > th {
    padding: 0;
  }
}
.checkout-cart-index #shopping-cart-table tbody > tr {
  background-color: #F7F7F7;
}
.checkout-cart-index #shopping-cart-table tbody > tr > td {
  background-color: #F7F7F7;
  padding: 10px 15px;
  vertical-align: middle;
}
@media screen and (max-width: 899px) {
  .checkout-cart-index #shopping-cart-table tbody > tr > td {
    padding: 5px 7px;
  }
}
.checkout-cart-index #shopping-cart-table tfoot > tr {
  background-color: #F7F7F7;
  border: none;
}
.checkout-cart-index #shopping-cart-table tfoot > tr > td {
  border: none;
}
.checkout-cart-index #shopping-cart-table tfoot .cart-footer-actions button {
  border-radius: 3px;
  min-width: 215px;
  padding: 5px 7px;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index #shopping-cart-table tfoot .cart-footer-actions button {
    margin-top: 10px;
    width: 100%;
  }
}
.checkout-cart-index #shopping-cart-table tfoot .cart-footer-actions .update-cart-btn {
  float: left;
}
.checkout-cart-index #shopping-cart-table tfoot .cart-footer-actions .empty-cart-btn {
  float: right;
}
.checkout-cart-index #shopping-cart-table .cart-table-body p {
  color: #383b3c;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 899px) {
  .checkout-cart-index #shopping-cart-table .cart-table-body p {
    font-size: 14px;
  }
}
.checkout-cart-index #shopping-cart-table .cart-table-body p.item-msg {
  font-size: 12px;
}
.checkout-cart-index #shopping-cart-table .cart-table-body .cart-price {
  font-weight: bold;
}
.checkout-cart-index #shopping-cart-table .cart-table-body--prodimage a {
  border: none;
  margin: 0 auto;
  max-width: 75px;
  text-decoration: none;
  width: 100%;
}
.checkout-cart-index #shopping-cart-table .cart-table-body--prodimage img {
  width: 100%;
}
.checkout-cart-index #shopping-cart-table .cart-table-body--proddesc a {
  color: #383b3c;
}
.checkout-cart-index #shopping-cart-table .cart-table-body--prodqty .quantity-icons {
  background: #CCCCCC;
  border-radius: 2px;
  padding: 2px 0;
  text-align: center;
  width: 100%;
}
.checkout-cart-index #shopping-cart-table .cart-table-body--prodqty .quantity-icons a.remove-qty,
.checkout-cart-index #shopping-cart-table .cart-table-body--prodqty .quantity-icons .qty,
.checkout-cart-index #shopping-cart-table .cart-table-body--prodqty .quantity-icons a.add-qty {
  border: none;
  display: inline-block;
  max-width: 25%;
  vertical-align: middle;
  width: 100%;
}
.checkout-cart-index #shopping-cart-table .cart-table-body--prodqty .quantity-icons a.remove-qty,
.checkout-cart-index #shopping-cart-table .cart-table-body--prodqty .quantity-icons a.add-qty {
  padding: 5px;
}
.checkout-cart-index #shopping-cart-table .cart-table-body--prodqty .quantity-icons a.remove-qty > img,
.checkout-cart-index #shopping-cart-table .cart-table-body--prodqty .quantity-icons a.add-qty > img {
  display: block;
  margin: 0 auto;
  max-width: 12px;
  width: 100%;
}
.checkout-cart-index #shopping-cart-table .cart-table-body--prodqty .quantity-icons .qty {
  font-size: 16px;
  font-weight: bold;
  max-width: 40%;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index #shopping-cart-table .cart-table-body--proddel {
    float: right;
    text-align: center;
    width: 100%;
  }
}

/*================================================================================
$ CART TOTALS
================================================================================*/
.checkout-cart-index .cart-totals-wrapper {
  background-color: #F7F7F7;
  margin: 50px 0;
  padding: 50px;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index .cart-totals-wrapper {
    padding: 20px;
  }
}
.checkout-cart-index .cart-totals {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.checkout-cart-index .cart-totals > h2 {
  border-bottom: 2px dotted #909090;
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.checkout-cart-index .cart-totals .update-cart-pricing-form {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index .cart-totals .update-cart-pricing-form {
    margin-bottom: 20px;
  }
}
.checkout-cart-index .cart-totals .form-list > li {
  display: inline-block;
  margin: 0;
  margin-left: 20px;
  vertical-align: middle;
  width: auto;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index .cart-totals .form-list > li {
    margin-bottom: 7px;
    margin-left: 0;
    width: 100%;
  }
}
.checkout-cart-index .cart-totals .form-list > li:first-child {
  margin-left: 0;
}
.checkout-cart-index .cart-totals .form-list input,
.checkout-cart-index .cart-totals .form-list label {
  display: inline-block;
  float: none;
  vertical-align: middle;
  width: auto;
}
.checkout-cart-index .cart-totals .form-list label {
  font-weight: 500;
  margin-left: 0;
  margin-right: 7px;
}
.checkout-cart-index .cart-totals .form-list input {
  background-color: #FFFFFF;
  border: none;
  float: none !important;
  margin: 0 !important;
  height: 25px;
  width: 25px;
}
.checkout-cart-index .cart-totals tfoot {
  border: none !important;
}
.checkout-cart-index .cart-totals tfoot tr {
  border: none;
}
.checkout-cart-index .cart-totals tfoot tr td {
  border-right: 0;
  padding: 10px;
  vertical-align: bottom;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index .cart-totals tfoot tr td {
    vertical-align: middle;
  }
}
.checkout-cart-index .cart-totals tfoot tr td:first-child {
  border-left: 0;
}
.checkout-cart-index .cart-totals tfoot tr td:first-child td {
  padding-top: 40px !important;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index .cart-totals tfoot tr td:first-child td {
    padding-top: 20px !important;
  }
}
.checkout-cart-index .cart-totals tfoot tr .order-total,
.checkout-cart-index .cart-totals tfoot tr span.price {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: bold;
}
.checkout-cart-index .cart-totals tfoot tr .order-total {
  font-size: 16px;
  line-height: 1.5;
}
.checkout-cart-index .cart-totals tfoot tr .order-total span {
  font-size: 16px !important;
}
.checkout-cart-index .cart-totals tfoot tr span.price {
  display: block;
  font-size: 32px;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index .cart-totals tfoot tr span.price {
    font-size: 26px;
  }
}
.checkout-cart-index .cart-totals tfoot tr span.points-used {
  display: block;
  font-size: 12px;
  text-transform: none;
}
.checkout-cart-index .cart-totals tbody tr {
  border-bottom: 0;
}
.checkout-cart-index .cart-totals tbody tr:first-child {
  border-top: 0;
}
.checkout-cart-index .cart-totals tbody tr:last-child td {
  border-bottom: 2px dotted #909090;
  padding-bottom: 40px !important;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index .cart-totals tbody tr:last-child td {
    padding-bottom: 20px !important;
  }
}
.checkout-cart-index .cart-totals tbody tr td {
  border-right: 0;
  padding: 10px;
  vertical-align: bottom;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index .cart-totals tbody tr td {
    vertical-align: middle;
  }
}
.checkout-cart-index .cart-totals tbody tr td:first-child {
  border-left: 0;
}
.checkout-cart-index .cart-totals tbody tr .sub-total,
.checkout-cart-index .cart-totals tbody tr .vat,
.checkout-cart-index .cart-totals tbody tr span.price {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: bold;
}
.checkout-cart-index .cart-totals tbody tr .sub-total,
.checkout-cart-index .cart-totals tbody tr .vat {
  font-size: 16px;
  line-height: 1.5;
}
.checkout-cart-index .cart-totals tbody tr .sub-total span,
.checkout-cart-index .cart-totals tbody tr .vat span {
  font-size: 16px !important;
}
.checkout-cart-index .cart-totals tbody tr span.price {
  display: block;
  font-size: 32px;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index .cart-totals tbody tr span.price {
    font-size: 26px;
  }
}
.checkout-cart-index .cart-totals tbody tr span.points-used {
  display: block;
  font-size: 12px;
  text-transform: none;
}
.checkout-cart-index .totals-button-container {
  margin-top: 30px;
}
.checkout-cart-index .totals-button-container__inner button {
  border-radius: 3px;
  min-width: 215px;
  padding: 5px 7px;
}
@media screen and (max-width: 599px) {
  .checkout-cart-index .totals-button-container__inner button {
    margin-top: 10px;
    width: 100%;
  }
}
.checkout-cart-index .totals-button-container__inner .save-template-btn {
  float: left;
}
.checkout-cart-index .totals-button-container__inner .checkout-btn {
  float: right;
}
.checkout-cart-index .totals-button-container__inner .prevent-checkout-message-container {
  float: right;
}
.checkout-cart-index .totals-button-container__inner .prevent-checkout-message-container p {
  color: #ed1f24;
  margin-left: 0;
  text-align: right;
}
.checkout-cart-index .checkout-messages-container {
  float: left;
  margin-top: 30px;
  width: 100%;
}
.checkout-cart-index .checkout-messages-container p {
  color: #ed1f24;
  margin-left: 0;
  text-align: right;
}

@media screen and (max-width: 479px) {
  .checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-info, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-info {
    display: none;
  }
}
.checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-info .product-cart-sku, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-info .product-cart-sku {
  font-style: normal;
}
@media screen and (max-width: 479px) {
  .checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-actions, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-actions {
    margin-top: 10px;
  }
}
.checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-actions button, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-actions button {
  display: none !important;
}
.checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-actions ul.cart-links, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-actions ul.cart-links {
  margin-top: 50px;
  position: absolute;
  right: 33%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-actions ul.cart-links, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-actions ul.cart-links {
    right: 4%;
  }
}
.checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-actions ul.cart-links li.cart-options, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-actions ul.cart-links li.cart-options {
  display: inline-block;
  min-width: 46px !important;
}
.checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-actions ul.cart-links a, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-actions ul.cart-links a {
  color: #ed1f24;
}
.checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-actions ul.cart-links a.btn-remove-cart img.rubbish_bin_icon, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-actions ul.cart-links a.btn-remove-cart img.rubbish_bin_icon {
  display: inline-block;
  position: relative;
  top: 1.5px;
}
@media screen and (max-width: 479px) {
  .checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-actions ul.cart-links.edit-basket, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-actions ul.cart-links.edit-basket {
    display: block !important;
  }
}
@media screen and (max-width: 479px) {
  .checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-total, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-total {
    float: right;
    width: 33%;
  }
}
.checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-total span.cart-price span.vat, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-total span.cart-price span.vat {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 10px;
  font-weight: bold;
}
.checkout-cart-index .main #shopping-cart-table.cart-table tbody tr.odd td.product-cart-price span.cart-price span.vat, .checkout-cart-index .main #shopping-cart-table.cart-table tbody .even td.product-cart-price span.cart-price span.vat {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 10px;
  font-weight: bold;
}

/*================================================================================
$ CROSS-SELLS
================================================================================*/
.checkout-cart-index .checkout-types #delivery_discount {
  margin-left: 0;
  text-align: left;
}
.checkout-cart-index .checkout-types #bulkDiscountAmount,
.checkout-cart-index .checkout-types #collectionSavingsAmount {
  color: #ed1f24;
  margin-left: 0;
  text-align: left;
}
.checkout-cart-index .crosssell {
  margin-top: 50px;
  padding-left: 0;
  width: 100%;
}
.checkout-cart-index .crosssell h2 {
  border-bottom: 1px solid #EDEDED;
  color: #383b3c;
  font-size: 24px;
  padding-bottom: 10px;
  text-transform: capitalize;
}
.checkout-cart-index .crosssell #crosssell-products-list {
  padding-top: 20px;
}
.checkout-cart-index .crosssell #crosssell-products-list .item {
  margin-right: 2.5%;
  margin-top: 0;
  width: 23%;
}
@media screen and (max-width: 769px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item {
    width: 47%;
  }
}
@media screen and (max-width: 479px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item {
    width: 100%;
  }
}
.checkout-cart-index .crosssell #crosssell-products-list .item .product-image {
  width: 100%;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .product-name {
  text-align: left;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .product-name a {
  color: #383b3c;
  font-size: 13px;
  text-align: left;
  text-decoration: none;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .product-name a:hover, .checkout-cart-index .crosssell #crosssell-products-list .item .product-name a:active, .checkout-cart-index .crosssell #crosssell-products-list .item .product-name a:focus {
  color: #383b3c;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper {
  text-align: left;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper .collection {
  color: #383b3c;
  display: inline-block;
  font-size: 14px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  text-transform: none;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper .collection {
    font-size: 12px;
  }
}
@media screen and (max-width: 669px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper .collection {
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper .collection {
    font-size: 14px;
  }
}
.checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper .price-box {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 1px;
  vertical-align: middle;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper .price-box .price-label {
  display: none;
  padding: 0;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper .price-box span.price {
  font-size: 14px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 669px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper .price-box span.price {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper .price-box span.price {
    font-size: 14px;
  }
}
.checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper .VAT {
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .collection-wrapper p {
  margin: 0;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper {
  text-align: left;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper .delivery {
  color: #383b3c;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: none;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper .delivery {
    font-size: 12px;
  }
}
@media screen and (max-width: 669px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper .delivery {
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper .delivery {
    font-size: 14px;
  }
}
.checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper .price-box {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper .price-box .price-label {
  display: none;
  padding: 0;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper .price-box span.price {
  font-size: 14px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 669px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper .price-box span.price {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper .price-box span.price {
    font-size: 14px;
  }
}
.checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper .VAT {
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .delivery-wrapper p {
  margin: 0;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .actions .btn-cart, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .grey-btn, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .grey-btn, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .checkout-button--collection, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .checkout-button--delivery {
  background-color: transparent;
  background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/view-gradient-button.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: none;
  color: #4b4a49;
  display: block;
  max-width: none;
  text-decoration: none;
  width: 100%;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .actions .btn-cart:hover, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .grey-btn:hover, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .grey-btn:hover, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:hover, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .checkout-button--collection:hover, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:hover, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .checkout-button--delivery:hover, .checkout-cart-index .crosssell #crosssell-products-list .item .actions .btn-cart:active, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .grey-btn:active, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .grey-btn:active, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:active, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .checkout-button--collection:active, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:active, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .checkout-button--delivery:active, .checkout-cart-index .crosssell #crosssell-products-list .item .actions .btn-cart:focus, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .grey-btn:focus, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .grey-btn:focus, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection:focus, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .checkout-button--collection:focus, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery:focus, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .checkout-button--delivery:focus {
  background-color: transparent;
  background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/view-gradient-hover.png);
  color: #4b4a49;
}
.checkout-cart-index .crosssell #crosssell-products-list .item .actions .btn-cart span span, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .grey-btn span span, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .grey-btn span span, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection span span, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .checkout-button--collection span span, .checkout-cart-index .crosssell #crosssell-products-list .item .actions #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery span span, #header-cart .minicart-wrapper .minicart-actions .checkout-cart-index .crosssell #crosssell-products-list .item .actions .checkout-button--delivery span span {
  text-transform: capitalize;
}
.checkout-cart-index .crosssell #crosssell-products-list .item:last-child {
  clear: none;
  margin-right: 0;
}

/*================================================================================
$ EMPTY CART
================================================================================*/
.checkout-cart-index .cart-empty {
  margin-bottom: 60px;
}
.checkout-cart-index .cart-empty p {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
}
.checkout-cart-index .cart-empty a {
  color: #ed1f24;
}

/* ====== CHECKOUT ====== */
/* ======
CHECKOUT
    - General
    - Billing Address
    - Shipping Address
    - Shipping Method
    - Payment Method
    - Review Order
====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.checkout-onepage-index .page-title {
  display: none !important;
}
body.checkout-onepage-index .col-main {
  padding-right: 0;
}
@media screen and (max-width: 770px) {
  body.checkout-onepage-index .main-container {
    padding-left: 0;
    padding-right: 0;
  }
}

#checkoutSteps {
  margin-top: 25px;
}
#checkoutSteps .form-title {
  margin-bottom: 15px;
}
#checkoutSteps .form-title.form-title--additional {
  margin-top: 50px;
}
#checkoutSteps .form-title h3 {
  border-bottom: 2px dotted #909090;
  display: block;
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 10px;
}
@media screen and (max-width: 599px) {
  #checkoutSteps #shipping-buttons-container button,
  #checkoutSteps #shipping-buttons-container .button,
  #checkoutSteps #payment-buttons-container button,
  #checkoutSteps #payment-buttons-container .button {
    margin: 0;
    margin-left: 2%;
    min-width: 0;
    width: 49%;
  }
  #checkoutSteps #shipping-buttons-container button:first-child,
  #checkoutSteps #shipping-buttons-container .button:first-child,
  #checkoutSteps #payment-buttons-container button:first-child,
  #checkoutSteps #payment-buttons-container .button:first-child {
    margin-left: 0;
  }
}

.checkout-warn-msg {
  font-style: italic;
  font-weight: bold;
  float: left;
  margin-top: 20px;
  text-align: right;
  width: 100%;
}

.opc .section.allow .step-title .number {
  background-color: #40A941;
}
.opc .section.active .step-title {
  border: none;
}
.opc .section.active .step-title .number {
  background-color: #ed1f24 !important;
}
.opc .section.active .step-title h2 {
  color: #383b3c !important;
}
.opc .section .step-title {
  border: none;
  margin-bottom: 30px;
  min-height: 65px;
}
@media screen and (max-width: 770px) {
  .opc .section .step-title {
    margin: 0 auto 30px;
    max-width: calc(100% - 40px);
    min-height: 50px;
  }
}
.opc .section .step-title .number {
  background-color: #909090;
  color: #FFFFFF;
  display: block;
  font-size: 30px;
  font-weight: bold;
  height: 65px;
  left: 0;
  line-height: 65px;
  margin-top: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 65px;
}
@media screen and (max-width: 770px) {
  .opc .section .step-title .number {
    font-size: 22px;
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
}
.opc .section .step-title h2 {
  border-bottom: 2px dotted #909090;
  color: #909090;
  font-size: 32px;
  font-weight: bold;
  height: auto;
  line-height: normal;
  margin: 0;
  margin-left: 85px;
  padding: 10px 0 14px;
  width: calc(100% - 85px);
}
@media screen and (max-width: 599px) {
  .opc .section .step-title h2 {
    font-size: 24px;
    margin-left: 70px;
    padding: 7px 0;
  }
}
.opc .section .step-title > a {
  display: none !important;
}
.opc .section p.required {
  display: none !important;
}
.opc .section .step {
  padding: 0;
}
.opc .section .step > form {
  background-color: #F7F7F7;
  margin-bottom: 30px;
  padding: 50px 85px;
}
@media screen and (max-width: 899px) {
  .opc .section .step > form {
    padding: 50px;
  }
}
@media screen and (max-width: 770px) {
  .opc .section .step > form {
    padding: 25px;
  }
}
.opc .section .step .fieldset {
  margin-bottom: 0;
}
.opc .section .step select {
  -webkit--webkit-appearance: none;
  -moz--webkit-appearance: none;
  -ms--webkit-appearance: none;
  -o--webkit-appearance: none;
  -webkit-appearance: none;
  background-color: #FFFFFF;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/downward-faq-arrow.png");
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border: none;
  display: block;
  font-weight: lighter;
  margin: 0;
  max-width: 590px;
  padding: 10px 80px 10px 20px;
  width: 100%;
}
.opc .section .step select#shipping-address-select {
  max-width: 545px;
}
.opc .section .step button,
.opc .section .step .button {
  border-radius: 3px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.25;
  min-width: 150px;
  padding: 4px 12px;
}
@media screen and (max-width: 770px) {
  .opc .section .step button,
  .opc .section .step .button {
    min-width: 175px;
    padding: 5px;
    width: auto;
  }
}
.opc .section .step .new-address-btn {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 770px) {
  .opc .section .step .new-address-btn {
    display: block;
    margin-bottom: 10px;
    margin-top: 12px;
  }
}
.opc .section .buttons-set {
  margin-top: 20px;
  padding-bottom: 0;
}
.opc .section .buttons-set .button,
.opc .section .buttons-set button {
  float: left;
  margin-left: 10px;
}
.opc .section .buttons-set .button:first-child,
.opc .section .buttons-set button:first-child {
  margin-left: 0;
}

/*================================================================================
$ BILLING ADDRESS
================================================================================*/
#billing-new-address-form li.fields label, #billing-new-address-form li.wide label,
#shipping-new-address-form li.fields label,
#shipping-new-address-form li.wide label,
.form-list--additional-information li.fields label,
.form-list--additional-information li.wide label {
  display: none;
}
#billing-new-address-form li.fields select, #billing-new-address-form li.wide select,
#shipping-new-address-form li.fields select,
#shipping-new-address-form li.wide select,
.form-list--additional-information li.fields select,
.form-list--additional-information li.wide select {
  max-width: none;
}
#billing-new-address-form li.fields .field,
#shipping-new-address-form li.fields .field,
.form-list--additional-information li.fields .field {
  float: left;
  margin-left: 2%;
  margin-top: 0;
  width: 32%;
}
@media screen and (max-width: 599px) {
  #billing-new-address-form li.fields .field,
  #shipping-new-address-form li.fields .field,
  .form-list--additional-information li.fields .field {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}
#billing-new-address-form li.fields .field:first-child,
#shipping-new-address-form li.fields .field:first-child,
.form-list--additional-information li.fields .field:first-child {
  margin-left: 0;
}

/*================================================================================
$ SHIPPING ADDRESS
================================================================================*/
#checkout-step-shipping .shipping-address-control .control-box,
#checkout-step-shipping .shipping-address-control button {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 770px) {
  #checkout-step-shipping .shipping-address-control .control-box,
  #checkout-step-shipping .shipping-address-control button {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #checkout-step-shipping .shipping-address-control .control-box #newShippingAddressBtn,
  #checkout-step-shipping .shipping-address-control button #newShippingAddressBtn {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
#checkout-step-shipping .shipping-address-control .control-box {
  margin-right: 50px;
}
@media screen and (max-width: 770px) {
  #checkout-step-shipping .shipping-address-control .control-box {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
#checkout-step-shipping .shipping-address-control button {
  padding-left: 15px;
  padding-right: 15px;
}
#checkout-step-shipping .shipping-address-select {
  margin-top: 20px;
}
#checkout-step-shipping .forklift-control .form-list-radio {
  display: inline-block;
  vertical-align: middle;
}
#checkout-step-shipping .form-list-radio > li {
  display: inline-block;
  margin: 0;
  margin-left: 20px;
  vertical-align: middle;
  width: auto;
}
@media screen and (max-width: 770px) {
  #checkout-step-shipping .form-list-radio > li:first-child {
    margin-left: 0;
  }
}
#checkout-step-shipping .form-list-radio label {
  font-weight: lighter;
  margin-left: 5px;
  margin-right: 0;
}

/*================================================================================
$ SHIPPING METHOD
================================================================================*/
#checkout-step-shipping_method .sp-methods {
  margin-bottom: 0;
}
#checkout-step-shipping_method .sp-methods > dt {
  display: none !important;
}
#checkout-step-shipping_method .sp-methods > dd li {
  text-align: left;
}
#checkout-step-shipping_method .sp-methods > dd li label,
#checkout-step-shipping_method .sp-methods > dd li input {
  display: inline-block;
  float: none;
  vertical-align: middle;
  width: auto;
}
#checkout-step-shipping_method .sp-methods > dd li input {
  background-color: #FFFFFF;
  border: none;
  height: 25px;
  margin: 0;
  width: 25px;
}
#checkout-step-shipping_method .sp-methods > dd li label {
  background-color: transparent;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  margin-right: 7px;
  padding: 0;
}
@media screen and (max-width: 479px) {
  #checkout-step-shipping_method #shipping-method-buttons-container .checkout-back-btn {
    min-width: 154px;
  }
  #checkout-step-shipping_method #shipping-method-buttons-container .secondary-btn, #checkout-step-shipping_method #shipping-method-buttons-container .close-window-btn {
    margin-left: 8px;
    margin-right: 0;
    min-width: 154px;
  }
}

/*================================================================================
$ PAYMENT METHOD
================================================================================*/
#checkout-step-payment .sp-methods {
  margin-bottom: 0;
}
#checkout-step-payment .sp-methods .addnew {
  margin-bottom: 10px;
}
#checkout-step-payment .sp-methods #serversecure {
  display: none !important;
}
#checkout-step-payment .sp-methods > dt#dt_method_checkmo label {
  padding: 7px 0 !important;
}
@media screen and (max-width: 599px) {
  #checkout-step-payment .sp-methods > dt#dt_method_checkmo label {
    padding: 7px 0 !important;
  }
}
#checkout-step-payment .sp-methods > dt label,
#checkout-step-payment .sp-methods > dt input {
  display: inline-block !important;
  float: none;
  vertical-align: middle;
}
#checkout-step-payment .sp-methods > dt input {
  background-color: #FFFFFF;
  border: none;
  height: 25px;
  margin: 0;
  width: 25px;
}
#checkout-step-payment .sp-methods > dt label {
  background-color: transparent;
  background-position: left center;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  margin-right: 7px;
  max-width: 350px;
  min-height: 0;
  padding: 7px 0px 7px 95px !important;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #checkout-step-payment .sp-methods > dt label {
    background-size: 70px;
    max-width: 225px;
    padding: 7px 0px 7px 75px !important;
  }
}
#checkout-step-payment .sp-methods > dd #payment_form_sagepayserver {
  padding: 30px 0;
}
#checkout-step-payment .sp-methods > dd .form-list {
  padding-left: 0;
}
#checkout-step-payment .sp-methods > dd .form-list .control.checkbox-control {
  margin-top: 0 !important;
}
#checkout-step-payment .sp-methods > dd .form-list .input-box {
  padding-bottom: 0;
}
#checkout-step-payment .sp-methods #sagepayserver_cc_nickname_li > label {
  display: none !important;
}

/*================================================================================
$ REVIEW ORDER
================================================================================*/
#checkout-step-review.loading:before, #checkout-step-review.loading:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
#checkout-step-review.loading:before {
  background-color: white;
  opacity: 0.75;
  z-index: 2;
}
#checkout-step-review.loading:after {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
#checkout-step-review.loading.loading {
  position: relative;
}
#checkout-step-review.loading.loading:before, #checkout-step-review.loading.loading:after {
  display: block;
}

#checkout-review-table-wrapper #checkout-review-table {
  width: 100%;
}
#checkout-review-table-wrapper #checkout-review-table thead > tr {
  background-color: #ed1f24;
  border: none;
}
#checkout-review-table-wrapper #checkout-review-table thead > tr > th {
  background-color: #ed1f24;
  color: #FFFFFF;
  font-size: 16px;
  padding: 7px 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 899px) {
  #checkout-review-table-wrapper #checkout-review-table thead > tr > th {
    font-size: 14px;
    padding: 5px;
  }
}
#checkout-review-table-wrapper #checkout-review-table tbody > tr {
  background-color: #F7F7F7;
}
#checkout-review-table-wrapper #checkout-review-table tbody > tr > td {
  background-color: #F7F7F7;
  color: #383b3c;
  font-size: 16px;
  font-weight: normal;
  padding: 10px 15px;
  vertical-align: middle;
}
@media screen and (max-width: 899px) {
  #checkout-review-table-wrapper #checkout-review-table tbody > tr > td {
    font-size: 14px;
    padding: 5px 7px;
  }
}
#checkout-review-table-wrapper #checkout-review-table tbody > tr > td p {
  font-size: 16px;
}
@media screen and (max-width: 899px) {
  #checkout-review-table-wrapper #checkout-review-table tbody > tr > td p {
    font-size: 14px;
  }
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr {
  background-color: #FFFFFF;
  border: none;
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr:first-child > td {
  padding-top: 50px;
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr:nth-last-child(2) > td {
  padding-bottom: 40px !important;
}
@media screen and (max-width: 599px) {
  #checkout-review-table-wrapper #checkout-review-table tfoot > tr:nth-last-child(2) > td {
    padding-bottom: 20px !important;
  }
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr:last-child > td {
  border-top: 2px dotted #909090;
  padding-top: 40px !important;
}
@media screen and (max-width: 599px) {
  #checkout-review-table-wrapper #checkout-review-table tfoot > tr:last-child > td {
    padding-top: 20px !important;
  }
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr > td {
  background-color: #FFFFFF;
  border: none;
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  vertical-align: bottom;
}
@media screen and (max-width: 479px) {
  #checkout-review-table-wrapper #checkout-review-table tfoot > tr > td {
    text-align: left;
  }
  #checkout-review-table-wrapper #checkout-review-table tfoot > tr > td .sub-total {
    text-align: left;
  }
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr .sub-total,
#checkout-review-table-wrapper #checkout-review-table tfoot > tr .order-total,
#checkout-review-table-wrapper #checkout-review-table tfoot > tr .vat,
#checkout-review-table-wrapper #checkout-review-table tfoot > tr span.price {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr .sub-total,
#checkout-review-table-wrapper #checkout-review-table tfoot > tr .vat {
  font-size: 16px;
  line-height: 1.5;
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr .sub-total span,
#checkout-review-table-wrapper #checkout-review-table tfoot > tr .vat span {
  font-size: 16px !important;
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr .order-total {
  font-size: 16px;
  line-height: 1.5;
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr .order-total span {
  font-size: 16px !important;
}
#checkout-review-table-wrapper #checkout-review-table tfoot > tr span.price {
  display: block;
  font-size: 32px;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  #checkout-review-table-wrapper #checkout-review-table tfoot > tr span.price {
    font-size: 26px;
  }
}
#checkout-review-table-wrapper #checkout-review-table .checkout-table-body--prodimage img {
  border: none;
  margin: 0 auto;
  max-width: 75px;
  text-decoration: none;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #checkout-review-table-wrapper #checkout-review-table .checkout-table-head--prodimage,
  #checkout-review-table-wrapper #checkout-review-table .checkout-table-body--prodimage {
    padding: 0;
    width: 0;
  }
  #checkout-review-table-wrapper #checkout-review-table .checkout-table-head--prodimage img,
  #checkout-review-table-wrapper #checkout-review-table .checkout-table-body--prodimage img {
    display: none !important;
  }
}

#checkout-review-submit {
  background-color: #F7F7F7;
  margin: 50px 0;
  padding: 50px;
}
@media screen and (max-width: 599px) {
  #checkout-review-submit {
    padding: 20px;
  }
}
#checkout-review-submit #discount-coupon-form {
  position: relative;
}
#checkout-review-submit #discount-coupon-form .form-list input {
  height: 40px;
  margin: 0;
  width: 100%;
}
#checkout-review-submit #discount-coupon-form .buttons-set {
  margin: 0;
  position: absolute;
  right: 5px;
  top: 7px;
  width: auto;
}
#checkout-review-submit #discount-coupon-form .buttons-set > button {
  float: right;
  margin: 0;
}
#checkout-review-submit .checkout-comments-container {
  margin-top: 20px;
}
#checkout-review-submit .checkout-comments-container label {
  display: none;
}
#checkout-review-submit #review-buttons-container {
  text-align: right;
}
#checkout-review-submit #review-buttons-container .button {
  display: inline-block;
  float: none !important;
  margin-right: 0;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  #checkout-review-submit #review-buttons-container .button {
    margin: 10px 0 0;
    width: 100%;
  }
}

/* ====== CHECKOUT ADVANCED ====== */
/* ======
CHECKOUT ADVANCED
====== */
/*================================================================================
$ CHECKOUT ADVANCED
================================================================================*/
#co-advanced-form {
  width: 100%;
}
#co-advanced-form .page-title {
  left: 2.8%;
  top: 9%;
}
#co-advanced-form .page-title h1 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
}
#co-advanced-form ul.form-list-main {
  width: 39%;
}
#co-advanced-form ul.form-list-main li {
  list-style-type: none;
  margin-bottom: 25px;
  margin-left: 0;
}
#co-advanced-form ul.form-list-main li h4 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}
#co-advanced-form ul.form-list-main li .input-box input[type=text] {
  width: 100%;
}
#co-advanced-form .form-list-radio h4 {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  margin-top: 30px;
  text-transform: none;
}
#co-advanced-form .form-list-radio li.control.input-yes {
  margin-bottom: 10px;
}
#co-advanced-form .form-list-radio li.control.input-no {
  margin-bottom: 25px;
}
#co-advanced-form .form-list-radio li.control.input-yes, #co-advanced-form .form-list-radio li.control.input-no {
  list-style-type: none;
  margin-top: 0;
}
#co-advanced-form .form-list-radio li.control.input-yes .radio, #co-advanced-form .form-list-radio li.control.input-no .radio {
  width: 3%;
}
@media screen and (max-width: 768px) {
  #co-advanced-form .form-list-radio li.control.input-yes .radio, #co-advanced-form .form-list-radio li.control.input-no .radio {
    margin-right: 10px;
    top: 4px;
  }
}
#co-advanced-form .form-list-radio li.control.input-yes label, #co-advanced-form .form-list-radio li.control.input-no label {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  padding: 0;
}
#co-advanced-form hr.line-break {
  border: 1px solid #DDDDDD;
}
#co-advanced-form .form-list-agree li.control.input-terms {
  list-style-type: none;
  margin-top: 20px;
}
#co-advanced-form .form-list-agree li.control.input-terms input.required-entry {
  width: auto;
}
#co-advanced-form .form-list-agree li.control.input-terms .radio {
  width: 3%;
}
@media screen and (max-width: 768px) {
  #co-advanced-form .form-list-agree li.control.input-terms .radio {
    margin-right: 10px;
    top: 3px;
  }
}
#co-advanced-form .form-list-agree li.control.input-terms label {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  padding: 0;
}
@media screen and (max-width: 479px) {
  #co-advanced-form .form-list-agree li.control.input-terms label {
    font-size: 13px;
  }
}
#co-advanced-form .form-list-agree li.control.input-terms label span {
  color: #ed1f24;
}
#co-advanced-form .legal-text {
  margin-top: 20px;
}
#co-advanced-form .legal-text li {
  font-color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
#co-advanced-form .legal-text li span {
  color: #ed1f24;
}

/* ====== ONESTEPCHECKOUT PAGE ====== */
/* ======
CATEGORY
	- Onestopcheckout General
	- Onestopcheckout Left Side
	- Onestopcheckout Right Side
====== */
/*================================================================================
$ ONESTEPCHECKOUT GENERAL
================================================================================*/
@media screen and (max-width: 768px) {
  .onestepcheckout-index-index .main {
    width: 98% !important;
  }
}
@media screen and (max-width: 479px) {
  .onestepcheckout-index-index .main {
    width: 100% !important;
  }
}
.onestepcheckout-index-index h1.onestepcheckout-title {
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  margin-top: 36px;
}
.onestepcheckout-index-index p.onestepcheckout-description {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
  font-weight: 600 !important;
  margin-top: 30px;
  padding-bottom: 6px;
}
.onestepcheckout-index-index label {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  padding-bottom: 6px;
}
.onestepcheckout-index-index label span {
  color: #ed1f24;
}
.onestepcheckout-index-index input.input-text {
  height: 38px !important;
}

/*================================================================================
$ ONESTEPCHECKOUT LEFT SIDE
================================================================================*/
.onestepcheckout-index-index {
  /*================================================================================
  $ ONESTEPCHECKOUT RIGHT SIDE
  ================================================================================*/
}
.onestepcheckout-index-index .onestepcheckout-column-left {
  background: none !important;
  border-right: 1px solid #DDDDDD;
}
@media screen and (max-width: 1024px) {
  .onestepcheckout-index-index .onestepcheckout-column-left {
    width: 49% !important;
  }
}
@media screen and (max-width: 768px) {
  .onestepcheckout-index-index .onestepcheckout-column-left {
    border-right: none !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 479px) {
  .onestepcheckout-index-index .onestepcheckout-column-left {
    border-left: none;
    padding-right: 0px !important;
  }
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address p.onestepcheckout-numbers.onestepcheckout-numbers-1 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-left: 0;
  text-transform: capitalize;
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address .address-select {
  height: 38px !important;
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address li .input-box.input-different-shipping input {
  margin-top: 20px;
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address li .validate-select {
  height: 38px !important;
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address li .osc-short.input-box.input-company {
  width: 100%;
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address li .osc-short.input-box.input-company input {
  width: 98% !important;
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address li .osc-short.input-box.input-region label span.required {
  display: inline !important;
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address li.control input {
  width: 3%;
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address li.control label {
  font-weight: 600;
  padding: 0 0 0 4px;
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address .input-box.input-different-shipping input {
  width: 3%;
}
.onestepcheckout-index-index .onestepcheckout-column-left #billing_address .input-box.input-different-shipping label {
  font-weight: 600;
}
.onestepcheckout-index-index .onestepcheckout-column-left #shipping_address .shipping-address-title {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-left: 0;
  text-transform: capitalize;
}
.onestepcheckout-index-index .onestepcheckout-column-left #shipping_address .address-select {
  height: 38px !important;
}
.onestepcheckout-index-index .onestepcheckout-column-left #shipping_address .validate-select {
  height: 38px !important;
}
.onestepcheckout-index-index .onestepcheckout-column-left #shipping_address .osc-short.input-box.input-company {
  width: 100%;
}
.onestepcheckout-index-index .onestepcheckout-column-left #shipping_address .osc-short.input-box.input-company input {
  width: 98% !important;
}
.onestepcheckout-index-index .onestepcheckout-column-left #shipping_address .osc-short.input-box.input-region label span.required {
  display: inline !important;
}
.onestepcheckout-index-index .onestepcheckout-column-left #shipping_address input {
  width: 3%;
}
.onestepcheckout-index-index .onestepcheckout-column-left #co-advanced-form .page-title {
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  margin-top: 36px;
}
.onestepcheckout-index-index .onestepcheckout-column-left #co-advanced-form .page-title h1 {
  border-bottom: none;
  border-top: 1px solid #DDDDDD;
  font-weight: 600;
  padding-top: 24px;
}
.onestepcheckout-index-index .onestepcheckout-column-left #co-advanced-form .osc-short {
  width: 100%;
}
.onestepcheckout-index-index .onestepcheckout-column-left #co-advanced-form .osc-short input.input-text {
  width: 98% !important;
}
.onestepcheckout-index-index .onestepcheckout-column-left #co-advanced-form .osc-short.input-box.input-safety {
  margin-bottom: 30px;
}
.onestepcheckout-index-index .onestepcheckout-column-left #co-advanced-form textarea {
  height: 120px !important;
  max-width: none;
}
.onestepcheckout-index-index .onestepcheckout-column-left #co-advanced-form h4 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: none;
}
.onestepcheckout-index-index .onestepcheckout-column-left #co-advanced-form .form-list-radio li {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
}
.onestepcheckout-index-index .onestepcheckout-column-left #co-advanced-form .form-list-agree .control.input-terms {
  border-top: 1px solid #DDDDDD;
  padding-top: 18px;
}
.onestepcheckout-index-index .onestepcheckout-column-left #co-advanced-form .legal-text li {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .onestepcheckout-index-index .onestepcheckout-column-right {
    padding-left: 10px !important;
  }
}
@media screen and (max-width: 768px) {
  .onestepcheckout-index-index .onestepcheckout-column-right {
    border-left: none;
    padding-left: 20px;
    width: 100% !important;
  }
}
@media screen and (max-width: 479px) {
  .onestepcheckout-index-index .onestepcheckout-column-right {
    border-left: none;
    padding-left: 0px !important;
  }
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-shipping-method,
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 60px;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-shipping-method p.onestepcheckout-numbers.onestepcheckout-numbers-2 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-left: 0;
  text-transform: capitalize;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-shipping-method .shipment-methods dd {
  display: none;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-shipping-method .shipment-methods input {
  width: 3%;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-shipping-method .shipment-methods label span {
  color: #383b3c;
}
.onestepcheckout-index-index .onestepcheckout-column-right p.onestepcheckout-numbers.onestepcheckout-numbers-3 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-left: 0;
  text-transform: capitalize;
}
.onestepcheckout-index-index .onestepcheckout-column-right .payment-methods {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 6px;
}
.onestepcheckout-index-index .onestepcheckout-column-right .payment-methods #checkout-payment-method-load input {
  width: 3%;
}
.onestepcheckout-index-index .onestepcheckout-column-right .payment-methods #checkout-payment-method-load label {
  font-weight: 600;
  margin-bottom: 34px;
  padding: 0 0 0 14px;
}
.onestepcheckout-index-index .onestepcheckout-column-right p.onestepcheckout-numbers.onestepcheckout-numbers-4 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-left: 0;
  text-transform: capitalize;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .search-btn, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .update-total-btn {
  float: left;
  text-transform: none;
  width: 32%;
}
@media screen and (max-width: 479px) {
  .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .search-btn, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .update-total-btn {
    margin-right: 5px;
    width: 48%;
  }
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .search-btn span, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .update-total-btn span {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .register-btn, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .calculate-btn {
  background-repeat: no-repeat;
  background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/register-background.png);
  background-size: 100% 100%;
  border: none;
  border-radius: 0;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
  text-decoration: none;
  text-transform: none;
  float: left;
  margin-left: 10px;
  width: 36%;
}
@media screen and (max-width: 479px) {
  .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .register-btn, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .calculate-btn {
    margin-left: 0 !important;
    width: 50%;
  }
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .register-btn:hover, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .calculate-btn:hover, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .register-btn:active, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .calculate-btn:active, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .register-btn:focus, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .calculate-btn:focus {
  color: #000000;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .register-btn span, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-rewards .calculate-btn span {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary thead tr {
  border-top: 0;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary thead th {
  background-color: transparent;
  border: 0;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary thead .name, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary thead .qty, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary thead .total {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary tbody tr {
  border: 0;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary tbody tr td {
  border-bottom: 1px solid #DDDDDD;
  border-left: 0;
  border-right: 0;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary tbody tr .name {
  position: relative;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary tbody tr .name img {
  float: left;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  width: auto;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary tbody tr .name span {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 40px;
}
@media screen and (max-width: 479px) {
  .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-summary tbody tr .name span {
    float: left;
    position: initial;
    top: initial;
  }
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-totals tr td {
  border-bottom: none;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-totals tbody tr {
  border: 0;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-totals tbody tr td {
  border: 0;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-totals tbody .sub-total, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-totals tbody .vat {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-totals tbody .price, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-totals tbody .order-total {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
  font-weight: 600;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-totals tbody span.points-used {
  font-size: 12px !important;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-totals tbody .order-total-wrapper {
  border-bottom: 1px solid #DDDDDD;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-summary table.onestepcheckout-totals tbody .order-total-wrapper td {
  padding-bottom: 16px;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-coupons label {
  font-size: 18px !important;
  padding-bottom: 12px;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-coupons .button-box .register-btn, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-coupons .button-box .calculate-btn {
  background-color: transparent;
  background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/register-background.png);
  margin-top: 16px;
  margin-bottom: 54px;
  width: 30%;
}
@media screen and (max-width: 479px) {
  .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-coupons .button-box .register-btn, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-coupons .button-box .calculate-btn {
    width: 100%;
  }
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-coupons .button-box .register-btn span, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-coupons .button-box .calculate-btn span {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 14px;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-comments label {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 12px;
  padding-left: 0;
  text-transform: capitalize;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-comments textarea {
  height: 120px;
  max-width: none;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .search-btn, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .update-total-btn {
  float: left;
  width: 32%;
}
@media screen and (max-width: 479px) {
  .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .search-btn, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .update-total-btn {
    margin-right: 5px;
    width: 48%;
  }
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .search-btn span, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .update-total-btn span {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .register-btn, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .calculate-btn {
  background-repeat: no-repeat;
  background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/register-background.png);
  background-size: 100% 100%;
  border: none;
  border-radius: 0;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
  text-decoration: none;
  text-transform: none;
  float: left;
  margin-left: 10px;
  width: 36%;
}
@media screen and (max-width: 479px) {
  .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .register-btn, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .calculate-btn {
    margin-left: 0 !important;
    width: 50%;
  }
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .register-btn span, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .calculate-btn span {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
}
.onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .register-btn:hover, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .calculate-btn:hover, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .register-btn:active, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .calculate-btn:active, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .register-btn:focus, .onestepcheckout-index-index .onestepcheckout-column-right .onestepcheckout-place-order-wrapper .calculate-btn:focus {
  color: #000;
}

/* ====== SUPPLIER PORTAL ====== */
/* ======
CATEGORY
	- P2 Design Supplier Portal Uploads
	- P2 Design Supplier Portal View
====== */
/*================================================================================
$ P2 DESIGN SUPPLIER PORTAL UPLOADS
================================================================================*/
@media screen and (max-width: 479px) {
  .stardigital-supplierportal-uploads-add .main-container {
    margin-top: 40px;
  }
}

.supplierPortal .inner-wrapper .marketing_communication--wrapper {
  margin-top: 60px;
}
@media screen and (max-width: 479px) {
  .supplierPortal .inner-wrapper .marketing_communication--wrapper {
    margin-top: 0;
  }
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/backgrounds/metal-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 2px;
  padding: 20px 50px 30px 50px;
}
@media screen and (max-width: 479px) {
  .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content {
    padding: 20px;
  }
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content .supplierSubTitle > h2 {
  border-bottom: 2px dotted #000000;
  font-size: 32px;
  padding-bottom: 8px;
  padding-left: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content .supplierSubTitle > h2 {
    font-size: 28px;
  }
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content .supplierSubTitle > h2:before {
  left: 0;
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form li {
  float: left;
  margin-top: 0;
  width: 49%;
}
@media screen and (max-width: 479px) {
  .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form li {
    width: 100%;
  }
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form li:nth-child(even) {
  margin-left: 2%;
}
@media screen and (max-width: 479px) {
  .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form li:nth-child(even) {
    margin-left: 0;
  }
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form li input {
  border-radius: 2px;
  width: 100%;
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form li input::placeholder {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form li.upload-desc, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form li.file-upload {
  margin-left: 0;
  width: 100%;
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form textarea {
  border-radius: 2px;
  max-width: none;
  width: 100%;
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form textarea::placeholder {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .upload-file-button > input {
  padding: 0;
  padding-top: 10px;
  width: 70%;
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .upload-file-button > input::placeholder {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 769px) {
  .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .upload-file-button > input {
    max-width: none;
    width: 100%;
  }
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .upload-file-button > span {
  background-color: #000000;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/upload-icon.png");
  background-position: 86% 50%;
  background-repeat: no-repeat;
  background-size: 27px;
  color: #FFFFFF;
  text-transform: uppercase;
  width: 30%;
}
@media screen and (max-width: 769px) {
  .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .upload-file-button > span {
    max-width: none;
    width: 100%;
  }
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .btn-cart, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form #header-cart .minicart-wrapper .minicart-actions .grey-btn, #header-cart .minicart-wrapper .minicart-actions .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .grey-btn, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .checkout-button--collection, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, #header-cart .minicart-wrapper .minicart-actions .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .checkout-button--delivery {
  display: block;
  float: none;
  margin: 0 auto;
  margin-top: 30px;
  max-width: 280px;
}
@media screen and (max-width: 479px) {
  .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .btn-cart, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form #header-cart .minicart-wrapper .minicart-actions .grey-btn, #header-cart .minicart-wrapper .minicart-actions .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .grey-btn, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .checkout-button--collection, .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, #header-cart .minicart-wrapper .minicart-actions .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .checkout-button--delivery {
    max-width: none;
  }
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .additional_info {
  padding-top: 30px;
}
@media screen and (max-width: 769px) {
  .supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .additional_info {
    padding-top: 70px;
  }
}
.supplierPortal .inner-wrapper .marketing_communication--wrapper .marketing_communication--wrapper__content #supplier-uploader-form .additional_info h2 {
  border-bottom: 2px dotted #000000;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding-bottom: 8px;
}
.supplierPortal .inner-wrapper .need-our-help--wrapper {
  margin-top: 40px;
}
.supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/backgrounds/metal-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 2px;
  padding: 50px;
}
@media screen and (max-width: 479px) {
  .supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content {
    padding: 20px;
  }
}
.supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2 {
  border-bottom: 2px dotted #000000;
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 8px;
  padding-left: 20px;
  text-transform: uppercase;
}
.supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2:before {
  left: 0;
}
.supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content {
  margin-top: 20px;
}
.supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content p {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: 300;
}
.supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content p strong {
  font-weight: 600;
}
.supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content p a {
  color: #383b3c;
  font-weight: 300;
}
.supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content .view-uploads-btn {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 14px;
  max-width: 300px;
}
.supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content .view-uploads-btn:hover, .supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content .view-uploads-btn:active, .supplierPortal .inner-wrapper .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content .view-uploads-btn:focus {
  background: #FFFFFF;
  border-color: #000000;
  color: #000000;
}

/*================================================================================
$ P2 DESIGN SUPPLIER PORTAL VIEW
================================================================================*/
@media screen and (max-width: 479px) {
  .stardigital-supplierportal-uploads-view .cms-banner-container .inner_content {
    bottom: -54px;
    padding: 22px 26px;
  }
}
@media screen and (max-width: 479px) {
  .stardigital-supplierportal-uploads-view .main-container {
    margin-top: 40px;
  }
}
.stardigital-supplierportal-uploads-view .supplierPortal .supplierSubTitle {
  margin-top: 40px;
}
.stardigital-supplierportal-uploads-view .supplierPortal .supplierSubTitle > h2 {
  border-bottom: 2px dotted #000000;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  padding-bottom: 8px;
  padding-left: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .stardigital-supplierportal-uploads-view .supplierPortal .supplierSubTitle > h2 {
    font-size: 28px;
  }
}
.stardigital-supplierportal-uploads-view .supplierPortal .supplierSubTitle > h2:before {
  left: 0;
}
.stardigital-supplierportal-uploads-view .supplierPortal .mobile-text {
  display: none;
}
@media screen and (max-width: 479px) {
  .stardigital-supplierportal-uploads-view .supplierPortal .mobile-text {
    display: inline-block;
  }
}
.stardigital-supplierportal-uploads-view .supplierPortal .template.data-table.desktop {
  display: inline-table;
}
@media screen and (max-width: 479px) {
  .stardigital-supplierportal-uploads-view .supplierPortal .template.data-table.desktop {
    display: none;
  }
}
.stardigital-supplierportal-uploads-view .supplierPortal .template.data-table.mobile {
  display: none;
}
@media screen and (max-width: 479px) {
  .stardigital-supplierportal-uploads-view .supplierPortal .template.data-table.mobile {
    display: inline-block;
    margin-bottom: 0;
    overflow-y: scroll;
    width: 100%;
  }
}
.stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper {
  margin-top: 40px;
}
.stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/backgrounds/metal-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 2px;
  padding: 50px;
}
@media screen and (max-width: 479px) {
  .stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content {
    padding: 20px;
  }
}
.stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2 {
  border-bottom: 2px dotted #000000;
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 8px;
  padding-left: 20px;
  text-transform: uppercase;
}
.stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .needHelpTitle > h2:before {
  left: 0;
}
.stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content {
  margin-top: 20px;
}
.stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content p {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: 300;
}
.stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content p strong {
  font-weight: 600;
}
.stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content p a {
  color: #383b3c;
  font-weight: 300;
  text-decoration: none;
}
.stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content .view-uploads-btn {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 14px;
  max-width: 300px;
}
.stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content .view-uploads-btn:hover, .stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content .view-uploads-btn:active, .stardigital-supplierportal-uploads-view .supplierPortal .need-our-help--wrapper .need-our-help--wrapper__content .need-our-help--wrapper__inner-content .view-uploads-btn:focus {
  background: #FFFFFF;
  border-color: #000000;
  color: #000000;
}

/** All page **/
.saimaxx-store-link {
  display: none;
}

/** All Supplier pages **/
.supplierPortal {
  margin-bottom: 100px;
}
.supplierPortal .page-title h1 {
  border-bottom: 0;
  margin: 30px 0;
}
.supplierPortal .inner-wrapper-title {
  margin-bottom: 30px;
}
.supplierPortal .col-1 {
  width: 48%;
  float: left;
  padding: 0 2% 0 0;
}
.supplierPortal .col-1 input,
.supplierPortal .col-1 textarea {
  border: none;
  color: #383b3c;
  margin-bottom: 20px;
  height: 38px;
  width: 100%;
  max-width: none;
}
.supplierPortal .col-1 input::-webkit-input-placeholder,
.supplierPortal .col-1 textarea::-webkit-input-placeholder {
  color: #383b3c;
}
.supplierPortal .col-1 input:-moz-placeholder,
.supplierPortal .col-1 textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #383b3c;
}
.supplierPortal .col-1 input::-moz-placeholder,
.supplierPortal .col-1 textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #383b3c;
}
.supplierPortal .col-1 input:-ms-input-placeholder,
.supplierPortal .col-1 textarea:-ms-input-placeholder {
  color: #383b3c;
}
.supplierPortal .col-1 .forgotPassword {
  clear: both;
  float: right;
  margin-top: 10px;
  width: 31%;
}
.supplierPortal .col-1 .forgotPassword a {
  color: #383b3c;
  font-size: 14px;
}
.supplierPortal .col-1 .supplier-btn_old {
  margin-top: 25px;
  width: 37%;
  background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/register-background.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: none;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
  font-family: "Open Sans", "OpenSans", OpenSans, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  padding: 8px 20px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .supplierPortal .col-1 {
    width: 100% !important;
    padding: 0 !important;
  }
}
.supplierPortal .col-2 {
  width: 48%;
  float: right;
  padding: 0 0 0 2%;
}
@media screen and (max-width: 640px) {
  .supplierPortal .col-2 {
    margin-top: 30px;
    padding: 0 !important;
    width: 100% !important;
  }
}

/** Supplier login page **/
.stardigital-supplierportal-login-index .supplierSubTitle h2 {
  background-color: #ed1f24;
  color: #FFFFFF;
  width: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.stardigital-supplierportal-login-index .register-image {
  width: 100%;
}
.stardigital-supplierportal-login-index .inner-wrapper {
  background-color: #EDEDED;
  padding: 30px 40px;
  min-height: 240px;
}

/** Supplier add uploads page **/
.stardigital-supplierportal-uploads-add .supplierPortal .page-title h1,
.stardigital-supplierportal-uploads-view .supplierPortal .page-title h1 {
  color: #e4292a;
}
.stardigital-supplierportal-uploads-add .supplierPortal .supplierSubTitle_old h2,
.stardigital-supplierportal-uploads-view .supplierPortal .supplierSubTitle_old h2 {
  font-size: 24px;
  font-weight: 600;
  color: #4b4a49;
  border-bottom: 0;
  margin: 30px 0;
  text-transform: none;
}
.stardigital-supplierportal-uploads-add .supplierPortal .col-1,
.stardigital-supplierportal-uploads-view .supplierPortal .col-1 {
  width: 60%;
  padding-right: 1%;
}
.stardigital-supplierportal-uploads-add .supplierPortal .col-2,
.stardigital-supplierportal-uploads-view .supplierPortal .col-2 {
  width: 38%;
  padding-left: 1%;
}
.stardigital-supplierportal-uploads-add .supplierPortal .col-2 .view-uploads-btn,
.stardigital-supplierportal-uploads-view .supplierPortal .col-2 .view-uploads-btn {
  margin-top: 20px;
  display: inline-block;
  color: #ffffff;
  background-color: #CECECE;
  border: none;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  max-width: 198px;
  width: 100%;
  line-height: 1.25;
  padding: 8px 0;
  text-align: center;
  text-decoration: none;
}
.stardigital-supplierportal-uploads-add .supplierPortal .col-2 .view-uploads-btn:hover,
.stardigital-supplierportal-uploads-view .supplierPortal .col-2 .view-uploads-btn:hover {
  color: #4b4a49;
}
.stardigital-supplierportal-uploads-add .supplierPortal .col-2 .view-uploader-btn,
.stardigital-supplierportal-uploads-view .supplierPortal .col-2 .view-uploader-btn {
  display: inline-block;
  color: #4b4a49;
  background-color: #CECECE;
  border: none;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  max-width: 198px;
  width: 100%;
  line-height: 1.25;
  padding: 8px 0;
  text-align: center;
  text-decoration: none;
  float: right;
}
.stardigital-supplierportal-uploads-add .supplierPortal .col-2 .view-uploader-btn:hover,
.stardigital-supplierportal-uploads-view .supplierPortal .col-2 .view-uploader-btn:hover {
  color: #4b4a49;
}
.stardigital-supplierportal-uploads-add .supplierPortal .content p,
.stardigital-supplierportal-uploads-view .supplierPortal .content p {
  margin-bottom: 20px;
}
.stardigital-supplierportal-uploads-add .supplierPortal #supplier-uploader-form p,
.stardigital-supplierportal-uploads-view .supplierPortal #supplier-uploader-form p {
  font-size: 12px;
  width: 75%;
}
.stardigital-supplierportal-uploads-add .supplierPortal .supplier-btn_old,
.stardigital-supplierportal-uploads-view .supplierPortal .supplier-btn_old {
  background: #e4292a;
  background-image: none !important;
  max-width: 180px;
}
.stardigital-supplierportal-uploads-add .supplierPortal textarea,
.stardigital-supplierportal-uploads-view .supplierPortal textarea {
  padding: 10px 8px 0;
  height: auto !important;
  resize: none;
}
.stardigital-supplierportal-uploads-add .supplierPortal input, .stardigital-supplierportal-uploads-add .supplierPortal textarea,
.stardigital-supplierportal-uploads-view .supplierPortal input,
.stardigital-supplierportal-uploads-view .supplierPortal textarea {
  margin-bottom: 25px !important;
}
.stardigital-supplierportal-uploads-add .supplierPortal input::-webkit-input-placeholder, .stardigital-supplierportal-uploads-add .supplierPortal textarea::-webkit-input-placeholder,
.stardigital-supplierportal-uploads-view .supplierPortal input::-webkit-input-placeholder,
.stardigital-supplierportal-uploads-view .supplierPortal textarea::-webkit-input-placeholder {
  font-size: 12px;
  font-weight: 300;
}
.stardigital-supplierportal-uploads-add .supplierPortal input:-moz-placeholder, .stardigital-supplierportal-uploads-add .supplierPortal textarea:-moz-placeholder,
.stardigital-supplierportal-uploads-view .supplierPortal input:-moz-placeholder,
.stardigital-supplierportal-uploads-view .supplierPortal textarea:-moz-placeholder {
  /* Firefox 18- */
  font-size: 12px;
  font-weight: 300;
}
.stardigital-supplierportal-uploads-add .supplierPortal input::-moz-placeholder, .stardigital-supplierportal-uploads-add .supplierPortal textarea::-moz-placeholder,
.stardigital-supplierportal-uploads-view .supplierPortal input::-moz-placeholder,
.stardigital-supplierportal-uploads-view .supplierPortal textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 12px;
  font-weight: 300;
}
.stardigital-supplierportal-uploads-add .supplierPortal input:-ms-input-placeholder, .stardigital-supplierportal-uploads-add .supplierPortal textarea:-ms-input-placeholder,
.stardigital-supplierportal-uploads-view .supplierPortal input:-ms-input-placeholder,
.stardigital-supplierportal-uploads-view .supplierPortal textarea:-ms-input-placeholder {
  font-size: 12px;
  font-weight: 300;
}
.stardigital-supplierportal-uploads-add .supplierPortal input,
.stardigital-supplierportal-uploads-view .supplierPortal input {
  height: 42px !important;
}
.stardigital-supplierportal-uploads-add .supplierPortal .upload-file-button,
.stardigital-supplierportal-uploads-view .supplierPortal .upload-file-button {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  height: 42px;
}
.stardigital-supplierportal-uploads-add .supplierPortal .upload-file-button span,
.stardigital-supplierportal-uploads-view .supplierPortal .upload-file-button span {
  position: absolute;
  background-color: #ffd800;
  height: 100%;
  line-height: 42px;
  width: 180px;
  text-align: center;
  max-width: 37%;
}
.stardigital-supplierportal-uploads-add .supplierPortal .upload-file-button span:hover,
.stardigital-supplierportal-uploads-view .supplierPortal .upload-file-button span:hover {
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .stardigital-supplierportal-uploads-add .supplierPortal .upload-file-button span,
  .stardigital-supplierportal-uploads-view .supplierPortal .upload-file-button span {
    width: 130px;
  }
}
.stardigital-supplierportal-uploads-add .supplierPortal .upload-file-button input[type="file"],
.stardigital-supplierportal-uploads-view .supplierPortal .upload-file-button input[type="file"] {
  padding: 13px 0 0 108px;
  color: #4b4a49;
  text-indent: -9999px;
}
@media screen and (max-width: 480px) {
  .stardigital-supplierportal-uploads-add .supplierPortal .upload-file-button input[type="file"],
  .stardigital-supplierportal-uploads-view .supplierPortal .upload-file-button input[type="file"] {
    padding: 10px 0 0 50px;
  }
}
.stardigital-supplierportal-uploads-add .supplierPortal hr,
.stardigital-supplierportal-uploads-view .supplierPortal hr {
  border: 0;
  border-bottom: 1px solid #cecdcd;
  margin-bottom: 50px;
}
.stardigital-supplierportal-uploads-add .supplierPortal table,
.stardigital-supplierportal-uploads-view .supplierPortal table {
  margin-bottom: 50px;
}
.stardigital-supplierportal-uploads-add .supplierPortal table a,
.stardigital-supplierportal-uploads-view .supplierPortal table a {
  color: #e4292a;
}
.stardigital-supplierportal-uploads-add .supplierPortal .centerText,
.stardigital-supplierportal-uploads-view .supplierPortal .centerText {
  text-align: center;
}

/* ====== ORDER CONFIRMATION PAGE ====== */
/* ======
ORDER CONFIRMATION
	- General
	- Empty Shopping Cart
====== */
/*================================================================================
$ ORDER CONFIRMATION GENERAL
================================================================================*/
.checkout-onepage-success .breadcrumbs {
  text-align: left;
}
.checkout-onepage-success p.back-link {
  width: 6%;
}
@media screen and (max-width: 1024px) {
  .checkout-onepage-success p.back-link {
    width: 7% !important;
  }
}
@media screen and (max-width: 768px) {
  .checkout-onepage-success p.back-link {
    width: 10% !important;
  }
}
@media screen and (max-width: 669px) {
  .checkout-onepage-success p.back-link {
    width: 11% !important;
  }
}
@media screen and (max-width: 479px) {
  .checkout-onepage-success p.back-link {
    width: 20% !important;
  }
}
.checkout-onepage-success p.back-link img {
  padding-right: 2px;
}
.checkout-onepage-success .page-title {
  margin-top: 24px;
}
.checkout-onepage-success .page-title h1 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 600;
  padding-bottom: 24px;
  text-align: left;
  text-transform: capitalize;
}
.checkout-onepage-success h2.sub-title {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  padding-bottom: 12px;
  padding-top: 16px;
  text-align: left;
  text-transform: capitalize;
}
.checkout-onepage-success p {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  margin-bottom: 8px !important;
  text-align: left;
}
.checkout-onepage-success p strong {
  color: #E42629;
  font-weight: 600;
}
.checkout-onepage-success p span {
  font-weight: 600;
}
.checkout-onepage-success p a {
  color: #383b3c;
  font-weight: 600;
}
.checkout-onepage-success .click_here a {
  color: #E42629;
  font-weight: 600;
  text-decoration: none;
}
.checkout-onepage-success .buttons-set {
  margin-top: 30px;
}
.checkout-onepage-success .buttons-set .button {
  background: #FFD800;
  box-shadow: 1.68px 1.68px 1.68px 0px rgba(0, 0, 0, 0.2);
  float: left;
  max-width: 197px;
  width: 100%;
}
.checkout-onepage-success .buttons-set .button span span {
  color: #383b3c;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
}

.account-create {
  float: left;
  width: 50%;
}
@media screen and (max-width: 899px) {
  .account-create {
    float: none;
    width: 100%;
  }
}
.account-create label {
  font-size: 14px;
  font-weight: 600;
  color: #4A4A49;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.account-create label:first-child {
  width: auto !important;
}
.account-create p.back-link {
  background-color: #EDEDED;
  background-position: 9px 10px;
  background-repeat: no-repeat;
  background-size: 16px;
  padding: 0px 10px;
  width: 13%;
}
.account-create p.back-link a {
  color: #383b3c;
  display: inline;
  font-size: 12px;
  font-weight: bold;
  vertical-align: middle;
}
.account-create p.back-link small {
  vertical-align: middle;
}
.account-create p.back-link img {
  display: inline;
  padding-bottom: 4px;
  vertical-align: middle;
}
@media screen and (max-width: 769px) {
  .account-create p.back-link {
    width: 20%;
  }
}
@media screen and (max-width: 479px) {
  .account-create p.back-link {
    padding: 10px;
    width: max-content;
  }
}
.account-create .page-title h1 {
  border: none;
  font-weight: 400;
  text-transform: none;
  margin: 30px 0;
}
.account-create .info-title {
  border-bottom: 1px solid #CECECE;
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.account-create .form-list .signin-title {
  border-bottom: 1px solid #CECECE;
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.account-create .form-list li .input-box {
  max-width: 520px;
}
.account-create .form-list li .input-box input {
  height: 45px;
}
.account-create .form-list .control {
  margin-top: 0;
  padding: 10px 0;
}
.account-create .form-list .control .input-box {
  margin: 0;
}
.account-create .form-list .control .input-box input {
  height: auto;
  margin-right: 15px;
  width: 100%;
}
.account-create .form-list .control label {
  padding: 12px 10px;
}

.account-right {
  float: left;
  margin-left: 10%;
  width: 40%;
}
@media screen and (max-width: 900px) {
  .account-right {
    float: none;
    margin: 0;
    width: 100%;
  }
}
.account-right label {
  font-size: 14px;
}
.account-right label:first-child {
  width: auto !important;
}
.account-right .top-image {
  margin-top: 12%;
  position: relative;
  text-align: left;
}
.account-right .top-image img {
  display: inline-block;
}
@media screen and (max-width: 459px) {
  .account-right .top-image img {
    width: 100%;
  }
}
.account-right .top-image .content {
  position: absolute;
  top: 0;
  Padding: 30px;
  width: 100%;
  text-align: left;
}
.account-right .top-image .content h1 {
  font-weight: 600;
  text-transform: none;
}
@media screen and (max-width: 479px) {
  .account-right .top-image .content h1 {
    font-size: 26px;
  }
}
.account-right .top-image .content h2 {
  text-transform: none;
}
@media screen and (max-width: 479px) {
  .account-right .top-image .content h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .account-right .top-image .content {
    padding: 29px;
    bottom: 3%;
    text-align: left;
    width: 50%;
    position: absolute;
  }
}
@media screen and (max-width: 700px) {
  .account-right .top-image .content {
    width: 67%;
  }
}
@media screen and (max-width: 549px) {
  .account-right .top-image .content {
    width: 80%;
  }
}
@media screen and (max-width: 459px) {
  .account-right .top-image .content {
    padding: 25px 10px;
    width: 100%;
  }
}
.account-right .middle-content {
  margin-top: 20px;
  font-weight: 300;
}
.account-right ul.right-options li {
  float: left;
  list-style: none;
  margin: 15px 0 0;
  width: 100%;
}
.account-right ul.right-options li div {
  float: left;
  margin: 10px 0 0;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .account-right ul.right-options li div {
    padding-bottom: 10px;
  }
}
.account-right ul.right-options li div label {
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.account-right ul.right-options li div label em {
  color: #e4292a;
  font-style: normal;
}
.account-right ul.right-options li div .upload-field {
  height: 36px;
  margin: 10px 0 0;
  position: relative;
  width: 100% !important;
}
.account-right ul.right-options li div .upload-field:hover {
  cursor: pointer;
}
.account-right ul.right-options li div .upload-field em {
  color: #DF280A;
  float: none;
  margin-left: 3px;
  position: static;
}
.account-right ul.right-options li div .upload-field span.upload-field__button {
  background-color: #ffec38;
  height: 100%;
  float: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 36px;
  max-width: 37%;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .account-right ul.right-options li div .upload-field span.upload-field__button {
    max-width: 50%;
  }
}
.account-right ul.right-options li div .upload-field span.upload-field__filetext {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  height: 100%;
  float: left;
  font-size: 14px;
  font-weight: 300;
  line-height: 36px;
  max-width: 63%;
  padding: 0 10px;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .account-right ul.right-options li div .upload-field span.upload-field__filetext {
    max-width: 50%;
  }
}
.account-right ul.right-options li div .upload-field input[type="file"] {
  position: fixed;
  top: -9999px;
}
.account-right ul.right-options li input {
  padding-bottom: 8px;
}
.account-right .file-message {
  display: inline-block;
  margin: 20px 0 18px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}
.account-right .buttons-set {
  border-top: none;
  margin-left: 0 !important;
  margin-top: 8px;
  max-width: 400px !important;
  padding: 0;
  width: 100%;
}
.account-right .buttons-set button.button {
  float: left;
  padding: 10px 20px;
}
.account-right .buttons-set button.button span {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 1px;
}

/* ====== ACCOUNT GENERAL ====== */
/* ======
ACCOUNT GENERAL
	- General
	- Override
====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.customer-account .breadcrumbs {
  display: none !important;
}

.my-account .account-section-title {
  border-bottom: 2px dotted #000000;
  margin: 30px 0 30px 25px;
  width: calc(100% - 25px);
}
@media screen and (max-width: 979px) {
  .my-account .account-section-title {
    margin: 30px 0;
    width: 100%;
  }
}
.my-account .account-section-title > h1,
.my-account .account-section-title > h2 {
  color: #373A3B !important;
  font-size: 32px;
}
.my-account .account-section-form {
  background-color: #F7F7F7;
  margin-bottom: 30px;
  padding: 50px 85px;
}
@media screen and (max-width: 899px) {
  .my-account .account-section-form {
    padding: 50px;
  }
}
@media screen and (max-width: 770px) {
  .my-account .account-section-form {
    padding: 25px;
  }
}
.my-account .account-section-form .fieldset {
  margin-top: 0 !important;
}
.my-account .account-section-form select {
  -webkit--webkit-appearance: none;
  -moz--webkit-appearance: none;
  -ms--webkit-appearance: none;
  -o--webkit-appearance: none;
  -webkit-appearance: none;
  background-color: #FFFFFF;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/downward-faq-arrow.png");
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border: none;
  display: block;
  font-weight: lighter;
  margin: 0;
  max-width: 590px;
  padding: 10px 80px 10px 20px;
  width: 100%;
}
.my-account .account-section-form .form-list li.fields label, .my-account .account-section-form .form-list li.wide label {
  display: none;
}
.my-account .account-section-form .form-list li.fields select, .my-account .account-section-form .form-list li.wide select {
  max-width: none;
}
.my-account .account-section-form .form-list li.fields .field {
  float: left;
  margin-left: 2%;
  margin-top: 0;
  width: 32%;
}
@media screen and (max-width: 599px) {
  .my-account .account-section-form .form-list li.fields .field {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}
.my-account .account-section-form .form-list li.fields .field:first-child {
  margin-left: 0;
}
.my-account .account-section-form.account-section-form--pointssummary > p {
  font-weight: 400;
  text-transform: uppercase;
}
.my-account .account-section-form.account-section-form--pointssummary > p > b {
  font-weight: 800;
}
.my-account .data-table a {
  color: #ed1f24;
  text-transform: none;
}
.my-account .buttons-set {
  margin-top: 20px;
  padding-bottom: 0;
  text-align: right;
}
.my-account .buttons-set button,
.my-account .buttons-set .button {
  border-radius: 3px;
  display: inline-block;
  float: none;
  min-width: 140px;
  padding: 5px 10px;
  text-align: center;
  vertical-align: middle;
}

/*================================================================================
$ OVERRIDE
================================================================================*/
.customer-account-forgotpassword .cms-banner-container.desktop .inner_banner, .customer-account-login .cms-banner-container.desktop .inner_banner {
  display: block;
}
@media screen and (max-width: 669px) {
  .customer-account-forgotpassword .cms-banner-container.desktop .inner_banner, .customer-account-login .cms-banner-container.desktop .inner_banner {
    display: none;
  }
}
.customer-account-forgotpassword .cms-banner-container.mobile .inner_banner, .customer-account-login .cms-banner-container.mobile .inner_banner {
  display: none;
}
@media screen and (max-width: 669px) {
  .customer-account-forgotpassword .cms-banner-container.mobile .inner_banner, .customer-account-login .cms-banner-container.mobile .inner_banner {
    display: block;
  }
  .customer-account-forgotpassword .cms-banner-container.mobile .inner_banner .inner_content, .customer-account-login .cms-banner-container.mobile .inner_banner .inner_content {
    bottom: -20px;
    padding: 22px 34px;
  }
  .customer-account-forgotpassword .cms-banner-container.mobile .inner_banner .inner_content > h1 strong, .customer-account-login .cms-banner-container.mobile .inner_banner .inner_content > h1 strong {
    font-weight: normal;
  }
}

@media screen and (max-width: 479px) {
  .customer-account-forgotpassword .buttons-set .submit-reset-btn {
    margin-left: 0;
  }
}

/* ====== ACCOUNT DASHBOARD ====== */
/* ======
ACCOUNT DASHBOARD
	- P2 Design
    - General
    - Sidebar
====== */
/*================================================================================
$ P2 DESIGN
================================================================================*/
.customer-account-index .cms-banner-container.desktop .inner_banner {
  display: block;
}
@media screen and (max-width: 669px) {
  .customer-account-index .cms-banner-container.desktop .inner_banner {
    display: none;
  }
}
.customer-account-index .cms-banner-container.mobile .inner_banner {
  display: none;
}
@media screen and (max-width: 669px) {
  .customer-account-index .cms-banner-container.mobile .inner_banner {
    display: block;
  }
  .customer-account-index .cms-banner-container.mobile .inner_banner > img {
    min-height: 267px;
  }
  .customer-account-index .cms-banner-container.mobile .inner_banner .inner_content > h1 strong {
    font-weight: normal;
  }
}
@media screen and (max-width: 479px) {
  .customer-account-index .cms-banner-container .inner_banner .inner_content {
    bottom: -1px;
  }
}
@media screen and (max-width: 479px) {
  .customer-account-index .col-left.sidebar.col-left-first {
    padding: 0;
  }
}
.customer-account-index .col-main .my-account .dashboard .page-title {
  display: none;
}
.customer-account-index .col-main .my-account .dashboard .box-account {
  border-bottom: none;
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-head {
  border-bottom: 2px dotted #000000;
  margin-bottom: 30px;
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-head > h2 {
  color: #373A3B !important;
  font-size: 32px;
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-head > a {
  border-radius: 2px;
  float: right;
  font-size: 14px;
  padding: 11px 20px;
}
@media screen and (max-width: 479px) {
  .customer-account-index .col-main .my-account .dashboard .box-account .box-head > a {
    float: none;
    max-width: none;
    width: 100%;
  }
}
.customer-account-index .col-main .my-account .dashboard .box-account .data-table.orders thead tr th {
  background-color: #ed1f24;
  color: #FFFFFF;
}
.customer-account-index .col-main .my-account .dashboard .box-account .data-table.orders thead tr th.ship {
  width: 20%;
}
.customer-account-index .col-main .my-account .dashboard .box-account .data-table.orders tbody td span a {
  color: #ed1f24;
  text-decoration: none;
}
.customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner > p {
  font-weight: 400;
  text-transform: uppercase;
}
.customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner > p > b {
  font-weight: 800;
}
.customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner > p > a {
  color: #ed1f24;
  font-weight: 400;
  text-decoration: none;
}
.customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner > p.rewards-text {
  border-bottom: 2px dotted #000000;
  padding-bottom: 14px;
  width: 54%;
}
@media screen and (max-width: 1024px) {
  .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner > p.rewards-text {
    width: 65%;
  }
}
@media screen and (max-width: 479px) {
  .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner > p.rewards-text {
    width: 65%;
  }
}
.customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner > p.rewards-link {
  padding-top: 6px;
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner {
  background-color: #F7F7F7;
  border-radius: 6px;
  padding: 50px;
}
@media screen and (max-width: 479px) {
  .customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner {
    padding: 20px;
  }
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content > p, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set > p, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner > p {
  font-style: normal;
  font-weight: 300;
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .col-1, .customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .col-2, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .col-1, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .col-2, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .col-1, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .col-2 {
  padding: 0;
  width: 48%;
}
@media screen and (max-width: 479px) {
  .customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .col-1, .customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .col-2, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .col-1, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .col-2, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .col-1, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .col-2 {
    margin-bottom: 20px;
    width: 100%;
  }
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .box-title > h3, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .box-title > h3, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .box-title > h3 {
  border-bottom: 2px dotted #000000;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding-bottom: 8px;
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .box-content > p, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .box-content > p, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .box-content > p {
  font-style: normal;
  font-weight: 300;
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .box-content > address, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .box-content > address, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .box-content > address {
  font-style: normal;
  font-weight: 300;
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .box-content > a, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .box-content > a, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .box-content > a {
  border-radius: 2px;
  font-size: 14px;
  padding: 11px 20px;
  margin-top: 10px;
}
@media screen and (max-width: 479px) {
  .customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .box-content > a, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .box-content > a, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .box-content > a {
    max-width: none;
    width: 100%;
  }
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .box-content > a.change-password, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .box-content > a.change-password, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .box-content > a.change-password {
  background-color: #363a3b;
  border-color: #363a3b;
}
.customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .box-content > a.change-password:hover, .customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .box-content > a.change-password:active, .customer-account-index .col-main .my-account .dashboard .box-account .box-creditbalance__content .box-content > a.change-password:focus, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .box-content > a.change-password:hover, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .box-content > a.change-password:active, .customer-account-index .col-main .my-account .dashboard .box-account .col2-set .box-content > a.change-password:focus, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .box-content > a.change-password:hover, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .box-content > a.change-password:active, .customer-account-index .col-main .my-account .dashboard .box-account .reward-points-content__inner .box-content > a.change-password:focus {
  background-color: #FFFFFF;
  border-color: #363a3b;
  color: #363a3b;
}
.customer-account-index .col-main .my-account .dashboard .box-account.reward-points-box-account .box-head > a {
  max-width: 280px;
}
@media screen and (max-width: 479px) {
  .customer-account-index .col-main .my-account .dashboard .box-account.reward-points-box-account .box-head > a {
    float: none;
    max-width: none;
    width: 100%;
  }
}

/*================================================================================
$ GENERAL
================================================================================*/
.customer-account .col-left.sidebar,
.customer-account .col-right.sidebar {
  float: right;
  padding: 0;
}
@media screen and (max-width: 770px) {
  .customer-account .col-left.sidebar,
  .customer-account .col-right.sidebar {
    margin-bottom: 30px;
    padding: 0 25px;
    width: 100%;
  }
}
.customer-account .col-main {
  float: left;
  padding-left: 0;
  padding-right: 50px;
}
@media screen and (max-width: 899px) {
  .customer-account .col-main {
    padding-right: 25px;
  }
}
@media screen and (max-width: 770px) {
  .customer-account .col-main {
    padding: 0;
    width: 100%;
  }
}

/*================================================================================
$ SIDEBAR
================================================================================*/
.customer-account .block.block-account .block-title,
.customer-account .block.block-account .block-title.active {
  display: none;
}
@media screen and (max-width: 770px) {
  .customer-account .block.block-account .block-title,
  .customer-account .block.block-account .block-title.active {
    display: block;
  }
}
@media screen and (max-width: 770px) {
  .customer-account .block.block-account .block-title strong,
  .customer-account .block.block-account .block-title.active strong {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/plus-icon-new.png");
    background-position: 97% 50%;
    background-repeat: no-repeat;
    background-size: 20px;
    font-size: 17px;
    font-weight: normal;
    padding: 10px 15px;
    text-transform: none;
  }
  .customer-account .block.block-account .block-title strong:before, .customer-account .block.block-account .block-title strong:after,
  .customer-account .block.block-account .block-title.active strong:before,
  .customer-account .block.block-account .block-title.active strong:after {
    display: none;
  }
}
@media screen and (max-width: 770px) {
  .customer-account .block.block-account .block-title.active strong {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/minus-icon-new.png");
  }
}
.customer-account .block-account {
  background-color: #F7F7F7 !important;
}
.customer-account .block-account .block-content ul {
  padding: 25px 35px;
  padding-bottom: 40px;
}
@media screen and (max-width: 899px) {
  .customer-account .block-account .block-content ul {
    padding: 15px;
  }
}
.customer-account .block-account .block-content ul li.current {
  border-bottom-color: #ed1f24;
}
.customer-account .block-account .block-content ul li.current strong {
  color: #ed1f24;
  font-weight: 600;
}
.customer-account .block-account .block-content ul li {
  border-bottom: 2px dotted #E5E5E5;
  margin: 0;
  padding: 12px 0;
  text-transform: uppercase;
}
.customer-account .block-account .block-content ul li:first-child {
  padding-top: 0;
}
.customer-account .block-account .block-content ul li a:hover {
  color: #ed1f24;
  font-weight: 600;
}

.customer-account .col-main .my-account .dashboard_old .page-title {
  left: 0;
  position: relative;
  top: 0;
}
.customer-account .col-main .my-account .dashboard_old .page-title h1 {
  border: none;
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 600;
  margin-top: 6px;
  text-transform: none;
  padding: 0;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-recent .box-head {
  padding-bottom: 20px;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-recent .box-head h2 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-recent .box-head a {
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-recent table.data-table {
  margin-top: 20px;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-recent table.data-table thead tr th {
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
}
@media screen and (max-width: 519px) {
  .customer-account .col-main .my-account .dashboard_old .box-account.box-recent table.data-table thead tr th {
    font-size: 12px;
  }
}
@media screen and (max-width: 519px) {
  .customer-account .col-main .my-account .dashboard_old .box-account.box-recent table.data-table tbody tr td {
    font-size: 11px;
  }
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-recent table.data-table tbody tr td span.nobr {
  white-space: nowrap;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-recent table.data-table tbody tr td a {
  color: #ed1f24;
  text-transform: none;
}
@media screen and (max-width: 519px) {
  .customer-account .col-main .my-account .dashboard_old .box-account.box-recent table.data-table {
    display: inline-block;
  }
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .box-head {
  padding-bottom: 20px;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .box-head h2 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 20px;
  text-transform: none;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .col2-set .box .box-title {
  margin-bottom: 20px;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .col2-set .box .box-title h3 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .col2-set .box .box-content a {
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .col2-set .box .box-content address {
  font-style: normal;
  margin-bottom: 10px;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .col2-set .box .box-content .break {
  color: #ed1f24;
  display: inline-block;
  width: 3%;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .col2-set .box .box-content p {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-style: normal;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .col2-set .box .box-content p.name {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  margin-bottom: 10px;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .col2-set .box .box-content p.email {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  margin-bottom: 20px;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .col2-set .col-2 {
  padding-right: 0;
}
.customer-account .col-main .my-account .dashboard_old .box-account.box-info .col2-set .col-2 .box-content p {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  margin-bottom: 20px;
}
.customer-account .col-main .my-account .dashboard_old .box-creditbalance .creditbalance__content {
  padding: 10px 0;
}
.customer-account .col-main .my-account .dashboard_old .reward-points-box-account .box-head > a {
  color: #ed1f24;
  text-transform: none;
}
.customer-account .col-main .my-account .dashboard_old .reward-points-box-account .reward-points-content__inner {
  padding: 10px 0;
}
.customer-account .col-main .my-account #savedorders-table a {
  color: #e4292a;
}

/* ====== ADDRESS BOOK TEMPLATE ====== */
/* ======
ADDRESS BOOK TEMPLATE
	- General
	- Edit Address
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.col-main .my-account .messages .success-msg li {
  float: left;
  width: 100%;
}
.col-main .my-account .addresses-list {
  font-size: 16px;
}
.col-main .my-account .addresses-list .addresses-primary h2 {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 20px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: none;
  padding-bottom: 30px;
}
@media screen and (max-width: 479px) {
  .col-main .my-account .addresses-list .addresses-primary h2 {
    padding-bottom: 0;
  }
}
.col-main .my-account .addresses-list .addresses-primary .item h3 {
  font-style: normal;
  font-size: 16px;
  margin-bottom: 30px;
  text-transform: none;
}
@media screen and (max-width: 479px) {
  .col-main .my-account .addresses-list .addresses-primary .item h3 {
    margin-top: 30px;
  }
}
.col-main .my-account .addresses-list .addresses-primary .item p a {
  color: #ed1f24;
  font-size: 13px;
}
.col-main .my-account .addresses-list .addresses-additional h2 {
  font-size: 20px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: none;
  padding-bottom: 14px;
}
.col-main .my-account .addresses-list .addresses-additional ol li.item h3 {
  font-style: normal;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 30px;
  text-transform: none;
}
.col-main .my-account .addresses-list .addresses-additional ol li.item a {
  color: #ed1f24;
  font-size: 13px;
}
.col-main .my-account .addresses-list .addresses-additional ol li.item span {
  color: #383b3c;
}
.col-main .my-account .address {
  float: left;
  margin-bottom: 30px;
  max-width: none !important;
  width: auto;
}

/* ====== ORDER INFORMATION ====== */
/* ======
ORDER INFORMATION
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.sales-order-view .account-section-title a.link-reorder,
.sales-order-view .account-section-title a.link-print {
  color: #ed1f24;
}

.sales-order-view .main {
  margin-top: 50px;
}
.sales-order-view .main .my-account .page-title h1 {
  border: 0;
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  font-weight: 500;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .sales-order-view .main .my-account .page-title h1 {
    margin-bottom: 24px;
  }
}
.sales-order-view .main .my-account .page-title .link-reorder, .sales-order-view .main .my-account .page-title .link-print {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  color: #000000;
}
.sales-order-view .main .my-account .page-title .link-reorder:hover, .sales-order-view .main .my-account .page-title .link-print:hover {
  color: #ffec38;
  text-decoration: none;
}
.sales-order-view .main .my-account .order-info {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sales-order-view .main .my-account .order-info {
    padding-top: 20px;
  }
}
.sales-order-view .main .my-account .order-info dt {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
}
.sales-order-view .main .my-account .order-info dd ul#order-info-tabs li {
  background-color: #f8f8f8;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  padding: 10px;
}
.sales-order-view .main .my-account .order-info dd ul#order-info-tabs li a {
  color: #000000;
}
.sales-order-view .main .my-account .order-info dd ul#order-info-tabs li a:hover {
  color: #ed1f24;
  text-decoration: none;
}
.sales-order-view .main .my-account .order-info dd ul#order-info-tabs li.last {
  margin: 0;
}
.sales-order-view .main .my-account p.order-date {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  text-transform: none;
}
.sales-order-view .main .my-account .order-info-box address {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
}
.sales-order-view .main .my-account .order-items h2 {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
}
.sales-order-view .main .my-account .order-items .data-table thead th:nth-child(1) {
  width: 58%;
}
.sales-order-view .main .my-account .order-items .data-table thead th:nth-child(4) {
  width: 18%;
}
.sales-order-view .main .my-account .order-items .data-table tfoot td {
  border: 0;
}
.sales-order-view .main .my-account .order-items .buttons-set p.back-link a {
  color: #000000;
}
.sales-order-view .main .my-account .order-items .buttons-set p.back-link a:hover {
  color: #ffec38;
  text-decoration: none;
}

/* ====== P2 DESIGN ====== */
/* ======
P2 DESIGN
    - General
====== */
/*================================================================================
P2 DESIGN
================================================================================*/
.customer-account-create .cms-banner-container.additional {
  display: none;
}
.customer-account-create .cms-banner-container.desktop .inner_banner {
  display: block;
}
@media screen and (max-width: 669px) {
  .customer-account-create .cms-banner-container.desktop .inner_banner {
    display: none;
  }
}
.customer-account-create .cms-banner-container.mobile .inner_banner {
  display: none;
}
@media screen and (max-width: 669px) {
  .customer-account-create .cms-banner-container.mobile .inner_banner {
    display: block;
  }
  .customer-account-create .cms-banner-container.mobile .inner_banner .inner_content {
    bottom: -40px;
    padding: 22px 34px;
  }
  .customer-account-create .cms-banner-container.mobile .inner_banner .inner_content > h1 strong {
    font-weight: normal;
  }
}
@media screen and (max-width: 479px) {
  .customer-account-create .main-container {
    margin-top: 40px;
    padding: 0;
  }
}
.customer-account-create .account-register {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/backgrounds/metal-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-bottom: 60px;
  margin-top: 60px;
  padding: 60px 50px 60px 50px;
}
@media screen and (max-width: 479px) {
  .customer-account-create .account-register {
    margin-top: 35px;
    padding: 18px;
  }
}
.customer-account-create .account-register h2 {
  border-bottom: 2px dotted #000000;
  font-size: 32px;
  font-weight: 500;
  padding-bottom: 14px;
  padding-left: 20px;
  text-transform: uppercase;
}
.customer-account-create .account-register h2:before {
  left: 0;
}
@media screen and (max-width: 479px) {
  .customer-account-create .account-register h2 {
    font-size: 26px;
  }
}
.customer-account-create .account-register label {
  padding-left: 0;
}
.customer-account-create .account-register .sign-in {
  float: left;
  margin-top: 50px;
  width: 100%;
}
.customer-account-create .account-register .sign-in .signup-form_wrapper li {
  width: 100%;
}
.customer-account-create .account-register .sign-in .signup-form_wrapper li .field {
  float: left;
  margin-top: 0;
  width: 49%;
}
@media screen and (max-width: 479px) {
  .customer-account-create .account-register .sign-in .signup-form_wrapper li .field {
    width: 100%;
  }
}
.customer-account-create .account-register .sign-in .signup-form_wrapper li .field .input-box {
  width: 100%;
}
.customer-account-create .account-register .approved_form {
  margin-top: 50px;
}
.customer-account-create .account-register .approved_form .middle-content {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 18px;
}
@media screen and (max-width: 479px) {
  .customer-account-create .account-register .approved_form .middle-content {
    text-align: center;
  }
}
.customer-account-create .account-register .approved_form .right-options .input-box {
  margin-right: 0;
  margin-top: 20px;
}
.customer-account-create .account-register .approved_form .right-options .input-box .upload-field {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}
.customer-account-create .account-register .approved_form .right-options .input-box .upload-field input {
  height: 42px;
  padding: 0;
  padding-top: 10px;
  text-indent: -9999px;
  width: 70%;
}
@media screen and (max-width: 479px) {
  .customer-account-create .account-register .approved_form .right-options .input-box .upload-field input {
    width: 100%;
  }
}
.customer-account-create .account-register .approved_form .right-options .input-box .upload-field .validation-advice {
  position: absolute;
}
.customer-account-create .account-register .approved_form .right-options .input-box .upload-field span {
  background-color: #000000;
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/upload-icon.png");
  background-position: 86% 50%;
  background-repeat: no-repeat;
  background-size: 27px;
  color: #FFFFFF;
  font-size: 17px;
  height: 100%;
  line-height: 42px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 30%;
}
@media screen and (max-width: 479px) {
  .customer-account-create .account-register .approved_form .right-options .input-box .upload-field span {
    margin-top: 10px;
    width: 100%;
  }
}
.customer-account-create .account-register .approved_form .buttons-set {
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .customer-account-create .account-register .approved_form .buttons-set {
    margin-top: 90px;
  }
}
.customer-account-create .account-register .approved_form .buttons-set .btn-cart, .customer-account-create .account-register .approved_form .buttons-set #header-cart .minicart-wrapper .minicart-actions .grey-btn, #header-cart .minicart-wrapper .minicart-actions .customer-account-create .account-register .approved_form .buttons-set .grey-btn, .customer-account-create .account-register .approved_form .buttons-set #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .customer-account-create .account-register .approved_form .buttons-set .checkout-button--collection, .customer-account-create .account-register .approved_form .buttons-set #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, #header-cart .minicart-wrapper .minicart-actions .customer-account-create .account-register .approved_form .buttons-set .checkout-button--delivery {
  max-width: 324px;
}
@media screen and (max-width: 479px) {
  .customer-account-create .account-register .approved_form .buttons-set .btn-cart, .customer-account-create .account-register .approved_form .buttons-set #header-cart .minicart-wrapper .minicart-actions .grey-btn, #header-cart .minicart-wrapper .minicart-actions .customer-account-create .account-register .approved_form .buttons-set .grey-btn, .customer-account-create .account-register .approved_form .buttons-set #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .customer-account-create .account-register .approved_form .buttons-set .checkout-button--collection, .customer-account-create .account-register .approved_form .buttons-set #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, #header-cart .minicart-wrapper .minicart-actions .customer-account-create .account-register .approved_form .buttons-set .checkout-button--delivery {
    max-width: none;
  }
}
.customer-account-create .account-register .form-list li {
  float: left;
  margin-left: 2%;
  margin-top: 0;
  width: 49%;
}
@media screen and (max-width: 599px) {
  .customer-account-create .account-register .form-list li {
    margin-left: 0;
  }
}
@media screen and (max-width: 479px) {
  .customer-account-create .account-register .form-list li {
    width: 100%;
  }
}
.customer-account-create .account-register .form-list li.telephone-field, .customer-account-create .account-register .form-list li.email-field {
  margin-left: 2% !important;
}
.customer-account-create .account-register .form-list li.wide label, .customer-account-create .account-register .form-list li.field label {
  display: none !important;
}
.customer-account-create .account-register .form-list li.subscribed {
  width: 100%;
}
@media screen and (max-width: 479px) {
  .customer-account-create .account-register .form-list li.subscribed {
    margin-top: 4px;
    width: auto;
  }
  .customer-account-create .account-register .form-list li.subscribed .input-box {
    margin-right: 0;
  }
}
.customer-account-create .account-register .form-list li:first-child, .customer-account-create .account-register .form-list li:nth-child(even) {
  margin-left: 0;
}
.customer-account-create .account-register .form-list li #is_subscribed {
  margin: 0;
  width: 20px;
}

/* ====== LOGIN/REGISTER ====== */
/* ======
LOGIN/REGISTER
    - General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.customer-account-login .main-container {
  max-width: 100%;
  padding: 0;
}
.customer-account-login .account-login {
  margin: 0 auto;
  max-width: 1140px;
  padding: 50px 10px;
}
.customer-account-login .account-login .page-title h1 {
  display: none;
}

/*================================================================================
$ BOXES
================================================================================*/
.account-login .col2-set h2 {
  margin-bottom: 0;
  min-height: 62px;
}
@media screen and (max-width: 770px) {
  .account-login .col2-set h2 {
    min-height: 0;
  }
}
.account-login .col2-set p {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: 100;
}
.account-login .col2-set p a {
  color: #ed1f24;
}
.account-login .col2-set input::-webkit-input-placeholder {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
.account-login .col2-set input:-moz-placeholder {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
.account-login .col2-set input::-moz-placeholder {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
.account-login .col2-set input:-ms-input-placeholder {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
}
.account-login .col2-set p.required {
  display: none !important;
}
.account-login .col2-set .fieldset {
  margin: 0;
}
.account-login .col2-set .col-1,
.account-login .col2-set .col-2 {
  background-color: #F7F7F7;
  border: none;
  float: left;
  margin: 0;
  margin-left: 2%;
  padding: 30px;
  width: 49%;
}
@media screen and (max-width: 770px) {
  .account-login .col2-set .col-1,
  .account-login .col2-set .col-2 {
    margin-bottom: 20px;
    margin-left: 0;
    padding: 20px;
    width: 100%;
  }
}
.account-login .col2-set .col-2 {
  margin-left: 0;
}
.account-login .col2-set .form-list label,
.account-login .col2-set .form-list .label {
  display: none !important;
}
.account-login .col2-set .form-list .input-box {
  max-width: none;
}
.account-login .col2-set .buttons-set {
  bottom: 0;
  left: 0;
  padding-bottom: 0;
  position: absolute;
}
.account-login .col2-set .buttons-set .secondary-btn, .account-login .col2-set .buttons-set .close-window-btn {
  display: block;
  width: 100%;
}
.account-login .inner-wrapper {
  margin-top: 30px;
  min-height: 275px;
  padding-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 770px) {
  .account-login .inner-wrapper {
    min-height: 0;
    padding-bottom: 60px;
  }
}

/* ====== ACCOUNT INFORMATION ====== */
/* ======
ACCOUNT INFORMATION
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.col-main .my-account .my-wishlist .title-buttons h1 {
  width: 100% !important;
}
.col-main .my-account .my-wishlist #wishlist-view-form .fieldset,
.col-main .my-account .my-wishlist #wishlist-view-form fieldset {
  margin-top: 20px;
}
.col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table thead,
.col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table thead {
  background-color: #ffec38;
}
@media screen and (max-width: 769px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table thead,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table thead {
    display: none;
  }
}
.col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table thead tr.first.last th,
.col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table thead tr.first.last th {
  background-color: #ffec38;
  border-left: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell0.customer-wishlist-item-image .product-image,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell0.customer-wishlist-item-image .product-image {
    border: 0;
    float: none;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell0.customer-wishlist-item-image .product-image img,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell0.customer-wishlist-item-image .product-image img {
    float: none;
    margin: 0 auto;
    height: 100% !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info {
    padding-top: 0;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info .product-name,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info .product-name {
    text-align: left;
  }
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info .product-name a,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info .product-name a {
    font-weight: 600;
  }
}
.col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info button,
.col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info button {
  font-size: 12px;
  margin-bottom: 10px;
  padding: 4px 5px;
  width: 50%;
}
@media screen and (max-width: 859px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info button,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info button {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info button,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info button {
    height: 36px;
    max-width: none;
    width: 100%;
  }
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info button span span,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info button span span {
    font-size: 17px;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info .item-manage,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell1.customer-wishlist-item-info .item-manage {
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell2.customer-wishlist-item-quantity,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell2.customer-wishlist-item-quantity {
    display: none;
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell2.customer-wishlist-item-quantity:before,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell2.customer-wishlist-item-quantity:before {
    float: none;
    margin: 0;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell3.customer-wishlist-item-price,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell3.customer-wishlist-item-price {
    display: none;
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell3.customer-wishlist-item-price:before,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell3.customer-wishlist-item-price:before {
    float: none;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell3.customer-wishlist-item-price .minimal-price,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell3.customer-wishlist-item-price .minimal-price {
    text-align: center;
    margin: 0;
  }
}
.col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell button,
.col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell button {
  text-transform: none;
  color: #FFFFFF;
}
.col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell button:hover, .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell button:active, .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell button:focus,
.col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell button:hover,
.col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell button:active,
.col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell button:focus {
  color: #383b3c;
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell button,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell button {
    font-size: 17px;
    height: 42px;
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart .cart-cell {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart p,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart p {
    width: 100%;
    text-align: center;
    float: none;
  }
}
.col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart a,
.col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart a {
  text-transform: none;
}
@media screen and (max-width: 479px) {
  .col-main .my-account .my-wishlist #wishlist-view-form .fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart a,
  .col-main .my-account .my-wishlist #wishlist-view-form fieldset .clean-table tbody .wishlist-cell4.customer-wishlist-item-cart a {
    max-width: none;
    padding: 9px;
    width: 100%;
    font-size: 17px;
  }
}
.col-main .my-account .my-wishlist .buttons-set.buttons-set2 {
  max-width: 100% !important;
  background-color: transparent;
}
.col-main .my-account .my-wishlist .buttons-set.buttons-set2 button {
  float: none;
}
@media screen and (max-width: 899px) {
  .col-main .my-account .my-wishlist .buttons-set.buttons-set2 button {
    width: 30% !important;
  }
}
@media screen and (max-width: 849px) {
  .col-main .my-account .my-wishlist .buttons-set.buttons-set2 button {
    width: 32% !important;
    padding: 8px 0px;
  }
}
@media screen and (max-width: 699px) {
  .col-main .my-account .my-wishlist .buttons-set.buttons-set2 button {
    display: inline;
    margin: 10px 0;
    max-width: 100%;
    width: 100% !important;
  }
}
.col-main .my-account .my-wishlist .buttons-set.buttons-set2 .btn-add {
  text-transform: none;
}
.col-main .my-account .my-wishlist .buttons-set.buttons-set2 .btn-add:hover, .col-main .my-account .my-wishlist .buttons-set.buttons-set2 .btn-add:active, .col-main .my-account .my-wishlist .buttons-set.buttons-set2 .btn-add:focus {
  color: #000000;
  background-color: #ed1f24;
}
.col-main .my-account .my-wishlist .buttons-set.buttons-set2 .grey-btn {
  background-color: #CECECE;
}
.col-main .my-account .my-wishlist .buttons-set.buttons-set2 .btn-update {
  background-color: #ffec38;
  margin-right: 5px;
}

.wishlist-index-index .col-left.sidebar .block-wishlist {
  display: none;
}
.wishlist-index-index .btn-share {
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
  font-size: 17px;
  font-weight: 600;
  height: 36px;
  max-width: 198px;
  padding: 8px 20px;
  position: relative;
  text-transform: capitalize;
  top: 1px;
  width: 100%;
}

/* ====== ORDER TEMPLATE ====== */
/* ======
ORDER TEMPLATE
	- General
	- Template Table
	- Actions
	- Overlay
====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.ordertemplates-index-index .cms-banner-container.desktop .inner_banner {
  display: block;
}
@media screen and (max-width: 669px) {
  body.ordertemplates-index-index .cms-banner-container.desktop .inner_banner {
    display: none;
  }
}
body.ordertemplates-index-index .cms-banner-container.mobile .inner_banner {
  display: none;
}
@media screen and (max-width: 669px) {
  body.ordertemplates-index-index .cms-banner-container.mobile .inner_banner {
    display: block;
  }
  body.ordertemplates-index-index .cms-banner-container.mobile .inner_banner .inner_content {
    bottom: -18px;
    padding: 22px 2px;
  }
  body.ordertemplates-index-index .cms-banner-container.mobile .inner_banner .inner_content h1:before {
    border-left: 8px solid #ed1f24;
    height: 33px;
    left: 3px;
    top: 3px;
  }
  body.ordertemplates-index-index .cms-banner-container.mobile .inner_banner .inner_content h1 strong {
    font-weight: normal;
  }
}
@media screen and (max-width: 770px) {
  body.ordertemplates-index-index .main-container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 479px) {
  body.ordertemplates-index-index {
    margin-top: 68px;
  }
}
body.ordertemplates-index-index .main {
  margin-top: 25px;
}
body.ordertemplates-index-index .breadcrumbs {
  display: none;
}

.ordertemplates__table-holder:before, .ordertemplates__table-holder:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.ordertemplates__table-holder:before {
  background-color: white;
  opacity: 0.75;
  z-index: 2;
}
.ordertemplates__table-holder:after {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.ordertemplates__table-holder.loading {
  position: relative;
}
.ordertemplates__table-holder.loading:before, .ordertemplates__table-holder.loading:after {
  display: block;
}

/*================================================================================
$ TEMPLATE TABLE
================================================================================*/
body.ordertemplates-index-index form {
  float: left;
  width: 100%;
}

.order-templates-table .order-templates-table__section {
  float: left;
  width: 100%;
}
.order-templates-table .order-templates-table__section p,
.order-templates-table .order-templates-table__section span,
.order-templates-table .order-templates-table__section strong {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}
.order-templates-table .order-templates-table__section--head .order-templates-table__section__row {
  background-color: #ed1f24;
  margin-top: 0;
}
.order-templates-table .order-templates-table__section__row {
  float: left;
  margin-top: 20px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .order-templates-table .order-templates-table__section__row {
    margin-top: 7px;
  }
  .order-templates-table .order-templates-table__section__row.active .order-templates-table__section__row__bottom {
    display: block;
  }
  .order-templates-table .order-templates-table__section__row.active .table-body {
    display: block;
  }
  .order-templates-table .order-templates-table__section__row.active .table-body-name {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/minus-icon-new.png");
  }
}
.order-templates-table .order-templates-table__section__row .order-templates-table__section__row__inner {
  background-color: #F7F7F7;
  padding: 0 25px;
}
@media screen and (max-width: 770px) {
  .order-templates-table .order-templates-table__section__row .order-templates-table__section__row__inner {
    padding: 0;
  }
}
.order-templates-table .order-templates-table__section__row .order-templates-table__section__row__bottom {
  background-color: #E5E5E5;
}
@media screen and (max-width: 770px) {
  .order-templates-table .order-templates-table__section__row .order-templates-table__section__row__bottom {
    display: none;
    padding: 20px 25px;
  }
}
.order-templates-table .table-head,
.order-templates-table .table-body {
  float: left;
  text-align: center;
  width: 25%;
}
@media screen and (max-width: 770px) {
  .order-templates-table .table-head,
  .order-templates-table .table-body {
    text-align: left;
    width: 100%;
  }
}
.order-templates-table .table-head {
  padding: 14px 8px;
}
@media screen and (max-width: 770px) {
  .order-templates-table .table-head {
    font-weight: bold;
    padding: 20px 25px;
  }
}
.order-templates-table .table-head p {
  color: #FFFFFF;
  text-transform: uppercase;
}
.order-templates-table .table-body {
  padding: 22px 8px;
}
@media screen and (max-width: 770px) {
  .order-templates-table .table-body {
    display: none;
    padding: 22px 25px;
  }
  .order-templates-table .table-body.table-body-name {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/plus-icon-new.png");
    background-position: 97% 50%;
    background-repeat: no-repeat;
    background-size: 20px;
    cursor: pointer;
    display: block;
    text-align: left;
    width: 100%;
  }
  .order-templates-table .table-body.table-body-collection-total, .order-templates-table .table-body.table-body-delivery-total {
    background-color: #FFFFFF;
    padding-bottom: 0;
    padding-top: 0;
    text-transform: uppercase;
  }
  .order-templates-table .table-body.table-body-collection-total .label,
  .order-templates-table .table-body.table-body-collection-total .value, .order-templates-table .table-body.table-body-delivery-total .label,
  .order-templates-table .table-body.table-body-delivery-total .value {
    border-bottom: 1px dotted #383b3c;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .order-templates-table .table-body.table-body-collection-total .label, .order-templates-table .table-body.table-body-delivery-total .label {
    float: left;
    padding-right: 10px;
    width: 45%;
  }
  .order-templates-table .table-body.table-body-collection-total .value, .order-templates-table .table-body.table-body-delivery-total .value {
    float: left;
    width: 55%;
  }
  .order-templates-table .table-body.table-body-spacer {
    background-color: #FFFFFF;
    padding: 5px 0;
  }
}
@media screen and (min-width: 771px) {
  .order-templates-table .table-body.table-body-delete {
    padding: 10px 5px 5px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }
}
.order-templates-table .table-body.table-body-edit, .order-templates-table .table-body.table-body-pdf, .order-templates-table .table-body.table-body-reorder {
  padding: 7px 8px;
  text-align: left;
}
.order-templates-table .table-body.table-body-edit .button,
.order-templates-table .table-body.table-body-edit button, .order-templates-table .table-body.table-body-pdf .button,
.order-templates-table .table-body.table-body-pdf button, .order-templates-table .table-body.table-body-reorder .button,
.order-templates-table .table-body.table-body-reorder button {
  border-radius: 3px;
  font-size: 15px;
  margin: 0;
  max-width: 150px;
  padding: 7px;
  width: 100%;
}
.order-templates-table .table-body.table-body-reorder {
  float: right;
  text-align: right;
}
@media screen and (max-width: 770px) {
  .order-templates-table .table-body.table-body--button {
    float: left;
    padding: 7px 8px;
    text-align: center;
    width: 50%;
  }
  .order-templates-table .table-body.table-body--button:nth-child(odd) {
    padding-left: 10px;
  }
  .order-templates-table .table-body.table-body--button:nth-child(even) {
    padding-right: 10px;
  }
  .order-templates-table .table-body.table-body--button.table-body-delete {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .order-templates-table .table-body.table-body--button .button,
  .order-templates-table .table-body.table-body--button button {
    max-width: none;
  }
}
.order-templates-table .delete-btn {
  background-color: transparent;
  border: none;
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  outline: none !important;
  padding: 0;
  text-transform: none;
}
.order-templates-table .delete-btn img,
.order-templates-table .delete-btn span {
  display: block;
  font-size: 12px;
  margin: 0 auto;
}
@media screen and (max-width: 770px) {
  .order-templates-table .delete-btn img,
  .order-templates-table .delete-btn span {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
  }
}
.order-templates-table .delete-btn span {
  margin-top: 3px;
}
@media screen and (max-width: 770px) {
  .order-templates-table .delete-btn span {
    margin-left: 5px;
    margin-top: 0;
  }
}

/*================================================================================
$ ACTIONS
================================================================================*/
.buttons-set.order-templates-buttons-set {
  max-width: none !important;
  text-align: left;
}
.buttons-set.order-templates-buttons-set a.add-more-templates {
  border-top: 2px dotted #ed1f24;
  color: #ed1f24;
  float: left;
  font-size: 18px;
  margin-top: 25px;
  padding: 10px 0 0;
  text-transform: uppercase;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .buttons-set.order-templates-buttons-set a.add-more-templates {
    margin-left: 2%;
    width: 96%;
  }
}

/*================================================================================
$ OVERLAY
================================================================================*/
.template-popup-table .template-popup-table__section {
  float: left;
  width: 100%;
}
.template-popup-table .template-popup-table__section p,
.template-popup-table .template-popup-table__section span,
.template-popup-table .template-popup-table__section strong {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}
.template-popup-table .template-popup-table__section--head .template-popup-table__section__row {
  background-color: #ed1f24;
  margin-top: 0;
}
.template-popup-table .template-popup-table__section--foot .template-popup-table__section__row {
  background-color: #FFFFFF;
}
.template-popup-table .template-popup-table__section__row {
  background-color: #F7F7F7;
  float: left;
  margin-top: 20px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .template-popup-table .template-popup-table__section__row {
    padding: 0 20px;
  }
  .template-popup-table .template-popup-table__section__row.active .table-body {
    display: block;
  }
  .template-popup-table .template-popup-table__section__row.active .table-body-name {
    background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/minus-icon-new.png");
  }
}
.template-popup-table .template-popup-table__section__row .template-popup-table__section__row__inner {
  background-color: #F7F7F7;
  padding: 0 25px;
}
@media screen and (max-width: 770px) {
  .template-popup-table .template-popup-table__section__row .template-popup-table__section__row__inner {
    padding: 0;
  }
}
.template-popup-table .table-head,
.template-popup-table .table-body {
  float: left;
  text-align: left;
  width: 15%;
}
@media screen and (max-width: 770px) {
  .template-popup-table .table-head,
  .template-popup-table .table-body {
    width: 100%;
  }
}
.template-popup-table .table-head--image,
.template-popup-table .table-body--image {
  width: 9%;
}
.template-popup-table .table-head--description,
.template-popup-table .table-body--description {
  width: 21%;
}
.template-popup-table .table-head--price,
.template-popup-table .table-body--price {
  width: 30%;
}
.template-popup-table .table-head--delete,
.template-popup-table .table-body--delete {
  text-align: center;
  width: 10%;
}
.template-popup-table .table-head {
  padding: 14px 8px;
}
@media screen and (max-width: 770px) {
  .template-popup-table .table-head {
    font-weight: bold;
    padding: 20px 25px;
  }
}
.template-popup-table .table-head p {
  color: #FFFFFF;
  text-transform: uppercase;
}
.template-popup-table .table-body {
  padding: 22px 10px;
}
@media screen and (max-width: 770px) {
  .template-popup-table .table-body {
    border-bottom: 2px dotted #909090;
    padding: 20px 10px;
    width: 100%;
  }
  .template-popup-table .table-body .label,
  .template-popup-table .table-body .value {
    display: inline-block;
    vertical-align: middle;
    width: auto;
  }
  .template-popup-table .table-body .label {
    color: #383b3c;
    font-weight: bold;
    max-width: 175px;
    padding-right: 10px;
    text-transform: uppercase;
    width: 100%;
  }
  .template-popup-table .table-body--image {
    display: none !important;
  }
  .template-popup-table .table-body--delete {
    border-bottom: none;
    text-align: left;
  }
}
.template-popup-table .table-body--image a {
  border: none;
  display: block;
  width: 100%;
}
.template-popup-table .table-body--image img {
  width: 100%;
}
.template-popup-table .table-body--description a {
  color: #383b3c;
}
.template-popup-table .table-foot {
  float: left;
  font-weight: lighter;
  padding: 22px 10px;
  text-align: left;
  width: 15%;
}
@media screen and (max-width: 770px) {
  .template-popup-table .table-foot--productdetails, .template-popup-table .table-foot--delete, .template-popup-table .table-foot--collectionprice, .template-popup-table .table-foot--deliveryprice {
    display: none;
  }
  .template-popup-table .table-foot--totals, .template-popup-table .table-foot--mobileprices {
    width: 44%;
  }
  .template-popup-table .table-foot--mobileprices {
    margin-left: 2%;
    width: 54%;
  }
  .template-popup-table .table-foot--mobileprices .label,
  .template-popup-table .table-foot--mobileprices .value {
    float: left;
    text-align: right;
    width: 50%;
  }
  .template-popup-table .table-foot--mobileprices .label {
    font-weight: bold;
    padding-right: 5px;
    text-align: center;
    text-transform: uppercase;
  }
}
.template-popup-table .table-foot--productdetails {
  width: 45%;
}
.template-popup-table .table-foot--totals p {
  font-weight: bold;
  text-transform: uppercase;
}
.template-popup-table .table-foot--collectionprice p, .template-popup-table .table-foot--deliveryprice p {
  font-size: 15px;
}
.template-popup-table .table-foot--delete {
  width: 10%;
}
.template-popup-table .price-info-box .collection-price,
.template-popup-table .price-info-box .delivery-price {
  float: left;
  width: 50%;
}
@media screen and (max-width: 979px) {
  .template-popup-table .price-info-box .collection-price,
  .template-popup-table .price-info-box .delivery-price {
    width: 100%;
  }
}
@media screen and (max-width: 770px) {
  .template-popup-table .price-info-box .collection-price,
  .template-popup-table .price-info-box .delivery-price {
    width: 50%;
  }
}
.template-popup-table .price-info-box .collection-price h4,
.template-popup-table .price-info-box .delivery-price h4 {
  background: #CCCCCC;
  color: #000000;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 0;
  padding: 7px 5px;
  text-align: center;
  text-transform: none;
  width: 100%;
}
.template-popup-table .price-info-box .collection-price h4 span,
.template-popup-table .price-info-box .delivery-price h4 span {
  color: #000000;
  display: inline-block;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  margin-left: 4px;
}
.template-popup-table .price-info-box .collection-price h4 span > p,
.template-popup-table .price-info-box .delivery-price h4 span > p {
  font-size: 13px;
}
.template-popup-table .price-info-box .collection-price .tier-prices,
.template-popup-table .price-info-box .delivery-price .tier-prices {
  background: #FFFFFF;
  border: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.template-popup-table .price-info-box .collection-price .tier-prices li,
.template-popup-table .price-info-box .delivery-price .tier-prices li {
  margin-bottom: 0;
  margin-top: 0;
  padding: 8px 5px;
  text-align: center;
}
.template-popup-table .price-info-box .collection-price .tier-prices li:nth-child(2),
.template-popup-table .price-info-box .delivery-price .tier-prices li:nth-child(2) {
  border-top: 2px dotted #909090;
}
.template-popup-table .price-info-box .guest-price-block {
  text-align: center;
  width: 100% !important;
}
.template-popup-table .qty-wrapper {
  padding-top: 0;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .template-popup-table .qty-wrapper {
    display: inline-block;
    max-width: 125px;
    vertical-align: middle;
  }
}
.template-popup-table .qty-wrapper .quantity-icons {
  background: #CCCCCC;
  border-radius: 2px;
  padding: 2px 0;
  text-align: center;
  width: 100%;
}
.template-popup-table .qty-wrapper .quantity-icons a.remove-qty,
.template-popup-table .qty-wrapper .quantity-icons .fake-qty,
.template-popup-table .qty-wrapper .quantity-icons .qty,
.template-popup-table .qty-wrapper .quantity-icons a.add-qty {
  border: none;
  display: inline-block;
  max-width: 25%;
  vertical-align: middle;
  width: 100%;
}
.template-popup-table .qty-wrapper .quantity-icons a.remove-qty,
.template-popup-table .qty-wrapper .quantity-icons a.add-qty {
  padding: 5px;
}
.template-popup-table .qty-wrapper .quantity-icons a.remove-qty > img,
.template-popup-table .qty-wrapper .quantity-icons a.add-qty > img {
  display: block;
  margin: 0 auto;
  max-width: 12px;
  width: 100%;
}
.template-popup-table .qty-wrapper .quantity-icons .fake-qty,
.template-popup-table .qty-wrapper .quantity-icons .qty {
  font-size: 16px;
  font-weight: bold;
  max-width: 40%;
  text-align: center;
}
.template-popup-table .delete-btn {
  background-color: transparent;
  border: none;
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  outline: none !important;
  padding: 0;
  text-transform: none;
}
.template-popup-table .delete-btn img,
.template-popup-table .delete-btn span {
  display: block;
  font-size: 12px;
  margin: 0 auto;
}
@media screen and (max-width: 770px) {
  .template-popup-table .delete-btn img,
  .template-popup-table .delete-btn span {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
  }
}
.template-popup-table .delete-btn span {
  margin-top: 3px;
}
@media screen and (max-width: 770px) {
  .template-popup-table .delete-btn span {
    margin-left: 5px;
    margin-top: 0;
  }
}

.ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay {
  border: none;
  border-radius: 0;
  max-width: 1100px;
  padding: 40px 30px;
  width: 100%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay:before, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay:before {
  background-color: white;
  opacity: 0.75;
  z-index: 2;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay:after {
  background-image: url("https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay.loading {
  position: relative;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay.loading:before, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay.loading:after {
  display: block;
}
@media screen and (max-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay {
    padding: 0;
  }
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay__inner {
  max-height: none;
  overflow: visible;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay__inner .new-template-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay__inner .new-template-name-field {
  color: #383b3c;
  float: left;
  margin-top: 4px;
  width: 70%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .overlay__inner .new-template-name-button {
  float: right;
  width: 20%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .close-btn {
  background-color: #383b3c;
  border: none;
  border-radius: 0;
  padding: 11px;
  right: 3px;
  top: 3px;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-title {
  border-bottom: 2px dotted #DDDDDD;
  float: left;
  margin-left: 25px;
  padding-bottom: 5px;
  padding-right: 50px;
  width: calc(100% - 25px);
}
@media screen and (max-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-title {
    border-bottom: none;
  }
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-title > textarea {
  border: none;
  color: #373A3B !important;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  max-width: none;
  text-transform: uppercase;
  vertical-align: middle;
  width: 100%;
}
@media screen and (min-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-title > textarea {
    height: 40px;
    line-height: 1;
    padding: 0;
    resize: none;
    outline: none;
  }
}
@media screen and (max-width: 599px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-title > textarea {
    position: relative;
    text-align: left;
    top: -12px;
  }
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-title > input.input-text {
  border: none;
  color: #373A3B !important;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  vertical-align: middle;
  width: 100%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .save-close-btn-holder {
  float: left;
  padding-left: 25px;
  padding-top: 10px;
  width: 100%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .save-close-btn-holder .button {
  background-color: transparent;
  border: none;
  color: #ed1f24;
  padding: 0;
  min-width: 0;
  text-transform: none;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .save-close-btn-holder .button:hover, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .save-close-btn-holder .button:active, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .save-close-btn-holder .button:focus {
  background-color: transparent;
  border: none;
  color: #ed1f24;
  text-decoration: underline;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-popup-table-holder {
  float: left;
  max-height: 325px;
  overflow-x: auto;
  overflow-y: auto;
  width: 100%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-popup-table {
  float: left;
  margin-top: 15px;
  width: 100%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-popup-table tfoot {
  border-top: 1px solid #DDDDDD;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-popup-table tfoot td {
  border: none;
  padding-top: 20px;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-popup-table tfoot .prod-totals-labels > a {
  float: left;
  font-size: 12px;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-popup-table tfoot .prod-totals-labels > a span {
  color: #ed1f24;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-popup-table tfoot .prod-totals-labels > p {
  float: right;
  font-size: 12px;
  margin: 0;
  margin-left: 10px;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row {
  border-top: 2px dotted #909090;
  float: left;
  margin-top: 30px;
  padding-top: 30px;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row {
    border-top: none;
    padding-top: 0;
  }
}
@media screen and (max-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-row__inner {
    border-top: 2px dotted #909090;
    padding-top: 20px;
  }
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-field-wrapper {
  float: left;
  position: relative;
  width: 76%;
}
@media screen and (max-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-field-wrapper {
    display: none;
    width: 100%;
  }
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-field-wrapper .template-add-sku-field {
  background-color: #F7F7F7;
  border: none;
  display: inline-block;
  float: left;
  height: 47px;
  outline: 0;
  padding: 7px 57px 7px 15px;
  vertical-align: top;
  width: 100%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-field-wrapper .template-add-sku-search {
  background-color: #ed1f24;
  background-image: url(https://www.saimaxx.com/skin/frontend/star-saimaxx-package/star-saimaxx-theme/images/icons/search-icon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px;
  border: 0;
  color: #383b3c;
  display: inline-block;
  height: 47px;
  position: absolute;
  right: 0;
  top: 0;
  width: 52px;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-preview-wrapper {
  display: none;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-preview-wrapper {
    display: none !important;
  }
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-preview-wrapper.active {
  display: block;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-preview-wrapper .template-add-sku-preview {
  background: #F7F7F7;
  line-height: 18px;
  padding: 10px;
  width: 100%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-button-wrapper {
  float: left;
  margin-left: 3%;
  width: 21%;
}
@media screen and (max-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-button-wrapper {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .template-add-sku-button-wrapper #template-add-sku-button {
  border-radius: 3px;
  font-size: 17px;
  padding: 11px 10px;
  width: 100%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist {
  background-color: #F7F7F7;
  left: 0;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist > li {
  margin: 0;
  padding: 2px 5px;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist > li:hover, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist > li:active, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist > li:focus {
  background-color: #ed1f24;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist > li:hover > a, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist > li:active > a, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist > li:focus > a {
  color: #FFFFFF;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist > li.no-hover {
  background-color: transparent !important;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist > li > a, .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row .ordertemplate__productlist > li > span {
  color: #ed1f24;
  display: block;
  text-decoration: none;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .delivery-options-radio {
  float: left;
  margin-top: 30px;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .delivery-options-radio .checkbox-control {
    text-align: center;
  }
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .delivery-options-radio .checkbox-control > li {
  margin-top: 0 !important;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .form-list-radio {
  display: inline-block;
  vertical-align: middle;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .form-list-radio > li {
  display: inline-block;
  margin: 0;
  margin-left: 20px;
  vertical-align: middle;
  width: auto;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .form-list-radio > li:first-child {
  margin-left: 0;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .form-list-radio label {
  font-weight: 500;
  margin-left: 0;
  margin-right: 7px;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .actions {
  float: left;
  margin-top: 30px;
  width: 100%;
}
.ordertemplates-overlay-holder.ordertemplates-overlay-holder .actions .template-order-btn {
  border-radius: 3px;
  font-weight: bold;
  min-width: 300px;
  padding: 8px 10px;
}
@media screen and (max-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .actions .template-order-btn {
    min-width: 0;
    width: 100%;
  }
}
@media screen and (max-width: 770px) {
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .template-add-sku-row,
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .delivery-options-radio,
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .actions {
    padding: 0 20px;
  }
  .ordertemplates-overlay-holder.ordertemplates-overlay-holder .actions {
    padding-bottom: 20px !important;
  }
}

/* ====== ORDER SUCCESS ====== */
/* ======
ORDER SUCCESS
    - P2 Design - General
====== */
/*================================================================================
$ P2 DESIGN - GENERAL
================================================================================*/
.checkout-onepage-success .page-title h1 {
  border-bottom: 2px dotted #000000;
  font-size: 32px;
  padding-bottom: 8px;
  padding-left: 20px;
  text-transform: uppercase;
}
.checkout-onepage-success .page-title h1:before {
  left: 0;
}
.checkout-onepage-success .buttons-set {
  float: left;
}
.checkout-onepage-success .buttons-set .btn-cart, .checkout-onepage-success .buttons-set #header-cart .minicart-wrapper .minicart-actions .grey-btn, #header-cart .minicart-wrapper .minicart-actions .checkout-onepage-success .buttons-set .grey-btn, .checkout-onepage-success .buttons-set #header-cart .minicart-wrapper .minicart-actions .checkout-button--collection, #header-cart .minicart-wrapper .minicart-actions .checkout-onepage-success .buttons-set .checkout-button--collection, .checkout-onepage-success .buttons-set #header-cart .minicart-wrapper .minicart-actions .checkout-button--delivery, #header-cart .minicart-wrapper .minicart-actions .checkout-onepage-success .buttons-set .checkout-button--delivery {
  max-width: 250px;
}

.checkout-onepage-success .order-success .page-title h1 {
  text-align: left;
  text-transform: none;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.checkout-onepage-success .order-success .sub-title {
  text-align: left;
  text-transform: none;
  margin-bottom: 20px;
}
.checkout-onepage-success .order-success p.back-link {
  background-color: #EDEDED;
  background-position: 9px 10px;
  background-repeat: no-repeat;
  background-size: 16px;
  margin: 40px 0;
  padding: 5px 5px;
  width: 6%;
}
.checkout-onepage-success .order-success p.back-link a {
  color: #383b3c;
  display: inline;
  font-size: 12px;
  font-weight: bold;
  vertical-align: middle;
}
.checkout-onepage-success .order-success p.back-link small {
  vertical-align: middle;
}
.checkout-onepage-success .order-success p.back-link img {
  display: inline;
  padding-bottom: 4px;
  vertical-align: middle;
}
@media screen and (max-width: 769px) {
  .checkout-onepage-success .order-success p.back-link {
    width: 20%;
  }
}
.checkout-onepage-success .order-success p {
  text-align: left;
  margin: 0;
  color: #383b3c;
}
.checkout-onepage-success .order-success p .print {
  color: #DF280A;
}
.checkout-onepage-success .order-success p .order-number {
  color: #383b3c;
  font-weight: bold;
}
.checkout-onepage-success .order-success .buttons-set_old {
  margin: 0 auto;
  text-align: center;
  display: inline;
  max-width: 100%;
  width: 100%;
}
.checkout-onepage-success .order-success .buttons-set_old button {
  background-color: #ffec38;
  color: #383b3c;
  margin: 20px 0px 40px 0px;
  float: left;
}
.checkout-onepage-success .order-success .buttons-set_old button:hover, .checkout-onepage-success .order-success .buttons-set_old button:focus, .checkout-onepage-success .order-success .buttons-set_old button:active {
  color: #FFFFFF;
}

/* ====== ORDER INVOICE HISTORY ====== */
/* ======
ORDER INVOICE HISTORY
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.orderinvoicehistory-index-index .breadcrumbs {
  display: none;
}
.orderinvoicehistory-index-index .col-main {
  float: right;
  margin-top: 2%;
  width: 75%;
}
@media screen and (max-width: 770px) {
  .orderinvoicehistory-index-index .col-main {
    float: none;
    width: 100%;
  }
}
.orderinvoicehistory-index-index .col-main .mobile-message {
  display: none;
}
@media screen and (max-width: 479px) {
  .orderinvoicehistory-index-index .col-main .mobile-message {
    color: #EB340A;
    display: inline-block;
    font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
    font-size: 14px;
    font-style: normal;
    text-align: left;
  }
}
@media screen and (max-width: 479px) {
  .orderinvoicehistory-index-index .col-main form {
    overflow-x: scroll;
  }
}
.orderinvoicehistory-index-index .col-main #my-invoice-table {
  margin-top: 20px;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .orderinvoicehistory-index-index .col-main #my-invoice-table {
    margin-top: 0;
  }
}
.orderinvoicehistory-index-index .col-main #my-invoice-table tbody span.vat {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 10px;
  margin-left: 2px;
}
@media screen and (max-width: 669px) {
  .orderinvoicehistory-index-index .col-main #my-invoice-table tbody span.vat {
    display: block;
  }
}
.orderinvoicehistory-index-index .col-main #my-invoice-table tbody tr.pay-now td {
  font-weight: bold;
}
.orderinvoicehistory-index-index .col-main #my-invoice-table tbody tr.pay-now span.template-invoice-status {
  background-color: #EB340A;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  padding: 7px;
  padding-left: 15px;
  padding-right: 15px;
}
.orderinvoicehistory-index-index .col-main #my-invoice-table tbody tr.pay-now span.template-invoice-view {
  color: #EB340A;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.orderinvoicehistory-index-index .col-main #my-invoice-table tbody tr.pay-now span.template-invoice-view:hover {
  color: #EB340A;
}
.orderinvoicehistory-index-index .col-main #my-invoice-table tbody tr.pay-now span.template-invoice-view a {
  color: #EB340A;
  text-decoration: none;
}
.orderinvoicehistory-index-index .col-main #my-invoice-table tbody tr.paid span.template-invoice-status {
  background-color: #13AA02;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  padding: 7px;
  padding-left: 28px;
  padding-right: 28px;
}
.orderinvoicehistory-index-index .col-main #my-invoice-table tbody tr.paid span.template-invoice-view {
  color: #EB340A;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.orderinvoicehistory-index-index .col-main #my-invoice-table tbody tr.paid span.template-invoice-view:hover {
  color: #EB340A;
}
.orderinvoicehistory-index-index .col-main #my-invoice-table tbody tr.paid span.template-invoice-view a {
  color: #EB340A;
  text-decoration: none;
}

/* ====== ORDER STATEMENT HISTORY ====== */
/* ======
ORDER STATEMENT HISTORY
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.orderstatementhistory-index-index .breadcrumbs {
  display: none;
}
.orderstatementhistory-index-index .col-main {
  float: right;
  margin-top: 2%;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .orderstatementhistory-index-index .col-main {
    float: none;
    width: 100%;
  }
}
.orderstatementhistory-index-index .col-main .mobile-message {
  display: none;
}
@media screen and (max-width: 479px) {
  .orderstatementhistory-index-index .col-main .mobile-message {
    color: #EB340A;
    display: inline-block;
    font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
    font-size: 14px;
    font-style: normal;
    text-align: left;
  }
}
.orderstatementhistory-index-index .col-main p.credit-bal {
  color: #383b3c;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-style: normal;
  padding-bottom: 15px;
  width: 89%;
}
.orderstatementhistory-index-index .col-main p.credit-bal span.price {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: 600;
  margin-left: 6px;
}
.orderstatementhistory-index-index .col-main span.paid {
  background-color: #EB340A;
  color: #FFFFFF;
  float: right;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin-top: -5px;
  padding: 8px 19px;
}
.orderstatementhistory-index-index .col-main .credit-info p.current-avail {
  border-top: 1px solid #DDDDDD;
  color: #383b3c;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-style: normal;
  margin-bottom: 10px;
  padding-top: 15px;
  width: 100%;
}
.orderstatementhistory-index-index .col-main .credit-info p.current-avail span.price {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: 600;
  margin-left: 6px;
}
.orderstatementhistory-index-index .col-main .credit-info p.credit-lim {
  color: #383b3c;
  float: left;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-style: normal;
  width: 100%;
}
.orderstatementhistory-index-index .col-main .credit-info p.credit-lim span.price {
  color: #383b3c;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: 600;
  margin-left: 6px;
}
.orderstatementhistory-index-index .col-main .table-title {
  float: left;
  width: 100%;
}
.orderstatementhistory-index-index .col-main .table-title h2 {
  border-bottom: 1px solid #DDDDDD;
  color: #383b3c;
  font-size: 20px;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-weight: 600;
  margin-top: 26px;
  padding-bottom: 16px;
  text-transform: none;
}
.orderstatementhistory-index-index .col-main form {
  float: left;
  width: 100%;
}
@media screen and (max-width: 669px) {
  .orderstatementhistory-index-index .col-main form {
    overflow-x: scroll;
  }
}
.orderstatementhistory-index-index .col-main #my-invoice-table {
  width: 100%;
}
@media screen and (max-width: 479px) {
  .orderstatementhistory-index-index .col-main #my-invoice-table {
    margin-top: 0;
  }
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr span.template-invoice-view {
  color: #EB340A;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr span.template-invoice-view:hover {
  color: #EB340A;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr span.template-invoice-view a {
  color: #EB340A;
  text-decoration: none;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody span.vat {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 10px;
  margin-left: 2px;
}
@media screen and (max-width: 669px) {
  .orderstatementhistory-index-index .col-main #my-invoice-table tbody span.vat {
    display: block;
  }
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr.top td {
  font-weight: bold;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr.pay-now td {
  font-weight: bold;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr.pay-now span.template-invoice-status {
  background-color: #EB340A;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  padding: 7px;
  padding-left: 15px;
  padding-right: 15px;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr.pay-now span.template-invoice-view {
  color: #EB340A;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr.pay-now span.template-invoice-view:hover {
  color: #EB340A;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr.pay-now span.template-invoice-view a {
  color: #EB340A;
  text-decoration: none;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr.paid span.template-invoice-status {
  background-color: #13AA02;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  padding: 7px;
  padding-left: 28px;
  padding-right: 28px;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr.paid span.template-invoice-view {
  color: #EB340A;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr.paid span.template-invoice-view:hover {
  color: #EB340A;
}
.orderstatementhistory-index-index .col-main #my-invoice-table tbody tr.paid span.template-invoice-view a {
  color: #EB340A;
  text-decoration: none;
}

/* ====== SAVED ORDERS ====== */
/* ======
SAVED ORDERS
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.quotingsystem-index-index .col-main .page-title > h1 {
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 23px;
  margin-bottom: 0;
  margin-top: 8px;
  padding: 0;
  text-transform: none;
}
@media screen and (max-width: 479px) {
  body.quotingsystem-index-index .col-main .page-title > h1 {
    text-align: left;
  }
}
body.quotingsystem-index-index .col-main .savedorders-table {
  margin-top: 20px;
}
body.quotingsystem-index-index .col-main .savedorders-table thead th {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
body.quotingsystem-index-index .col-main .savedorders-table tbody td {
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 16px;
}
body.quotingsystem-index-index .col-main .savedorders-table tbody td small, body.quotingsystem-index-index .col-main .savedorders-table tbody td span {
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  body.quotingsystem-index-index .col-main .savedorders-table tbody .table-body-actions {
    text-align: center;
  }
}
body.quotingsystem-index-index .col-main .savedorders-table .reorder-btn,
body.quotingsystem-index-index .col-main .savedorders-table .delete-btn {
  background-color: transparent;
  border: none;
  color: #ed1f24;
  font-family: soleto, "soleto", Soleto, "Soleto", sans-serif;
  font-size: 13px;
  outline: none !important;
  padding: 0;
}

/*# sourceMappingURL=mage-styles.css.map */

